




/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    /*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* jquery.selectBox.css */

/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    border: solid 1px #BBB;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: #F2F2F2;
    background: -moz-linear-gradient(top, #F8F8F8 1%, #E1E1E1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F8F8F8), color-stop(100%, #E1E1E1));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F8F8F8', endColorstr='#E1E1E1', GradientType=0);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    cursor: default;
}

    .selectBox-dropdown:focus,
    .selectBox-dropdown:focus .selectBox-arrow {
        border-color: #666;
    }

    .selectBox-dropdown.selectBox-menuShowing {
        -moz-border-radius-bottomleft: 0;
        -moz-border-radius-bottomright: 0;
        -webkit-border-bottom-left-radius: 0;
        -webkit-border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .selectBox-dropdown .selectBox-label {
        padding: 2px 8px;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
    }

    .selectBox-dropdown .selectBox-arrow {
        position: absolute;
        top: 0;
        right: 0;
        width: 23px;
        height: 100%;
        background: url(../images/jquery.selectBox-arrow.html) 50% center no-repeat;
        border-left: solid 1px #BBB;
    }

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

    .selectBox-inline:focus {
        border-color: #666;
    }

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

    .selectBox-options LI A {
        line-height: 1.5;
        padding: 0 .5em;
        white-space: nowrap;
        overflow: hidden;
        background: 6px center no-repeat;
    }

    .selectBox-options LI.selectBox-hover A {
        background-color: #EEE;
    }

    .selectBox-options LI.selectBox-disabled A {
        color: #888;
        background-color: transparent;
    }

    .selectBox-options LI.selectBox-selected A {
        background-color: #C8DEF4;
    }

    .selectBox-options .selectBox-optgroup {
        color: #666;
        background: #EEE;
        font-weight: bold;
        line-height: 1.5;
        padding: 0 .3em;
        white-space: nowrap;
    }

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

    .selectBox-inline.selectBox-disabled .selectBox-options A {
        background-color: transparent !important;
    }

/* style.css */

/**
 * Main YITH WooCommerce Wishlist CSS
 *
 * @author Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 1.1.5
 */

.summary .product_meta {
    margin-top: 45px;
}


input[type='text'], input[type='date'], input[type='email'], input[type='password'], input[type='number'], input:not([type]), textarea, select {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: 12px;
    font-weight: 300;
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 5px 5px;
    color: #333333;
    background-color: white;
    border: 1px solid #dddddd;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url("../images/selectArrow.png") no-repeat 96% center;
    padding-right: 30px;
}


/* Selectbox style */
.woocommerce a.selectBox {
    background: #ffffff;
    min-width: 100px;
    margin-right: 10px;
    color: inherit;
}

    .woocommerce a.selectBox,
    .woocommerce a.selectBox:hover {
        border-bottom: 1px solid #bbb !important;
    }

        .woocommerce a.selectBox:hover {
            color: inherit;
        }

        .woocommerce a.selectBox:focus {
            border: 1px solid #ccc;
        }

.selectBox-dropdown .selectBox-label {
    vertical-align: middle;
    padding: 3px 8px;
}

.selectBox-dropdown .selectBox-arrow {
    border: none;
    background: url(../images/jquery.selectBox-arrow-2.html) center right no-repeat;
}

.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow {
    background: url(../images/jquery.selectBox-arrow-2.html) center left no-repeat;
}

.selectBox-dropdown-menu {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 5px;
    font-size: 80%;
}

    .selectBox-label.public-visibility:before,
    .selectBox-dropdown-menu li.public-visibility a:before {
        font-family: FontAwesome;
        display: inline-block;
        content: "\f0ac";
        margin-right: 5px;
    }

    .selectBox-label.shared-visibility:before,
    .selectBox-dropdown-menu li.shared-visibility a:before {
        font-family: FontAwesome;
        display: inline-block;
        content: "\f0c1";
        margin-right: 5px;
    }

    .selectBox-label.private-visibility:before,
    .selectBox-dropdown-menu li.private-visibility a:before {
        font-family: FontAwesome;
        display: inline-block;
        content: "\f023";
        margin-right: 5px;
    }

    .selectBox-dropdown-menu li a {
        color: inherit;
        padding: 5px 8px;
        border-radius: 3px;
    }

    .selectBox-dropdown-menu a:hover {
        color: inherit;
        text-decoration: none;
    }

/* Wishlist table */
.woocommerce .wishlist_table td.product-add-to-cart a {
    display: block !important;
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
}

.woocommerce .wishlist_table td.product-add-to-cart span.dateadded {
    display: block;
}

/* Popup add to wishlist */
.yith-wcwl-add-button a.open-pretty-photo {
    display: none;
}

.yes-js .yith-wcwl-add-button a.open-pretty-photo {
    display: inline-block;
}

.yes-js .yith-wcwl-popup {
    display: none;
    text-align: center;
}

.yes-js .yith-wcwl-popup-content {
}

.yes-js .yith-wcwl-popup-content {
    display: table;
    width: 100%;
}

    .yes-js .yith-wcwl-popup-content .yith-wcwl-first-row {
        display: table-header-group;
    }

    .yes-js .yith-wcwl-popup-content .yith-wcwl-second-row {
        display: none;
    }

    .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container,
    .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-thumb,
    .yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new,
    .yes-js .yith-wcwl-popup-content .yith-wcwl-visibility {
        display: table-cell;
        vertical-align: bottom;
    }

    .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container {
        width: 80%;
        padding-bottom: 20px;
    }

        .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container select,
        .yes-js .yith-wcwl-popup-content .yith-wcwl-visibility select,
        .yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new input {
            border: 1px solid #ccc;
            height: 35px;
            border-radius: 3px;
        }

        .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-select-container select {
            width: 100%;
            font-weight: 700;
            padding-left: 10px;
        }

    .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-thumb {
        width: 20%;
        padding-bottom: 20px;
    }

        .yes-js .yith-wcwl-popup-content .yith-wcwl-wishlist-thumb img {
            float: right;
            border: 1px solid #ccc;
            border-radius: 3px;
        }

    .yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new {
        text-align: right;
    }

        .yes-js .yith-wcwl-popup-content .yith-wcwl-popup-new label {
            font-weight: 700;
        }

    .yes-js .yith-wcwl-popup-content .yith-wcwl-visibility select {
        float: right;
        min-width: 90px;
    }

.yes-js .yith-wcwl-popup-footer {
    border-top: 1px solid #CCC;
    padding: 20px 20px 0 20px;
    margin: 20px -20px 0;
    text-align: right;
}

/* Popup message */
#yith-wcwl-popup-message {
    background: white;
    border: 1px solid #CCC;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    line-height: 50px;
    padding: 15px;
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    z-index: 10000; /* Thanks WP -.- */
}

/*Wishlist title form*/
.wishlist-title {
    display: inline-block;
}

    .wishlist-title h2 {
        display: inline-block;
        padding: 5px;
    }

    .wishlist-title.wishlist-title-with-form h2:hover {
        background: #efefef;
    }

    .wishlist-title a.show-title-form {
        cursor: pointer;
        visibility: hidden;
    }

    .wishlist-title:hover a.show-title-form {
        visibility: visible;
    }

.yes-js #yith-wcwl-form .hidden-title-form {
    display: none;
    margin: 25px 0 39px;
}

/* Wishlist table template */

.woocommerce table.wishlist_table {
    font-size: 80%;
}

    .woocommerce table.wishlist_table thead th {
        border-top: 1px solid;
        padding: 16px 12px;
    }

    .woocommerce table.wishlist_table tbody td {
        padding: 16px 12px;
    }

    .woocommerce table.wishlist_table thead th,
    .woocommerce table.wishlist_table tbody td {
        border-color: #e7e7e7;
    }

.wishlist_table tr td, .wishlist_table tr th.wishlist-delete, .wishlist_table tr th.product-checkbox {
    text-align: center;
}

.wishlist_table tr th.product-checkbox {
    vertical-align: middle;
    width: 40px;
}

.wishlist_table tr th.product-remove {
    vertical-align: middle;
    width: 40px;
}

.wishlist_table tr th.product-thumbnail {
    width: 80px;
}

.wishlist_table tr td.product-thumbnail, .wishlist_table tr td.product-name, .wishlist_table tr td.wishlist-name, .wishlist_table tr td.wishlist-privacy, .woocommerce table.wishlist_table tfoot td {
    text-align: left;
}

.woocommerce table.wishlist_table tr td.product-remove {
    padding: 16px 0
}

.wishlist_table tr td.product-thumbnail a {
    display: block;
    border: none;
    max-width: 80px;
}

    .wishlist_table tr td.product-thumbnail a img {
        width: 100%;
    }

.wishlist_table tr td.product-stock-status span.wishlist-in-stock {
    color: #297E29;
}

.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock {
    color: #F00;
}

.wishlist_table tr td a.button {
    white-space: normal;
}

/* Wishlist buttons */
a.add_to_wishlist {
    cursor: pointer;
}

.summary .single_add_to_wishlist.button,
div.product .woocommerce-price-and-add .single_add_to_wishlist.button {
    margin: 0px;
}

.wishlist_table .add_to_cart.button {
    padding: 7px 12px;
    line-height: normal;
}

.yith-wcwl-add-to-wishlist {
    margin-top: 10px;
}

.yith-wcwl-add-button > a i,
.wishlist_table .add_to_cart.button i,
.wishlist_table .ask-an-estimate-button i,
.wishlist-title a.show-title-form i,
.hidden-title-form a.hide-title-form i,
.hidden-title-form button i,
.yith-wcwl-wishlist-new button i,
.wishlist_manage_table tfoot button.submit-wishlist-changes i,
.wishlist_manage_table tfoot a.create-new-wishlist i,
.yith-wcwl-wishlist-search-form button.wishlist-search-button i {
    margin-right: 10px;
}

.wishlist_table .add_to_cart.button,
.yith-wcwl-add-button a.add_to_wishlist,
.yith-wcwl-popup-button a.add_to_wishlist,
.wishlist_table a.ask-an-estimate-button,
.wishlist-title a.show-title-form,
.hidden-title-form a.hide-title-form,
.woocommerce .yith-wcwl-wishlist-new button,
.wishlist_manage_table a.create-new-wishlist,
.wishlist_manage_table button.submit-wishlist-changes,
.yith-wcwl-wishlist-search-form button.wishlist-search-button {
    margin: 0px;
    box-shadow: none;
    text-shadow: none;
    border-radius: 3px;
}

/* Wishlist title */
.woocommerce .wishlist-title h2 {
    vertical-align: middle;
}

.woocommerce .wishlist-title a.show-title-form {
    vertical-align: middle;
    margin-left: 15px;
}

.woocommerce .hidden-title-form input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 35px;
    min-width: 250px;
    vertical-align: middle;
}

.woocommerce .hidden-title-form button {
    padding: 7px 24px;
    vertical-align: middle;
    border: none;
    position: relative;
}

    .woocommerce .hidden-title-form button:active {
        top: 1px;
    }

.woocommerce .hidden-title-form a.hide-title-form {
    vertical-align: middle;
    line-height: normal;
}

/* Remove buttons */
.woocommerce #content table.wishlist_table.cart a.remove {
    color: #c3c3c3;
    margin: 0 auto;
}

    .woocommerce #content table.wishlist_table.cart a.remove:hover {
        background-color: #c3c3c3;
        color: #fff;
    }

/* Share buttons */
.yith-wcwl-share {
    margin-bottom: 35px;
}

    .yith-wcwl-share h4.yith-wcwl-share-title {
        margin: 10px 0;
    }

    .yith-wcwl-share ul {
        margin: 5px 0;
        padding: 0;
    }

    .yith-wcwl-share ul, .yith-wcwl-share li {
        height: 21px;
    }

    .yith-wcwl-share li, .entry-content .yith-wcwl-share li {
        margin-left: 0px;
        margin-right: 0px;
    }

        .yith-wcwl-share li a {
            background-position: left top;
            display: inline-block;
            width: 21px;
            height: 21px;
            border: none;
        }

            .yith-wcwl-share li a:hover {
                background-position: left bottom;
            }

            .yith-wcwl-share li a.facebook {
                background-image: url(../images/facebook.html);
            }

            .yith-wcwl-share li a.twitter {
                background-image: url(../images/twitter.html);
            }

            .yith-wcwl-share li a.pinterest {
                background-image: url(../images/pinterest.html);
            }

            .yith-wcwl-share li a.googleplus {
                background-image: url(../images/googleplus.html);
            }

            .yith-wcwl-share li a.email {
                background-image: url(../images/email.html);
            }

/* Ask an estimate button */
.woocommerce .wishlist_table.cart .ask-an-estimate-button,
.woocommerce .wishlist_table.cart #custom_add_to_cart {
    margin: 10px 0;
    display: inline-block;
}

.woocommerce .wishlist_table.cart .ask-an-estimate-button {
    padding: 7px 12px;
    line-height: normal;
}

#ask_an_estimate_popup {
    display: none;
}

.ask-an-estimate-button-popup {
    margin-top: 30px !important;
    float: right;
    text-transform: none;
}

#additional_notes {
    min-height: 150px;
}

/* Create new wishlist*/
.yith-wcwl-wishlist-new {
    padding: 20px 30px;
    border-bottom: 1px solid #e7e7e7;
}

    .yith-wcwl-wishlist-new label {
        vertical-align: middle;
        margin-right: 20px;
    }

    .yith-wcwl-wishlist-new input {
        min-width: 190px;
    }

        .yith-wcwl-wishlist-new input[type="text"],
        .yith-wcwl-wishlist-new select {
            border: 1px solid #ccc;
            border-radius: 3px;
            height: 35px;
            vertical-align: middle;
            margin-right: 10px;
        }

.woocommerce .yith-wcwl-wishlist-new button {
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    position: relative;
}

    .woocommerce .yith-wcwl-wishlist-new button:active {
        top: 1px;
    }

/* Manage wishlists */
.woocommerce .wishlist_manage_table select {
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 35px;
    vertical-align: middle;
    margin-right: 10px;
}

.woocommerce table.wishlist_manage_table tfoot td {
    text-align: right;
    padding: 24px 12px;
}

.woocommerce .wishlist_manage_table tfoot button.submit-wishlist-changes {
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 3px;
    position: relative;
    line-height: normal;
}

    .woocommerce .wishlist_manage_table tfoot button.submit-wishlist-changes:active {
        top: 1px;
    }

.woocommerce .wishlist_manage_table tfoot a.create-new-wishlist {
    vertical-align: middle;
    line-height: normal;
    padding: 7px 24px;
}

/* Search wishlist */
.woocommerce .yith-wcwl-wishlist-search-form {
    padding: 20px 80px;
    border-bottom: 1px solid #e7e7e7;
}

    .woocommerce .yith-wcwl-wishlist-search-form:after {
        content: '';
        display: block;
        clear: both;
    }

    .woocommerce .yith-wcwl-wishlist-search-form #wishlist_search {
        min-width: 300px;
        border: 1px solid #ccc;
        border-radius: 3px;
        height: 35px;
        vertical-align: middle;
        float: left;
    }

    .woocommerce .yith-wcwl-wishlist-search-form button.wishlist-search-button {
        padding: 7px 24px;
        vertical-align: middle;
        border: 1px solid;
        border-radius: 3px;
        position: relative;
        line-height: normal;
        float: right;
    }

.woocommerce p.yith-wcwl-empty-search-result {
    padding: 50px 0;
    text-align: center;
}

.woocommerce .yith-wcwl-wishlist-search-form button.wishlist-search-button:active {
    top: 1px;
}

.woocommerce ul.yith-wcwl-search-results,
.woocommerce ul.user-wishlists {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .woocommerce ul.yith-wcwl-search-results > li {
        padding: 50px 80px;
        border-bottom: 1px solid #e7e7e7;
    }

        .woocommerce ul.yith-wcwl-search-results > li:after {
            content: '';
            display: block;
            clear: both;
        }

    .woocommerce ul.yith-wcwl-search-results .thumb {
        float: left;
        margin-right: 15px;
    }

    .woocommerce ul.yith-wcwl-search-results .user-details {
        overflow: hidden;
        padding-top: 15px;
    }

        .woocommerce ul.yith-wcwl-search-results .user-details span {
            display: block;
        }

            .woocommerce ul.yith-wcwl-search-results .user-details span.name {
                font-weight: 700;
            }

    .woocommerce ul.yith-wcwl-search-results .reuslt-details {
        float: left;
        width: 50%;
    }

    .woocommerce ul.yith-wcwl-search-results .result-wishlists {
        float: right;
        max-width: 50%;
        padding-top: 15px;
    }

.woocommerce .yith-wcwl-search-pagination {
    padding: 5px 0;
    text-align: center;
}

/* AJAX loading gif */
.yith-wcwl-add-to-wishlist .ajax-loading {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    display: inline !important;
    margin-left: 5px;
    vertical-align: middle;
    visibility: hidden;
    width: 16px !important;
    height: 16px !important;
}

/* Widget wishlist */
.widget_yith-wcwl-lists ul.dropdown li {
    padding: 0;
}

.widget_yith-wcwl-lists ul.dropdown > li a,
.widget_yith-wcwl-lists ul.dropdown ul.lists > li a {
    display: block;
    padding: 5px 15px;
}

.widget_yith-wcwl-lists ul.dropdown ul.lists > li a {
    padding: 5px 25px;
}

.widget_yith-wcwl-lists ul.dropdown > li.lists-section {
    border-bottom: 1px solid #e7e7e7;
}

.widget_yith-wcwl-lists ul.dropdown ul.lists {
    margin: 0;
}

/* font-awesome.css */

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */ @font-face {
    font-family: 'FontAwesome';
    src: url('/Content/assets/fontawesome/font/fontawesome-webfont.eot?v=4.3.0');
    src: url('/Content/assets/fontawesome/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('/Content/assets/fontawesome/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('/Content/assets/fontawesome/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('/Content/assets/fontawesome/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0)
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

    .fa-ul > li {
        position: relative
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

    .fa-li.fa-lg {
        left: -1.85714286em
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before, .fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before, .fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before, .fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before, .fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before, .fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before, .fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before, .fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before, .fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-rupee:before, .fa-inr:before {
    content: "\f156"
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "\f158"
}

.fa-won:before, .fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before, .fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before, .fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-genderless:before, .fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before, .fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

/* entyporegular.css */

@font-face {
    font-family: 'entyporegular';
    src: url('/Content/assets/font/entyporegular.eot?27765583');
    src: url('/Content/assets/font/entyporegular.eot?27765583#iefix') format('embedded-opentype'), url('/Content/assets/font/entyporegular.woff?27765583') format('woff'), url('/Content/assets/font/entyporegular.ttf?27765583') format('truetype'), url('/Content/assets/font/entyporegular.svg?27765583#entyporegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'entyporegular';
    src: url('../font/entyporegular.svg?27765583#entyporegular') format('svg');
  }
}
*/

[class^="entypo-"]:before, [class*=" entypo-"]:before {
    font-family: "entyporegular";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.entypo-note:before {
    content: '\e800';
}
/* '' */
.entypo-note-beamed:before {
    content: '\e801';
}
/* '' */
.entypo-music:before {
    content: '\e802';
}
/* '' */
.entypo-search:before {
    content: '\e803';
}
/* '' */
.entypo-flashlight:before {
    content: '\e804';
}
/* '' */
.entypo-mail:before {
    content: '\e805';
}
/* '' */
.entypo-heart:before {
    content: '\e806';
}
/* '' */
.entypo-heart-empty:before {
    content: '\e807';
}
/* '' */
.entypo-star:before {
    content: '\e808';
}
/* '' */
.entypo-star-empty:before {
    content: '\e809';
}
/* '' */
.entypo-user:before {
    content: '\e80a';
}
/* '' */
.entypo-users:before {
    content: '\e80b';
}
/* '' */
.entypo-user-add:before {
    content: '\e80c';
}
/* '' */
.entypo-video:before {
    content: '\e80d';
}
/* '' */
.entypo-picture:before {
    content: '\e80e';
}
/* '' */
.entypo-camera:before {
    content: '\e80f';
}
/* '' */
.entypo-layout:before {
    content: '\e810';
}
/* '' */
.entypo-menu:before {
    content: '\e811';
}
/* '' */
.entypo-check:before {
    content: '\e812';
}
/* '' */
.entypo-cancel:before {
    content: '\e813';
}
/* '' */
.entypo-cancel-circled:before {
    content: '\e814';
}
/* '' */
.entypo-cancel-squared:before {
    content: '\e815';
}
/* '' */
.entypo-plus:before {
    content: '\e816';
}
/* '' */
.entypo-plus-circled:before {
    content: '\e817';
}
/* '' */
.entypo-plus-squared:before {
    content: '\e818';
}
/* '' */
.entypo-minus:before {
    content: '\e819';
}
/* '' */
.entypo-minus-circled:before {
    content: '\e81a';
}
/* '' */
.entypo-minus-squared:before {
    content: '\e81b';
}
/* '' */
.entypo-help:before {
    content: '\e81c';
}
/* '' */
.entypo-help-circled:before {
    content: '\e81d';
}
/* '' */
.entypo-info:before {
    content: '\e81e';
}
/* '' */
.entypo-info-circled:before {
    content: '\e81f';
}
/* '' */
.entypo-back:before {
    content: '\e820';
}
/* '' */
.entypo-home:before {
    content: '\e821';
}
/* '' */
.entypo-link:before {
    content: '\e822';
}
/* '' */
.entypo-attach:before {
    content: '\e823';
}
/* '' */
.entypo-lock:before {
    content: '\e824';
}
/* '' */
.entypo-lock-open:before {
    content: '\e825';
}
/* '' */
.entypo-eye:before {
    content: '\e826';
}
/* '' */
.entypo-tag:before {
    content: '\e827';
}
/* '' */
.entypo-bookmark:before {
    content: '\e828';
}
/* '' */
.entypo-bookmarks:before {
    content: '\e829';
}
/* '' */
.entypo-flag:before {
    content: '\e82a';
}
/* '' */
.entypo-thumbs-up:before {
    content: '\e82b';
}
/* '' */
.entypo-thumbs-down:before {
    content: '\e82c';
}
/* '' */
.entypo-download:before {
    content: '\e82d';
}
/* '' */
.entypo-upload:before {
    content: '\e82e';
}
/* '' */
.entypo-upload-cloud:before {
    content: '\e82f';
}
/* '' */
.entypo-reply:before {
    content: '\e830';
}
/* '' */
.entypo-reply-all:before {
    content: '\e831';
}
/* '' */
.entypo-forward:before {
    content: '\e832';
}
/* '' */
.entypo-quote:before {
    content: '\e833';
}
/* '' */
.entypo-code:before {
    content: '\e834';
}
/* '' */
.entypo-export:before {
    content: '\e835';
}
/* '' */
.entypo-pencil:before {
    content: '\e836';
}
/* '' */
.entypo-feather:before {
    content: '\e837';
}
/* '' */
.entypo-print:before {
    content: '\e838';
}
/* '' */
.entypo-retweet:before {
    content: '\e839';
}
/* '' */
.entypo-keyboard:before {
    content: '\e83a';
}
/* '' */
.entypo-comment:before {
    content: '\e83b';
}
/* '' */
.entypo-chat:before {
    content: '\e83c';
}
/* '' */
.entypo-bell:before {
    content: '\e83d';
}
/* '' */
.entypo-attention:before {
    content: '\e83e';
}
/* '' */
.entypo-alert:before {
    content: '\e83f';
}
/* '' */
.entypo-vcard:before {
    content: '\e840';
}
/* '' */
.entypo-address:before {
    content: '\e841';
}
/* '' */
.entypo-location:before {
    content: '\e842';
}
/* '' */
.entypo-map:before {
    content: '\e843';
}
/* '' */
.entypo-direction:before {
    content: '\e844';
}
/* '' */
.entypo-compass:before {
    content: '\e845';
}
/* '' */
.entypo-cup:before {
    content: '\e846';
}
/* '' */
.entypo-trash:before {
    content: '\e847';
}
/* '' */
.entypo-doc:before {
    content: '\e848';
}
/* '' */
.entypo-docs:before {
    content: '\e849';
}
/* '' */
.entypo-doc-landscape:before {
    content: '\e84a';
}
/* '' */
.entypo-doc-text:before {
    content: '\e84b';
}
/* '' */
.entypo-doc-text-inv:before {
    content: '\e84c';
}
/* '' */
.entypo-newspaper:before {
    content: '\e84d';
}
/* '' */
.entypo-book-open:before {
    content: '\e84e';
}
/* '' */
.entypo-book:before {
    content: '\e84f';
}
/* '' */
.entypo-folder:before {
    content: '\e850';
}
/* '' */
.entypo-archive:before {
    content: '\e851';
}
/* '' */
.entypo-box:before {
    content: '\e852';
}
/* '' */
.entypo-rss:before {
    content: '\e853';
}
/* '' */
.entypo-phone:before {
    content: '\e854';
}
/* '' */
.entypo-cog:before {
    content: '\e855';
}
/* '' */
.entypo-tools:before {
    content: '\e856';
}
/* '' */
.entypo-share:before {
    content: '\e857';
}
/* '' */
.entypo-shareable:before {
    content: '\e858';
}
/* '' */
.entypo-basket:before {
    content: '\e859';
}
/* '' */
.entypo-bag:before {
    content: '\e85a';
}
/* '' */
.entypo-calendar:before {
    content: '\e85b';
}
/* '' */
.entypo-login:before {
    content: '\e85c';
}
/* '' */
.entypo-logout:before {
    content: '\e85d';
}
/* '' */
.entypo-mic:before {
    content: '\e85e';
}
/* '' */
.entypo-mute:before {
    content: '\e85f';
}
/* '' */
.entypo-sound:before {
    content: '\e860';
}
/* '' */
.entypo-volume:before {
    content: '\e861';
}
/* '' */
.entypo-clock:before {
    content: '\e862';
}
/* '' */
.entypo-hourglass:before {
    content: '\e863';
}
/* '' */
.entypo-lamp:before {
    content: '\e864';
}
/* '' */
.entypo-light-down:before {
    content: '\e865';
}
/* '' */
.entypo-light-up:before {
    content: '\e866';
}
/* '' */
.entypo-adjust:before {
    content: '\e867';
}
/* '' */
.entypo-block:before {
    content: '\e868';
}
/* '' */
.entypo-resize-full:before {
    content: '\e869';
}
/* '' */
.entypo-resize-small:before {
    content: '\e86a';
}
/* '' */
.entypo-popup:before {
    content: '\e86b';
}
/* '' */
.entypo-publish:before {
    content: '\e86c';
}
/* '' */
.entypo-window:before {
    content: '\e86d';
}
/* '' */
.entypo-arrow-combo:before {
    content: '\e86e';
}
/* '' */
.entypo-down-circled:before {
    content: '\e86f';
}
/* '' */
.entypo-left-circled:before {
    content: '\e870';
}
/* '' */
.entypo-right-circled:before {
    content: '\e871';
}
/* '' */
.entypo-up-circled:before {
    content: '\e872';
}
/* '' */
.entypo-down-open:before {
    content: '\e873';
}
/* '' */
.entypo-left-open:before {
    content: '\e874';
}
/* '' */
.entypo-right-open:before {
    content: '\e875';
}
/* '' */
.entypo-up-open:before {
    content: '\e876';
}
/* '' */
.entypo-down-open-mini:before {
    content: '\e877';
}
/* '' */
.entypo-left-open-mini:before {
    content: '\e878';
}
/* '' */
.entypo-right-open-mini:before {
    content: '\e879';
}
/* '' */
.entypo-up-open-mini:before {
    content: '\e87a';
}
/* '' */
.entypo-down-open-big:before {
    content: '\e87b';
}
/* '' */
.entypo-left-open-big:before {
    content: '\e87c';
}
/* '' */
.entypo-right-open-big:before {
    content: '\e87d';
}
/* '' */
.entypo-up-open-big:before {
    content: '\e87e';
}
/* '' */
.entypo-down:before {
    content: '\e87f';
}
/* '' */
.entypo-left:before {
    content: '\e880';
}
/* '' */
.entypo-right:before {
    content: '\e881';
}
/* '' */
.entypo-up:before {
    content: '\e882';
}
/* '' */
.entypo-down-dir:before {
    content: '\e883';
}
/* '' */
.entypo-left-dir:before {
    content: '\e884';
}
/* '' */
.entypo-right-dir:before {
    content: '\e885';
}
/* '' */
.entypo-up-dir:before {
    content: '\e886';
}
/* '' */
.entypo-down-bold:before {
    content: '\e887';
}
/* '' */
.entypo-left-bold:before {
    content: '\e888';
}
/* '' */
.entypo-right-bold:before {
    content: '\e889';
}
/* '' */
.entypo-up-bold:before {
    content: '\e88a';
}
/* '' */
.entypo-down-thin:before {
    content: '\e88b';
}
/* '' */
.entypo-left-thin:before {
    content: '\e88c';
}
/* '' */
.entypo-right-thin:before {
    content: '\e88d';
}
/* '' */
.entypo-up-thin:before {
    content: '\e88e';
}
/* '' */
.entypo-ccw:before {
    content: '\e88f';
}
/* '' */
.entypo-cw:before {
    content: '\e890';
}
/* '' */
.entypo-arrows-ccw:before {
    content: '\e891';
}
/* '' */
.entypo-level-down:before {
    content: '\e892';
}
/* '' */
.entypo-level-up:before {
    content: '\e893';
}
/* '' */
.entypo-shuffle:before {
    content: '\e894';
}
/* '' */
.entypo-loop:before {
    content: '\e895';
}
/* '' */
.entypo-switch:before {
    content: '\e896';
}
/* '' */
.entypo-play:before {
    content: '\e897';
}
/* '' */
.entypo-stop:before {
    content: '\e898';
}
/* '' */
.entypo-pause:before {
    content: '\e899';
}
/* '' */
.entypo-record:before {
    content: '\e89a';
}
/* '' */
.entypo-to-end:before {
    content: '\e89b';
}
/* '' */
.entypo-to-start:before {
    content: '\e89c';
}
/* '' */
.entypo-fast-forward:before {
    content: '\e89d';
}
/* '' */
.entypo-fast-backward:before {
    content: '\e89e';
}
/* '' */
.entypo-progress-0:before {
    content: '\e89f';
}
/* '' */
.entypo-progress-1:before {
    content: '\e8a0';
}
/* '' */
.entypo-progress-2:before {
    content: '\e8a1';
}
/* '' */
.entypo-progress-3:before {
    content: '\e8a2';
}
/* '' */
.entypo-target:before {
    content: '\e8a3';
}
/* '' */
.entypo-palette:before {
    content: '\e8a4';
}
/* '' */
.entypo-list:before {
    content: '\e8a5';
}
/* '' */
.entypo-list-add:before {
    content: '\e8a6';
}
/* '' */
.entypo-signal:before {
    content: '\e8a7';
}
/* '' */
.entypo-trophy:before {
    content: '\e8a8';
}
/* '' */
.entypo-battery:before {
    content: '\e8a9';
}
/* '' */
.entypo-back-in-time:before {
    content: '\e8aa';
}
/* '' */
.entypo-monitor:before {
    content: '\e8ab';
}
/* '' */
.entypo-mobile:before {
    content: '\e8ac';
}
/* '' */
.entypo-network:before {
    content: '\e8ad';
}
/* '' */
.entypo-cd:before {
    content: '\e8ae';
}
/* '' */
.entypo-inbox:before {
    content: '\e8af';
}
/* '' */
.entypo-install:before {
    content: '\e8b0';
}
/* '' */
.entypo-globe:before {
    content: '\e8b1';
}
/* '' */
.entypo-cloud:before {
    content: '\e8b2';
}
/* '' */
.entypo-cloud-thunder:before {
    content: '\e8b3';
}
/* '' */
.entypo-flash:before {
    content: '\e8b4';
}
/* '' */
.entypo-moon:before {
    content: '\e8b5';
}
/* '' */
.entypo-flight:before {
    content: '\e8b6';
}
/* '' */
.entypo-paper-plane:before {
    content: '\e8b7';
}
/* '' */
.entypo-leaf:before {
    content: '\e8b8';
}
/* '' */
.entypo-lifebuoy:before {
    content: '\e8b9';
}
/* '' */
.entypo-mouse:before {
    content: '\e8ba';
}
/* '' */
.entypo-briefcase:before {
    content: '\e8bb';
}
/* '' */
.entypo-suitcase:before {
    content: '\e8bc';
}
/* '' */
.entypo-dot:before {
    content: '\e8bd';
}
/* '' */
.entypo-dot-2:before {
    content: '\e8be';
}
/* '' */
.entypo-dot-3:before {
    content: '\e8bf';
}
/* '' */
.entypo-brush:before {
    content: '\e8c0';
}
/* '' */
.entypo-magnet:before {
    content: '\e8c1';
}
/* '' */
.entypo-infinity:before {
    content: '\e8c2';
}
/* '' */
.entypo-erase:before {
    content: '\e8c3';
}
/* '' */
.entypo-chart-pie:before {
    content: '\e8c4';
}
/* '' */
.entypo-chart-line:before {
    content: '\e8c5';
}
/* '' */
.entypo-chart-bar:before {
    content: '\e8c6';
}
/* '' */
.entypo-chart-area:before {
    content: '\e8c7';
}
/* '' */
.entypo-tape:before {
    content: '\e8c8';
}
/* '' */
.entypo-graduation-cap:before {
    content: '\e8c9';
}
/* '' */
.entypo-language:before {
    content: '\e8ca';
}
/* '' */
.entypo-ticket:before {
    content: '\e8cb';
}
/* '' */
.entypo-water:before {
    content: '\e8cc';
}
/* '' */
.entypo-droplet:before {
    content: '\e8cd';
}
/* '' */
.entypo-air:before {
    content: '\e8ce';
}
/* '' */
.entypo-credit-card:before {
    content: '\e8cf';
}
/* '' */
.entypo-floppy:before {
    content: '\e8d0';
}
/* '' */
.entypo-clipboard:before {
    content: '\e8d1';
}
/* '' */
.entypo-megaphone:before {
    content: '\e8d2';
}
/* '' */
.entypo-database:before {
    content: '\e8d3';
}
/* '' */
.entypo-drive:before {
    content: '\e8d4';
}
/* '' */
.entypo-bucket:before {
    content: '\e8d5';
}
/* '' */
.entypo-thermometer:before {
    content: '\e8d6';
}
/* '' */
.entypo-key:before {
    content: '\e8d7';
}
/* '' */
.entypo-flow-cascade:before {
    content: '\e8d8';
}
/* '' */
.entypo-flow-branch:before {
    content: '\e8d9';
}
/* '' */
.entypo-flow-tree:before {
    content: '\e8da';
}
/* '' */
.entypo-flow-line:before {
    content: '\e8db';
}
/* '' */
.entypo-flow-parallel:before {
    content: '\e8dc';
}
/* '' */
.entypo-rocket:before {
    content: '\e8dd';
}
/* '' */
.entypo-gauge:before {
    content: '\e8de';
}
/* '' */
.entypo-traffic-cone:before {
    content: '\e8df';
}
/* '' */
.entypo-cc:before {
    content: '\e8e0';
}
/* '' */
.entypo-cc-by:before {
    content: '\e8e1';
}
/* '' */
.entypo-cc-nc:before {
    content: '\e8e2';
}
/* '' */
.entypo-cc-nc-eu:before {
    content: '\e8e3';
}
/* '' */
.entypo-cc-nc-jp:before {
    content: '\e8e4';
}
/* '' */
.entypo-cc-sa:before {
    content: '\e8e5';
}
/* '' */
.entypo-cc-nd:before {
    content: '\e8e6';
}
/* '' */
.entypo-cc-pd:before {
    content: '\e8e7';
}
/* '' */
.entypo-cc-zero:before {
    content: '\e8e8';
}
/* '' */
.entypo-cc-share:before {
    content: '\e8e9';
}
/* '' */
.entypo-cc-remix:before {
    content: '\e8ea';
}
/* '' */
.entypo-github:before {
    content: '\e8eb';
}
/* '' */
.entypo-github-circled:before {
    content: '\e8ec';
}
/* '' */
.entypo-flickr:before {
    content: '\e8ed';
}
/* '' */
.entypo-flickr-circled:before {
    content: '\e8ee';
}
/* '' */
.entypo-vimeo:before {
    content: '\e8ef';
}
/* '' */
.entypo-vimeo-circled:before {
    content: '\e8f0';
}
/* '' */
.entypo-twitter:before {
    content: '\e8f1';
}
/* '' */
.entypo-twitter-circled:before {
    content: '\e8f2';
}
/* '' */
.entypo-facebook:before {
    content: '\e8f3';
}
/* '' */
.entypo-facebook-circled:before {
    content: '\e8f4';
}
/* '' */
.entypo-facebook-squared:before {
    content: '\e8f5';
}
/* '' */
.entypo-gplus:before {
    content: '\e8f6';
}
/* '' */
.entypo-gplus-circled:before {
    content: '\e8f7';
}
/* '' */
.entypo-pinterest:before {
    content: '\e8f8';
}
/* '' */
.entypo-pinterest-circled:before {
    content: '\e8f9';
}
/* '' */
.entypo-tumblr:before {
    content: '\e8fa';
}
/* '' */
.entypo-tumblr-circled:before {
    content: '\e8fb';
}
/* '' */
.entypo-linkedin:before {
    content: '\e8fc';
}
/* '' */
.entypo-linkedin-circled:before {
    content: '\e8fd';
}
/* '' */
.entypo-dribbble:before {
    content: '\e8fe';
}
/* '' */
.entypo-dribbble-circled:before {
    content: '\e8ff';
}
/* '' */
.entypo-stumbleupon:before {
    content: '\e900';
}
/* '' */
.entypo-stumbleupon-circled:before {
    content: '\e901';
}
/* '' */
.entypo-lastfm:before {
    content: '\e902';
}
/* '' */
.entypo-lastfm-circled:before {
    content: '\e903';
}
/* '' */
.entypo-rdio:before {
    content: '\e904';
}
/* '' */
.entypo-rdio-circled:before {
    content: '\e905';
}
/* '' */
.entypo-spotify:before {
    content: '\e906';
}
/* '' */
.entypo-spotify-circled:before {
    content: '\e907';
}
/* '' */
.entypo-qq:before {
    content: '\e908';
}
/* '' */
.entypo-instagram:before {
    content: '\e909';
}
/* '' */
.entypo-dropbox:before {
    content: '\e90a';
}
/* '' */
.entypo-evernote:before {
    content: '\e90b';
}
/* '' */
.entypo-flattr:before {
    content: '\e90c';
}
/* '' */
.entypo-skype:before {
    content: '\e90d';
}
/* '' */
.entypo-skype-circled:before {
    content: '\e90e';
}
/* '' */
.entypo-renren:before {
    content: '\e90f';
}
/* '' */
.entypo-sina-weibo:before {
    content: '\e910';
}
/* '' */
.entypo-paypal:before {
    content: '\e911';
}
/* '' */
.entypo-picasa:before {
    content: '\e912';
}
/* '' */
.entypo-soundcloud:before {
    content: '\e913';
}
/* '' */
.entypo-mixi:before {
    content: '\e914';
}
/* '' */
.entypo-behance:before {
    content: '\e915';
}
/* '' */
.entypo-google-circles:before {
    content: '\e916';
}
/* '' */
.entypo-vkontakte:before {
    content: '\e917';
}
/* '' */
.entypo-smashing:before {
    content: '\e918';
}
/* '' */
.entypo-sweden:before {
    content: '\e919';
}
/* '' */
.entypo-db-shape:before {
    content: '\e91a';
}
/* '' */
.entypo-logo-db:before {
    content: '\e91b';
}
/* '' */

/* bootstrap.css */


body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

    audio:not([controls]) {
        display: none;
        height: 0
    }

[hidden], template {
    display: none
}

a {
    background: transparent
}

    a:active, a:hover {
        outline: 0
    }

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace,monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

    button[disabled], html input[disabled] {
        cursor: default
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0
    }

input {
    line-height: normal
}

    input[type="checkbox"], input[type="radio"] {
        box-sizing: border-box;
        padding: 0
    }

    input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
        height: auto
    }

    input[type="search"] {
        -webkit-appearance: textfield;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box
    }

        input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none
        }

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

@media print {
    * {
        text-shadow: none !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

        a[href]:after {
            content: " (" attr(href) ")"
        }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="javascript:"]:after, a[href^="#"]:after {
        content: ""
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    select {
        background: #fff !important
    }

    .navbar {
        display: none
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table-bordered th, .table-bordered td {
        border: 1px solid #ddd !important
    }
}

font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/Content/assets/font/glyphicons-halflings-regular.eot');
    src: url('/Content/assets/font/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('/Content/assets/font/glyphicons-halflings-regular.woff') format('woff'),url('/Content/assets/font/glyphicons-halflings-regular.ttf') format('truetype'),url('/Content/assets/font/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\2a"
}

.glyphicon-plus:before {
    content: "\2b"
}

.glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}


input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}


figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 0
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    width: 100% \9;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
        font-weight: normal;
        line-height: 1;
        color: #777
    }

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

    h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
        font-size: 65%
    }

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

    h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
        font-size: 75%
    }

h1, .h1 {
    font-size: 36px
}

h2, .h2 {
    font-size: 30px
}

h3, .h3 {
    font-size: 24px
}

h4, .h4 {
    font-size: 18px
}

h5, .h5 {
    font-size: 14px
}

h6, .h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width:768px) {
    .lead {
        font-size: 21px
    }
}

small, .small {
    font-size: 85%
}

cite {
    font-style: normal
}

mark, .mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #222
}

a.text-primary:hover {
    color: #080808
}

.text-success {
    color: #3c763d
}

a.text-success:hover {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:hover {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:hover {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:hover {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #222
}

a.bg-primary:hover {
    background-color: #080808
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:hover {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:hover {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:hover {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:hover {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px
}

    ul ul, ol ul, ul ol, ol ol {
        margin-bottom: 0
    }

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

    .list-inline > li {
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px
    }

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt, dd {
    line-height: 1.42857143
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[title], abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

    blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
        margin-bottom: 0
    }

    blockquote footer, blockquote small, blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.42857143;
        color: #777
    }

        blockquote footer:before, blockquote small:before, blockquote .small:before {
            content: '\2014 \00A0'
        }

    .blockquote-reverse, blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        border-right: 5px solid #eee;
        border-left: 0;
        text-align: right
    }

        .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
            content: ''
        }

        .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
            content: '\00A0 \2014'
        }

    blockquote:before, blockquote:after {
        content: ""
    }

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143
}

code, kbd, pre, samp {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 0
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 0;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25)
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        box-shadow: none
    }

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 0
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

/*.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}*/

@media (min-width:768px) {
    .container {
        width: 750px
    }
}

/*@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}*/

/*.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}*/

/*.row {
    margin-left: -15px;
    margin-right: -15px
}*/

/*.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}*/

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width:768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width:992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width:1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

    .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: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd
    }

    .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
        border-top: 0
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd
    }

    .table .table {
        background-color: #fff
    }

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

    .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd
    }

    .table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
        border-bottom-width: 2px
    }

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column
}

table td[class*="col-"], table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
    background-color: #f5f5f5
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #dff0d8
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #d9edf7
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: #fcf8e3
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #f2dede
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
        -webkit-overflow-scrolling: touch
    }

        .table-responsive > .table {
            margin-bottom: 0
        }

            .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap
            }

        .table-responsive > .table-bordered {
            border: 0
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0
            }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type="file"] {
    display: block
}

input[type="range"] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: none
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)
    }

    .form-control::-moz-placeholder {
        color: #777;
        opacity: 1
    }

    .form-control:-ms-input-placeholder {
        color: #777
    }

    .form-control::-webkit-input-placeholder {
        color: #777
    }

    .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #eee;
        opacity: 1
    }

textarea.form-control {
    height: auto
}

input[type="search"] {
    -webkit-appearance: none
}

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
    line-height: 34px;
    line-height: 1.42857143 \0
}

    input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm {
        line-height: 30px
    }

    input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg {
        line-height: 46px
    }

.form-group {
    margin-bottom: 15px
}

.radio, .checkbox {
    position: relative;
    display: block;
    min-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px
}

    .radio label, .checkbox label {
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: normal;
        cursor: pointer
    }

    .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
        position: absolute;
        margin-left: -20px;
        margin-top: 4px \9
    }

    .radio + .radio, .checkbox + .checkbox {
        margin-top: -5px
    }

.radio-inline, .checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer
}

    .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 10px
    }

input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed
}

.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

    .form-control-static.input-lg, .form-control-static.input-sm {
        padding-left: 0;
        padding-right: 0
    }

.input-sm, .form-horizontal .form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

textarea.input-sm, select[multiple].input-sm {
    height: auto
}

.input-lg, .form-horizontal .form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 0
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

textarea.input-lg, select[multiple].input-lg {
    height: auto
}

.has-feedback {
    position: relative
}

    .has-feedback .form-control {
        padding-right: 42.5px
    }

.form-control-feedback {
    position: absolute;
    top: 25px;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center
}

.input-lg + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
}

    .has-success .form-control:focus {
        border-color: #2b542c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168
    }

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
}

    .has-warning .form-control:focus {
        border-color: #66512c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b
    }

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
}

    .has-error .form-control:focus {
        border-color: #843534;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483
    }

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

        .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
            width: auto
        }

        .form-inline .input-group > .form-control {
            width: 100%
        }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio, .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

        .form-inline .radio label, .form-inline .checkbox label {
            padding-left: 0
        }

        .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio, .form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    top: 0;
    right: 15px
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.3px
    }
}

@media (min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .btn:focus, .btn:active:focus, .btn.active:focus {
        outline: none
    }

    .btn:hover, .btn:focus {
        color: #333;
        text-decoration: none
    }

    .btn:active, .btn.active {
        outline: 0;
        background-image: none;
        -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.125)
    }

    .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
        cursor: not-allowed;
        pointer-events: none;
        opacity: .65;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none
    }

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

    .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad
    }

    .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
        background-image: none
    }

    .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
        background-color: #fff;
        border-color: #ccc
    }

    .btn-default .badge {
        color: #fff;
        background-color: #333
    }

.btn-primary {
    color: #fff;
    background-color: #222;
    border-color: #151515
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #080808;
        border-color: #000
    }

    .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        background-image: none
    }

    .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
        background-color: #222;
        border-color: #151515
    }

    .btn-primary .badge {
        color: #222;
        background-color: #fff
    }

.btn-success {
    color: #fff;
    background-color: #0fbd71;
    border-color: #0da563
}

    .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #0b8e55;
        border-color: #096d41
    }

    .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
        background-image: none
    }

    .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
        background-color: #0fbd71;
        border-color: #0da563
    }

    .btn-success .badge {
        color: #0fbd71;
        background-color: #fff
    }

.btn-info {
    color: #fff;
    background-color: #00aeef;
    border-color: #009bd6
}

    .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #0089bc;
        border-color: #006f98
    }

    .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
        background-image: none
    }

    .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
        background-color: #00aeef;
        border-color: #009bd6
    }

    .btn-info .badge {
        color: #00aeef;
        background-color: #fff
    }

.btn-warning {
    color: #fff;
    background-color: #f7d227;
    border-color: #f6cd0e
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #e3bc08;
        border-color: #c09f07
    }

    .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
        background-image: none
    }

    .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
        background-color: #f7d227;
        border-color: #f6cd0e
    }

    .btn-warning .badge {
        color: #f7d227;
        background-color: #fff
    }

.btn-danger {
    color: #fff;
    background-color: #dd1f26;
    border-color: #c71c22
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #b0191e;
        border-color: #911419
    }

    .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
        background-image: none
    }

    .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
        background-color: #dd1f26;
        border-color: #c71c22
    }

    .btn-danger .badge {
        color: #dd1f26;
        background-color: #fff
    }

.btn-link {
    color: #222;
    font-weight: normal;
    cursor: pointer;
    border-radius: 0
}

    .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
            border-color: transparent
        }

            .btn-link:hover, .btn-link:focus {
                color: #000;
                text-decoration: underline;
                background-color: transparent
            }

            .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
                color: #777;
                text-decoration: none
            }

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 0
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0
}

.btn-block {
    display: block;
    width: 100%
}

    .btn-block + .btn-block {
        margin-top: 5px
    }

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

    .fade.in {
        opacity: 1
    }

.collapse {
    display: none
}

    .collapse.in {
        display: block
    }

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    -o-transition: height .35s ease;
    transition: height .35s ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    background-clip: padding-box
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap
    }

        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            text-decoration: none;
            color: #262626;
            background-color: #f5f5f5
        }

    .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
        color: #fff;
        text-decoration: none;
        outline: 0;
        background-color: #222
    }

    .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
        color: #777
    }

        .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
            cursor: not-allowed
        }

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

    .btn-group > .btn, .btn-group-vertical > .btn {
        position: relative;
        float: left
    }

        .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
            z-index: 2
        }

        .btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
            outline: 0
        }

    .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
        margin-left: -1px
    }

.btn-toolbar {
    margin-left: -5px
}

    .btn-toolbar .btn-group, .btn-toolbar .input-group {
        float: left
    }

    .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
        margin-left: 5px
    }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0
    }

    .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

    .btn-group > .btn-group:last-child > .btn:first-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125)
}

    .btn-group.open .dropdown-toggle.btn-link {
        -webkit-box-shadow: none;
        box-shadow: none
    }

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

    .btn-group-vertical > .btn-group > .btn {
        float: none
    }

    .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0
    }

    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
        border-top-left-radius: 0
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-right-radius: 0;
        border-top-left-radius: 0
    }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

    .btn-group-justified > .btn, .btn-group-justified > .btn-group {
        float: none;
        display: table-cell;
        width: 1%
    }

        .btn-group-justified > .btn-group .btn {
            width: 100%
        }

        .btn-group-justified > .btn-group .dropdown-menu {
            left: auto
        }

[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0)
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

    .input-group[class*="col-"] {
        float: none;
        padding-left: 0;
        padding-right: 0
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0
    }

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 0
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell
}

    .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
        border-radius: 0
    }

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 0
}

    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 0
    }

    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 0
    }

    .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
        margin-top: 0
    }

    .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

    .input-group-addon:first-child {
        border-right: 0
    }

    .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

    .input-group-addon:last-child {
        border-left: 0
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

    .input-group-btn > .btn {
        position: relative
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px
        }

        .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
            z-index: 2
        }

    .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
        margin-right: -1px
    }

    .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
        margin-left: -1px
    }

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

    .nav > li {
        position: relative;
        display: block
    }

        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px
        }

            .nav > li > a:hover, .nav > li > a:focus {
                text-decoration: none;
                background-color: #eee
            }

        .nav > li.disabled > a {
            color: #777
        }

            .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
                color: #777;
                text-decoration: none;
                background-color: transparent;
                cursor: not-allowed
            }

    .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
        background-color: #eee;
        border-color: #222
    }

    .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5
    }

    .nav > li > a > img {
        max-width: none
    }

.nav-tabs {
    border-bottom: 1px solid #ddd
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 0 0 0 0
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
            color: #555;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
            cursor: default
        }

    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0
    }

        .nav-tabs.nav-justified > li {
            float: none
        }

            .nav-tabs.nav-justified > li > a {
                text-align: center;
                margin-bottom: 5px
            }

        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto
        }

@media (min-width:768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 0
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 0 0 0 0
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-pills > li {
    float: left
}

    .nav-pills > li > a {
        border-radius: 0
    }

    .nav-pills > li + li {
        margin-left: 2px
    }

    .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #222
    }

.nav-stacked > li {
    float: none
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0
    }

.nav-justified {
    width: 100%
}

    .nav-justified > li {
        float: none
    }

        .nav-justified > li > a {
            text-align: center;
            margin-bottom: 5px
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto
    }

@media (min-width:768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-justified > li > a {
            margin-bottom: 0
        }
}

.nav-tabs-justified {
    border-bottom: 0
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
        border: 1px solid #ddd
    }

@media (min-width:768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 0 0 0 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media (min-width:768px) {
    .navbar {
        border-radius: 0
    }
}

@media (min-width:768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    -webkit-overflow-scrolling: touch
}

    .navbar-collapse.in {
        overflow-y: auto
    }

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important
        }

        .navbar-collapse.in {
            overflow-y: visible
        }

    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media (max-width:480px) and (orientation:landscape) {
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width:768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@media (min-width:768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px
}

    .navbar-brand:hover, .navbar-brand:focus {
        text-decoration: none
    }

@media (min-width:768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0
}

    .navbar-toggle:focus {
        outline: 0
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px
        }

@media (min-width:768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.5px -15px
}

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px
    }

@media (max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }

        .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px
        }

            .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none
            }
}

@media (min-width:768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

        .navbar-nav > li {
            float: left
        }

            .navbar-nav > li > a {
                padding-top: 15px;
                padding-bottom: 15px
            }

        .navbar-nav.navbar-right:last-child {
            margin-right: -15px
        }
}

@media (min-width:768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);
    margin-top: 8px;
    margin-bottom: 8px
}

@media (min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

        .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
            width: auto
        }

        .navbar-form .input-group > .form-control {
            width: 100%
        }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio, .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

        .navbar-form .radio label, .navbar-form .checkbox label {
            padding-left: 0
        }

        .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0
        }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }
}

@media (min-width:768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .navbar-form.navbar-right:last-child {
            margin-right: -15px
        }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px
    }

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width:768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }

        .navbar-text.navbar-right:last-child {
            margin-right: 0
        }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

    .navbar-default .navbar-brand {
        color: #777
    }

        .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
            color: #5e5e5e;
            background-color: transparent
        }

    .navbar-default .navbar-text {
        color: #777
    }

    .navbar-default .navbar-nav > li > a {
        color: #777
    }

        .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
            color: #333;
            background-color: transparent
        }

    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
        color: #ccc;
        background-color: transparent
    }

    .navbar-default .navbar-toggle {
        border-color: #ddd
    }

        .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
            background-color: #ddd
        }

        .navbar-default .navbar-toggle .icon-bar {
            background-color: #888
        }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border-color: #e7e7e7
    }

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
        background-color: #e7e7e7;
        color: #555
    }

@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #333;
            background-color: transparent
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

    .navbar-default .navbar-link:hover {
        color: #333
    }

.navbar-default .btn-link {
    color: #777
}

    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
        color: #333
    }

    .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
        color: #ccc
    }

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

    .navbar-inverse .navbar-brand {
        color: #777
    }

        .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
            color: #fff;
            background-color: transparent
        }

    .navbar-inverse .navbar-text {
        color: #777
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #777
    }

        .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
            color: #fff;
            background-color: transparent
        }

    .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
        color: #444;
        background-color: transparent
    }

    .navbar-inverse .navbar-toggle {
        border-color: #333
    }

        .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
            background-color: #333
        }

        .navbar-inverse .navbar-toggle .icon-bar {
            background-color: #fff
        }

    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
        border-color: #101010
    }

    .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
        background-color: #080808;
        color: #fff
    }

@media (max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #777
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #fff;
            background-color: transparent
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #777
}

    .navbar-inverse .navbar-link:hover {
        color: #fff
    }

.navbar-inverse .btn-link {
    color: #777
}

    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
        color: #fff
    }

    .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
        color: #444
    }

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 0
}

    .breadcrumb > li {
        display: inline-block
    }

        .breadcrumb > li + li:before {
            content: "/\00a0";
            padding: 0 5px;
            color: #ccc
        }

    .breadcrumb > .active {
        color: #777
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 0
}

    .pagination > li {
        display: inline
    }

        .pagination > li > a, .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            color: #222;
            background-color: #fff;
            border: 1px solid #ddd;
            margin-left: -1px
        }

        .pagination > li:first-child > a, .pagination > li:first-child > span {
            margin-left: 0;
            border-bottom-left-radius: 0;
            border-top-left-radius: 0
        }

        .pagination > li:last-child > a, .pagination > li:last-child > span {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0
        }

        .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
            color: #000;
            background-color: #eee;
            border-color: #ddd
        }

    .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
        z-index: 2;
        color: #fff;
        background-color: #222;
        border-color: #222;
        cursor: default
    }

    .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
        color: #777;
        background-color: #fff;
        border-color: #ddd;
        cursor: not-allowed
    }

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

    .pager li {
        display: inline
    }

        .pager li > a, .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px
        }

            .pager li > a:hover, .pager li > a:focus {
                text-decoration: none;
                background-color: #eee
            }

    .pager .next > a, .pager .next > span {
        float: right
    }

    .pager .previous > a, .pager .previous > span {
        float: left
    }

    .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
        color: #777;
        background-color: #fff;
        cursor: not-allowed
    }

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

    .label-default[href]:hover, .label-default[href]:focus {
        background-color: #5e5e5e
    }

.label-primary {
    background-color: #222
}

    .label-primary[href]:hover, .label-primary[href]:focus {
        background-color: #080808
    }

.label-success {
    background-color: #0fbd71
}

    .label-success[href]:hover, .label-success[href]:focus {
        background-color: #0b8e55
    }

.label-info {
    background-color: #00aeef
}

    .label-info[href]:hover, .label-info[href]:focus {
        background-color: #0089bc
    }

.label-warning {
    background-color: #000
}

    .label-warning[href]:hover, .label-warning[href]:focus {
        background-color: #e3bc08
    }

.label-danger {
    background-color: #dd1f26
}

    .label-danger[href]:hover, .label-danger[href]:focus {
        background-color: #b0191e
    }

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px
}

    .badge:empty {
        display: none
    }

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #222;
    background-color: #fff
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

    .jumbotron h1, .jumbotron .h1 {
        color: inherit
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 200
    }

    .jumbotron > hr {
        border-top-color: #d5d5d5
    }

.container .jumbotron {
    border-radius: 0
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

    .thumbnail > img, .thumbnail a > img {
        margin-left: auto;
        margin-right: auto
    }

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
    border-color: #222
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 0
}

    .alert h4 {
        margin-top: 0;
        color: inherit
    }

    .alert .alert-link {
        font-weight: bold
    }

    .alert > p, .alert > ul {
        margin-bottom: 0
    }

        .alert > p + p {
            margin-top: 5px
        }

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

    .alert-dismissable .close, .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit
    }

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

    .alert-success hr {
        border-top-color: #c9e2b3
    }

    .alert-success .alert-link {
        color: #2b542c
    }

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

    .alert-info hr {
        border-top-color: #a6e1ec
    }

    .alert-info .alert-link {
        color: #245269
    }

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

    .alert-warning hr {
        border-top-color: #f7e1b5
    }

    .alert-warning .alert-link {
        color: #66512c
    }

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

    .alert-danger hr {
        border-top-color: #e4b9c0
    }

    .alert-danger .alert-link {
        color: #843534
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1)
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #222;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar, .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px
}

.progress.active .progress-bar, .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] {
    min-width: 30px
}

.progress-bar[aria-valuenow="0"] {
    color: #777;
    min-width: 30px;
    background-color: transparent;
    background-image: none;
    box-shadow: none
}

.progress-bar-success {
    background-color: #0fbd71
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #00aeef
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #000
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #dd1f26
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)
}

.media, .media-body {
    overflow: hidden;
    zoom: 1
}

    .media, .media .media {
        margin-top: 15px
    }

        .media:first-child {
            margin-top: 0
        }

.media-object {
    display: block
}

.media-heading {
    margin: 0 0 5px
}

.media > .pull-left {
    margin-right: 10px
}

.media > .pull-right {
    margin-left: 10px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

    .list-group-item:first-child {
        border-top-right-radius: 0;
        border-top-left-radius: 0
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }

    .list-group-item > .badge {
        float: right
    }

        .list-group-item > .badge + .badge {
            margin-right: 5px
        }

a.list-group-item {
    color: #555
}

    a.list-group-item .list-group-item-heading {
        color: #333
    }

    a.list-group-item:hover, a.list-group-item:focus {
        text-decoration: none;
        color: #555;
        background-color: #f5f5f5
    }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    background-color: #eee;
    color: #777
}

    .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
        color: inherit
    }

    .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
        color: #777
    }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #222;
    border-color: #222
}

    .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
        color: inherit
    }

    .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
        color: #888
    }

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success {
    color: #3c763d
}

    a.list-group-item-success .list-group-item-heading {
        color: inherit
    }

    a.list-group-item-success:hover, a.list-group-item-success:focus {
        color: #3c763d;
        background-color: #d0e9c6
    }

    a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d
    }

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info {
    color: #31708f
}

    a.list-group-item-info .list-group-item-heading {
        color: inherit
    }

    a.list-group-item-info:hover, a.list-group-item-info:focus {
        color: #31708f;
        background-color: #c4e3f3
    }

    a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f
    }

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning {
    color: #8a6d3b
}

    a.list-group-item-warning .list-group-item-heading {
        color: inherit
    }

    a.list-group-item-warning:hover, a.list-group-item-warning:focus {
        color: #8a6d3b;
        background-color: #faf2cc
    }

    a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b
    }

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger {
    color: #a94442
}

    a.list-group-item-danger .list-group-item-heading {
        color: inherit
    }

    a.list-group-item-danger:hover, a.list-group-item-danger:focus {
        color: #a94442;
        background-color: #ebcccc
    }

    a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
        color: #fff;
        background-color: #a94442;
        border-color: #a94442
    }

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    box-shadow: 0 1px 1px rgba(0,0,0,0.05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: -1px;
    border-top-left-radius: -1px
}

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit
    }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

    .panel-title > a {
        color: inherit
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: -1px;
    border-bottom-left-radius: -1px
}

.panel > .list-group {
    margin-bottom: 0
}

    .panel > .list-group .list-group-item {
        border-width: 1px 0;
        border-radius: 0
    }

    .panel > .list-group:first-child .list-group-item:first-child {
        border-top: 0;
        border-top-right-radius: -1px;
        border-top-left-radius: -1px
    }

    .panel > .list-group:last-child .list-group-item:last-child {
        border-bottom: 0;
        border-bottom-right-radius: -1px;
        border-bottom-left-radius: -1px
    }

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
    margin-bottom: 0
}

    .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
        border-top-right-radius: -1px;
        border-top-left-radius: -1px
    }

        .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
            border-top-left-radius: -1px
        }

        .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
            border-top-right-radius: -1px
        }

    .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
        border-bottom-right-radius: -1px;
        border-bottom-left-radius: -1px
    }

        .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
            border-bottom-left-radius: -1px
        }

        .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
            border-bottom-right-radius: -1px
        }

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

    .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0
    }

    .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0
    }

    .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
        border-bottom: 0
    }

    .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0
    }

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

    .panel-group .panel {
        margin-bottom: 0;
        border-radius: 0
    }

        .panel-group .panel + .panel {
            margin-top: 5px
        }

    .panel-group .panel-heading {
        border-bottom: 0
    }

        .panel-group .panel-heading + .panel-collapse > .panel-body {
            border-top: 1px solid #ddd
        }

    .panel-group .panel-footer {
        border-top: 0
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #ddd
        }

.panel-default {
    border-color: #ddd
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd
    }

        .panel-default > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ddd
        }

        .panel-default > .panel-heading .badge {
            color: #f5f5f5;
            background-color: #333
        }

    .panel-default > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ddd
    }

.panel-primary {
    border-color: #222
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #222;
        border-color: #222
    }

        .panel-primary > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #222
        }

        .panel-primary > .panel-heading .badge {
            color: #222;
            background-color: #fff
        }

    .panel-primary > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #222
    }

.panel-success {
    border-color: #d6e9c6
}

    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6
    }

        .panel-success > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #d6e9c6
        }

        .panel-success > .panel-heading .badge {
            color: #dff0d8;
            background-color: #3c763d
        }

    .panel-success > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #d6e9c6
    }

.panel-info {
    border-color: #bce8f1
}

    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1
    }

        .panel-info > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #bce8f1
        }

        .panel-info > .panel-heading .badge {
            color: #d9edf7;
            background-color: #31708f
        }

    .panel-info > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #bce8f1
    }

.panel-warning {
    border-color: #faebcc
}

    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc
    }

        .panel-warning > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #faebcc
        }

        .panel-warning > .panel-heading .badge {
            color: #fcf8e3;
            background-color: #8a6d3b
        }

    .panel-warning > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #faebcc
    }

.panel-danger {
    border-color: #ebccd1
}

    .panel-danger > .panel-heading {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1
    }

        .panel-danger > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ebccd1
        }

        .panel-danger > .panel-heading .badge {
            color: #f2dede;
            background-color: #a94442
        }

    .panel-danger > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ebccd1
    }

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

    .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        border: 0
    }

    .embed-responsive.embed-responsive-16by9 {
        padding-bottom: 56.25%
    }

    .embed-responsive.embed-responsive-4by3 {
        padding-bottom: 75%
    }

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05)
}

    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0,0,0,0.15)
    }

.well-lg {
    padding: 24px;
    border-radius: 0
}

.well-sm {
    padding: 9px;
    border-radius: 0
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

    .close:hover, .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: .5;
        filter: alpha(opacity=50)
    }

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -moz-transition: -moz-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    .modal-backdrop.in {
        opacity: .5;
        filter: alpha(opacity=50)
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px
}

    .modal-header .close {
        margin-top: -2px
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

    .modal-footer .btn + .btn {
        margin-left: 5px;
        margin-bottom: 0
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        box-shadow: 0 5px 15px rgba(0,0,0,0.5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0)
}

    .tooltip.in {
        opacity: .9;
        filter: alpha(opacity=90)
    }

    .tooltip.top {
        margin-top: -3px;
        padding: 5px 0
    }

    .tooltip.right {
        margin-left: 3px;
        padding: 0 5px
    }

    .tooltip.bottom {
        margin-top: 3px;
        padding: 5px 0
    }

    .tooltip.left {
        margin-left: -3px;
        padding: 0 5px
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 0
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    white-space: normal
}

    .popover.top {
        margin-top: -10px
    }

    .popover.right {
        margin-left: 10px
    }

    .popover.bottom {
        margin-top: 10px
    }

    .popover.left {
        margin-left: -10px
    }

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: -1px -1px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

    .popover > .arrow:after {
        border-width: 10px;
        content: ""
    }

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0,0,0,0.25);
    bottom: -11px
}

    .popover.top > .arrow:after {
        content: " ";
        bottom: 1px;
        margin-left: -10px;
        border-bottom-width: 0;
        border-top-color: #fff
    }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0,0,0,0.25)
}

    .popover.right > .arrow:after {
        content: " ";
        left: 1px;
        bottom: -10px;
        border-left-width: 0;
        border-right-color: #fff
    }

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0,0,0,0.25);
    top: -11px
}

    .popover.bottom > .arrow:after {
        content: " ";
        top: 1px;
        margin-left: -10px;
        border-top-width: 0;
        border-bottom-color: #fff
    }

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0,0,0,0.25)
}

    .popover.left > .arrow:after {
        content: " ";
        right: 1px;
        border-right-width: 0;
        border-left-color: #fff;
        bottom: -10px
    }

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

    .carousel-inner > .item {
        display: none;
        position: relative;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left
    }

        .carousel-inner > .item > img, .carousel-inner > .item > a > img {
            line-height: 1
        }

    .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
        display: block
    }

    .carousel-inner > .active {
        left: 0
    }

    .carousel-inner > .next, .carousel-inner > .prev {
        position: absolute;
        top: 0;
        width: 100%
    }

    .carousel-inner > .next {
        left: 100%
    }

    .carousel-inner > .prev {
        left: -100%
    }

        .carousel-inner > .next.left, .carousel-inner > .prev.right {
            left: 0
        }

    .carousel-inner > .active.left {
        left: -100%
    }

    .carousel-inner > .active.right {
        left: 100%
    }

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6)
}

    .carousel-control.left {
        background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
        background-image: -o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
        background-image: linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
    }

    .carousel-control.right {
        left: auto;
        right: 0;
        background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
        background-image: -o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
        background-image: linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
    }

    .carousel-control:hover, .carousel-control:focus {
        outline: 0;
        color: #fff;
        text-decoration: none;
        opacity: .9;
        filter: alpha(opacity=90)
    }

    .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block
    }

    .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px
    }

    .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px
    }

    .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        margin-top: -10px;
        font-family: serif
    }

        .carousel-control .icon-prev:before {
            content: '\2039'
        }

        .carousel-control .icon-next:before {
            content: '\203a'
        }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        border: 1px solid #fff;
        border-radius: 10px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0,0,0,0)
    }

    .carousel-indicators .active {
        margin: 0;
        width: 12px;
        height: 12px;
        background-color: #fff
    }

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6)
}

    .carousel-caption .btn {
        text-shadow: none
    }

@media screen and (min-width:768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -15px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -15px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important;
    visibility: hidden !important
}

.affix {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@-ms-viewport {
    width: device-width
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important
}

@media (max-width:767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important
    }
}

@media (max-width:767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width:767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm, td.visible-sm {
        display: table-cell !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md, td.visible-md {
        display: table-cell !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width:1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg, td.visible-lg {
        display: table-cell !important
    }
}

@media (min-width:1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width:767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width:1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print, td.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

/* custom.css */
b, strong {
    font-weight: normal !important;
    font-family: 'core_sans_g55_medium';
}

@font-face {
    font-family: 'core_sans_g25_extralight';
    src: url('/Content/assets/font/coresansg-extralight-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g25XLtIt';
    src: url('/Content/assets/font/coresansg-extralightitalic-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-extralightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g85_heavy';
    src: url('/Content/assets/font/coresansg-heavy-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g85_heavy_italic';
    src: url('/Content/assets/font/coresansg-heavyitalic-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-heavyitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g45_italic';
    src: url('/Content/assets/font/coresansg-italic-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g35_light';
    src: url('/Content/assets/font/coresansg-light-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g35_light_italic';
    src: url('/Content/assets/font/coresansg-lightitalic-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g55_medium';
    src: url('/Content/assets/font/coresansg-medium-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g55_medium_italic';
    src: url('/Content/assets/font/coresansg-mediumitalic-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g45_regular';
    src: url('/Content/assets/font/coresansg-regular-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g15_thin';
    src: url('/Content/assets/font/coresansg-thin-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'core_sans_g15_thin_italic';
    src: url('/Content/assets/font/coresansg-thinitalic-webfont.woff2') format('woff2'), url('/Content/assets/font/coresansg-thinitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'dcey';
    src: url('/Content/assets/font/dcey.eot?i9obxm');
    src: url('/Content/assets/font/dcey.eot?i9obxm#iefix') format('embedded-opentype'), url('/Content/assets/font/dcey.ttf?i9obxm') format('truetype'), url('/Content/assets/font/dcey.woff?i9obxm') format('woff'), url('/Content/assets/font/dcey.svg?i9obxm#dcey') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="dcey-ico-"], [class*=" dcey-ico-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'dcey' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.dcey-ico-arrow-circle-l:before {
    content: "\e900";
}

.dcey-ico-arrow-circle-r:before {
    content: "\e901";
}

.dcey-ico-arrow-down:before {
    content: "\e902";
}

.dcey-ico-arrow-left:before {
    content: "\e903";
}

.dcey-ico-arrow-right-fill:before {
    content: "\e904";
}

.dcey-ico-arrow-right:before {
    content: "\e905";
}

.dcey-ico-bag:before {
    content: "\e906";
}

.dcey-ico-birthday:before {
    content: "\e907";
}

.dcey-ico-calendar:before {
    content: "\e908";
}

.dcey-ico-coctail:before {
    content: "\e909";
}

.dcey-ico-dinner:before {
    content: "\e90a";
}

.dcey-ico-facebook:before {
    content: "\e90b";
}

.dcey-ico-heart:before {
    content: "\e90c";
}

.dcey-ico-home:before {
    content: "\e90d";
}

.dcey-ico-instagram:before {
    content: "\e90e";
}

.dcey-ico-party:before {
    content: "\e90f";
}

.dcey-ico-pin:before {
    content: "\e910";
}

.dcey-ico-play:before {
    content: "\e911";
}

.dcey-ico-profile:before {
    content: "\e912";
}

.dcey-ico-search:before {
    content: "\e913";
}

.dcey-ico-to-top:before {
    content: "\e914";
}

.dcey-ico-twitter:before {
    content: "\e915";
}

.dcey-ico-wedding:before {
    content: "\e916";
}

.dcey-ico-user-plus:before {
    content: "\e973";
}




#reb-header-shade {
    content: " ";
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    height: 0;
    -moz-animation: shade-disappear 0.15s linear;
    -webkit-animation: shade-disappear 0.15s linear;
    animation: shade-disappear 0.15s linear
}

.shaded #reb-header-shade:not(.hover) {
    height: 100%;
    -moz-animation: shade-appear 0.15s linear;
    -webkit-animation: shade-appear 0.15s linear;
    animation: shade-appear 0.15s linear
}

#reb-header {
    position: relative;
    z-index: 212;
    color: #333333;
    border-bottom: 1px solid #dddddd;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 300
}

.mobile-scaled #reb-header {
    font-size: 19px
}

#nav a {
    color: inherit
}

/* New Mobile Edit */
div#mobileHeader {
    display: block;
    border-bottom: 1px solid #e1e1e1;
    height: 56px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
}

    div#mobileHeader * {
        box-sizing: border-box;
    }

    div#mobileHeader a {
        text-decoration: none;
    }

    div#mobileHeader #mLeft {
        width: 21%;
        float: left;
        height: 100%;
        max-width: 90px; /* position: relative; */ /* z-index: 2; */
    }

    div#mobileHeader #mRight {
        width: 21%;
        float: right;
        height: 100%;
        max-width: 90px;
    }

    div#mobileHeader #mobileLogo img { /* padding-top:4px; */ /* padding-bottom: 3px; */ /*width: 100%;*/
        max-height: 100%;
        position: relative;
        top: 50%;
        transform: translate(0,-50%);
        max-width: 180px;
    }

    div#mobileHeader #menuToggle {
        float: left;
        width: 50%;
        height: 100%;
        line-height: 52px;
        cursor: pointer;
        text-align: center;
        color: #000;
        font-size: 24px;
    }

        div#mobileHeader #menuToggle:before {
            margin-left: 5px;
            content: "\e905";
            font-family: 'dceyV2';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

    div#mobileHeader #storeLoc {
        float: right;
        width: 50%;
        height: 52px;
        font-size: 21px;
        text-align: center;
        display: inline-block;
        height: 100%;
        line-height: 52px;
        color: #000;
    }

        div#mobileHeader #storeLoc:before {
            content: "\e615";
            font-family: 'icons';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

    div#mobileHeader #mobileLogo {
        width: 100%;
        height: 52px;
        margin: 0;
        ter;
        display: block;
        float: left;
        text-align: center;
        position: absolute;
        padding-left: 21%;
        padding-right: 21%;
        z-index: -1;
    }

    div#mobileHeader #basketIco {
        position: relative;
        float: right;
        width: 51%;
        height: 52px;
        padding: 0;
        line-height: 52px;
        color: #000;
        text-decoration: none;
        text-align: center;
        font-size: 20px;
    }

        div#mobileHeader #basketIco:before {
            font-family: 'dceyV2';
            speak: none;
            font-style: normal;
            font-weight: 400;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\e902";
            font-size: 23px;
        }

    div#mobileHeader #searchToggle {
        float: right;
        width: 50%;
        height: 52px;
        font-size: 20px;
        text-align: center;
        display: inline-block;
        height: 100%;
        line-height: 52px;
        color: #000;
    }

        div#mobileHeader #searchToggle:before {
            content: "\e904";
            font-family: 'dceyV2';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

.miniQuantity {
    -webkit-border-radius: 15px;
    -ms-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    display: inline-block;
    position: absolute;
    height: 15px;
    line-height: 16px;
    margin: 8px 0 0 0px;
    font-size: 9px;
    font-family: "Helvetica World W01_n4","Helvetica World W01",Arial,sans-serif;
    font-weight: bold;
    text-align: center;
    left: 0;
    right: 0;
}

.menuOpened {
    overflow: hidden;
    position: fixed;
}

#menuOverlay {
    background: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

div#mobileMenuCt {
    position: fixed;
    z-index: 102;
    background-color: #fff;
    left: 0;
    top: 0;
    width: 83%;
    display: none;
}

.menuOpened div#mobileMenuCt, .menuOpened #menuOverlay {
    display: block;
}

    .menuOpened div#mobileMenuCt > ul {
        max-height: 500px;
        overflow: auto;
    }

div#mobileMenuCt > ul > li {
    border-bottom: 1px solid #000;
}

    div#mobileMenuCt > ul > li > a {
        padding: 17px 55px 17px 20px;
        display: block;
        position: relative;
        z-index: 2;
        overflow: visible;
        font-family: "Times New Roman",serif;
        font-size: 15px;
        font-weight: bold;
        text-transform: uppercase;
        white-space: nowrap;
        color: #000;
        text-decoration: none;
        line-height: 1;
    }

        div#mobileMenuCt > ul > li > a i {
            width: 60px;
            height: 100%;
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
        }

    div#mobileMenuCt > ul > li.hasChild > a i:before {
        right: 23px;
        content: '';
        background-color: #000;
        width: 3px;
        height: 13px;
        position: absolute;
        top: 17px;
        right: 23px;
    }

    div#mobileMenuCt > ul > li.hasChild > a i:after {
        content: '';
        background-color: #000;
        width: 13px;
        height: 3px;
        position: absolute;
        top: 22px;
        right: 18px;
    }

    div#mobileMenuCt > ul > li.hasChild.submenuOpened > a i:before {
        display: none;
    }

div#mobileMenuCt ul ul li a {
    display: block;
    padding: 12px 0;
    line-height: 16px;
    font-family: "Times New Roman",serif;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    color: #4f4f4f;
    text-decoration: none;
}

div#mobileMenuCt ul li a#mLoginLnk {
    background: url("../img/signinBg.html") 0 repeat;
}

div#mobileMenuCt ul li a#mProfileLnk, div#mobileMenuCt ul li a#mSignoutLnk {
    display: none;
}

div#mobileMenuCt ul ul {
    padding: 0 20px;
    display: none;
}

div#mobileMenuCt > ul > li.hasChild.submenuOpened ul {
    display: block;
}

div#mobileMenuCt .menuTitle {
    min-height: 54px;
    padding: 12px 15px;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-family: "Times New Roman",serif;
    line-height: 1;
    box-sizing: border-box;
}

div#mobileMenuCt #closeMenu {
    display: block;
    float: right;
    background-color: #fff;
    height: 30px;
    width: 21%;
    height: 54px;
    position: absolute;
    right: -21%;
    top: 0;
    font-size: 12px;
    line-height: 54px;
    text-align: center;
    color: #000;
    text-decoration: none;
}

    div#mobileMenuCt #closeMenu:before {
        font-family: icons;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e60d";
    }

.b-header_search {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 10px;
    background: #fff;
    border-bottom: 2px solid #212121;
    border-top: 2px solid #212121;
}

    .b-header_search .b-header_search:before {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #212121;
        position: absolute;
        top: -10px;
        right: 23%;
    }

label.search_label {
    display: none;
}

input.search_input {
    width: 100%;
    height: 30px;
    padding: 0 5px;
    border: 1px solid #ccc;
    font-family: "Helvetica World W01_n4","Helvetica World W01",Arial,sans-serif;
    font-size: 12px;
    line-height: 30px;
    color: #4f4f4f;
    -webkit-appearance: none;
    border-radius: 0;
    border-color: #000;
    border-right: 0;
    color: #000;
    width: 87%;
    height: 43px;
    float: left;
    padding: 12px 0 12px 10px;
    border-color: #ccc;
    color: #4f4f4f;
    line-height: 20px;
    box-sizing: border-box;
}

.b-header_search button {
    position: absolute;
    top: 0;
    right: -31px;
    width: 31px;
    height: 30px;
    padding: 0;
    border: 1px solid #000;
    border-left: 0;
    background: #fff;
    font-size: 0;
    cursor: pointer;
    position: relative;
    top: inherit;
    right: inherit;
    width: 13%;
    height: 43px;
    border-color: #ccc;
}

button.search_button.button:before {
    content: "";
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 43px;
    font-size: 22px;
}


div#mobileHeader #wishListBtn:before {
    content: "\e903";
    font-family: 'dceyV2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a#wishListBtn {
    float: left;
    width: 49%;
    height: 52px;
    padding: 15px 0 0;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    height: 52px;
    padding: 0;
    line-height: 52px;
    color: #000;
    text-decoration: none;
}

div#helpRow a {
    display: block;
    float: left;
    width: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

div#helpRow {
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: 20px;
}

    div#helpRow a:before {
        content: "\f107";
        display: inline-block;
        font-family: 'entyporegular';
        margin-right: 5px;
        font-size: 21px;
        line-height: 0;
        position: relative;
        top: 2px;
        content: "\e873";
    }

    div#helpRow a:first-child:after {
        width: 1px;
        height: 100%;
        background: #e1e1e1;
        content: "";
        display: block;
        position: absolute;
        right: -1px;
        top: 0;
    }

@media only screen and (min-width: 1024px) {
    div#helpRow {
        display: none;
    }

    .nav-menu a:hover,
    .no-touch .user-menu-item-title:hover .user-menu-item-title-label,
    .no-touch .sub-menu a:hover .sub-menu-item-label {
        border-bottom: 1px solid currentColor
    }
}

#reb-header-wrapper,
.nav-menu {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    zoom: 1;
    margin: 0 auto;
    max-width: 1170px;
}

@media (min-width: 992px) {
    #reb-header-wrapper,
    .nav-menu {
        /*max-width: 970px;*/
        padding-right: 10px;
    }
}

@media (min-width: 1200px) {
    #reb-header-wrapper,
    .nav-menu {
        max-width: 1540px;
    }
}

#reb-header-wrapper:after,
.nav-menu:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    font-size: 0;
    visibility: hidden
}

.mobile-scaled #reb-header-wrapper,
.mobile-scaled .nav-menu {
    padding-left: 43px;
    padding-right: 43px
}

#user-menu2 {
    clear: both;
    float: right;
    margin: -70px -10px 0;
    list-style: none;
    line-height: 30px;
    font-family: 'core_sans_g55_medium';
}

#user-menu {
    clear: both;
    float: right;
    margin: -70px -10px 0;
    list-style: none;
    line-height: 30px;
    font-family: 'core_sans_g55_medium';
}

.mobile-scaled #user-menu {
    line-height: 42.85714px
}

#nav + #user-menu,
.nav-search + #user-menu {
    margin-top: -122px;
}

.mobile-scaled #user-menu2 {
    line-height: 42.85714px
}

#nav + #user-menu2,
.nav-search + #user-menu2 {
    margin-top: -122px;
}

.user-menu-item {
    color: #000;
    float: left;
    position: relative;
    padding: 3px;
    white-space: nowrap
}

    .user-menu-item:after {
        /*content: " ";*/
        position: absolute;
        right: 0;
        top: 50%;
        height: 16px;
        margin-top: -8px;
        border-right: 1px solid #dddddd
    }

    .user-menu-item:last-child:after {
        display: none
    }

    .user-menu-item.not-geo:after {
        display: none
    }

    .user-menu-item a {
        display: block;
        color: inherit;
        text-decoration: none;
    }

@media only screen and (min-width: 769px) {
    .no-touch .user-menu-item:hover .user-menu-item-title-label,
    .user-menu-item.active .user-menu-item-title-label {
        border-bottom: none;
    }

    .no-touch .user-menu-item:hover .sub-menu,
    .user-menu-item.active .sub-menu {
        display: block
    }
}

.user-menu-item .location-pin {
    background-image: url("../images/reb_13dbec5997.png");
    background-repeat: no-repeat;
    width: 11px;
    height: 17px;
    background-position: -119px -316px;
    display: inline-block;
    margin-bottom: -3px
}

.user-menu-item #store-name {
    display: inline-block;
    padding-left: 4px
}

.user-menu-item.with-menu .user-menu-item-title:before {
    vertical-align: middle;
    content: "\e902";
    font-family: 'dcey' !important;
    position: relative;
    top: -1px;
    margin-right: 0;
    font-size: 11px;
}

.heart-label,
.cart-count {
    display: inline-block;
    vertical-align: middle
}

.heart-label {
    background-image: url("../images/reb_13dbec5997.png");
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    background-position: -535px -267px;
    text-indent: 200px;
    overflow: hidden;
    margin: -3px 2px 0 0
}

.cart-count {
    background-image: url("../images/reb_13dbec5997.png");
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    background-position: -187px -234px;
    color: white;
    text-align: center;
    font-size: 10px;
    margin-left: 0.5em;
    margin-top: -8px;
    line-height: 26px
}

.sub-menu,
.bag {
    border: 1px solid #dddddd
}

.sub-menu {
    position: absolute;
    z-index: 2;
    top: 100%;
    margin-top: -10px;
    background: white;
    border: 1px solid #dddddd;
    padding: 10px 0
}

.sub-menu {
    display: none;
    left: 0;
    min-width: 100px;
    line-height: inherit
}

    .sub-menu a {
        display: block;
        padding: 0 20px
    }

span.credits-active {
    padding: 1px 4px;
    border: 0 solid;
    border-radius: 5px;
    background-color: #9db3af;
    color: white
}

#user-menu-item-sign-in {
    display: none
}

body.auth-status-anonymous #user-menu-item-sign-in {
    display: block
}

#user-menu2-item-sign-in {
    display: none
}

body.auth-status-anonymous #user-menu2-item-sign-in {
    display: block
}

#nav-logo {
    float: left;
    margin: 0
}

.mobile-scaled #nav-logo {
    margin-top: 5px
}

#nav-logo .nav-logo-inner {
    display: block;
    /* padding: 23px 0px 24px; */
    font-size: 0;
    width: 246px;
    height: 120px;
    margin-top: 10px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
    #nav-logo .nav-logo-inner {
        width: 323px;
    }
}

#nav-logo .nav-logo-inner.experiment-86 {
    display: none
}

#nav {
    float: left;
    clear: left;
    list-style: none;
    margin-left: -75px
}

    #nav.experiment-sensitive,
    #nav.experiment-sensitive + .nav-search {
        visibility: hidden
    }

.nav-group {
    float: left
}

    .nav-group h2 {
        margin: 0;
        height: 40px;
        font: inherit;
        font-size: inherit;
        text-transform: uppercase;
        line-height: 40px
    }

        .nav-group h2.highlight {
            padding-top: 4px;
        }

#nav h2.highlight a {
    border: 2px solid;
    height: 31px;
    line-height: 27px;
    padding: 0 10px;
    margin: 0 5px;
}

.mobile-scaled .nav-group h2 {
    height: 57.14286px;
    line-height: 57.14286px
}
/*.nav-group h2 a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 0 14px;
    letter-spacing: inherit
}*/
.nav-group h2 a:hover {
    color: inherit;
    text-decoration: none
}
/*.nav-group h2 .nav-item-label {
    display: block;
    color: #000;
    font-size: 17px;
    font-weight: normal;
    font-family: 'core_sans_g55_medium';
    letter-spacing: 0;
}*/
.no-touch .nav-group:hover .nav-item-label,
.nav-group.active .nav-item-label {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-position: 0 100%;
    color: #ccc
}

.mobile-scaled .no-touch .nav-group:hover .nav-item-label,
.mobile-scaled .nav-group.active .nav-item-label {
    height: 53.14286px
}

.nav-group.active .nav-menu-wrapper {
    left: 0;
    width: 100%;
    -moz-animation: menu-appear 0.15s linear;
    -webkit-animation: menu-appear 0.15s linear;
    animation: menu-appear 0.15s linear
}

.nav-menu {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 21px;
    padding-right: 21px;
    width: 1368px;
    zoom: 1;
    margin-bottom: 0;
    line-height: 30px
}

    .nav-menu:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        font-size: 0;
        visibility: hidden
    }

.mobile-scaled .nav-menu {
    line-height: 42.85714px
}

.nav-menu h3 {
    margin: 0;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: inherit;
    font-weight: 500;
    letter-spacing: 0;
    font-size: inherit;
    font-weight: 500
}

    .nav-menu h3 a {
        font-weight: inherit
    }

.nav-search {
    float: right;
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin-top: 4px
}

.mobile-scaled .nav-search {
    margin-top: 12px
}

.nav-search label {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 10px
}

.nav-search button {
    position: absolute;
    top: 0;
    left: 150%
}

.nav-search-query {
    outline: 0;
    /*    background: #fff url("../images/ico-search.png") no-repeat 98% 50%;*/
    height: 30px;
    border: 1px solid #ccc;
    margin-top: 1px;
    line-height: 20px;
}

li.user-menu-item.searchInput {
    padding-right: 0;
    width: 0;
    padding-right: 0;
    width: 0;
    padding-left: 0;
    overflow: hidden;
    transition: all .3s;
}

    li.user-menu-item.searchInput.active {
        width: 140px;
        margin-top: -1px;
    }

@media only screen and (max-width: 992px) {

    .nav-search:not(.filled) .nav-search-query:not(:focus) {
        -moz-box-shadow: 0 0 0 0 transparent;
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent;
        cursor: pointer;
        width: 20px;
        border: none;
        background-position: center center
    }
}

.shaded #nav:before {
    content: " ";
    display: block
}

.shaded #nav:before,
.nav-menu-wrapper {
    background: #f7f7f7;
    z-index: 211;
    position: absolute;
    left: 100%;
    width: 0;
    height: 420px;
    overflow: hidden;
    margin: 0;
    top: 100%;
    -moz-animation: menu-disappear 0.15s linear;
    -webkit-animation: menu-disappear 0.15s linear;
    animation: menu-disappear 0.15s linear
}

.mobile-scaled .shaded #nav:before,
.mobile-scaled .nav-menu-wrapper {
    height: 610px
}

.shaded #nav:before {
    left: 0;
    width: 100%;
    -moz-animation: menu-appear 0.15s linear;
    -webkit-animation: menu-appear 0.15s linear;
    animation: menu-appear 0.15s linear
}

.nav-menu,
.nav-block-links,
.nav-menu-blocks {
    list-style: none
}

.nav-menu {
    position: relative
}

.nav-menu-blocks {
    float: left;
    height: 370px;
    position: relative;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-content: flex-start;
    align-content: flex-start
}

.nav-block {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 200px;
    margin-bottom: 20px
}

    .nav-block:nth-child(2):last-child {
        height: 100%
    }

.experiment-91-2 .nav-block:nth-child(3),
.experiment-91-3 .nav-block:nth-child(3) {
    height: 100%
}

    .experiment-91-2 .nav-block:nth-child(3):last-child,
    .experiment-91-3 .nav-block:nth-child(3):last-child {
        height: auto
    }

.nav-image {
    width: 400px;
    line-height: 20px
}

    .nav-image.nav-image-before {
        position: absolute;
        left: 20px;
        padding-right: 29px;
        border-right: 1px solid #eeeeee;
        margin-right: 30px
    }

    .nav-image.nav-image-after {
        float: left;
        margin-left: 30px;
        border-left: 1px solid #eeeeee;
        padding-left: 29px;
        margin-right: 0
    }

.mobile-scaled .nav-image {
    line-height: 28.57143px;
    height: 530px
}

.nav-image a:hover {
    border: none
}

    .nav-image a:hover .nav-menu-image {
        opacity: 0.7;
        filter: alpha(opacity=70)
    }

    .nav-image a:hover h3 {
        display: inline-block;
        border-bottom: 1px solid currentColor;
        margin-bottom: -1px
    }

.nav-menu-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px
}

.nav-menu-editorial-before .nav-menu-blocks {
    margin-left: 460px
}

.bag .tip,
.bag .tipbg {
    display: none
}



#bag {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-transition: right 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -o-transition: right 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: right 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: right 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 375px;
    width: 90%;
    background-color: white;
    z-index: 300
}

    #bag.hidden {
        right: -375px
    }

    #bag .loader {
        background: #fff url("../images/loading.gif") no-repeat scroll center center;
        height: 100%;
        width: 100%;
        position: absolute;
        opacity: 0.5;
        filter: alpha(opacity=50);
        display: none
    }

    #bag .head {
        padding: 12px 20px;
        background-color: #333333;
        color: white;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center
    }

        #bag .head .ico-bag,
        #bag .head .bag-close {
            -webkit-flex-shrink: 0;
            flex-shrink: 0
        }

        #bag .head .ico-bag {
            background-image: url("../images/reb_13dbec5997.png");
            background-repeat: no-repeat;
            width: 21px;
            height: 21px;
            background-position: -170px -284px
        }

        #bag .head .bag-close {
            font-size: 18px;
            cursor: pointer
        }

        #bag .head p {
            margin: 0 60px;
            text-align: center
        }

    #bag .contents {
        padding: 0 20px;
        overflow: scroll
    }

    #bag .group {
        zoom: 1;
        margin: 30px 0 10px
    }

        #bag .group:after {
            content: ".";
            display: block;
            height: 0;
            clear: both;
            font-size: 0;
            visibility: hidden
        }

    #bag .group-info {
        padding-bottom: 4px;
        border-bottom: 1px solid #333333;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between
    }

    #bag .item {
        padding: 10px 0;
        display: -webkit-flex;
        display: flex
    }

        #bag .item button {
            border: 0;
            background-image: url("../images/reb_13dbec5997.png");
            background-repeat: no-repeat;
            width: 13px;
            height: 13px;
            background-position: -565px -267px
        }

        #bag .item .top,
        #bag .item .bottom {
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: space-between;
            justify-content: space-between
        }

    #bag .item-details p {
        margin-bottom: 6px
    }

@media only screen and (max-width: 480px) {
    #bag .item-details .item-name {
        display: none
    }
}

#bag .item-image {
    margin-right: 20px
}

#bag .item-info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

#bag .item-title {
    margin-bottom: 20px
}

#bag .foot {
    padding: 20px;
    background-color: #f7f7f7;
    -webkit-flex-grow: 1;
    flex-grow: 1
}

    #bag .foot .btn {
        width: 100%
    }

#bag .totals {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 14px
}

#bag .bag-error {
    margin-top: 12px;
    display: none
}

.bag {
    display: none;
    position: absolute;
    top: 50%;
    background-color: white;
    border-width: 0 0 1px;
    left: 0;
    right: auto;
    padding: 0 15px;
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: normal;
    z-index: 1000
}

@media only screen and (min-width: 769px) {
    .bag {
        right: 0;
        left: auto;
        width: 640px;
        padding: 30px
    }
}

.bag.standalone {
    display: block;
    position: static;
    padding: 0 31px;
    margin: 20px auto;
    border: 0;
    -moz-box-shadow: 0 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent
}

.bag .experiment-29-1,
.bag .experiment-29-2 {
    display: none
}

.bag .line-through {
    text-decoration: line-through
}

.bag .loader {
    background: #fff url("../loading.html") no-repeat scroll center center;
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: .5;
    filter: alpha(opacity=50);
    z-index: 7;
    display: none
}

.bag .bag-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    padding: 20px
}

.bag .group {
    zoom: 1;
    margin: 10px 0
}

    .bag .group:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        font-size: 0;
        visibility: hidden
    }

.bag .group-info {
    margin: 0 -30px 10px;
    padding: 0 30px;
    background-color: #f7f7f7;
    line-height: 40px
}

.bag .item {
    list-style: none;
    padding: 10px 0;
    overflow: hidden;
    border-top: 1px solid #eeeeee
}

    .bag .item:first-child {
        border: 0
    }

.bag .item-image {
    float: left
}

.bag .item-title {
    margin-bottom: 20px
}

.bag .item-actions {
    margin-top: 20px
}

@media only screen and (min-width: 769px) {
    .bag .item-actions {
        margin-top: 0;
        text-align: center
    }
}

.bag .item-actions a,
.bag .item-actions form {
    display: inline-block
}

    .bag .item-actions a + form:before {
        content: " | ";
        margin: 0 3px
    }

.bag .foot {
    clear: both;
    zoom: 1;
    margin: 30px -30px 0;
    border-top: 1px solid #eeeeee;
    padding: 20px 30px 0
}

    .bag .foot:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        font-size: 0;
        visibility: hidden
    }

.bag .cms-content {
    margin-bottom: 20px;
    width: 100%
}

@media only screen and (min-width: 769px) {
    .bag .cms-content {
        margin-bottom: 0;
        width: 395px;
        float: left
    }
}

.bag .bag-pro {
    padding: 15px;
    background-color: #f7f7f7;
    font-size: 13px
}

@media only screen and (min-width: 769px) {
    .bag .bag-pro {
        width: 350px;
        margin-right: 30px
    }
}

.bag .bag-pro label {
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 500;
    display: inline-block
}

.bag .bag-pro-savings {
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 500
}

.bag .bag-pro-subtext {
    line-height: 30px
}

    .bag .bag-pro-subtext .underline {
        border-bottom: 1px solid currentColor
    }

    .bag .bag-pro-subtext .learnmore {
        cursor: pointer
    }

@media only screen and (max-width: 768px) {
    .bag .bag-pro-subtext .learnmore {
        display: inline-block;
        line-height: 23px
    }
}

.bag .bag-add-pro {
    display: block;
    margin: 10px auto
}

@media only screen and (min-width: 769px) {
    .bag .bag-add-pro {
        margin: 8px 0 0
    }
}

.bag .totals-action {
    float: right;
    width: 100%
}

@media only screen and (min-width: 769px) {
    .bag .totals-action {
        width: 220px
    }
}

.bag .totals {
    width: 100%
}

    .bag .totals .subt {
        line-height: 25px;
        letter-spacing: 0;
        font-size: 13px;
        font-weight: 500
    }

    .bag .totals .key {
        float: left
    }

    .bag .totals .val {
        float: right
    }

.bag .action-checkout {
    margin-top: 37px;
    width: 100%
}

.bag .bag-error {
    width: 100%;
    clear: both;
    padding: 12px 0 0
}

.bag .free,
.bag .pro-lit {
    color: #9db3af;
    text-transform: uppercase
}

.bag a.standalone:hover,
.bag .standalone-link:hover {
    color: #656466
}

.bag-item-details {
    margin-left: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width: 769px) {
    .bag-item-details {
        -webkit-flex-direction: row;
        flex-direction: row
    }
}

.bag-item-detail__group {
    -webkit-flex: 1 1 33%;
    flex: 1 1 33%
}

.bag-item-numbers {
    font-size: 13px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width: 769px) {
    .bag-item-numbers {
        -webkit-flex-direction: row;
        flex-direction: row
    }
}

@media only screen and (min-width: 769px) {
    .bag-item-number {
        flex: 1 1 auto;
        text-align: center
    }
}

.bag-item-number__header {
    display: inline-block;
    font-weight: bold
}

@media only screen and (min-width: 769px) {
    .bag-item-number__header {
        display: block;
        border-bottom: 1px solid #eeeeee
    }
}

.bag-item-number__value {
    display: inline-block
}

@media only screen and (min-width: 769px) {
    .bag-item-number__value {
        display: block
    }
}

body:before {
    content: "mobile";
    display: none
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    body:before {
        content: "tablet"
    }
}

@media only screen and (min-width: 769px) {
    body:before {
        content: "desktop"
    }
}

body.unlimited-cart-open,
body.unlimited-cart-closed {
    -moz-transition: margin-top 0.2s linear;
    -o-transition: margin-top 0.2s linear;
    -webkit-transition: margin-top 0.2s linear;
    transition: margin-top 0.2s linear
}

body.unlimited-cart-open {
    margin-top: 164px
}

    body.unlimited-cart-open #unlimited-cart {
        height: 164px;
        background-color: white;
        border-bottom: 1px solid #eeeeee
    }

        body.unlimited-cart-open #unlimited-cart .content {
            padding-bottom: 24px
        }

            body.unlimited-cart-open #unlimited-cart .content .full {
                display: block
            }

            body.unlimited-cart-open #unlimited-cart .content .min {
                display: none
            }

            body.unlimited-cart-open #unlimited-cart .content .toggle {
                -moz-transform: rotate(270deg);
                -ms-transform: rotate(270deg);
                -webkit-transform: rotate(270deg);
                transform: rotate(270deg)
            }

body.unlimited-cart-closed {
    margin-top: 50px
}

    body.unlimited-cart-closed #unlimited-cart {
        height: 50px
    }

@media (max-width: 767px) {
    body.unlimited-cart-open,
    body.unlimited-cart-closed {
        margin-top: 0
    }

        body.unlimited-cart-open #unlimited-cart,
        body.unlimited-cart-closed #unlimited-cart {
            height: 0
        }
}

#unlimited-cart {
    height: 0;
    width: 100%;
    background-color: #bd935d;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    display: none;
    -moz-transition: opacity, height 0.2s linear;
    -o-transition: opacity, height 0.2s linear;
    -webkit-transition: opacity, height 0.2s linear;
    transition: opacity, height 0.2s linear
}

    #unlimited-cart .header {
        padding: 10px 40px;
        zoom: 1
    }

        #unlimited-cart .header:after {
            content: ".";
            display: block;
            height: 0;
            clear: both;
            font-size: 0;
            visibility: hidden
        }

        #unlimited-cart .header .message {
            float: left
        }

    #unlimited-cart .content {
        max-width: 1338px;
        margin: 0 auto;
        padding: 14px 36px;
        zoom: 1;
        position: relative
    }

        #unlimited-cart .content:after {
            content: ".";
            display: block;
            height: 0;
            clear: both;
            font-size: 0;
            visibility: hidden
        }

@media screen and (max-width: 1023px) {
    #unlimited-cart .content {
        padding-left: 30px;
        padding-right: 30px
    }
}

#unlimited-cart .content .min {
    color: white
}

    #unlimited-cart .content .min .learn-more {
        background-image: url("../images/reb_13dbec5997.png");
        background-repeat: no-repeat;
        width: 15px;
        height: 14px;
        background-position: -402px -284px;
        margin: 0 8px -2px 2px;
        display: inline-block;
        outline: none
    }

@media (max-width: 950px) {
    #unlimited-cart .content .min .message {
        letter-spacing: 0;
        font-size: 12px;
        font-weight: 300
    }
}

#unlimited-cart .content .full {
    display: none
}

    #unlimited-cart .content .full .message {
        width: 400px;
        height: 81px
    }

@media (max-width: 1320px) {
    #unlimited-cart .content .full .message {
        width: 250px;
        line-height: 18px
    }
}

@media (max-width: 1170px) {
    #unlimited-cart .content .full .message {
        width: 210px;
        letter-spacing: 0;
        font-size: 12px;
        font-weight: 300
    }
}

#unlimited-cart .content .full .disclaimer {
    color: #999999
}

#unlimited-cart .content .full .learn-more {
    margin-left: 5px
}

@media (max-width: 1170px) {
    #unlimited-cart .content .full .learn-more {
        margin-left: 0
    }
}

#unlimited-cart:not(.open) .content {
    cursor: pointer
}

#unlimited-cart .toggle {
    position: absolute;
    top: 16px;
    right: 36px;
    cursor: pointer;
    background-image: url("../images/reb_13dbec5997.png");
    background-repeat: no-repeat;
    width: 11px;
    height: 16px;
    background-position: -137px -338px;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media screen and (max-width: 1023px) {
    #unlimited-cart .toggle {
        right: 30px
    }
}

#unlimited-cart .toggle:hover {
    background-image: url("../images/reb_13dbec5997.png");
    background-repeat: no-repeat;
    width: 11px;
    height: 16px;
    background-position: -124px -338px
}

#unlimited-cart .items {
    float: left
}

#unlimited-cart .info {
    margin-right: 24px;
    float: right
}

    #unlimited-cart .info .confirm {
        width: 100%
    }

#unlimited-cart .item-placeholder,
#unlimited-cart .unlimited-cart-item {
    width: 240px;
    height: 105px;
    margin-right: 20px;
    padding: 10px;
    display: inline-block;
    overflow: hidden
}

@media (max-width: 1342px) {
    #unlimited-cart .item-placeholder,
    #unlimited-cart .unlimited-cart-item {
        margin-right: 10px
    }
}

@media (max-width: 1130px) {
    #unlimited-cart .item-placeholder,
    #unlimited-cart .unlimited-cart-item {
        width: 210px
    }
}

@media (max-width: 1050px) {
    #unlimited-cart .item-placeholder,
    #unlimited-cart .unlimited-cart-item {
        width: 185px
    }
}

@media (max-width: 950px) {
    #unlimited-cart .item-placeholder,
    #unlimited-cart .unlimited-cart-item {
        width: 126px;
        margin-right: 8px
    }
}

#unlimited-cart .item-placeholder {
    line-height: 105px;
    text-align: center;
    color: #656466;
    background-color: #f7f7f7
}

#unlimited-cart .unlimited-cart-item {
    position: relative;
    background-color: white
}

    #unlimited-cart .unlimited-cart-item.in-progress {
        opacity: 0.2;
        filter: alpha(opacity=20)
    }

    #unlimited-cart .unlimited-cart-item .image,
    #unlimited-cart .unlimited-cart-item .other {
        display: inline-block;
        vertical-align: middle
    }

    #unlimited-cart .unlimited-cart-item .image {
        height: 100%;
        margin-right: 20px
    }

        #unlimited-cart .unlimited-cart-item .image img {
            max-height: 100%
        }

    #unlimited-cart .unlimited-cart-item .other {
        width: 146px
    }

    #unlimited-cart .unlimited-cart-item .designer,
    #unlimited-cart .unlimited-cart-item .size {
        color: #999999
    }

    #unlimited-cart .unlimited-cart-item .remove {
        padding: 15px;
        position: absolute;
        color: #656466;
        top: -6px;
        right: 0;
        cursor: pointer
    }

@media (max-width: 1130px) {
    #unlimited-cart .unlimited-cart-item .image {
        margin-right: 10px
    }

    #unlimited-cart .unlimited-cart-item .other {
        width: 126px
    }
}

@media (max-width: 1050px) {
    #unlimited-cart .unlimited-cart-item img {
        height: 80px;
        margin-top: 12px
    }

    #unlimited-cart .unlimited-cart-item .other {
        width: 116px
    }
}

@media (max-width: 950px) {
    #unlimited-cart .unlimited-cart-item .image {
        margin-right: 2px
    }

        #unlimited-cart .unlimited-cart-item .image img {
            height: 60px;
            margin-top: 22px
        }

    #unlimited-cart .unlimited-cart-item .other {
        width: 80px
    }

    #unlimited-cart .unlimited-cart-item .designer {
        letter-spacing: 0;
        font-size: 12px;
        font-weight: 300
    }
}

#unlimited-cart .error {
    color: #f57089
}

    #unlimited-cart .error a.standalone {
        color: #f57089
    }

        #unlimited-cart .error a.standalone:hover {
            color: #f57089
        }

/* Header End */
.currentMenu a:after {
    display: block;
    content: '';
    background: #222;
    position: absolute;
    left: 3px;
    top: 2%;
    bottom: 2%;
    width: 2px;
    visibility: visible !important;
}

#letMeKnow {
    display: block;
    clear: both;
    padding-top: 10px;
    color: #181818;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid;
    float: left;
    position: relative;
    padding-left: 35px;
}

    #letMeKnow:before {
        content: "";
        background: #fff url('../images/remindIco.png')0 center no-repeat;
        width: 35px;
        height: 35px;
        display: inline-block;
        background-size: 35px;
        position: absolute;
        left: 0;
        top: 6px;
    }

.filter-attributes-sizes {
    margin-top: 20px;
    margin-bottom: 2px
}

    .filter-attributes-sizes .filter-item {
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        margin: 0 6px 9px 0;
        height: 32px;
        width: 32px;
        border: 1px solid #dddddd;
        background-color: white;
        text-align: center;
        line-height: 18px;
    }

        .filter-attributes-sizes .filter-item.filter-checked,
        .no-touch .filter-attributes-sizes .filter-item:hover {
            border-color: #656466;
            background-color: #656466;
            color: white
        }

        .filter-attributes-sizes .filter-item label {
            display: block;
            background: none;
            width: 100%;
            height: 100%;
            padding: 6px 0;
            color: inherit
        }

            .filter-attributes-sizes .filter-item label:before {
                display: none
            }

    .filter-attributes-sizes input[type="radio"], .filter-attributes-sizes input[type="checkbox"] {
        opacity: 0.01;
        filter: alpha(opacity=1);
        position: absolute;
        vertical-align: top;
        margin-right: 1px;
    }
/* Zaf End */

.primary-font,
.shop .cart-bottom-details .shipping_calculator .shipping-calculator-button,
.view-cart td .btn,
body,
header.mobile-menu .cart-info a strong,


/*.banner .button_outer .button_inner .banner-content strong,
.to-uppercase {
    text-transform: uppercase
}*/


    body lesshat-selector {
        -lh-property: 0
    }

::selection {
    color: #fff;
    background: #7b599b
}

::-moz-selection {
    color: #fff;
    background: #7b599b
}


.wrapper {
    max-width: 1200px;
    margin: 0 auto
}

section {
    padding: 0;
    font-size: 16px
}

.boxed {
    width: 1220px;
    margin: 0 auto;
    -moz-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .05);
    background: #eee
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 25px;
        padding-right: 25px
    }
}

@media screen and (max-width: 992px) {
    .container {
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .header-spacer {
        display: none !important
    }
}

header.site-header {
    position: relative;
    background: #fff;
    z-index: 100;
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .05)
}

.transparent-header header.site-header {
    background-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: all 300ms !important;
    -moz-transition: all 300ms !important;
    -o-transition: all 300ms !important;
    transition: all 300ms !important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

    .transparent-header header.site-header .header-widgets .cart-counter svg,
    .transparent-header header.site-header .header-widgets .search-form .search-btn svg {
        fill: #fff
    }

    .transparent-header header.site-header .lab-mini-cart {
        margin-top: 10px
    }

    .transparent-header header.site-header .header-widgets .search-form .search-input-env .form-control {
        background-color: rgba(255, 255, 255, .9)
    }

    .transparent-header header.site-header .header-widgets .search-form.input-visible .search-btn svg {
        fill: #222
    }

@media screen and (max-width: 1023px) {
    header.site-header {
        display: none
    }
}

header.site-header .top-menu {
    position: relative;
    background: #222;
    color: #3a3a3a;
    z-index: 200
}

    header.site-header .top-menu #cart-totals .amount {
        color: #fff
    }

    header.site-header .top-menu .top-bar-currency-switcher select.woocommerce-currency-switcher {
        margin-top: 10px;
        margin-bottom: 8px
    }

    header.site-header .top-menu .top-bar-currency-switcher .woocs_flag_view_item {
        width: auto;
        height: auto;
        margin-top: 8px;
        margin-bottom: 9px
    }

        header.site-header .top-menu .top-bar-currency-switcher .woocs_flag_view_item img {
            width: 25px
        }

    header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select {
        background-color: transparent !important;
        border: 0
    }

        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select a .dd-selected-text {
            color: #fff
        }

        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-option a,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select a {
            padding: 9px 0;
            padding-top: 10px
        }

        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-option .dd-selected-text,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-selected-text {
            margin-bottom: 0
        }

        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-option .dd-image-right,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-image-right {
            width: 20px
        }

        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-option .dd-pointer,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-option .dd-selected-description,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-option .dd-selected-image,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-pointer,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-selected-description,
        header.site-header .top-menu .top-bar-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-selected-image {
            display: none
        }

    header.site-header .top-menu .top-bar-currency-switcher .chosen-container {
        margin-top: 6px
    }

        header.site-header .top-menu .top-bar-currency-switcher .chosen-container .chosen-single {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            height: 26px !important;
            border: 0
        }

            header.site-header .top-menu .top-bar-currency-switcher .chosen-container .chosen-single > span {
                line-height: 26px
            }

        header.site-header .top-menu .top-bar-currency-switcher .chosen-container .chosen-drop {
            border-color: #eee;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            header.site-header .top-menu .top-bar-currency-switcher .chosen-container .chosen-drop .chosen-results {
                padding-top: 13px
            }

            header.site-header .top-menu .top-bar-currency-switcher .chosen-container .chosen-drop li {
                -webkit-background-size: 20px !important;
                -moz-background-size: 20px !important;
                background-size: 20px !important;
                padding-top: 0;
                padding-bottom: 8px
            }

    header.site-header .top-menu .right-align .top-bar-currency-switcher {
        float: right
    }

        header.site-header .top-menu .right-align .top-bar-currency-switcher .dd-select .dd-selected {
            text-align: right
        }

    header.site-header .top-menu .right-align nav {
        float: right
    }

        header.site-header .top-menu .right-align nav > li > .sub-menu {
            right: -8px;
            left: auto
        }

        header.site-header .top-menu .right-align nav .sub-menu .sub-menu {
            right: 100%;
            left: auto
        }

    header.site-header .top-menu .right-align .breadcrumb,
    header.site-header .top-menu .right-align .social-networks,
    header.site-header .top-menu .right-align .top-ctr,
    header.site-header .top-menu .right-align > .currency-switcher,
    header.site-header .top-menu .right-align > .lang-switcher {
        float: right
    }

    header.site-header .top-menu nav > li {
        list-style: none;
        display: inline-block;
        font-size: 12px;
        position: relative
    }

        header.site-header .top-menu nav > li.single-entry {
            padding: 11px 0;
            color: #959595
        }

            header.site-header .top-menu nav > li.single-entry a {
                padding: 0
            }

            header.site-header .top-menu nav > li.single-entry .sep {
                display: inline-block;
                padding: 0 4px
            }

            header.site-header .top-menu nav > li.single-entry span {
                color: #afafaf
            }

        header.site-header .top-menu nav > li a {
            padding: 11px 0;
            display: inline-block;
            text-transform: uppercase;
            color: #959595
        }

            header.site-header .top-menu nav > li a:hover {
                color: #fff;
                text-decoration: none
            }

        header.site-header .top-menu nav > li .sub-menu {
            display: none;
            background: #272727;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            border: none;
            padding: 0;
            margin: 0;
            min-width: 200px;
            top: 0;
            left: 0;
            position: absolute;
            z-index: 9999
        }

            header.site-header .top-menu nav > li .sub-menu li {
                border-bottom: 1px solid #333;
                font-size: 12px;
                list-style: none;
                position: relative;
                padding: 0
            }

                header.site-header .top-menu nav > li .sub-menu li a {
                    padding: 10px 20px;
                    display: block
                }

                    header.site-header .top-menu nav > li .sub-menu li a:hover {
                        background: 0 0;
                        color: #fff
                    }

                header.site-header .top-menu nav > li .sub-menu li:hover > a {
                    background-color: #2f2f2f
                }

                header.site-header .top-menu nav > li .sub-menu li.active a {
                    background: 0 0
                }

                header.site-header .top-menu nav > li .sub-menu li:after {
                    display: none
                }

            header.site-header .top-menu nav > li .sub-menu ul {
                left: 100%
            }

        header.site-header .top-menu nav > li > .sub-menu {
            top: 100%;
            left: -15px
        }

        header.site-header .top-menu nav > li:after {
            content: "";
            width: 1px;
            display: inline-block;
            height: 10px;
            position: relative;
            background: #3a3a3a;
            margin: 0 10px
        }

        header.site-header .top-menu nav > li:last-child:after {
            display: none
        }

    header.site-header .top-menu nav li {
        z-index: 1
    }

        header.site-header .top-menu nav li:hover {
            z-index: 10
        }

        header.site-header .top-menu nav li.current-menu-ancestor > a,
        header.site-header .top-menu nav li.current-menu-item > a {
            color: #fff
        }

        header.site-header .top-menu nav li.sub-visible > ul {
            display: block
        }

    header.site-header .top-menu .social-networks {
        display: inline-block;
        list-style: none;
        margin: 0;
        padding: 12px 0;
        padding-bottom: 6px
    }

        header.site-header .top-menu .social-networks:after,
        header.site-header .top-menu .social-networks:before {
            content: " ";
            display: table
        }

        header.site-header .top-menu .social-networks:after {
            clear: both
        }

        header.site-header .top-menu .social-networks li {
            display: block;
            float: left;
            padding: 0 2px
        }

            header.site-header .top-menu .social-networks li a {
                display: inline-block;
                padding: 0 3px;
                -webkit-transition: all 250ms;
                -moz-transition: all 250ms;
                -o-transition: all 250ms;
                transition: all 250ms
            }

                header.site-header .top-menu .social-networks li a i {
                    font-style: normal
                }

                header.site-header .top-menu .social-networks li a:hover {
                    text-decoration: none;
                    color: #fff
                }

    header.site-header .top-menu .textwidget {
        padding: 12px 0;
        font-size: 12px;
        color: #5d5d5d;
        text-transform: uppercase
    }

        header.site-header .top-menu .textwidget a {
            color: #959595
        }

            header.site-header .top-menu .textwidget a:hover {
                color: #fff
            }

        header.site-header .top-menu .textwidget .sep {
            display: inline-block
        }

            header.site-header .top-menu .textwidget .sep:after {
                content: "";
                width: 1px;
                display: inline-block;
                height: 10px;
                position: relative;
                background: #3a3a3a;
                margin: 0 10px
            }

    header.site-header .top-menu .breadcrumb {
        margin: 0;
        padding: 0;
        margin-top: 11px
    }

        header.site-header .top-menu .breadcrumb span a {
            color: #959595
        }

        header.site-header .top-menu .breadcrumb span span {
            color: #fff
        }

    header.site-header .top-menu.gray {
        background: #eee
    }

        header.site-header .top-menu.gray nav li {
            color: #333
        }

            header.site-header .top-menu.gray nav li:after {
                background: #ccc
            }

            header.site-header .top-menu.gray nav li a:hover {
                color: #222
            }

            header.site-header .top-menu.gray nav li.current-menu-ancestor > a,
            header.site-header .top-menu.gray nav li.current-menu-item > a {
                color: #222
            }

            header.site-header .top-menu.gray nav li .sub-menu {
                background: #eee
            }

                header.site-header .top-menu.gray nav li .sub-menu li {
                    border-bottom: 1px solid #dedede
                }

                    header.site-header .top-menu.gray nav li .sub-menu li:hover > a {
                        color: #222;
                        background-color: #e4e4e4
                    }

        header.site-header .top-menu.gray .social-networks li a {
            color: #888
        }

            header.site-header .top-menu.gray .social-networks li a:hover {
                color: #333
            }

        header.site-header .top-menu.gray .textwidget {
            color: #595959
        }

            header.site-header .top-menu.gray .textwidget a {
                color: #333
            }

                header.site-header .top-menu.gray .textwidget a:hover {
                    color: #080808
                }

            header.site-header .top-menu.gray .textwidget .sep:after {
                background: #ccc
            }

    header.site-header .top-menu.light {
        background: #fff;
        -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
        -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
        box-shadow: 0 1px 0 rgba(0, 0, 0, .05)
    }

        header.site-header .top-menu.light nav li {
            color: #333
        }

            header.site-header .top-menu.light nav li:after {
                background: #eee
            }

            header.site-header .top-menu.light nav li a {
                color: #888
            }

                header.site-header .top-menu.light nav li a:hover {
                    color: #222
                }

            header.site-header .top-menu.light nav li.current-menu-ancestor > a,
            header.site-header .top-menu.light nav li.current-menu-item > a {
                color: #222
            }

            header.site-header .top-menu.light nav li .sub-menu {
                background: #fff
            }

                header.site-header .top-menu.light nav li .sub-menu li {
                    border-bottom: 1px solid #eee
                }

                    header.site-header .top-menu.light nav li .sub-menu li:hover > a {
                        color: #222;
                        background-color: #f5f5f5
                    }

                    header.site-header .top-menu.light nav li .sub-menu li:after {
                        display: none
                    }

        header.site-header .top-menu.light .social-networks li a {
            color: #888
        }

            header.site-header .top-menu.light .social-networks li a:hover {
                color: #333
            }

        header.site-header .top-menu.light .textwidget {
            color: #595959
        }

            header.site-header .top-menu.light .textwidget a {
                color: #333
            }

                header.site-header .top-menu.light .textwidget a:hover {
                    color: #080808
                }

            header.site-header .top-menu.light .textwidget .sep:after {
                background: #eee
            }

        header.site-header .top-menu.gray #cart-totals .amount,
        header.site-header .top-menu.light #cart-totals .amount {
            color: #222
        }

        header.site-header .top-menu.gray .breadcrumb span a,
        header.site-header .top-menu.light .breadcrumb span a {
            color: #888
        }

        header.site-header .top-menu.gray .breadcrumb span span,
        header.site-header .top-menu.light .breadcrumb span span {
            color: #222
        }

header.site-header .header-menu {
    display: table;
    width: 100%;
    table-layout: auto
}

    header.site-header .header-menu .header-links,
    header.site-header .header-menu .logo,
    header.site-header .header-menu .main-menu {
        display: table-cell;
        vertical-align: middle;
        width: auto;
        white-space: nowrap
    }

    header.site-header .header-menu .main-menu {
        padding-left: 60px
    }

        header.site-header .header-menu .main-menu.nav-secondary {
            text-align: right
        }

            header.site-header .header-menu .main-menu.nav-secondary li ul {
                text-align: left
            }

    header.site-header .header-menu .logo {
        width: 1%
    }

        header.site-header .header-menu .logo a {
            padding: 20px 0
        }

.transparent-header header.site-header .header-menu .logo a {
    color: #fff
}

header.site-header .header-menu .logo a .light-logo {
    display: none
}

.transparent-header header.site-header .header-menu .logo a .light-logo {
    display: inline-block
}

.transparent-header header.site-header .header-menu .logo a .normal-logo {
    display: none
}

header.site-header .header-menu .header-links .header-widgets {
    float: right
}

header.site-header .header-menu.logo-is-centered {
    margin: 0
}

    header.site-header .header-menu.logo-is-centered .main-menu {
        padding-left: 0
    }

    header.site-header .header-menu.logo-is-centered .logo {
        text-align: center
    }

    header.site-header .header-menu.logo-is-centered .logo {
        width: 1%
    }

    header.site-header .header-menu.logo-is-centered .header-links,
    header.site-header .header-menu.logo-is-centered .main-menu {
        width: 49.5%
    }

header.site-header .header-menu.menu-is-centered-also {
    margin-top: 20px
}

header.site-header .logo a {
    display: block;
    line-height: 1
}

    header.site-header .logo a img {
        max-width: 100%
    }

header.site-header .logo.text-logo a {
    text-decoration: none;
    color: #222;
    font-size: 30px
}

header.site-header div.nav > ul,
header.site-header ul.nav {
    list-style: none;
    margin: 0;
    padding: 0
}

    header.site-header div.nav > ul li,
    header.site-header ul.nav li {
        position: relative
    }

        header.site-header div.nav > ul li a,
        header.site-header ul.nav li a {
            display: block;
            font-weight: 300;
            text-transform: uppercase;
            color: #222
        }

            header.site-header div.nav > ul li a i,
            header.site-header ul.nav li a i {
                display: inline-block;
                margin-right: 5px;
                vertical-align: middle;
                position: relative;
                margin-top: -2px
            }

            header.site-header div.nav > ul li a:hover,
            header.site-header ul.nav li a:hover {
                text-decoration: underline
            }

        header.site-header div.nav > ul li ul,
        header.site-header ul.nav li ul {
            display: block;
            visibility: hidden;
            -webkit-transform: translateX(-10px);
            -moz-transform: translateX(-10px);
            -ms-transform: translateX(-10px);
            -o-transform: translateX(-10px);
            transform: translateX(-10px);
            zoom: 1;
            -webkit-opacity: 0;
            -moz-opacity: 0;
            opacity: 0;
            filter: alpha(opacity=0);
            -webkit-transition: all 250ms ease-in-out;
            -moz-transition: all 250ms ease-in-out;
            -o-transition: all 250ms ease-in-out;
            transition: all 250ms ease-in-out;
            list-style: none;
            padding: 15px 0;
            margin: 0;
            background-color: #f7f7f7;
            min-width: 200px
        }

            header.site-header div.nav > ul li ul li a,
            header.site-header ul.nav li ul li a {
                padding: 5px 20px
            }

            header.site-header div.nav > ul li ul li ul,
            header.site-header ul.nav li ul li ul {
                position: absolute;
                left: 100%;
                top: 0;
                margin-top: -15px
            }

            header.site-header div.nav > ul li ul li:hover > a,
            header.site-header ul.nav li ul li:hover > a {
                background: #efefef
            }

            header.site-header div.nav > ul li ul li.current-menu-ancestor > a,
            header.site-header div.nav > ul li ul li.current-menu-item > a,
            header.site-header div.nav > ul li ul li.current_page_ancestor > a,
            header.site-header div.nav > ul li ul li.current_page_item > a,
            header.site-header ul.nav li ul li.current-menu-ancestor > a,
            header.site-header ul.nav li ul li.current-menu-item > a,
            header.site-header ul.nav li ul li.current_page_ancestor > a,
            header.site-header ul.nav li ul li.current_page_item > a {
                background-color: #efefef
            }

            header.site-header div.nav > ul li ul li.menu-item-has-children > a:before,
            header.site-header ul.nav li ul li.menu-item-has-children > a:before {
                font-family: EntypoRegular;
                content: '\e879';
                display: block;
                float: right;
                zoom: 1;
                -webkit-opacity: .5;
                -moz-opacity: .5;
                opacity: .5;
                filter: alpha(opacity=50)
            }

            header.site-header div.nav > ul li ul li.menu-item-has-children:hover > a:before,
            header.site-header ul.nav li ul li.menu-item-has-children:hover > a:before {
                zoom: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                opacity: 1;
                filter: alpha(opacity=100)
            }

        header.site-header div.nav > ul li.sub-visible > a,
        header.site-header ul.nav li.sub-visible > a {
            background-color: #f7f7f7
        }

        header.site-header div.nav > ul li.sub-visible > ul,
        header.site-header ul.nav li.sub-visible > ul {
            display: block;
            visibility: visible;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
            zoom: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            filter: alpha(opacity=100)
        }

    header.site-header div.nav > ul > li,
    header.site-header ul.nav > li {
        display: inline-block
    }

        header.site-header div.nav > ul > li > a,
        header.site-header ul.nav > li > a {
            font-size: 16px;
            padding: 25px 20px
        }

.transparent-header header.site-header div.nav > ul > li > a,
.transparent-header header.site-header ul.nav > li > a {
    color: #fff;
    background-color: transparent
}

    .transparent-header header.site-header div.nav > ul > li > a:hover,
    .transparent-header header.site-header ul.nav > li > a:hover {
        color: #fff;
        background-color: rgba(255, 255, 255, .25)
    }

header.site-header div.nav > ul > li > a:after,
header.site-header ul.nav > li > a:after {
    display: block;
    content: '';
    height: 2px;
    background: #222;
    visibility: hidden
}

.transparent-header header.site-header div.nav > ul > li > a:after,
.transparent-header header.site-header ul.nav > li > a:after {
    background: #fff
}

header.site-header div.nav > ul > li > a:hover,
header.site-header ul.nav > li > a:hover {
    text-decoration: none;
    color: #7b599b
}

.transparent-header header.site-header div.nav > ul > li:hover > a,
.transparent-header header.site-header ul.nav > li:hover > a {
    background-color: rgba(255, 255, 255, .25)
}

header.site-header div.nav > ul > li:hover > a,
header.site-header ul.nav > li:hover > a {
    background-color: #f7f7f7
}

header.site-header div.nav > ul > li.current-menu-ancestor > a:after,
header.site-header div.nav > ul > li.current-menu-item > a:after,
header.site-header div.nav > ul > li.current_page_ancestor > a:after,
header.site-header div.nav > ul > li.current_page_item > a:after,
header.site-header div.nav > ul > li.current_page_parent > a:after,
header.site-header ul.nav > li.current-menu-ancestor > a:after,
header.site-header ul.nav > li.current-menu-item > a:after,
header.site-header ul.nav > li.current_page_ancestor > a:after,
header.site-header ul.nav > li.current_page_item > a:after,
header.site-header ul.nav > li.current_page_parent > a:after {
    visibility: visible
}

header.site-header div.nav > ul > li > ul,
header.site-header ul.nav > li > ul {
    position: absolute;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

header.site-header .header-widgets {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

    header.site-header .header-widgets li {
        display: block;
        float: left
    }

        header.site-header .header-widgets li + li {
            margin-left: 20px
        }

    header.site-header .header-widgets .search-form {
        position: relative
    }

        header.site-header .header-widgets .search-form .mobile-search-button {
            display: none
        }

        header.site-header .header-widgets .search-form .search-input-env {
            visibility: hidden;
            position: relative;
            zoom: 1;
            -webkit-opacity: 0;
            -moz-opacity: 0;
            opacity: 0;
            filter: alpha(opacity=0);
            -webkit-transition: all 120ms ease-in-out;
            -moz-transition: all 120ms ease-in-out;
            -o-transition: all 120ms ease-in-out;
            transition: all 120ms ease-in-out
        }

            header.site-header .header-widgets .search-form .search-input-env .form-control {
                height: 35px;
                padding-right: 43px;
                position: absolute;
                right: 0;
                top: 50%;
                width: 200px;
                border-color: #eee;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        header.site-header .header-widgets .search-form .search-btn {
            display: inline-block;
            position: relative;
            right: 5px;
            top: 4px;
            width: 28px;
            height: 28px;
            -webkit-transition: all 250ms;
            -moz-transition: all 250ms;
            -o-transition: all 250ms;
            transition: all 250ms
        }

            header.site-header .header-widgets .search-form .search-btn svg {
                width: 100%;
                height: 100%
            }

        header.site-header .header-widgets .search-form.input-visible .search-input-env {
            visibility: visible;
            zoom: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            filter: alpha(opacity=100)
        }

        header.site-header .header-widgets .search-form.input-visible .search-btn {
            -moz-transform: scale(.7);
            -webkit-transform: scale(.7);
            -ms-transform: scale(.7);
            -o-transform: scale(.7);
            transform: scale(.7)
        }

header.site-header .cart-counter {
    position: relative;
    display: block;
    /*    width: 35px;
    height: 35px;
	    background: url('../images/basketIco.png') center center no-repeat;*/
    line-height: 35px;
    text-align: center;
    font-size: 25px;
}

    header.site-header .cart-counter svg {
        width: 100%;
        height: 100%
    }

    header.site-header .cart-counter .badge {
        top: 13px;
        position: absolute;
        text-align: center;
        font-size: 10px;
        display: block;
        width: 100%;
        background: none;
        color: #000;
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100);
        font-family: 'core_sans_g55_medium';
    }

.user-menu-item-title-label.dcey-ico-heart {
    font-size: 21px;
    display: block;
    margin-top: 3px;
}

header.site-header .full-menu {
    border-top: 1px solid #eee
}

.transparent-header header.site-header .full-menu {
    border-top: 0
}

header.site-header .full-menu > .container > .row > .col-sm-12 {
    padding: 0
}

header.site-header .full-menu div.nav > ul > li > a,
header.site-header .full-menu ul.nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px
}

header.site-header .full-menu.menu-centered {
    border-top: 0
}

    header.site-header .full-menu.menu-centered .main-menu {
        text-align: center
    }

        header.site-header .full-menu.menu-centered .main-menu .nav {
            text-align: left
        }

        header.site-header .full-menu.menu-centered .main-menu div.nav > ul,
        header.site-header .full-menu.menu-centered .main-menu ul.nav {
            display: inline-block
        }

header.site-header .full-menu .menu-container {
    display: table;
    width: 100%;
    table-layout: auto
}

    header.site-header .full-menu .menu-container .logo,
    header.site-header .full-menu .menu-container .main-menu {
        display: table-cell;
        vertical-align: middle
    }

    header.site-header .full-menu .menu-container .logo {
        width: 1%;
        padding-right: 20px;
        display: none
    }

        header.site-header .full-menu .menu-container .logo.visible {
            display: table-cell
        }

    header.site-header .full-menu .menu-container .main-menu {
        width: 99%
    }

@media screen and (min-width: 768px) {
    header.site-header.sticky.sticked {
        position: fixed;
        left: 0;
        right: 0;
        top: 0
    }

    .transparent-header header.site-header.sticky.sticked {
        background-color: #fff
    }

        .transparent-header header.site-header.sticky.sticked .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-title {
            color: #222
        }

            .transparent-header header.site-header.sticky.sticked .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-title:after {
                background-color: #222
            }

        .transparent-header header.site-header.sticky.sticked .header-widgets .cart-counter svg,
        .transparent-header header.site-header.sticky.sticked .header-widgets .search-form .search-btn svg {
            fill: #222
        }

    .admin-bar header.site-header.sticky.sticked {
        top: 32px
    }

    .transparent-header header.site-header.sticky.sticked .logo.text-logo a {
        color: #222
    }

    .transparent-header header.site-header.sticky.sticked .logo .normal-logo {
        display: inline-block
    }

    .transparent-header header.site-header.sticky.sticked .logo .light-logo {
        display: none
    }

    header.site-header.sticky.sticked div.nav > ul > li > a,
    header.site-header.sticky.sticked ul.nav > li > a {
        color: #222
    }

        header.site-header.sticky.sticked div.nav > ul > li > a:after,
        header.site-header.sticky.sticked ul.nav > li > a:after {
            background: #222
        }

    header.site-header.sticky.sticked .full-menu .menu-container .logo img#site-logo {
        width: auto !important;
        min-width: 1 !important;
        min-height: 18px !important;
        height: 18px !important
    }

    header.site-header.sticky.sticked .full-menu .menu-container .logo.text-logo a {
        font-size: 25px
    }

    header.site-header.sticky.sticked .header-menu.logo-is-centered div.nav > ul > li > a,
    header.site-header.sticky.sticked .header-menu.logo-is-centered ul.nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        -webkit-transition: padding 100ms ease-in-out;
        -moz-transition: padding 100ms ease-in-out;
        -o-transition: padding 100ms ease-in-out;
        transition: padding 100ms ease-in-out
    }

    header.site-header.sticky.sticked .header-menu.logo-is-centered .logo a {
        padding-top: 5px;
        padding-bottom: 10px;
        -webkit-transition: padding 100ms ease-in-out;
        -moz-transition: padding 100ms ease-in-out;
        -o-transition: padding 100ms ease-in-out;
        transition: padding 100ms ease-in-out
    }

    header.site-header.sticky.sticked .full-menu.menu-centered div.nav > ul > li > a,
    header.site-header.sticky.sticked .full-menu.menu-centered ul.nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px
    }

    header.site-header.sticky.sticked .header-menu.menu-is-centered-also {
        margin-top: 10px
    }

    header.site-header.sticky.sticked.header-type-1 .header-menu .logo a,
    header.site-header.sticky.sticked.header-type-1 div.nav > ul > li > a,
    header.site-header.sticky.sticked.header-type-1 ul.nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        -webkit-transition: all 350ms;
        -moz-transition: all 350ms;
        -o-transition: all 350ms;
        transition: all 350ms
    }

    header.site-header.sticky.sticked.header-type-1 .header-widgets .search-form .search-input-env .form-control {
        height: 35px
    }

    header.site-header.sticky.sticked .header-menu .lab-mini-cart {
        margin-top: 5px !important;
        border-top: 1px solid #eee
    }
}

header.mobile-menu {
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    height: 56px;
}

.menuOpened header.mobile-menu {
    height: auto;
}

.transparent-header header.mobile-menu {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 250
}

    .transparent-header header.mobile-menu .mobile-logo {
        border-bottom: 0
    }

    .transparent-header header.mobile-menu .light-logo {
        display: inline-block
    }

    .transparent-header header.mobile-menu .normal-logo {
        display: none
    }

@media screen and (max-width: 1023px) {
    header.mobile-menu {
        display: block
    }

    body {
        padding-top: 56px;
    }
}

header.mobile-menu .mobile-logo {
    border-bottom: 1px solid #eee;
    display: table;
    width: 100%;
    table-layout: auto
}

    header.mobile-menu .mobile-logo .logo,
    header.mobile-menu .mobile-logo .mobile-toggles {
        display: table-cell;
        vertical-align: middle;
        width: 1%;
        padding: 20px 15px
    }

        header.mobile-menu .mobile-logo .logo a,
        header.mobile-menu .mobile-logo .mobile-toggles a {
            outline: 0
        }

        header.mobile-menu .mobile-logo .logo.text-logo a {
            font-size: 30px;
            text-decoration: none
        }

    header.mobile-menu .mobile-logo .mobile-toggles {
        text-align: right
    }

        header.mobile-menu .mobile-logo .mobile-toggles .toggle-menu {
            text-indent: -9999px;
            display: inline-block;
            vertical-align: middle;
            position: relative;
            width: 32px;
            height: 32px
        }

            header.mobile-menu .mobile-logo .mobile-toggles .toggle-menu svg {
                width: 100%;
                height: 100%
            }

.transparent-header header.mobile-menu .mobile-logo .mobile-toggles .toggle-menu svg {
    fill: #fff
}

header.mobile-menu div.mobile-menu > ul,
header.mobile-menu ul.mobile-menu {
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    width: 100%;
    border-right: 1px solid #e1e1e1;
    box-shadow: 0 0 11px #999;
    transform: translate(-100%);
    transition: transform .3s;
}

    header.mobile-menu div.mobile-menu > ul.opened,
    header.mobile-menu ul.mobile-menu.opened {
        transform: translate(0);
        transition: transform .3s;
    }

    header.mobile-menu div.mobile-menu > ul.visible,
    header.mobile-menu ul.mobile-menu.visible {
        display: block
    }

    header.mobile-menu div.mobile-menu > ul li,
    header.mobile-menu ul.mobile-menu li {
        width: 100%
    }

        header.mobile-menu div.mobile-menu > ul li a,
        header.mobile-menu ul.mobile-menu li a {
            background: #fff;
            display: block;
            padding: 9px 15px;
            border-bottom: 1px solid #eee;
            color: #222;
            font-size: 14px;
            position: relative;
            text-decoration: none
        }

            header.mobile-menu div.mobile-menu > ul li a .sub-menu-indicator,
            header.mobile-menu ul.mobile-menu li a .sub-menu-indicator {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border-left: 1px solid #eee;
                padding: 10px 25px;
                background: #fff;
                overflow: hidden;
                -webkit-transition: all 300ms ease-in-out;
                -moz-transition: all 300ms ease-in-out;
                -o-transition: all 300ms ease-in-out;
                transition: all 300ms ease-in-out
            }

                header.mobile-menu div.mobile-menu > ul li a .sub-menu-indicator i,
                header.mobile-menu ul.mobile-menu li a .sub-menu-indicator i {
                    position: absolute;
                    left: 0;
                    top: 0;
                    padding: 9px 14px;
                    -moz-transform: rotate(0);
                    -webkit-transform: rotate(0);
                    -ms-transform: rotate(0);
                    -o-transform: rotate(0);
                    transform: rotate(0);
                    -webkit-transition: all 300ms ease-in-out;
                    -moz-transition: all 300ms ease-in-out;
                    -o-transition: all 300ms ease-in-out;
                    transition: all 300ms ease-in-out
                }

            header.mobile-menu div.mobile-menu > ul li a:hover,
            header.mobile-menu ul.mobile-menu li a:hover {
                background: #eee
            }

            header.mobile-menu div.mobile-menu > ul li a:after,
            header.mobile-menu ul.mobile-menu li a:after {
                display: block;
                content: '';
                background: #222;
                position: absolute;
                left: 3px;
                top: 2%;
                bottom: 2%;
                width: 2px;
                visibility: hidden
            }

        header.mobile-menu div.mobile-menu > ul li.sub-visible > a .sub-menu-indicator,
        header.mobile-menu ul.mobile-menu li.sub-visible > a .sub-menu-indicator {
            background: #F8F8F8;
            border-bottom-color: transparent
        }

            header.mobile-menu div.mobile-menu > ul li.sub-visible > a .sub-menu-indicator i,
            header.mobile-menu ul.mobile-menu li.sub-visible > a .sub-menu-indicator i {
                -moz-transform: rotate(135deg);
                -webkit-transform: rotate(135deg);
                -ms-transform: rotate(135deg);
                -o-transform: rotate(135deg);
                transform: rotate(135deg)
            }

        header.mobile-menu div.mobile-menu > ul li.current-menu-ancestor > a:after,
        header.mobile-menu div.mobile-menu > ul li.current-menu-item > a:after,
        header.mobile-menu div.mobile-menu > ul li.current_page_ancestor > a:after,
        header.mobile-menu div.mobile-menu > ul li.current_page_item > a:after,
        header.mobile-menu ul.mobile-menu li.current-menu-ancestor > a:after,
        header.mobile-menu ul.mobile-menu li.current-menu-item > a:after,
        header.mobile-menu ul.mobile-menu li.current_page_ancestor > a:after,
        header.mobile-menu ul.mobile-menu li.current_page_item > a:after {
            visibility: visible
        }

        header.mobile-menu div.mobile-menu > ul li ul,
        header.mobile-menu ul.mobile-menu li ul {
            padding: 0;
            list-style: none;
            display: none;
            overflow: hidden
        }

            header.mobile-menu div.mobile-menu > ul li ul li a,
            header.mobile-menu ul.mobile-menu li ul li a {
                padding-left: 30px;
                background: #f8f8f8;
                font-size: 14px
            }

            header.mobile-menu div.mobile-menu > ul li ul li li a,
            header.mobile-menu ul.mobile-menu li ul li li a {
                padding-left: 45px
            }

            header.mobile-menu div.mobile-menu > ul li ul li li li a,
            header.mobile-menu ul.mobile-menu li ul li li li a {
                padding-left: 60px
            }

        header.mobile-menu div.mobile-menu > ul li.sub-visible > a:before,
        header.mobile-menu ul.mobile-menu li.sub-visible > a:before {
            -moz-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
            transform: rotate(90deg)
        }

        header.mobile-menu div.mobile-menu > ul li.sub-visible > ul,
        header.mobile-menu ul.mobile-menu li.sub-visible > ul {
            display: block
        }

header.mobile-menu .search-site {
    display: none;
    position: relative
}

    header.mobile-menu .search-site .form-control {
        border-top: 0;
        padding: 20px 15px
    }

        header.mobile-menu .search-site .form-control:focus {
            border-color: #eee;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

    header.mobile-menu .search-site .mobile-search-button {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 55px
    }

        header.mobile-menu .search-site .mobile-search-button svg {
            position: absolute;
            top: 50%;
            left: 50%;
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 18px
        }

    header.mobile-menu .search-site.is-visible {
        display: block
    }

header.mobile-menu .site-header {
    position: relative
}

    header.mobile-menu .site-header .top-menu {
        display: block;
        text-align: center
    }

        header.mobile-menu .site-header .top-menu ul {
            text-align: left
        }

        header.mobile-menu .site-header .top-menu .col-sm-6 + .col-sm-6 {
            margin-top: -10px
        }

        header.mobile-menu .site-header .top-menu .right-align .sub-menu {
            right: 0;
            left: auto
        }

        header.mobile-menu .site-header .top-menu .top-ctr {
            display: inline-block
        }

header.mobile-menu > :last-child {
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1)
}

header.mobile-menu .cart-info {
    display: none
}

    header.mobile-menu .cart-info a {
        display: block;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        text-transform: uppercase;
        line-height: 1;
        color: #333;
        background: url('../images/basketIco.png') right 15px center no-repeat;
    }

        header.mobile-menu .cart-info a:after,
        header.mobile-menu .cart-info a:before {
            content: " ";
            display: table
        }

        header.mobile-menu .cart-info a:after {
            clear: both
        }

        header.mobile-menu .cart-info a strong {
            display: block;
            float: left;
            font-weight: 500;
            font-size: 18px;
            padding-top: 3px
        }

    header.mobile-menu .cart-info .cart-icon {
        display: block;
        float: left;
        margin-right: 5px
    }

    header.mobile-menu .cart-info .items-count {
        background: none;
        float: right;
        position: relative;
        top: 8px;
        color: #DFD1E1;
        font-size: 13px;
    }

@media screen and (max-width: 768px) {
    header.mobile-menu.sticky-mobile.is-fixed-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff
    }

        header.mobile-menu.sticky-mobile.is-fixed-mobile .mobile-logo .logo,
        header.mobile-menu.sticky-mobile.is-fixed-mobile .mobile-logo .mobile-toggles {
            padding-top: 10px;
            padding-bottom: 10px
        }

    .transparent-header header.mobile-menu.sticky-mobile.is-fixed-mobile {
        background: 0 0;
        position: absolute
    }
}

.mobile-menu-fixed-spacer {
    display: none
}

@media screen and (max-width: 768px) {
    .mobile-menu-fixed-spacer {
        display: block
    }
}

.header-top-menu.transparent-header {
    padding-top: 40px
}

@media screen and (max-width: 992px) {
    .header-top-menu.transparent-header {
        padding-top: 0
    }
}

.transparent-header .header-spacer {
    display: none !important
}

.transparent-header.admin-bar .site-header {
    top: 32px
}

footer.site-footer {
    padding: 40px 0;
    font-size: 14px;
    color: #888;
    font-weight: 300
}

    footer.site-footer.no-footer-widgets .footer-bottom {
        margin-top: 0;
        border-top: 0;
        padding-top: 0
    }

    footer.site-footer .footer-bottom {
        border-top: 1px solid #eee;
        padding: 40px 0 0 0;
        margin-top: 20px
    }

        footer.site-footer .footer-bottom .social-networks {
            list-style: none;
            margin: 0;
            padding: 0
        }

            footer.site-footer .footer-bottom .social-networks a {
                color: #888
            }

                footer.site-footer .footer-bottom .social-networks a:hover {
                    color: #fff
                }

        footer.site-footer .footer-bottom .col-md-6 + .col-md-6 .social-networks {
            float: right
        }

    footer.site-footer .expand-footer {
        text-align: center;
        background: url(/Content/assets/images/expand-footer.svg)no-repeat 50% 50%;
        background-size: 28px;
        display: block;
        width: 38px;
        height: 38px;
        text-indent: -9999px;
        vertical-align: middle;
        margin: 0 auto 20px auto
    }

    footer.site-footer .footer-list {
        padding: 0
    }

        footer.site-footer .footer-list li {
            text-transform: uppercase;
            list-style: none;
            padding: 0
        }

            footer.site-footer .footer-list li p {
                text-transform: none
            }

            footer.site-footer .footer-list li h1 {
                color: #222;
                font-size: 16px;
                font-weight: 300
            }

            footer.site-footer .footer-list li a {
                font-size: 13px;
                color: #888
            }

                footer.site-footer .footer-list li a.logo {
                    margin: 25px 0 10px 0;
                    height: 25px;
                    background: url(../images/logo%402x.html)no-repeat;
                    background-size: 97px;
                    display: block;
                    text-indent: -9999px
                }

        footer.site-footer .footer-list.latest-posts li a {
            color: #222
        }

        footer.site-footer .footer-list.latest-posts li img {
            width: 48px;
            height: auto;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            border-radius: 3px;
            float: left;
            margin: 0 15px 15px 0
        }

        footer.site-footer .footer-list.latest-posts li span {
            color: #ccc;
            display: block;
            font-size: 12px
        }

        footer.site-footer .footer-list.subscribe input[type=text] {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            text-transform: uppercase;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            font-size: 12px;
            border: 1px solid #eee
        }

            footer.site-footer .footer-list.subscribe input[type=text]:focus {
                border-color: #888
            }

        footer.site-footer .footer-list.subscribe button[type=submit] {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            text-transform: uppercase;
            color: #333;
            border: 1px solid #eee;
            background: 0 0
        }

            footer.site-footer .footer-list.subscribe button[type=submit]:focus {
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                outline: 0
            }

            footer.site-footer .footer-list.subscribe button[type=submit]:active {
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                outline: 0
            }

    footer.site-footer .social-networks {
        padding: 20px 0 0 0
    }

        footer.site-footer .social-networks li {
            float: left;
            margin-right: 5px;
            margin-bottom: 5px
        }

            footer.site-footer .social-networks li a {
                position: relative;
                background: #eee;
                display: block;
                text-align: center;
                display: table;
                width: 24px
            }

                footer.site-footer .social-networks li a i {
                    display: table-cell;
                    height: 24px;
                    line-height: 24px;
                    font-style: normal
                }

                    footer.site-footer .social-networks li a i:before {
                        line-height: 24px
                    }

                footer.site-footer .social-networks li a:hover {
                    text-decoration: none
                }

                    footer.site-footer .social-networks li a:hover i.facebook {
                        color: #3B5998
                    }

                    footer.site-footer .social-networks li a:hover i.twitter {
                        color: #55ACEE
                    }

                    footer.site-footer .social-networks li a:hover i.pinterest {
                        color: #cc2127
                    }

                    footer.site-footer .social-networks li a:hover i.vimeo {
                        color: #4bf
                    }

                    footer.site-footer .social-networks li a:hover i.gplus {
                        color: #DD4B39
                    }

                    footer.site-footer .social-networks li a:hover i.dribbble {
                        color: #ea4c89
                    }

                    footer.site-footer .social-networks li a:hover i.googleplus {
                        color: #DD4B39
                    }

                    footer.site-footer .social-networks li a:hover i.vk {
                        color: #45668e
                    }

                    footer.site-footer .social-networks li a:hover i.linkedin {
                        color: #0e76a8
                    }

                    footer.site-footer .social-networks li a:hover i.tumblr {
                        color: #35465c
                    }

                    footer.site-footer .social-networks li a:hover i.play {
                        color: #c4302b
                    }

                    footer.site-footer .social-networks li a:hover i.instagram {
                        color: #3f729b
                    }

            footer.site-footer .social-networks li:last-child {
                margin-right: 0
            }

    footer.site-footer .footer-menu ul {
        padding: 0;
        margin: 0
    }

        footer.site-footer .footer-menu ul li {
            list-style: none;
            display: inline-block
        }

            footer.site-footer .footer-menu ul li:after {
                content: "";
                display: inline-block;
                height: 10px;
                width: 1px;
                margin: 0 10px;
                background: #ccc
            }

            footer.site-footer .footer-menu ul li a {
                font-size: 12px;
                color: #888
            }

                footer.site-footer .footer-menu ul li a:hover {
                    text-decoration: none;
                    color: #7b599b;
                    border-right: none
                }

            footer.site-footer .footer-menu ul li:last-child:after {
                display: none
            }

    footer.site-footer .payment-methods {
        list-style: none
    }

@media screen and (max-width: 768px) {
    footer.site-footer .payment-methods.pull-right {
        float: none !important;
        padding: 0;
        margin-top: 20px
    }
}

footer.site-footer .payment-methods li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px
}

    footer.site-footer .payment-methods li a {
        opacity: .5
    }

        footer.site-footer .payment-methods li a:hover {
            opacity: 1
        }

footer.site-footer .footer-widgets .sidebar {
    margin-bottom: 30px
}

    footer.site-footer .footer-widgets .sidebar > h3 {
        margin: 0;
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 300;
        color: #333
    }

    footer.site-footer .footer-widgets .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

        footer.site-footer .footer-widgets .sidebar ul li {
            color: #d5d5d5
        }

            footer.site-footer .footer-widgets .sidebar ul li a {
                color: #959595
            }

                footer.site-footer .footer-widgets .sidebar ul li a:hover {
                    color: #333
                }

            footer.site-footer .footer-widgets .sidebar ul li.current-menu-item > a {
                color: #333
            }

            footer.site-footer .footer-widgets .sidebar ul li .post-date {
                display: block;
                font-size: 12px
            }

    footer.site-footer .footer-widgets .sidebar.widget_search .screen-reader-text {
        display: none
    }

    footer.site-footer .footer-widgets .sidebar.widget_search #s {
        margin-bottom: 10px;
        padding: 5px 10px;
        outline: 0
    }

    footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        color: #fff;
        padding: 6px 10px
    }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit:focus {
            outline: 0
        }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit:active:focus {
                outline: 0
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-info {
            background: #00aeef
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-info:hover {
                background: #009bd6
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-success {
            background: #0fbd71
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-success:hover {
                background: #0da563
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-danger {
            background: #dd1f26
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-danger:hover {
                background: #c71c22
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-warning {
            background: #f7d227
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-warning:hover {
                background: #f6cd0e
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-default {
            background: #7b599b;
            color: #fff
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-default:hover {
                background: #6e508b
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-primary {
            background: #222
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-primary:hover {
                background: #151515
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-link {
            color: #7b599b
        }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-bordered:hover {
                border-color: #ccc
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-togglefooter.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:focus,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-togglefooter.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:active {
                background-image: none
            }

            fieldset[disabled] footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray,
            fieldset[disabled] footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.active,
            fieldset[disabled] footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:active,
            fieldset[disabled] footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:focus,
            fieldset[disabled] footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray:hover,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.disabled,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.disabled.active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.disabled:active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.disabled:focus,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray.disabled:hover,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray[disabled],
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray[disabled].active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray[disabled]:active,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray[disabled]:focus,
            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray[disabled]:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit.btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        footer.site-footer .footer-widgets .sidebar.widget_search #searchsubmit:hover {
            background: #151515
        }

    footer.site-footer .footer-widgets .sidebar.widget_recent_comments li,
    footer.site-footer .footer-widgets .sidebar.widget_recent_entries li {
        margin-bottom: 10px
    }

        footer.site-footer .footer-widgets .sidebar.widget_recent_entries li a {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap
        }

    footer.site-footer .footer-widgets .sidebar.widget_tag_cloud a {
        display: inline-block;
        font-size: 14px !important;
        background: #eee;
        padding: 4px 6px;
        line-height: 1;
        margin-bottom: 5px;
        color: #595959
    }

        footer.site-footer .footer-widgets .sidebar.widget_tag_cloud a:hover {
            background: #e1e1e1
        }

    footer.site-footer .footer-widgets .sidebar.widget_calendar #wp-calendar {
        width: 100%
    }

        footer.site-footer .footer-widgets .sidebar.widget_calendar #wp-calendar caption {
            background: #eee;
            padding: 5px 10px;
            margin-bottom: 10px
        }

        footer.site-footer .footer-widgets .sidebar.widget_calendar #wp-calendar tfoot a {
            display: inline-block;
            margin-top: 10px;
            text-transform: uppercase;
            background: #eee;
            font-size: 12px;
            padding: 5px 6px;
            line-height: 1
        }

        footer.site-footer .footer-widgets .sidebar.widget_calendar #wp-calendar tfoot #next {
            text-align: right
        }

            footer.site-footer .footer-widgets .sidebar.widget_calendar #wp-calendar tfoot #next a {
                float: right
            }

footer.site-footer.inverted {
    background: #131216
}

    footer.site-footer.inverted .expand-footer {
        text-align: center;
        background: url(/Content/assets/images/expand-footer-inv.svg)no-repeat 50% 50%;
        background-size: 28px;
        display: block;
        width: 38px;
        height: 38px;
        text-indent: -9999px;
        vertical-align: middle;
        margin: 0 auto 20px auto
    }

    footer.site-footer.inverted .footer-list li h1 {
        color: #eee
    }

    footer.site-footer.inverted .footer-list li a {
        color: #959595
    }

    footer.site-footer.inverted .footer-list.subscribe input[type=text] {
        background: #333;
        border-color: #3a3a3a
    }

    footer.site-footer.inverted .footer-list.subscribe button[type=submit] {
        background: #333;
        border-color: #3a3a3a
    }

    footer.site-footer.inverted .social-networks li a {
        background: #3a3a3a
    }

    footer.site-footer.inverted .footer-bottom {
        border-color: #3a3a3a
    }

    footer.site-footer.inverted .footer-menu {
        color: #3a3a3a
    }

        footer.site-footer.inverted .footer-menu ul li a {
            color: #959595
        }

            footer.site-footer.inverted .footer-menu ul li a:hover {
                color: #fff
            }

        footer.site-footer.inverted .footer-menu ul li:after {
            background: #3a3a3a
        }

        footer.site-footer.inverted .footer-menu ul li.current-menu-item > a {
            color: #fff
        }

    footer.site-footer.inverted .footer-widgets .sidebar > h3 {
        color: #eee
    }

    footer.site-footer.inverted .footer-widgets .sidebar ul li {
        color: #d5d5d5;
        padding-bottom: 8px;
    }

        footer.site-footer.inverted .footer-widgets .sidebar ul li a {
            color: #959595
        }

            footer.site-footer.inverted .footer-widgets .sidebar ul li a:hover {
                color: #fff
            }

        footer.site-footer.inverted .footer-widgets .sidebar ul li.current-menu-item > a {
            color: #fff
        }

    footer.site-footer.inverted .footer-widgets .sidebar.widget_search #s {
        background: #333;
        border-color: #3a3a3a;
        border: 1px solid #333
    }

    footer.site-footer.inverted .footer-widgets .sidebar.widget_search #searchsubmit {
        background: #333;
        border-color: #3a3a3a
    }

    footer.site-footer.inverted .footer-widgets .sidebar.widget_tag_cloud a {
        background: #3a3a3a;
        color: #878787
    }

        footer.site-footer.inverted .footer-widgets .sidebar.widget_tag_cloud a:hover {
            background: #474747;
            color: #fff
        }

    footer.site-footer.inverted .footer-widgets .sidebar.widget_calendar #wp-calendar caption {
        background: #3a3a3a
    }

    footer.site-footer.inverted .footer-widgets .sidebar.widget_calendar #wp-calendar tbody a {
        color: #fff
    }

    footer.site-footer.inverted .footer-widgets .sidebar.widget_calendar #wp-calendar tfoot a {
        background: #3a3a3a;
        color: #fff
    }

.error404 h1,
.error404 h2,
.error404 h3,
.error404 h4,
.error404 h5,
.error404 h6 {
    font-weight: 300;
    color: #fff
}

.error404 h1 {
    font-size: 48px
}

@media screen and (max-width: 768px) {
    .error404 h1 {
        font-size: 38px
    }
}

.error404 h2 {
    font-size: 20px
}

@media screen and (max-width: 768px) {
    .error404 h2 {
        font-size: 15px
    }
}

.error404 .not-found {
    background: #222;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 170px;
    border: 1px solid #3a3a3a
}

@media screen and (max-width: 768px) {
    .error404 .not-found {
        padding-top: 0;
        padding-bottom: 80px
    }
}

.error404 .not-found .error-404 {
    background: url(../images/not-found.html)no-repeat center center;
    width: 170px;
    height: 256px;
    display: block;
    margin: 70px auto
}

@media screen and (max-width: 768px) {
    .error404 .not-found .error-404 {
        -webkit-background-size: 130px;
        -moz-background-size: 130px;
        background-size: 130px;
        margin-bottom: 20px;
        margin-top: 50px
    }
}

.contact-page {
    padding-bottom: 30px;
    margin-bottom: 20px
}

@media screen and (max-width: 768px) {
    .contact-page .page-title {
        margin-bottom: 20px
    }
}

.contact-page .contact-form {
    font-weight: 300
}

    .contact-page .contact-form .form-control {
        background: #EEE
    }

        .contact-page .contact-form .form-control:focus,
        .contact-page .contact-form .form-control:hover {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border-color: #EEE
        }

    .contact-page .contact-form .required.has-errors {
        border-color: #dd1f26
    }

    .contact-page .contact-form label {
        font-weight: 300;
        font-size: 14px;
        text-transform: uppercase
    }

.contact-page .contact-information {
    padding-left: 60px
}

    .contact-page .contact-information .social-networks {
        padding: 20px 0 0 0;
        list-style-type: none
    }

        .contact-page .contact-information .social-networks li {
            float: left;
            margin-right: 10px;
            margin-bottom: 10px
        }

            .contact-page .contact-information .social-networks li a {
                background: #eee;
                width: 32px;
                height: 32px;
                display: block;
                text-align: center;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                border-radius: 50%
            }

                .contact-page .contact-information .social-networks li a:hover {
                    text-decoration: none
                }

                    .contact-page .contact-information .social-networks li a:hover i.facebook {
                        color: #3B5998
                    }

                    .contact-page .contact-information .social-networks li a:hover i.twitter {
                        color: #55ACEE
                    }

                    .contact-page .contact-information .social-networks li a:hover i.pinterest {
                        color: #cc2127
                    }

                    .contact-page .contact-information .social-networks li a:hover i.vimeo {
                        color: #4bf
                    }

                    .contact-page .contact-information .social-networks li a:hover i.gplus {
                        color: #DD4B39
                    }

                    .contact-page .contact-information .social-networks li a:hover i.dribbble {
                        color: #ea4c89
                    }

                    .contact-page .contact-information .social-networks li a:hover i.googleplus {
                        color: #DD4B39
                    }

                    .contact-page .contact-information .social-networks li a:hover i.vk {
                        color: #45668e
                    }

                    .contact-page .contact-information .social-networks li a:hover i.linkedin {
                        color: #0e76a8
                    }

                    .contact-page .contact-information .social-networks li a:hover i.tumblr {
                        color: #35465c
                    }

                    .contact-page .contact-information .social-networks li a:hover i.play {
                        color: #c4302b
                    }

                    .contact-page .contact-information .social-networks li a:hover i.instagram {
                        color: #3f729b
                    }

                .contact-page .contact-information .social-networks li a i {
                    color: #bbb;
                    font-style: normal;
                    font-size: 20;
                    font-weight: 300;
                    line-height: 32px;
                    text-align: center
                }

            .contact-page .contact-information .social-networks li:last-child {
                margin-right: 0
            }

#map {
    display: block;
    width: 100%;
    height: 400px
}

.view-cart {
    width: 100%
}

    .view-cart.wishlist td h3 {
        font-size: 18px
    }

    .view-cart.wishlist td span.price.total {
        font-size: 18px
    }

    .view-cart thead {
        border-bottom: 1px solid #eee
    }

    .view-cart tr {
        border-bottom: 1px solid #eee
    }

    .view-cart th {
        text-transform: uppercase;
        color: #888;
        font-weight: 300;
        padding: 0 0 10px 0;
        font-size: 13px
    }

    .view-cart td {
        padding: 20px 0;
        position: relative
    }

@media screen and (max-width: 768px) {
    .view-cart td {
        padding: 10px 0
    }
}

.view-cart td h3 {
    font-size: 24px;
    font-weight: 300;
    text-transform: none;
    margin-top: 0
}

    .view-cart td h3 a {
        color: #222
    }

    .view-cart td h3 + .price {
        font-size: 18px;
        color: #6f6f6f;
        font-weight: 300
    }

@media screen and (max-width: 768px) {
    .view-cart td h3 {
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 4px
    }

        .view-cart td h3 + .price {
            font-size: 13px
        }
}

.view-cart td .remove-item {
    background: url(../images/remove-from-cart.png)no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    top: 50%;
    left: -35px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    -webkit-transition: all 120ms linear;
    -moz-transition: all 120ms linear;
    -o-transition: all 120ms linear;
    transition: all 120ms linear;
    -moz-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
    text-indent: -9999px
}

@media screen and (max-width: 768px) {
    .view-cart td .remove-item {
        display: none
    }
}

.view-cart td.price {
    color: #888;
    font-weight: 300;
    font-size: 16px
}

    .view-cart td.price .amount {
        font-size: 22px;
        color: #222
    }

    .view-cart td .price + dl {
        margin-top: 10px
    }

.view-cart td .spinner .form-control {
    float: left;
    display: block;
    font-size: 18px;
    width: 60px;
    border-right: 0;
    border-left: 0;
    height: 45px;
    background: #eee;
    border-color: #eee;
    text-align: center
}

.view-cart td .spinner .btn {
    height: 45px;
    background: #eee;
    margin: 0 1px
}

    .view-cart td .spinner .btn:hover {
        border-color: #eee;
        color: #222
    }

@media screen and (max-width: 768px) {
    .view-cart td.product-quantity .quantity.buttons_added {
        width: 90px
    }

        .view-cart td.product-quantity .quantity.buttons_added input {
            height: 28px;
            font-size: 14px
        }

            .view-cart td.product-quantity .quantity.buttons_added input.minus,
            .view-cart td.product-quantity .quantity.buttons_added input.plus {
                font-size: 16px
            }
}

.view-cart tr:hover .remove-item {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms
}

.view-cart tr.item-removing {
    zoom: 1;
    -webkit-opacity: .25;
    -moz-opacity: .25;
    opacity: .25;
    filter: alpha(opacity=25);
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms
}

.view-cart .item-image {
    width: 1%;
    padding-right: 20px;
    vertical-align: top;
    position: relative
}

    .view-cart .item-image img {
        position: relative;
        z-index: 2
    }

@media screen and (max-width: 768px) {
    .view-cart .item-image img {
        width: 40px !important;
        height: auto
    }
}

.view-cart .product-quantity,
.view-cart .product-subtotal {
    width: 10%;
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px
}

.view-cart .product-subtotal {
    text-align: right
}

@media screen and (max-width: 768px) {
    .view-cart .product-subtotal.price .amount {
        font-size: 16px
    }
}

.view-cart .product-quantity {
    width: 25%
}

.login-button {
    color: #222;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 300;
    display: inline-block
}

    .login-button span {
        display: block;
        color: #888;
        font-size: 13px;
        font-weight: 300;
        white-space: nowrap
    }

    .login-button:hover {
        color: #222
    }

    .login-button:before {
        content: "";
        background: url(/Content/assets/images/login.svg)no-repeat;
        background-size: 40px;
        display: block;
        width: 40px;
        height: 50px;
        float: left;
        margin-right: 15px
    }

.login-button-env {
    text-align: right
}

@media screen and (max-width: 768px) {
    .login-button-env {
        text-align: left
    }

        .login-button-env .login-button {
            margin-top: 25px
        }
}

.login-button-env + .pull-right-md .coupon-env .coupon {
    left: auto;
    right: 15px
}

.coupon-env {
    position: relative
}

@media screen and (max-width: 768px) {
    .coupon-env {
        position: relative;
        margin-top: 20px;
        top: 5px
    }
}

.coupon-env .coupon-enter {
    padding-left: 20px;
    color: #222;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 300;
    display: block;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out
}

@media screen and (max-width: 768px) {
    .coupon-env .coupon-enter {
        padding-left: 0
    }
}

.coupon-env .coupon-enter span {
    display: block;
    color: #888;
    font-size: 13px;
    font-weight: 300
}

.coupon-env .coupon-enter:hover {
    color: #222
}

.coupon-env .coupon-enter:before {
    content: "";
    background: url(/Content/assets/images/coupon.svg)no-repeat;
    background-size: 40px;
    display: block;
    width: 40px;
    height: 50px;
    float: left;
    margin-right: 15px
}

.coupon-env .coupon {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 15px;
    visibility: hidden;
    white-space: nowrap;
    background: #fff;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 350ms ease-out;
    -moz-transition: all 350ms ease-out;
    -o-transition: all 350ms ease-out;
    transition: all 350ms ease-out
}

    .coupon-env .coupon .close-coupon {
        display: inline-block;
        font-size: 18px;
        margin-right: 5px;
        position: relative;
        padding-left: 10px;
        top: 2px;
        text-decoration: none
    }

    .coupon-env .coupon .form-control {
        display: inline-block;
        width: auto;
        margin-right: 5px;
        top: 1px;
        position: relative
    }

@media screen and (max-width: 768px) {
    .coupon-env .coupon {
        right: auto;
        left: 0;
        margin-top: 8px
    }

        .coupon-env .coupon .close-coupon {
            position: absolute;
            right: -30px;
            top: 5px
        }
}

.coupon-env.coupon-visible .coupon-enter {
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden
}

.coupon-env.coupon-visible .coupon {
    visibility: visible;
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

.cart-totals {
    margin-top: 30px
}

    .cart-totals .checkout {
        width: 100%;
        margin-bottom: 10px
    }

    .cart-totals .update-cart {
        width: 100%
    }

    .cart-totals .btn {
        white-space: normal
    }

.my-account {
    margin-top: 40px;
    margin-bottom: 40px
}

@media screen and (max-width: 768px) {
    .my-account {
        margin-top: 0
    }
}

.my-account .my-account-tabs-env {
    position: relative;
    z-index: 50
}

.my-account .my-account-tabs {
    padding: 0;
    color: #222;
    font-weight: 300;
    text-transform: uppercase
}

@media screen and (max-width: 768px) {
    .my-account .my-account-tabs {
        margin-bottom: 30px
    }
}

.my-account .my-account-tabs .user-profile {
    margin-bottom: 50px;
    padding-top: 20px
}

@media screen and (max-width: 768px) {
    .my-account .my-account-tabs .user-profile {
        padding-top: 0;
        margin-bottom: 30px
    }
}

.my-account .my-account-tabs .user-profile .image {
    margin-right: 20px
}

    .my-account .my-account-tabs .user-profile .image img {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        border-radius: 30px;
        width: 100%;
        width: 65px;
        height: 65px
    }

.my-account .my-account-tabs .user-profile .name {
    display: block;
    color: #222;
    font-size: 20px;
    padding-top: 10px
}

.my-account .my-account-tabs .user-profile .logout {
    font-size: 13px;
    display: block;
    color: #888
}

.my-account .my-account-tabs ul {
    padding-left: 0
}

    .my-account .my-account-tabs ul li {
        border-top: 1px solid #eee;
        border-right: 1px solid transparent;
        line-height: 32px;
        padding: 5px 0;
        list-style-type: none;
        font-size: 14px
    }

        .my-account .my-account-tabs ul li.active {
            position: relative;
            background: #FFF;
            border-right-color: #fff;
            z-index: 1
        }

            .my-account .my-account-tabs ul li.active a {
                color: #222
            }

        .my-account .my-account-tabs ul li a {
            color: #888;
            display: block
        }

.my-account .my-account-content {
    padding-left: 60px;
    min-height: 350px;
    position: relative
}

@media screen and (max-width: 992px) {
    .my-account .my-account-content {
        padding-left: 20px
    }
}

@media screen and (max-width: 768px) {
    .my-account .my-account-content {
        padding-left: 0
    }
}

.my-account .my-account-content:before {
    position: absolute;
    content: '';
    left: -31px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #eee
}

.my-account .my-account-content .page-title h2 {
    margin-top: 0
}

.my-account .my-account-content .content-pane {
    display: none;
    padding: 0;
    margin: 0
}

    .my-account .my-account-content .content-pane.active {
        display: block
    }

    .my-account .my-account-content .content-pane .address header .edit {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 11px;
        text-transform: uppercase;
        position: relative;
        top: 20px
    }

        .my-account .my-account-content .content-pane .address header .edit + h3 {
            margin-bottom: 20px
        }

.my-account .my-account-content .no-entries {
    margin: 0;
    text-align: center;
    color: #888
}

.order-list td {
    font-weight: 300
}

    .order-list td.order-number a {
        font-size: 22px;
        font-weight: 300;
        color: #222
    }

    .order-list td.order-total .amount {
        font-weight: 400;
        text-decoration: underline
    }

    .order-list td .price {
        display: block;
        color: #222
    }

.form-forgot-passwd-env {
    margin-top: 30px;
    margin-bottom: 30px
}

.shop .products:after,
.shop .products:before,
.woocommerce .products:after,
.woocommerce .products:before {
    content: " ";
    display: table
}

.shop .products:after,
.woocommerce .products:after {
    clear: both
}

.shop .products .product-category a,
.woocommerce .products .product-category a {
    display: block;
    position: relative;
    margin-bottom: 30px
}

    .shop .products .product-category a img,
    .woocommerce .products .product-category a img {
        display: block;
        width: 100%;
        height: auto
    }

    .shop .products .product-category a h3,
    .woocommerce .products .product-category a h3 {
        margin: 0;
        position: relative;
        top: 50%;
        left: 0;
        right: 0;
        text-align: center;
        color: #fff;
        background-color: #222;
        line-height: 1;
        padding: 7px 15px;
        font-size: 18px;
        padding-top: 7px;
        -webkit-transition: all 200ms;
        -moz-transition: all 200ms;
        -o-transition: all 200ms;
        transition: all 200ms
    }

        .shop .products .product-category a h3 .count,
        .woocommerce .products .product-category a h3 .count {
            position: relative;
            background-color: transparent;
            font-size: 15px;
            top: -2px;
            zoom: 1;
            -webkit-opacity: .8;
            -moz-opacity: .8;
            opacity: .8;
            filter: alpha(opacity=80)
        }

.shop .products .category-separator,
.woocommerce .products .category-separator {
    clear: both;
    height: 1px;
    border-top: 1px dashed #eee;
    margin: 0 15px;
    margin-bottom: 30px
}

.shop .shop-item,
.woocommerce .shop-item {
    position: relative;
    /*margin-bottom: 55px*/
}

@media screen and (max-width: 768px) {
    .shop .shop-item,
    .woocommerce .shop-item {
        /*margin-bottom: 30px*/
    }
}

.shop .shop-item .item-image,
.woocommerce .shop-item .item-image {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden
}

    .shop .shop-item .item-image img,
    .woocommerce .shop-item .item-image img {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1
    }

    .shop .shop-item .item-image nav,
    .woocommerce .shop-item .item-image nav {
        position: absolute;
        display: block;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        z-index: 160;
        padding: 6px;
        bottom: -25px;
        zoom: 1;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out
    }

        .shop .shop-item .item-image nav a,
        .woocommerce .shop-item .item-image nav a {
            display: inline-block;
            background: #ccc;
            margin: 0 4px;
            text-indent: -9999px;
            line-height: 1;
            width: 10px;
            height: 10px;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            border-radius: 5px;
            -webkit-transition: all 250ms linear;
            -moz-transition: all 250ms linear;
            -o-transition: all 250ms linear;
            transition: all 250ms linear
        }

            .shop .shop-item .item-image nav a.active,
            .shop .shop-item .item-image nav a:hover,
            .woocommerce .shop-item .item-image nav a.active,
            .woocommerce .shop-item .item-image nav a:hover {
                background-color: #fff;
                -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
                -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
                box-shadow: 0 0 0 1px rgba(0, 0, 0, .1)
            }

            .shop .shop-item .item-image nav a:hover,
            .woocommerce .shop-item .item-image nav a:hover {
                background-color: rgba(255, 255, 255, .7)
            }

    .shop .shop-item .item-image .wishlist,
    .woocommerce .shop-item .item-image .wishlist {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 100;
        line-height: 1;
        cursor: pointer;
        color: #888;
        padding: 10px;
        zoom: 1;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: opacity 350ms ease-in-out;
        -moz-transition: opacity 350ms ease-in-out;
        -o-transition: opacity 350ms ease-in-out;
        transition: opacity 350ms ease-in-out
    }

        .shop .shop-item .item-image .wishlist span,
        .woocommerce .shop-item .item-image .wishlist span {
            display: block;
            position: relative;
            padding: 10px;
            text-decoration: none;
            -webkit-transition: color 500ms ease-in-out;
            -moz-transition: color 500ms ease-in-out;
            -o-transition: color 500ms ease-in-out;
            transition: color 500ms ease-in-out;
            zoom: 1;
            -webkit-opacity: .8;
            -moz-opacity: .8;
            opacity: .8;
            filter: alpha(opacity=80)
        }

            .shop .shop-item .item-image .wishlist span:hover,
            .woocommerce .shop-item .item-image .wishlist span:hover {
                color: #E35450
            }

        .shop .shop-item .item-image .wishlist.is-loading,
        .woocommerce .shop-item .item-image .wishlist.is-loading {
            zoom: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            filter: alpha(opacity=100)
        }

            .shop .shop-item .item-image .wishlist.is-loading span,
            .woocommerce .shop-item .item-image .wishlist.is-loading span {
                -moz-animation: wishlistLoading 500ms linear infinite alternate;
                -webkit-animation: wishlistLoading 500ms linear infinite alternate;
                -o-animation: wishlistLoading 500ms linear infinite alternate;
                animation: wishlistLoading 500ms linear infinite alternate;
                color: #888
            }

                .shop .shop-item .item-image .wishlist.is-loading span lesshat-selector,
                .woocommerce .shop-item .item-image .wishlist.is-loading span lesshat-selector {
                    -lh-property: 0
                }

@-webkit-keyframes wishlistLoading {
    0% {
        opacity: .8
    }

    100% {
        opacity: .2
    }
}

@-moz-keyframes wishlistLoading {
    0% {
        opacity: .8
    }

    100% {
        opacity: .2
    }
}

@-o-keyframes wishlistLoading {
    0% {
        opacity: .8
    }

    100% {
        opacity: .2
    }
}

@keyframes wishlistLoading {
    0% {
        opacity: .8
    }

    100% {
        opacity: .2
    }
}

.shop .shop-item .item-image .wishlist.wishlisted,
.woocommerce .shop-item .item-image .wishlist.wishlisted {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

    .shop .shop-item .item-image .wishlist.wishlisted span,
    .woocommerce .shop-item .item-image .wishlist.wishlisted span {
        color: #E35450;
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100)
    }

.shop .shop-item .item-image:hover nav,
.woocommerce .shop-item .item-image:hover nav {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    bottom: 0
}

.shop .shop-item .item-image:hover .wishlist,
.woocommerce .shop-item .item-image:hover .wishlist {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    text-decoration: none
}

.shop .shop-item .item-image .bounce-loader,
.woocommerce .shop-item .item-image .bounce-loader {
    z-index: 50;
    position: absolute;
    padding: 15px;
    -webkit-transition: all 150ms;
    -moz-transition: all 150ms;
    -o-transition: all 150ms;
    transition: all 150ms;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0)
}

.shop .shop-item.is-loading .item-image .bounce-loader,
.woocommerce .shop-item.is-loading .item-image .bounce-loader {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

.shop .shop-item .item-image .shop-image,
.woocommerce .shop-item .item-image .shop-image {
    background-color: #fff
}

.shop .shop-item.hover-effect-1 .item-image .shop-image,
.woocommerce .shop-item.hover-effect-1 .item-image .shop-image {
    position: absolute;
    left: 0;
    top: 0;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 200ms cubic-bezier(.445, .050, .55, .95);
    -moz-transition: all 200ms cubic-bezier(.445, .050, .55, .95);
    -o-transition: all 200ms cubic-bezier(.445, .050, .55, .95);
    transition: all 200ms cubic-bezier(.445, .050, .55, .95)
}

.shop .shop-item.hover-effect-1 .item-image:hover .shop-image,
.woocommerce .shop-item.hover-effect-1 .item-image:hover .shop-image {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

.shop .shop-item.hover-effect-1.image-slide.has-images .item-image .wp-post-image,
.woocommerce .shop-item.hover-effect-1.image-slide.has-images .item-image .wp-post-image {
    position: relative;
    top: 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear
}

.shop .shop-item.hover-effect-1.image-slide.has-images .item-image .shop-image,
.woocommerce .shop-item.hover-effect-1.image-slide.has-images .item-image .shop-image {
    top: 100%;
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all 250ms cubic-bezier(.445, .050, .55, .95);
    -moz-transition: all 250ms cubic-bezier(.445, .050, .55, .95);
    -o-transition: all 250ms cubic-bezier(.445, .050, .55, .95);
    transition: all 250ms cubic-bezier(.445, .050, .55, .95)
}

.shop .shop-item.hover-effect-1.image-slide.has-images .item-image:hover .wp-post-image,
.woocommerce .shop-item.hover-effect-1.image-slide.has-images .item-image:hover .wp-post-image {
    top: -50px
}

.shop .shop-item.hover-effect-1.image-slide.has-images .item-image:hover .shop-image,
.woocommerce .shop-item.hover-effect-1.image-slide.has-images .item-image:hover .shop-image {
    top: 0;
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

.shop .shop-item.hover-effect-2 .item-image .shop-image,
.woocommerce .shop-item.hover-effect-2 .item-image .shop-image {
    position: absolute;
    left: 0;
    top: 0;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 330ms cubic-bezier(.445, .050, .55, .95);
    -moz-transition: all 330ms cubic-bezier(.445, .050, .55, .95);
    -o-transition: all 330ms cubic-bezier(.445, .050, .55, .95);
    transition: all 330ms cubic-bezier(.445, .050, .55, .95)
}

    .shop .shop-item.hover-effect-2 .item-image .shop-image.active,
    .woocommerce .shop-item.hover-effect-2 .item-image .shop-image.active {
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100)
    }

.shop .shop-item .onsale,
.woocommerce .shop-item .onsale {
    position: absolute;
    display: block;
    right: -20px;
    top: -20px;
    z-index: 50;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    background: #222;
    color: #FFF;
    line-height: 60px;
    overflow: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 60px;
    height: 60px
}

@media screen and (max-width: 768px) {
    .shop .shop-item .onsale,
    .woocommerce .shop-item .onsale {
        top: 0;
        right: 0;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0
    }
}

.shop .shop-item .onsale.oos,
.woocommerce .shop-item .onsale.oos {
    color: #fff;
    padding-top: 15px;
    font-size: 11px;
    background: #626262;
    line-height: 1.5
}

.shop .shop-item .onsale.featured,
.woocommerce .shop-item .onsale.featured {
    font-size: 11px;
    background-color: #7b599b
}

.shop .shop-item .item-info,
.woocommerce .shop-item .item-info {
    position: relative;
    padding: 2px 20px;
    display: block
}

    .shop .shop-item .item-info h3,
    .woocommerce .shop-item .item-info h3 {
        font-weight: 300;
        font-size: 20px;
        margin: 0;
        margin-top: 20px;
        margin-bottom: 5px;
        margin-right: 15px;
        margin-right: 15px !important
    }

        .shop .shop-item .item-info h3 a,
        .woocommerce .shop-item .item-info h3 a {
            color: #222
        }

    .shop .shop-item .item-info span,
    .woocommerce .shop-item .item-info span {
        font-weight: 300;
        text-transform: uppercase
    }

        .shop .shop-item .item-info span a,
        .woocommerce .shop-item .item-info span a {
            font-size: 13px;
            color: #888
        }

    .shop .shop-item .item-info .price > ins,
    .woocommerce .shop-item .item-info .price > ins {
        float: left
    }

    .shop .shop-item .item-info .price > del,
    .woocommerce .shop-item .item-info .price > del {
        color: #888;
        font-size: 15px;
        padding-left: 10px
    }

    .shop .shop-item .item-info .price ins,
    .woocommerce .shop-item .item-info .price ins {
        text-decoration: none
    }

    .shop .shop-item .item-info .add-to-cart,
    .woocommerce .shop-item .item-info .add-to-cart {
        position: absolute;
        top: 35px;
        right: 10px;
        text-decoration: none
    }

.addToFav {
    width: 23px;
    height: 22px;
    background: url(../images/spriteNew.png) 0 0 no-repeat;
    display: block;
    position: absolute;
    top: 18px;
    right: 10px;
    text-decoration: none;
    transition: transform .2s;
    transform: scale(0.74);
}

    .addToFav:hover {
        transform: scale(1.2);
        background-position: 0 100%;
    }

.shop .shop-item .item-info .add-to-cart:before,
.woocommerce .shop-item .item-info .add-to-cart:before {
    position: relative;
    font-family: EntypoRegular;
    content: '\e816';
    font-weight: 300;
    display: block;
    font-size: 22px;
    line-height: 0;
    color: #222;
    margin-right: 10px;
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -moz-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

    .shop .shop-item .item-info .add-to-cart:before lesshat-selector,
    .woocommerce .shop-item .item-info .add-to-cart:before lesshat-selector {
        -lh-property: 0
    }

@-webkit-keyframes addToCartSpinner {
    0% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes addToCartSpinner {
    0% {
        -moz-transform: rotate(0)
    }

    100% {
        -moz-transform: rotate(360deg)
    }
}

@-o-keyframes addToCartSpinner {
    0% {
        -o-transform: rotate(0)
    }

    100% {
        -o-transform: rotate(360deg)
    }
}

@keyframes addToCartSpinner {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.shop .shop-item .item-info .add-to-cart:after,
.woocommerce .shop-item .item-info .add-to-cart:after {
    position: absolute;
    top: 0;
    right: 0;
    font-family: EntypoRegular;
    content: '';
    display: block;
    color: #0fbd71;
    margin-right: 10px;
    top: -8px;
    background: url(../images/check.png)no-repeat center center;
    width: 16px;
    height: 16px;
    -webkit-background-size: 16px;
    -moz-background-size: 16px;
    background-size: 16px;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0)
}

.shop .shop-item .item-info .add-to-cart.adding-to-cart:before,
.woocommerce .shop-item .item-info .add-to-cart.adding-to-cart:before {
    -moz-animation: addToCartSpinner 1s linear infinite;
    -webkit-animation: addToCartSpinner 1s linear infinite;
    -o-animation: addToCartSpinner 1s linear infinite;
    animation: addToCartSpinner 1s linear infinite
}

.shop .shop-item .item-info .add-to-cart.added-to-cart:before,
.woocommerce .shop-item .item-info .add-to-cart.added-to-cart:before {
    zoom: 1 !important;
    -webkit-opacity: 0 !important;
    -moz-opacity: 0 !important;
    opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    -moz-transition-duration: 0ms;
    -o-transition-duration: 0ms;
    -webkit-transition-duration: 0ms;
    transition-duration: 0ms
}

.shop .shop-item .item-info .add-to-cart.added-to-cart:after,
.woocommerce .shop-item .item-info .add-to-cart.added-to-cart:after {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms
}

.shop .shop-item .item-info .add-to-cart.out-of-stock:before,
.woocommerce .shop-item .item-info .add-to-cart.out-of-stock:before {
    zoom: 1;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    filter: alpha(opacity=50);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 24px;
    position: relative
}

.shop .shop-item .item-info .add-to-cart.select-options:before,
.woocommerce .shop-item .item-info .add-to-cart.select-options:before {
    content: '\e8a6'
}

.shop .shop-item .item-info .add-to-cart.external-product:before,
.woocommerce .shop-item .item-info .add-to-cart.external-product:before {
    content: '\e832'
}

@media screen and (max-width: 768px) {
    .shop .shop-item .item-info,
    .woocommerce .shop-item .item-info {
        padding: 2px 10px
    }

        .shop .shop-item .item-info .add-to-cart,
        .woocommerce .shop-item .item-info .add-to-cart {
            right: 0
        }
}

.shop .shop-item .alert,
.woocommerce .shop-item .alert {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

    .shop .shop-item .alert.alert-danger,
    .woocommerce .shop-item .alert.alert-danger {
        background-color: rgba(221, 31, 38, .95)
    }

        .shop .shop-item .alert.alert-danger p,
        .woocommerce .shop-item .alert.alert-danger p {
            font-size: 12px;
            margin: 0
        }

            .shop .shop-item .alert.alert-danger p + p,
            .woocommerce .shop-item .alert.alert-danger p + p {
                border-top: 1px solid rgba(255, 255, 255, .3);
                padding-top: 10px;
                margin-top: 10px
            }

.shop.shop-item-single,
.woocommerce.shop-item-single {
    padding-top: 60px;
    padding-bottom: 30px
}

@media screen and (max-width: 768px) {
    .shop.shop-item-single,
    .woocommerce.shop-item-single {
        padding: 30px 0
    }
}

.shop .quantity,
.woocommerce .quantity {
    display: none
}

    .shop .quantity.buttons_added,
    .woocommerce .quantity.buttons_added {
        display: block;
        width: 155px;
        background: #eee
    }

        .shop .quantity.buttons_added:after,
        .shop .quantity.buttons_added:before,
        .woocommerce .quantity.buttons_added:after,
        .woocommerce .quantity.buttons_added:before {
            content: " ";
            display: table
        }

        .shop .quantity.buttons_added:after,
        .woocommerce .quantity.buttons_added:after {
            clear: both
        }

        .shop .quantity.buttons_added input,
        .woocommerce .quantity.buttons_added input {
            display: block;
            float: left;
            width: auto;
            margin: 0;
            padding: 0;
            text-align: center;
            border: 0;
            background-color: transparent;
            outline: 0;
            font-size: 18px;
            height: 45px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box
        }

            .shop .quantity.buttons_added input.input-text,
            .woocommerce .quantity.buttons_added input.input-text {
                width: 50%;
                border: 1px solid #fff;
                border-top: 0;
                border-bottom: 0;
                text-indent: 0;
                -moz-appearance: textfield
            }

            .shop .quantity.buttons_added input.minus,
            .shop .quantity.buttons_added input.plus,
            .woocommerce .quantity.buttons_added input.minus,
            .woocommerce .quantity.buttons_added input.plus {
                width: 25%
            }

                .shop .quantity.buttons_added input.minus:active,
                .shop .quantity.buttons_added input.plus:active,
                .woocommerce .quantity.buttons_added input.minus:active,
                .woocommerce .quantity.buttons_added input.plus:active {
                    -moz-box-shadow: inset 0 5px 10px rgba(0, 0, 0, .05);
                    -webkit-box-shadow: inset 0 5px 10px rgba(0, 0, 0, .05);
                    box-shadow: inset 0 5px 10px rgba(0, 0, 0, .05)
                }

.woocommerce-checkout #place_order {
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms
}

.processing.woocommerce-checkout #place_order {
    zoom: 1;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    filter: alpha(opacity=50)
}

.shop-item-single {
    position: relative;
    overflow: hidden
}

    .shop-item-single .product:after,
    .shop-item-single .product:before {
        content: " ";
        display: table
    }

    .shop-item-single .product:after {
        clear: both
    }

    .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        color: #fff;
        padding: 4px 12px;
        font-size: 18px;
        padding: 10px 15px;
        text-decoration: none
    }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button:focus {
            outline: 0
        }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button:active:focus {
                outline: 0
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-info {
            background: #00aeef
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-info:hover {
                background: #009bd6
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-success {
            background: #0fbd71
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-success:hover {
                background: #0da563
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-danger {
            background: #dd1f26
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-danger:hover {
                background: #c71c22
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-warning {
            background: #f7d227
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-warning:hover {
                background: #f6cd0e
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-default {
            background: #7b599b;
            color: #fff
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-default:hover {
                background: #6e508b
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-primary {
            background: #222
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-primary:hover {
                background: #151515
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-link {
            color: #7b599b
        }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-bordered:hover {
                border-color: #ccc
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-toggle.shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:focus,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-toggle.shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:active {
                background-image: none
            }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.disabled,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.disabled.active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.disabled:active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.disabled:focus,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.disabled:hover,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray[disabled],
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray[disabled].active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray[disabled]:active,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray[disabled]:focus,
            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray[disabled]:hover,
            fieldset[disabled] .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray,
            fieldset[disabled] .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray.active,
            fieldset[disabled] .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:active,
            fieldset[disabled] .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:focus,
            fieldset[disabled] .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button.btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        .shop-item-single .item-details-single.product-type-external .single_add_to_cart_button.button:hover {
            background: #151515
        }

    .shop-item-single .item-details-single.product-type-external .cart {
        padding-bottom: 30px
    }

    .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table {
        width: 100%
    }

        .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table td {
            vertical-align: middle;
            padding: 2px 0
        }

            .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table td.item-name {
                padding-left: 20px;
                width: 90%
            }

                .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table td.item-name label {
                    font-size: 24px;
                    margin: 0
                }

        .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table .price {
            margin: 0;
            padding: 0;
            font-size: 24px;
            white-space: nowrap;
            text-align: right
        }

            .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table .price ins {
                float: none
            }

            .shop-item-single .item-details-single.product-type-grouped .item-info.summary .group_table .price del {
                margin: 0;
                display: block;
                font-size: 14px
            }

    .shop-item-single .item-details-single.product-type-grouped .item-info.summary form.cart .single_add_to_cart_button {
        margin-left: 0;
        margin-top: 10px
    }

    .shop-item-single .item-details-single .shop-item .onsale {
        right: -10px
    }

    .shop-item-single .item-details-single .shop-item .item-image {
        display: block;
        margin-bottom: 30px;
        zoom: 1;
        -webkit-opacity: .5;
        -moz-opacity: .5;
        opacity: .5;
        filter: alpha(opacity=50);
        -webkit-transition: all 250ms linear;
        -moz-transition: all 250ms linear;
        -o-transition: all 250ms linear;
        transition: all 250ms linear
    }

        .shop-item-single .item-details-single .shop-item .item-image:hover {
            zoom: 1;
            -webkit-opacity: .8;
            -moz-opacity: .8;
            opacity: .8;
            filter: alpha(opacity=80)
        }

        .shop-item-single .item-details-single .shop-item .item-image.active {
            zoom: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            filter: alpha(opacity=100)
        }

    .shop-item-single .item-details-single .shop-item .item-image-big {
        position: relative;
        width: 100%
    }

        .shop-item-single .item-details-single .shop-item .item-image-big img {
            width: 100%;
            height: auto;
            display: block
        }

    .shop-item-single .item-details-single .shop-item .images {
        display: none
    }

    .shop-item-single .item-details-single .shop-item .product-thumbnails {
        overflow: hidden
    }

        .shop-item-single .item-details-single .shop-item .product-thumbnails .an-vertical-carousel-stage {
            position: relative
        }

        .shop-item-single .item-details-single .shop-item .product-thumbnails a {
            position: relative
        }

    .shop-item-single .item-details-single .shop-item .product-images {
        position: relative;
        overflow: hidden
    }

        .shop-item-single .item-details-single .shop-item .product-images a {
            display: block;
            -ms-backface-visibility: hidden;
            -o-backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden
        }

            .shop-item-single .item-details-single .shop-item .product-images a:after,
            .shop-item-single .item-details-single .shop-item .product-images a:before {
                content: " ";
                display: table
            }

            .shop-item-single .item-details-single .shop-item .product-images a:after {
                clear: both
            }

        .shop-item-single .item-details-single .shop-item .product-images img {
            display: block;
            position: relative;
            width: 100%;
            height: auto
        }

        .shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons {
            position: absolute;
            z-index: 500;
            top: 50%;
            left: 0;
            right: 0;
            height: 0;
            visibility: hidden;
            -webkit-transition: all 150ms linear;
            -moz-transition: all 150ms linear;
            -o-transition: all 150ms linear;
            transition: all 150ms linear
        }

@media screen and (max-width: 768px) {
    .shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons {
        visibility: visible
    }

        .shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-next,
        .shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-prev {
            left: 0 !important
        }
}

.shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-next,
.shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-prev {
    padding: 30px 12px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, .6) no-repeat center center;
    -webkit-background-size: 25px;
    -moz-background-size: 25px;
    background-size: 25px;
    margin-top: -30px;
    position: relative;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear
}

    .shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-next:hover,
    .shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-prev:hover {
        background-color: #fff
    }

.shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons i {
    display: block;
    font-style: normal;
    font-size: 50px
}

.shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-prev {
    float: left;
    left: -50px;
    padding-right: 20px;
    background-image: url(/Content/assets/images/arrow-left.svg)
}

.shop-item-single .item-details-single .shop-item .product-images .owl-controls .owl-buttons .owl-next {
    float: right;
    left: 50px;
    padding-left: 20px;
    background-image: url(/Content/assets/images/arrow-right.svg)
}

.shop-item-single .item-details-single .shop-item .product-images.hovered .owl-controls .owl-buttons,
.shop-item-single .item-details-single .shop-item .product-images:hover .owl-controls .owl-buttons {
    visibility: visible
}

    .shop-item-single .item-details-single .shop-item .product-images.hovered .owl-controls .owl-buttons .owl-next,
    .shop-item-single .item-details-single .shop-item .product-images.hovered .owl-controls .owl-buttons .owl-prev,
    .shop-item-single .item-details-single .shop-item .product-images:hover .owl-controls .owl-buttons .owl-next,
    .shop-item-single .item-details-single .shop-item .product-images:hover .owl-controls .owl-buttons .owl-prev {
        left: 0
    }

.shop-item-single .item-details-single .shop-item .horizontal-product-gallery {
    margin-top: 20px
}

    .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails {
        margin: 0 -15px
    }

        .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails:after,
        .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails:before {
            content: " ";
            display: table
        }

        .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails:after {
            clear: both
        }

        .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails a {
            float: left;
            display: block;
            padding: 0 15px;
            width: 20%
        }

@media screen and (max-width: 992px) {
    .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails a {
        width: 25%
    }
}

@media screen and (max-width: 768px) {
    .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails a {
        width: 20%
    }
}

@media screen and (max-width: 480px) {
    .shop-item-single .item-details-single .shop-item .horizontal-product-gallery .product-thumbnails a {
        width: 33.3333333%
    }
}

@media screen and (max-width: 768px) {
    .shop-item-single .item-details-single .shop-item .onsale {
        right: 15px
    }
}

.shop-item-single .shop-item-arrows .left-arrow {
    background: url(/Content/assets/images/arrow-left.svg)no-repeat 50% 50%;
    background-size: 38px;
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    left: 20px;
    top: 400px
}

.shop-item-single .shop-item-arrows .right-arrow {
    background: url(/Content/assets/images/arrow-right.svg)no-repeat 50% 50%;
    background-size: 38px;
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    right: 20px;
    top: 400px
}

.shop-item-single .item-info.summary {
    padding-left: 30px;
    font-weight: 300;
    margin-bottom: 30px
}

@media screen and (max-width: 768px) {
    .shop-item-single .item-info.summary {
        padding: 0
    }
}

.shop-item-single .item-info.summary .variations {
    width: 100%
}

    .shop-item-single .item-info.summary .variations .value {
        text-align: left
    }

    .shop-item-single .item-info.summary .variations .label {
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 300;
        color: #888;
        padding: 0;
        display: block;
        text-align: left;
        padding-bottom: 5px
    }

    .shop-item-single .item-info.summary .variations div.variation-select {
        background: 0 0
    }

        .shop-item-single .item-info.summary .variations div.variation-select .btn {
            background-color: transparent;
            color: #222;
            padding: 0;
            font-size: 26px;
            font-weight: 300;
            outline: 0 !important;
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important
        }

            .shop-item-single .item-info.summary .variations div.variation-select .btn .filter-option {
                width: auto
            }

            .shop-item-single .item-info.summary .variations div.variation-select .btn .caret {
                position: relative;
                float: left;
                top: 18px;
                margin: 0;
                margin-left: 20px
            }

    .shop-item-single .item-info.summary .variations .btn-full {
        width: 100%
    }

    .shop-item-single .item-info.summary .variations .dropdown .btn {
        border: none;
        padding: 0;
        font-size: 26px !important;
        color: #222
    }

.shop-item-single .item-info.summary .product-info {
    list-style: none;
    padding: 0;
    font-size: 13px;
    margin-top: 30px
}

    .shop-item-single .item-info.summary .product-info li {
        margin-bottom: 5px
    }

    .shop-item-single .item-info.summary .product-info b {
        color: #222;
        font-weight: 400
    }

.shop-item-single .item-info.summary h1 {
    margin: 10px 0 20px 0;
    font-size: 40px
}

@media screen and (max-width: 768px) {
    .shop-item-single .item-info.summary h1 {
        font-size: 30px
    }
}

.shop-item-single .item-info.summary h1 small {
    margin-top: 5px;
    font-size: 14px
}

    .shop-item-single .item-info.summary h1 small a {
        color: #888
    }

.shop-item-single .item-info.summary .buttons {
    margin-top: 30px
}

.shop-item-single .item-info.summary input.add-to-cart {
    background: #eee;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    display: block;
    height: 45px;
    color: #222;
    display: inline-block;
    padding: 10px 15px
}

    .shop-item-single .item-info.summary input.add-to-cart:before {
        font-family: EntypoRegular;
        content: '\2795 ';
        font-weight: 300;
        vertical-align: middle;
        font-size: 45px;
        line-height: 0;
        color: #222;
        margin-right: 10px
    }

    .shop-item-single .item-info.summary input.add-to-cart:hover {
        background: #222;
        color: #fff
    }

        .shop-item-single .item-info.summary input.add-to-cart:hover:before {
            color: #fff
        }

.shop-item-single .item-info.summary .spinner .form-control {
    float: left;
    display: block;
    font-size: 18px;
    width: 70px;
    border-right: 0;
    border-left: 0;
    height: 45px;
    background: #eee;
    border-color: #eee;
    text-align: center
}

    .shop-item-single .item-info.summary .spinner .form-control:hover {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

.shop-item-single .item-info.summary .spinner .btn {
    height: 45px;
    background: #eee;
    margin: 0 1px
}

    .shop-item-single .item-info.summary .spinner .btn:hover {
        border-color: #eee;
        color: #222
    }

.shop-item-single .item-info.summary .description {
    margin-top: 30px
}

.shop-item-single .item-info.summary .price {
    padding: 10px 0;
    padding-bottom: 0;
    font-size: 36px;
    margin-bottom: 40px
}

    .shop-item-single .item-info.summary .price:after,
    .shop-item-single .item-info.summary .price:before {
        content: " ";
        display: table
    }

    .shop-item-single .item-info.summary .price:after {
        clear: both
    }

@media screen and (max-width: 768px) {
    .shop-item-single .item-info.summary .price {
        margin-bottom: 0
    }
}

.shop-item-single .item-info.summary .price ins {
    text-decoration: none !important;
    float: left;
    vertical-align: text-bottom
}

.shop-item-single .item-info.summary .price del {
    margin-left: 15px;
    color: #888;
    font-size: 24px;
    margin-top: 13px;
    display: inline-block
}

.shop-item-single .item-info.summary .altar-product-rating {
    margin-bottom: 20px
}

    .shop-item-single .item-info.summary .altar-product-rating .star-rating {
        display: inline-block
    }

    .shop-item-single .item-info.summary .altar-product-rating .star-rating-icons {
        position: relative;
        display: inline-block;
        margin-bottom: 5px;
        margin-right: 10px;
        top: 0
    }

        .shop-item-single .item-info.summary .altar-product-rating .star-rating-icons i {
            position: relative;
            font-style: normal;
            font-size: 16px;
            color: #999
        }

            .shop-item-single .item-info.summary .altar-product-rating .star-rating-icons i:before {
                margin-right: 0;
                width: 12px
            }

            .shop-item-single .item-info.summary .altar-product-rating .star-rating-icons i.filled {
                color: gold
            }

.shop-item-single .item-info.summary form.cart {
    margin-bottom: 40px
}

    .shop-item-single .item-info.summary form.cart:after,
    .shop-item-single .item-info.summary form.cart:before {
        content: " ";
        display: table
    }

    .shop-item-single .item-info.summary form.cart:after {
        clear: both
    }

@media screen and (max-width: 768px) {
    .shop-item-single .item-info.summary form.cart {
        margin-top: 10px !important;
        margin-bottom: 20px
    }
}

.shop-item-single .item-info.summary form.cart.variations_form {
    margin-top: 20px
}

.shop-item-single .item-info.summary .quantity {
    float: left;
    margin-right: 20px
}

.shop-item-single .item-info.summary .button {
    float: left;
    height: 45px;
    background: #222;
    border: 0;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 300;
    outline: 0;
    width: 355px;
    max-width: 100%;
    color: #fff;
}
    /*.shop-item-single .item-info.summary form.cart .button:before {
    display: inline-block;
    font-size: 24px;
    content: '\e816';
    font-family: EntypoRegular;
    line-height: 0;
    position: relative;
    margin-right: 10px;
    top: 1px
}*/
    .shop-item-single .item-info.summary .button:hover {
        background-color: #eee;
        color: #222
    }

    .shop-item-single .item-info.summary .button:active {
        background-color: #7b599b
    }

.shop-item-single .item-info.summary .variations label {
    display: block
}

.shop-item-single .item-info.summary .variations .value {
    padding-top: 15px
}

.shop-item-single .item-info.summary .reset_variations {
    text-transform: uppercase;
    font-size: 11px;
    display: inline-block;
    margin-top: 10px;
    zoom: 1;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    filter: alpha(opacity=50)
}

    .shop-item-single .item-info.summary .reset_variations:hover {
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100)
    }

.shop-item-single .item-info.summary .single_variation {
    padding-top: 20px;
    padding-bottom: 40px
}

@media screen and (max-width: 768px) {
    .shop-item-single .item-info.summary .single_variation {
        padding-bottom: 20px
    }
}

@media screen and (max-width: 768px) {
    .shop-item-single .item-info.summary .product_meta {
        margin-top: 30px
    }
}

.shop-item-single .item-info.summary .product_meta > span {
    display: block;
    text-transform: uppercase;
    margin: 5px 0
}

    .shop-item-single .item-info.summary .product_meta > span a,
    .shop-item-single .item-info.summary .product_meta > span span {
        color: #222;
        font-weight: 400
    }

        .shop-item-single .item-info.summary .product_meta > span a:hover {
            color: #7b599b
        }

.shop-item-single .item-info.summary .product_meta .wcml_currency_switcher {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 300;
    margin-bottom: 30px;
    border-color: #eee
}

    .shop-item-single .item-info.summary .product_meta .wcml_currency_switcher:hover {
        border-color: #ccc
    }

    .shop-item-single .item-info.summary .product_meta .wcml_currency_switcher:focus {
        -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
        -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
        border-color: #ccc;
        outline: 0
    }

    .shop-item-single .item-info.summary .product_meta .wcml_currency_switcher:disabled {
        background: #f3f3f3
    }

    .shop-item-single .item-info.summary .product_meta .wcml_currency_switcher:hover {
        border-color: #eee
    }

    .shop-item-single .item-info.summary .product_meta .wcml_currency_switcher .dropdown-toggle {
        height: 16px !important
    }

.shop-item-single .item-info.summary .out-of-stock {
    display: inline-block;
    background: #222;
    color: #fff;
    line-height: 1;
    padding: 5px 10px
}

.shop-item-single .tabs .nav-tabs {
    margin: 20px 0
}

@media screen and (max-width: 768px) {
    .shop-item-single .tabs .nav-tabs {
        border-bottom: 0 !important;
        margin-bottom: 0;
        margin-left: -15px;
        margin-right: -15px
    }
}

.shop-item-single .tabs .nav-tabs li {
    font-size: 20px;
    margin-right: 40px
}

    .shop-item-single .tabs .nav-tabs li.active a {
        border: none;
        background: 0 0;
        padding: 6px 0;
        border-bottom: 2px solid #222
    }

        .shop-item-single .tabs .nav-tabs li.active a:hover {
            background: 0 0;
            padding: 6px 0;
            border-bottom: 2px solid #222
        }

    .shop-item-single .tabs .nav-tabs li a {
        text-transform: none;
        padding: 6px 0;
        background: 0 0;
        border: none
    }

        .shop-item-single .tabs .nav-tabs li a:hover {
            background: 0 0;
            padding: 6px 0
        }

    .shop-item-single .tabs .nav-tabs li.reviews_tab a span {
        font-weight: normal;
        font-family: 'core_sans_g45_regular';
    }

@media screen and (max-width: 768px) {
    .shop-item-single .tabs .nav-tabs li {
        display: block;
        float: none;
        width: 100%
    }

        .shop-item-single .tabs .nav-tabs li a {
            padding: 10px 15px !important;
            border-bottom: 1px solid #eee !important
        }

        .shop-item-single .tabs .nav-tabs li.active {
            background: #fafafa
        }
}

.shop-footer-sidebar {
    margin-top: 30px;
    margin-bottom: 20px
}

@media screen and (max-width: 768px) {
    .shop-footer-sidebar {
        margin-top: 0
    }
}

.shop-item-single .item-info.summary form.cart .button::before {
    line-height: 24px;
    top: 2px
}

.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-toggle {
    height: 16px !important
}

.checkout .dropdown .btn-bordered {
    width: 100%
}

.checkout .cart-totals {
    padding: 100px
}

.your-order .sidebar {
    padding: 0 20px
}

.your-order .order-list {
    padding: 0;
    margin-bottom: 30px
}

    .your-order .order-list li {
        border-bottom: 1px solid #eee;
        line-height: 32px;
        text-transform: uppercase;
        list-style: none;
        padding: 0;
        font-weight: 300;
        line-height: 26px
    }

        .your-order .order-list li .price {
            float: right;
            color: #222
        }

        .your-order .order-list li.list-heading {
            font-weight: 400;
            color: #222
        }

    .your-order .order-list.payments {
        margin-bottom: 0
    }

        .your-order .order-list.payments input[type=radio] {
            margin-right: 10px
        }

.login-form-env {
    overflow: hidden
}

    .login-form-env .bordered-block {
        margin-bottom: 40px
    }

section.blog .post {
    padding-top: 35px;
    padding-bottom: 60px
}

    section.blog .post:after,
    section.blog .post:before {
        content: " ";
        display: table
    }

    section.blog .post:after {
        clear: both
    }

@media screen and (max-width: 768px) {
    section.blog .post {
        padding-top: 30px;
        padding-bottom: 0
    }
}

section.blog .post.first-post {
    padding-top: 0
}

section.blog .post .post-image {
    text-align: center;
    overflow: hidden;
    position: relative;
    display: block
}

    section.blog .post .post-image a {
        display: block
    }

        section.blog .post .post-image a.post-is-image:after {
            position: absolute;
            display: block;
            content: '\e80e';
            font-family: EntypoRegular;
            font-size: 50px;
            line-height: 96px;
            text-align: center;
            top: 50%;
            left: 50%;
            margin-left: -48px;
            margin-top: -48px;
            background: rgba(255, 255, 255, .35);
            color: rgba(255, 255, 255, .6);
            zoom: 1;
            -webkit-opacity: 0;
            -moz-opacity: 0;
            opacity: 0;
            filter: alpha(opacity=0);
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%;
            width: 96px;
            height: 96px;
            -webkit-transition: all 250ms;
            -moz-transition: all 250ms;
            -o-transition: all 250ms;
            transition: all 250ms
        }

        section.blog .post .post-image a.post-is-image:hover:after {
            zoom: 1;
            -webkit-opacity: .8;
            -moz-opacity: .8;
            opacity: .8;
            filter: alpha(opacity=80)
        }

    section.blog .post .post-image img {
        position: relative;
        width: 100%;
        height: auto
    }

    section.blog .post .post-image .thumb-hover {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #7b599b;
        display: block;
        zoom: 1;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 550ms;
        -moz-transition: all 550ms;
        -o-transition: all 550ms;
        transition: all 550ms
    }

    section.blog .post .post-image em {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        color: #fff;
        margin-left: -125px;
        font-style: normal;
        font-size: 23px;
        text-align: center;
        margin-top: 20px;
        text-transform: uppercase;
        width: 250px;
        zoom: 1;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 300ms;
        -moz-transition: all 300ms;
        -o-transition: all 300ms;
        transition: all 300ms
    }

        section.blog .post .post-image em:after {
            display: block;
            position: absolute;
            left: 50%;
            height: 3px;
            background: #fff;
            content: '';
            width: 0;
            bottom: -20px;
            overflow: hidden;
            -webkit-transition: all 200ms;
            -moz-transition: all 200ms;
            -o-transition: all 200ms;
            transition: all 200ms
        }

    section.blog .post .post-image:hover .thumb-hover {
        zoom: 1;
        -webkit-opacity: .4;
        -moz-opacity: .4;
        opacity: .4;
        filter: alpha(opacity=40);
        left: 20px;
        right: 20px;
        top: 20px;
        bottom: 20px
    }

    section.blog .post .post-image:hover em {
        margin-top: -11.5px;
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100)
    }

        section.blog .post .post-image:hover em:after {
            width: 100%;
            margin-left: -50%;
            bottom: -10px
        }

    section.blog .post .post-image .post-is-video:after {
        position: absolute;
        display: block;
        content: '\25B6';
        font-family: EntypoRegular;
        font-size: 60px;
        text-indent: 15px;
        line-height: 96px;
        text-align: center;
        top: 50%;
        left: 50%;
        margin-left: -48px;
        margin-top: -48px;
        background: rgba(255, 255, 255, .35);
        color: rgba(255, 255, 255, .6);
        zoom: 1;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        width: 96px;
        height: 96px;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        -o-transition: all 250ms;
        transition: all 250ms
    }

    section.blog .post .post-image .post-is-video:hover:after {
        color: rgba(255, 255, 255, .7);
        zoom: 1;
        -webkit-opacity: .8;
        -moz-opacity: .8;
        opacity: .8;
        filter: alpha(opacity=80)
    }

section.blog .post .post-content {
    font-size: 15px;
    line-height: 20px
}

    section.blog .post .post-content p {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 20px
    }

        section.blog .post .post-content p b,
        section.blog .post .post-content p strong {
            color: #222;
            font-weight: 400
        }

    section.blog .post .post-content .read-more {
        display: block;
        color: #222;
        margin: 20px 0;
        font-size: 14px
    }

        section.blog .post .post-content .read-more:after {
            content: " »"
        }

    section.blog .post .post-content .title {
        margin: 0;
        margin-bottom: 30px;
        font-size: 36px
    }

@media screen and (max-width: 768px) {
    section.blog .post .post-content .title {
        font-size: 25px
    }
}

section.blog .post .post-content .title small {
    margin-top: 25px;
    line-height: 1.4
}

section.blog .post .post-content .title a {
    color: #222
}

section.blog .post .post-content .post-pagination {
    margin-top: 30px;
    text-align: center
}

section.blog .post .post-prev-next {
    margin-top: 30px
}

    section.blog .post .post-prev-next .post-next {
        text-align: right
    }

@media screen and (max-width: 768px) {
    section.blog .post .post-prev-next .post-next {
        text-align: left;
        margin-top: 20px
    }
}

section.blog .post .post-prev-next a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

section.blog .post.has-post-thumbnail .title {
    margin-top: 60px
}

@media screen and (max-width: 768px) {
    section.blog .post.has-post-thumbnail .title {
        margin-top: 30px
    }
}

section.blog .post.no-thumbnail .title {
    margin-top: 0
}

section.blog .post .comments {
    padding-top: 25px
}

    section.blog .post .comments .title {
        font-size: 35px;
        padding-bottom: 40px;
        border-bottom: 1px solid #eee
    }

        section.blog .post .comments .title .replied-to {
            color: #222;
            font-weight: 400
        }

@media screen and (max-width: 768px) {
    section.blog .post .comments .title {
        font-size: 25px;
        padding-bottom: 10px
    }
}

section.blog .post .comments .comment {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    padding-left: 90px
}

    section.blog .post .comments .comment.depth-1 {
        padding-top: 50px;
        padding-bottom: 50px
    }

@media screen and (max-width: 768px) {
    section.blog .post .comments .comment {
        padding-top: 20px;
        padding-bottom: 20px
    }

        section.blog .post .comments .comment.depth-1 {
            padding-top: 20px;
            padding-bottom: 20px
        }
}

section.blog .post .comments .comment .comment-reply-link,
section.blog .post .comments .comment .reply {
    color: #222;
    text-transform: uppercase;
    font-size: 12px
}

section.blog .post .comments .comment h4 {
    margin: 0;
    margin-bottom: 20px;
    color: #222;
    font-size: 18px
}

    section.blog .post .comments .comment h4 small {
        margin-top: 5px;
        font-size: 12px
    }

section.blog .post .comments .comment .avatar {
    display: block;
    position: absolute;
    left: 0
}

    section.blog .post .comments .comment .avatar img {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 150px;
        -moz-border-radius: 150px;
        -ms-border-radius: 150px;
        border-radius: 150px;
        width: 60px;
        height: 60px
    }

section.blog .post .comments .comment + .comment-respond {
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    position: relative;
    margin-bottom: 20px;
    margin-top: -1px
}

    section.blog .post .comments .comment + .comment-respond #reply-title {
        display: none
    }

    section.blog .post .comments .comment + .comment-respond #cancel-comment-reply-link {
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px;
        text-transform: uppercase
    }

    section.blog .post .comments .comment + .comment-respond #submit {
        margin-right: 0
    }

    section.blog .post .comments .comment + .comment-respond:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6px 6px 6px;
        border-color: transparent transparent #d5d5d5 transparent;
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        margin-top: -7px;
        margin-left: -3px
    }

    section.blog .post .comments .comment + .comment-respond .title {
        margin: 0;
        font-size: 25px
    }

section.blog .post .comments .reply-form {
    margin-top: 10px
}

    section.blog .post .comments .reply-form.user-logged-in .title {
        margin-bottom: 30px
    }

    section.blog .post .comments .reply-form.user-logged-in #submit {
        margin-right: 0
    }

section.blog .post .comments .pagination {
    margin-top: 40px
}

section.blog .post .comments .comment-respond {
    font-weight: 300
}

    section.blog .post .comments .comment-respond form:after,
    section.blog .post .comments .comment-respond form:before {
        content: " ";
        display: table
    }

    section.blog .post .comments .comment-respond form:after {
        clear: both
    }

    section.blog .post .comments .comment-respond .title {
        margin: 60px 0;
        border-bottom: 0;
        margin-bottom: 35px
    }

        section.blog .post .comments .comment-respond .title small {
            margin-top: 5px
        }

    section.blog .post .comments .comment-respond .form-control {
        background: #EEE
    }

        section.blog .post .comments .comment-respond .form-control:focus,
        section.blog .post .comments .comment-respond .form-control:hover {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border-color: #EEE
        }

    section.blog .post .comments .comment-respond label {
        font-weight: 300;
        font-size: 14px;
        text-transform: uppercase
    }

    section.blog .post .comments .comment-respond textarea {
        min-height: 130px;
        max-height: 300px
    }

    section.blog .post .comments .comment-respond #submit {
        float: right;
        margin-top: 15px;
        color: #fff;
        padding: 5px 15px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        margin-right: 15px
    }

        section.blog .post .comments .comment-respond #submit:focus {
            outline: 0
        }

        section.blog .post .comments .comment-respond #submit:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            section.blog .post .comments .comment-respond #submit:active:focus {
                outline: 0
            }

        section.blog .post .comments .comment-respond #submit.btn-info {
            background: #00aeef
        }

            section.blog .post .comments .comment-respond #submit.btn-info:hover {
                background: #009bd6
            }

        section.blog .post .comments .comment-respond #submit.btn-success {
            background: #0fbd71
        }

            section.blog .post .comments .comment-respond #submit.btn-success:hover {
                background: #0da563
            }

        section.blog .post .comments .comment-respond #submit.btn-danger {
            background: #dd1f26
        }

            section.blog .post .comments .comment-respond #submit.btn-danger:hover {
                background: #c71c22
            }

        section.blog .post .comments .comment-respond #submit.btn-warning {
            background: #f7d227
        }

            section.blog .post .comments .comment-respond #submit.btn-warning:hover {
                background: #f6cd0e
            }

        section.blog .post .comments .comment-respond #submit.btn-default {
            background: #7b599b;
            color: #fff
        }

            section.blog .post .comments .comment-respond #submit.btn-default:hover {
                background: #6e508b
            }

        section.blog .post .comments .comment-respond #submit.btn-primary {
            background: #222
        }

            section.blog .post .comments .comment-respond #submit.btn-primary:hover {
                background: #151515
            }

        section.blog .post .comments .comment-respond #submit.btn-link {
            color: #7b599b
        }

        section.blog .post .comments .comment-respond #submit.btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            section.blog .post .comments .comment-respond #submit.btn-bordered:hover {
                border-color: #ccc
            }

        section.blog .post .comments .comment-respond #submit.btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-togglesection.blog .post .comments .comment-respond #submit.btn-gray,
            section.blog .post .comments .comment-respond #submit.btn-gray.active,
            section.blog .post .comments .comment-respond #submit.btn-gray:active,
            section.blog .post .comments .comment-respond #submit.btn-gray:focus,
            section.blog .post .comments .comment-respond #submit.btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-togglesection.blog .post .comments .comment-respond #submit.btn-gray,
            section.blog .post .comments .comment-respond #submit.btn-gray.active,
            section.blog .post .comments .comment-respond #submit.btn-gray:active {
                background-image: none
            }

            fieldset[disabled] section.blog .post .comments .comment-respond #submit.btn-gray,
            fieldset[disabled] section.blog .post .comments .comment-respond #submit.btn-gray.active,
            fieldset[disabled] section.blog .post .comments .comment-respond #submit.btn-gray:active,
            fieldset[disabled] section.blog .post .comments .comment-respond #submit.btn-gray:focus,
            fieldset[disabled] section.blog .post .comments .comment-respond #submit.btn-gray:hover,
            section.blog .post .comments .comment-respond #submit.btn-gray.disabled,
            section.blog .post .comments .comment-respond #submit.btn-gray.disabled.active,
            section.blog .post .comments .comment-respond #submit.btn-gray.disabled:active,
            section.blog .post .comments .comment-respond #submit.btn-gray.disabled:focus,
            section.blog .post .comments .comment-respond #submit.btn-gray.disabled:hover,
            section.blog .post .comments .comment-respond #submit.btn-gray[disabled],
            section.blog .post .comments .comment-respond #submit.btn-gray[disabled].active,
            section.blog .post .comments .comment-respond #submit.btn-gray[disabled]:active,
            section.blog .post .comments .comment-respond #submit.btn-gray[disabled]:focus,
            section.blog .post .comments .comment-respond #submit.btn-gray[disabled]:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            section.blog .post .comments .comment-respond #submit.btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        section.blog .post .comments .comment-respond #submit:hover {
            background: #151515
        }

section.blog .post .author-post {
    margin-top: 50px
}

    section.blog .post .author-post:after,
    section.blog .post .author-post:before {
        content: " ";
        display: table
    }

    section.blog .post .author-post:after {
        clear: both
    }

    section.blog .post .author-post .author-img {
        float: left
    }

        section.blog .post .author-post .author-img img {
            display: block;
            line-height: 1;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%
        }

@media screen and (max-width: 768px) {
    section.blog .post .author-post .author-img img {
        width: 80px;
        height: auto
    }
}

section.blog .post .author-post .author-description {
    padding-left: 130px
}

@media screen and (max-width: 768px) {
    section.blog .post .author-post .author-description {
        padding-left: 100px
    }
}

section.blog .post .author-post .author-description .author-name {
    display: block;
    margin-bottom: 10px;
    font-size: 18px
}

section.blog .pagination {
    margin-bottom: 40px
}

section.blog.blog-sidebar {
    margin-top: 30px
}

@media screen and (max-width: 768px) {
    section.blog.blog-sidebar {
        margin-left: 20px;
        margin-right: 20px
    }
}

section.blog.blog-sidebar .pagination {
    margin-bottom: 30px
}

@media screen and (min-width: 768px) {
    section.blog.blog-sidebar-left .blog-posts {
        float: right
    }
}

section.blog .post-password-form label {
    text-transform: uppercase;
    font-weight: 300
}

section.blog .post-password-form input[type=password] {
    margin: 0 5px;
    border: 1px solid #eee;
    padding-left: 10px;
    padding-right: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    outline: 0
}

section.blog .post-password-form input[type=submit] {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: #222;
    color: #fff;
    padding: 4px 12px;
    padding-top: 1px;
    padding-bottom: 1px
}

    section.blog .post-password-form input[type=submit]:focus {
        outline: 0
    }

    section.blog .post-password-form input[type=submit]:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        section.blog .post-password-form input[type=submit]:active:focus {
            outline: 0
        }

    section.blog .post-password-form input[type=submit].btn-info {
        background: #00aeef
    }

        section.blog .post-password-form input[type=submit].btn-info:hover {
            background: #009bd6
        }

    section.blog .post-password-form input[type=submit].btn-success {
        background: #0fbd71
    }

        section.blog .post-password-form input[type=submit].btn-success:hover {
            background: #0da563
        }

    section.blog .post-password-form input[type=submit].btn-danger {
        background: #dd1f26
    }

        section.blog .post-password-form input[type=submit].btn-danger:hover {
            background: #c71c22
        }

    section.blog .post-password-form input[type=submit].btn-warning {
        background: #f7d227
    }

        section.blog .post-password-form input[type=submit].btn-warning:hover {
            background: #f6cd0e
        }

    section.blog .post-password-form input[type=submit].btn-default {
        background: #7b599b;
        color: #fff
    }

        section.blog .post-password-form input[type=submit].btn-default:hover {
            background: #6e508b
        }

    section.blog .post-password-form input[type=submit].btn-primary {
        background: #222
    }

        section.blog .post-password-form input[type=submit].btn-primary:hover {
            background: #151515
        }

    section.blog .post-password-form input[type=submit].btn-link {
        color: #7b599b
    }

    section.blog .post-password-form input[type=submit].btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        section.blog .post-password-form input[type=submit].btn-bordered:hover {
            border-color: #ccc
        }

    section.blog .post-password-form input[type=submit].btn-gray {
        color: #333;
        background-color: #ccc;
        border-color: #ccc
    }

        .open > .dropdown-togglesection.blog .post-password-form input[type=submit].btn-gray,
        section.blog .post-password-form input[type=submit].btn-gray.active,
        section.blog .post-password-form input[type=submit].btn-gray:active,
        section.blog .post-password-form input[type=submit].btn-gray:focus,
        section.blog .post-password-form input[type=submit].btn-gray:hover {
            color: #333;
            background-color: #b3b3b3;
            border-color: #adadad
        }

        .open > .dropdown-togglesection.blog .post-password-form input[type=submit].btn-gray,
        section.blog .post-password-form input[type=submit].btn-gray.active,
        section.blog .post-password-form input[type=submit].btn-gray:active {
            background-image: none
        }

        fieldset[disabled] section.blog .post-password-form input[type=submit].btn-gray,
        fieldset[disabled] section.blog .post-password-form input[type=submit].btn-gray.active,
        fieldset[disabled] section.blog .post-password-form input[type=submit].btn-gray:active,
        fieldset[disabled] section.blog .post-password-form input[type=submit].btn-gray:focus,
        fieldset[disabled] section.blog .post-password-form input[type=submit].btn-gray:hover,
        section.blog .post-password-form input[type=submit].btn-gray.disabled,
        section.blog .post-password-form input[type=submit].btn-gray.disabled.active,
        section.blog .post-password-form input[type=submit].btn-gray.disabled:active,
        section.blog .post-password-form input[type=submit].btn-gray.disabled:focus,
        section.blog .post-password-form input[type=submit].btn-gray.disabled:hover,
        section.blog .post-password-form input[type=submit].btn-gray[disabled],
        section.blog .post-password-form input[type=submit].btn-gray[disabled].active,
        section.blog .post-password-form input[type=submit].btn-gray[disabled]:active,
        section.blog .post-password-form input[type=submit].btn-gray[disabled]:focus,
        section.blog .post-password-form input[type=submit].btn-gray[disabled]:hover {
            background-color: #ccc;
            border-color: #ccc
        }

        section.blog .post-password-form input[type=submit].btn-gray .badge {
            color: #ccc;
            background-color: #333
        }

    section.blog .post-password-form input[type=submit]:hover {
        background: #151515
    }

.share-post {
    margin-top: 30px
}

    .share-post h3 {
        font-size: 16px;
        margin-right: 5px
    }

    .share-post .share-post-links,
    .share-post h3 {
        display: inline-block
    }

.share-post-links {
    position: relative;
    top: 4px
}

    .share-post-links a {
        font-size: 30px;
        display: inline-block;
        padding: 2px 0;
        margin-right: 2px
    }

        .share-post-links a:hover {
            text-decoration: none
        }

        .share-post-links a.facebook:hover {
            color: #fff;
            background-color: #3b5998
        }

        .share-post-links a.twitter:hover {
            color: #fff;
            background-color: #55acee
        }

        .share-post-links a.pinterest:hover {
            color: #fff;
            background-color: #cc2127
        }

        .share-post-links a.linkedin:hover {
            color: #fff;
            background-color: #0976b4
        }

        .share-post-links a.gplus:hover {
            color: #fff;
            background-color: #dd4b39
        }

        .share-post-links a.tumblr:hover {
            color: #fff;
            background-color: #35465c
        }

        .share-post-links a.vkontakte:hover {
            color: #fff;
            background-color: #45668e
        }

        .share-post-links a.email:hover {
            color: #fff;
            background-color: #fdbb30
        }

.single-attachment .attachment-title {
    margin-top: 0;
    margin-bottom: 20px
}

.single-attachment .attachment-img {
    background: #fafafa;
    text-align: center;
    display: block
}

    .single-attachment .attachment-img img {
        max-width: 100%
    }

.single-attachment dl {
    margin-top: 20px;
    margin-bottom: 0
}

    .single-attachment dl dt {
        margin-top: 15px
    }

    .single-attachment dl dd {
        margin-bottom: 0
    }

.sidebar .sidebar-entry {
    margin-bottom: 5px;
    font-weight: 300;
    padding-bottom: 5px;
}

    .sidebar .sidebar-entry .sidebar-entry-title {
        color: #222;
        font-size: 24px;
        font-weight: 300;
        padding: 10px 0;
        margin: 0;
        border-bottom: 1px solid #eee;
        -webkit-box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
        -moz-box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
        box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
        margin-bottom: 10px;
        padding-top: 0
    }

    .sidebar .sidebar-entry ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

        .sidebar .sidebar-entry ul li {
            border-bottom: 1px solid #eee;
            line-height: 32px;
            color: #afafaf;
            text-transform: uppercase
        }

            .sidebar .sidebar-entry ul li > a {
                display: inline-block;
                color: #737373;
                margin-right: 5px
            }

                .sidebar .sidebar-entry ul li > a:hover {
                    color: #7b599b
                }

            .sidebar .sidebar-entry ul li.current-cat > a {
                color: #222;
                font-weight: 400
            }

            .sidebar .sidebar-entry ul li:last-child {
                border-bottom: 0
            }

            .sidebar .sidebar-entry ul li ul {
                border-top: 1px solid #eee
            }

                .sidebar .sidebar-entry ul li ul li > a:before {
                    display: inline-block;
                    height: 1px;
                    background-color: #959595;
                    width: 8px;
                    margin-right: 8px;
                    content: '';
                    position: relative;
                    top: -4px
                }

                .sidebar .sidebar-entry ul li ul li li > a:before {
                    width: 16px
                }

                .sidebar .sidebar-entry ul li ul li li li > a:before {
                    width: 24px
                }

                .sidebar .sidebar-entry ul li ul li li li li > a:before {
                    width: 32px
                }

    .sidebar .sidebar-entry select {
        width: 100%;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #eee;
        font-weight: 300
    }

        .sidebar .sidebar-entry select:hover {
            border-color: #ccc
        }

        .sidebar .sidebar-entry select:focus {
            -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
            -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
            box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
            border-color: #ccc;
            outline: 0
        }

        .sidebar .sidebar-entry select:disabled {
            background: #f3f3f3
        }

    .sidebar .sidebar-entry.widget_calendar table {
        width: 100%
    }

        .sidebar .sidebar-entry.widget_calendar table caption {
            background: #f3f3f3;
            padding: 5px 10px;
            margin-bottom: 10px
        }

        .sidebar .sidebar-entry.widget_calendar table tbody a {
            font-weight: 400;
            text-decoration: underline
        }

        .sidebar .sidebar-entry.widget_calendar table tfoot a {
            display: inline-block;
            line-height: 1;
            margin-top: 10px;
            text-transform: uppercase;
            font-size: 12px
        }

        .sidebar .sidebar-entry.widget_calendar table tfoot #next {
            text-align: right
        }

    .sidebar .sidebar-entry.widget_recent_comments ul li,
    .sidebar .sidebar-entry.widget_recent_entries ul li {
        padding-top: 5px
    }

        .sidebar .sidebar-entry.widget_recent_comments ul li a,
        .sidebar .sidebar-entry.widget_recent_entries ul li a {
            display: block
        }

        .sidebar .sidebar-entry.widget_recent_comments ul li .post-date,
        .sidebar .sidebar-entry.widget_recent_entries ul li .post-date {
            display: block;
            font-size: 11px;
            line-height: 1.2;
            padding-bottom: 10px
        }

        .sidebar .sidebar-entry.widget_recent_comments ul li > span,
        .sidebar .sidebar-entry.widget_recent_entries ul li > span {
            display: inline-block
        }

        .sidebar .sidebar-entry.widget_recent_entries ul li a {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap
        }

    .sidebar .sidebar-entry.widget_rss li {
        line-height: 1.42857143;
        padding-bottom: 10px
    }

        .sidebar .sidebar-entry.widget_rss li + li {
            padding-top: 10px
        }

        .sidebar .sidebar-entry.widget_rss li .rss-date {
            font-size: 10px;
            display: block;
            margin: 5px 0
        }

        .sidebar .sidebar-entry.widget_rss li .rssSummary {
            font-size: 12px;
            margin-bottom: 5px
        }

        .sidebar .sidebar-entry.widget_rss li cite {
            display: block;
            text-align: right;
            font-weight: 500;
            font-size: 12px
        }

    .sidebar .sidebar-entry.widget_product_search .screen-reader-text,
    .sidebar .sidebar-entry.widget_search .screen-reader-text {
        display: none
    }

    .sidebar .sidebar-entry.widget_product_search #s,
    .sidebar .sidebar-entry.widget_search #s {
        padding: 5px 10px;
        width: 100%;
        outline: 0
    }

    .sidebar .sidebar-entry.widget_product_search #searchsubmit,
    .sidebar .sidebar-entry.widget_search #searchsubmit {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        padding: 4px 12px;
        text-transform: uppercase;
        font-size: 12px;
        margin-top: 10px;
        color: #fff;
        padding: 5px 15px
    }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit:focus,
        .sidebar .sidebar-entry.widget_search #searchsubmit:focus {
            outline: 0
        }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit:active,
        .sidebar .sidebar-entry.widget_search #searchsubmit:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit:active:focus,
            .sidebar .sidebar-entry.widget_search #searchsubmit:active:focus {
                outline: 0
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-info,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-info {
            background: #00aeef
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-info:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-info:hover {
                background: #009bd6
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-success,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-success {
            background: #0fbd71
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-success:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-success:hover {
                background: #0da563
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-danger,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-danger {
            background: #dd1f26
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-danger:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-danger:hover {
                background: #c71c22
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-warning,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-warning {
            background: #f7d227
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-warning:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-warning:hover {
                background: #f6cd0e
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-default,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-default {
            background: #7b599b;
            color: #fff
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-default:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-default:hover {
                background: #6e508b
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-primary,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-primary {
            background: #222
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-primary:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-primary:hover {
                background: #151515
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-link,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-link {
            color: #7b599b
        }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-bordered,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-bordered:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-bordered:hover {
                border-color: #ccc
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray,
        .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-toggle.sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray,
            .open > .dropdown-toggle.sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:focus,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:focus,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-toggle.sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray,
            .open > .dropdown-toggle.sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:active {
                background-image: none
            }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.disabled,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.disabled.active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.disabled:active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.disabled:focus,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.disabled:hover,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray[disabled],
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray[disabled].active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray[disabled]:active,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray[disabled]:focus,
            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray[disabled]:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.disabled,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.disabled.active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.disabled:active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.disabled:focus,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.disabled:hover,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray[disabled],
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray[disabled].active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray[disabled]:active,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray[disabled]:focus,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray[disabled]:hover,
            fieldset[disabled] .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray,
            fieldset[disabled] .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray.active,
            fieldset[disabled] .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:active,
            fieldset[disabled] .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:focus,
            fieldset[disabled] .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray:hover,
            fieldset[disabled] .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray,
            fieldset[disabled] .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray.active,
            fieldset[disabled] .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:active,
            fieldset[disabled] .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:focus,
            fieldset[disabled] .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            .sidebar .sidebar-entry.widget_product_search #searchsubmit.btn-gray .badge,
            .sidebar .sidebar-entry.widget_search #searchsubmit.btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        .sidebar .sidebar-entry.widget_product_search #searchsubmit:hover,
        .sidebar .sidebar-entry.widget_search #searchsubmit:hover {
            background: #151515
        }

    .sidebar .sidebar-entry .searchTxb .search-field {
        border: 1px solid #eee;
        padding: 5px 10px;
        width: 100%;
        outline: 0
    }

    .sidebar .sidebar-entry .searchTxb input[type=submit] {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        padding: 4px 12px;
        text-transform: uppercase;
        font-size: 12px;
        margin-top: 10px;
        color: #fff;
        padding: 5px 15px
    }

        .sidebar .sidebar-entry .searchTxb input[type=submit]:focus {
            outline: 0
        }

        .sidebar .sidebar-entry .searchTxb input[type=submit]:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit]:active:focus {
                outline: 0
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-info {
            background: #00aeef
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-info:hover {
                background: #009bd6
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-success {
            background: #0fbd71
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-success:hover {
                background: #0da563
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-danger {
            background: #dd1f26
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-danger:hover {
                background: #c71c22
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-warning {
            background: #f7d227
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-warning:hover {
                background: #f6cd0e
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-default {
            background: #7b599b;
            color: #fff
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-default:hover {
                background: #6e508b
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-primary {
            background: #222
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-primary:hover {
                background: #151515
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-link {
            color: #7b599b
        }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-bordered:hover {
                border-color: #ccc
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-toggle.sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:focus,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-toggle.sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:active {
                background-image: none
            }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.disabled,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.disabled.active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.disabled:active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.disabled:focus,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.disabled:hover,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray[disabled],
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray[disabled].active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray[disabled]:active,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray[disabled]:focus,
            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray[disabled]:hover,
            fieldset[disabled] .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray,
            fieldset[disabled] .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray.active,
            fieldset[disabled] .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:active,
            fieldset[disabled] .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:focus,
            fieldset[disabled] .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            .sidebar .sidebar-entry .searchTxb input[type=submit].btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        .sidebar .sidebar-entry .searchTxb input[type=submit]:hover {
            background: #151515
        }

    .sidebar .sidebar-entry.widget_wysija .wysija-submit {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        color: #fff;
        padding: 4px 12px;
        text-transform: uppercase;
        font-size: 12px
    }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit:focus {
            outline: 0
        }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit:active:focus {
                outline: 0
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-info {
            background: #00aeef
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-info:hover {
                background: #009bd6
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-success {
            background: #0fbd71
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-success:hover {
                background: #0da563
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-danger {
            background: #dd1f26
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-danger:hover {
                background: #c71c22
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-warning {
            background: #f7d227
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-warning:hover {
                background: #f6cd0e
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-default {
            background: #7b599b;
            color: #fff
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-default:hover {
                background: #6e508b
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-primary {
            background: #222
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-primary:hover {
                background: #151515
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-link {
            color: #7b599b
        }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-bordered:hover {
                border-color: #ccc
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-toggle.sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:focus,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-toggle.sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:active {
                background-image: none
            }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.disabled,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.disabled.active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.disabled:active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.disabled:focus,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.disabled:hover,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray[disabled],
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray[disabled].active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray[disabled]:active,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray[disabled]:focus,
            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray[disabled]:hover,
            fieldset[disabled] .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray,
            fieldset[disabled] .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray.active,
            fieldset[disabled] .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:active,
            fieldset[disabled] .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:focus,
            fieldset[disabled] .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            .sidebar .sidebar-entry.widget_wysija .wysija-submit.btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        .sidebar .sidebar-entry.widget_wysija .wysija-submit:hover {
            background: #151515
        }

    .sidebar .sidebar-entry.widget_wysija .wysija-paragraph .wysija-input {
        padding: 5px 10px;
        width: 100%;
        outline: 0
    }

    .sidebar .sidebar-entry.widget_wysija .formError .formErrorContent {
        background-color: #dd1f26;
        border: 0;
        padding: 8px 10px;
        margin-top: -3px
    }

    .sidebar .sidebar-entry.widget_wysija .wysija-msg .updated {
        background: #f7d227;
        border: 0;
        padding: 0;
        padding-top: 10px
    }

        .sidebar .sidebar-entry.widget_wysija .wysija-msg .updated li {
            line-height: 1.4;
            color: #fff;
            padding: 10px 15px
        }

            .sidebar .sidebar-entry.widget_wysija .wysija-msg .updated li:last-child {
                padding-top: 0
            }

    .sidebar .sidebar-entry.widget_text img {
        max-width: 100%;
        height: auto !important;
        margin-bottom: 10px
    }

    .sidebar .sidebar-entry .product_list_widget li {
        position: relative;
        padding: 10px 0
    }

        .sidebar .sidebar-entry .product_list_widget li:after,
        .sidebar .sidebar-entry .product_list_widget li:before {
            content: " ";
            display: table
        }

        .sidebar .sidebar-entry .product_list_widget li:after {
            clear: both
        }

        .sidebar .sidebar-entry .product_list_widget li > a {
            display: block;
            position: relative;
            padding-left: 52px;
            line-height: 1.42857143
        }

            .sidebar .sidebar-entry .product_list_widget li > a img {
                position: absolute;
                width: 40px;
                height: auto !important;
                vertical-align: text-top;
                padding: 0;
                top: 0;
                left: 0
            }

        .sidebar .sidebar-entry .product_list_widget li .remove {
            position: absolute;
            top: 50%;
            right: -10px;
            display: block;
            text-decoration: none;
            line-height: 1;
            padding: 2px 5px;
            zoom: 1;
            -webkit-opacity: 0;
            -moz-opacity: 0;
            opacity: 0;
            filter: alpha(opacity=0);
            -webkit-transition: all 350ms;
            -moz-transition: all 350ms;
            -o-transition: all 350ms;
            transition: all 350ms;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%)
        }

            .sidebar .sidebar-entry .product_list_widget li .remove:hover {
                background-color: #f6f6f6
            }

        .sidebar .sidebar-entry .product_list_widget li:hover .remove {
            zoom: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            filter: alpha(opacity=100)
        }

        .sidebar .sidebar-entry .product_list_widget li .quantity {
            background: 0 0
        }

        .sidebar .sidebar-entry .product_list_widget li .star-rating,
        .sidebar .sidebar-entry .product_list_widget li .variation,
        .sidebar .sidebar-entry .product_list_widget li > .amount,
        .sidebar .sidebar-entry .product_list_widget li > .quantity {
            display: block;
            padding-left: 52px;
            line-height: 1.42857143
        }

        .sidebar .sidebar-entry .product_list_widget li .star-rating {
            font-size: 12px
        }

        .sidebar .sidebar-entry .product_list_widget li > .amount {
            font-size: 12px;
            display: inline-block
        }

            .sidebar .sidebar-entry .product_list_widget li > .amount ~ .amount {
                padding-left: 0
            }

        .sidebar .sidebar-entry .product_list_widget li .variation {
            list-style: none;
            margin: 0;
            padding: 0;
            padding-left: 52px
        }

            .sidebar .sidebar-entry .product_list_widget li .variation dd,
            .sidebar .sidebar-entry .product_list_widget li .variation dt {
                font-weight: 400;
                display: inline-block;
                float: none;
                clear: none;
                margin: 0;
                padding: 0;
                font-size: 11px
            }

                .sidebar .sidebar-entry .product_list_widget li .variation dd p,
                .sidebar .sidebar-entry .product_list_widget li .variation dt p {
                    padding: 0;
                    margin: 0
                }

                .sidebar .sidebar-entry .product_list_widget li .variation dd + dt:before {
                    content: ', ';
                    font-weight: 400;
                    position: relative;
                    left: -1px
                }

        .sidebar .sidebar-entry .product_list_widget li .star-rating strong {
            color: #222;
            font-weight: 400
        }

        .sidebar .sidebar-entry .product_list_widget li del {
            font-size: 12px
        }

            .sidebar .sidebar-entry .product_list_widget li del + ins {
                float: left;
                padding-left: 52px;
                padding-right: 10px;
                font-size: 12px;
                position: relative;
                top: -1px
            }

        .sidebar .sidebar-entry .product_list_widget li:last-child {
            padding-bottom: 0
        }

    .sidebar .sidebar-entry.widget_shopping_cart .total {
        display: block;
        border-top: 1px solid #eee;
        padding-top: 15px;
        padding-bottom: 10px;
        margin-top: 10px
    }

        .sidebar .sidebar-entry.widget_shopping_cart .total strong {
            font-weight: 400;
            text-transform: uppercase
        }

        .sidebar .sidebar-entry.widget_shopping_cart .total .amount {
            float: right;
            font-weight: 700
        }

    .sidebar .sidebar-entry.widget_shopping_cart .buttons {
        margin: 0
    }

        .sidebar .sidebar-entry.widget_shopping_cart .buttons .button {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            border-radius: 2px;
            border: none;
            background: #222;
            margin: 0;
            color: #fff;
            text-transform: uppercase;
            font-size: 12px;
            padding: 5px 10px
        }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button:focus {
                outline: 0
            }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button:active {
                outline: 0;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button:active:focus {
                    outline: 0
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-info {
                background: #00aeef
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-info:hover {
                    background: #009bd6
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-success {
                background: #0fbd71
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-success:hover {
                    background: #0da563
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-danger {
                background: #dd1f26
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-danger:hover {
                    background: #c71c22
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-warning {
                background: #f7d227
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-warning:hover {
                    background: #f6cd0e
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-default {
                background: #7b599b;
                color: #fff
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-default:hover {
                    background: #6e508b
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-primary {
                background: #222
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-primary:hover {
                    background: #151515
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-link {
                color: #7b599b
            }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-bordered {
                background: #fff;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                -ms-border-radius: 0;
                border-radius: 0;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                border: 1px solid #eee;
                text-align: left;
                color: #333;
                font-weight: 300
            }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-bordered:hover {
                    border-color: #ccc
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray {
                color: #333;
                background-color: #ccc;
                border-color: #ccc
            }

                .open > .dropdown-toggle.sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:focus,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:hover {
                    color: #333;
                    background-color: #b3b3b3;
                    border-color: #adadad
                }

                .open > .dropdown-toggle.sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:active {
                    background-image: none
                }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.disabled,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.disabled.active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.disabled:active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.disabled:focus,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.disabled:hover,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray[disabled],
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray[disabled].active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray[disabled]:active,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray[disabled]:focus,
                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray[disabled]:hover,
                fieldset[disabled] .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray,
                fieldset[disabled] .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray.active,
                fieldset[disabled] .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:active,
                fieldset[disabled] .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:focus,
                fieldset[disabled] .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray:hover {
                    background-color: #ccc;
                    border-color: #ccc
                }

                .sidebar .sidebar-entry.widget_shopping_cart .buttons .button.btn-gray .badge {
                    color: #ccc;
                    background-color: #333
                }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button:hover {
                background: #151515
            }

            .sidebar .sidebar-entry.widget_shopping_cart .buttons .button + .button {
                margin-left: 5px
            }

    .sidebar .sidebar-entry .price_slider_wrapper {
        position: relative;
        margin-top: 25px
    }

        .sidebar .sidebar-entry .price_slider_wrapper .price_slider {
            position: relative;
            margin-bottom: 10px;
            background: #f0f0f0
        }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider:after,
            .sidebar .sidebar-entry .price_slider_wrapper .price_slider:before {
                content: " ";
                display: table
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider:after {
                clear: both
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider .ui-slider-range {
                position: relative;
                height: 5px;
                background: #222
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider .ui-slider-handle {
                position: absolute;
                display: block;
                background: #222;
                margin-top: -9px;
                width: 5px;
                height: 13px
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider .ui-slider-handle + .ui-slider-handle {
                    margin-left: -5px
                }

        .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .price_label {
            margin-top: 10px;
            height: 0;
            color: transparent;
            margin-bottom: 55px
        }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .price_label:after,
            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .price_label:before {
                content: " ";
                display: table
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .price_label:after {
                clear: both
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .price_label span {
                position: relative;
                display: block;
                text-indent: 0;
                float: left;
                color: #222;
                font-weight: 700
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .price_label span.to {
                    float: right
                }

        .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button {
            position: absolute;
            bottom: -60px;
            font-size: 12px;
            text-transform: uppercase;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            border-radius: 2px;
            border: none;
            background: #222;
            color: #fff;
            padding: 4px 12px
        }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button:focus {
                outline: 0
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button:active {
                outline: 0;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button:active:focus {
                    outline: 0
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-info {
                background: #00aeef
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-info:hover {
                    background: #009bd6
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-success {
                background: #0fbd71
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-success:hover {
                    background: #0da563
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-danger {
                background: #dd1f26
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-danger:hover {
                    background: #c71c22
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-warning {
                background: #f7d227
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-warning:hover {
                    background: #f6cd0e
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-default {
                background: #7b599b;
                color: #fff
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-default:hover {
                    background: #6e508b
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-primary {
                background: #222
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-primary:hover {
                    background: #151515
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-link {
                color: #7b599b
            }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-bordered {
                background: #fff;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                -ms-border-radius: 0;
                border-radius: 0;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                border: 1px solid #eee;
                text-align: left;
                color: #333;
                font-weight: 300
            }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-bordered:hover {
                    border-color: #ccc
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray {
                color: #333;
                background-color: #ccc;
                border-color: #ccc
            }

                .open > .dropdown-toggle.sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:focus,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:hover {
                    color: #333;
                    background-color: #b3b3b3;
                    border-color: #adadad
                }

                .open > .dropdown-toggle.sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:active {
                    background-image: none
                }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.disabled,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.disabled.active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.disabled:active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.disabled:focus,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.disabled:hover,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray[disabled],
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray[disabled].active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray[disabled]:active,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray[disabled]:focus,
                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray[disabled]:hover,
                fieldset[disabled] .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray,
                fieldset[disabled] .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray.active,
                fieldset[disabled] .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:active,
                fieldset[disabled] .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:focus,
                fieldset[disabled] .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray:hover {
                    background-color: #ccc;
                    border-color: #ccc
                }

                .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button.btn-gray .badge {
                    color: #ccc;
                    background-color: #333
                }

            .sidebar .sidebar-entry .price_slider_wrapper .price_slider_amount .button:hover {
                background: #151515
            }

    .sidebar .sidebar-entry .tagcloud a {
        font-size: 14px !important;
        line-height: 1;
        display: inline-block;
        background: #f5f5f5;
        padding: 3px 5px;
        margin-bottom: 4px
    }

        .sidebar .sidebar-entry .tagcloud a:hover {
            background-color: #7b599b;
            color: #fff;
            text-decoration: none
        }

    .sidebar .sidebar-entry.widget_currency_sel_widget {
        padding: 0;
        border: 0
    }

    .sidebar .sidebar-entry .wcml_currency_switcher {
        width: 100%;
        border: 0
    }

        .sidebar .sidebar-entry .wcml_currency_switcher li {
            line-height: 1;
            padding: 8px 10px;
            border: 1px solid #eee !important
        }

            .sidebar .sidebar-entry .wcml_currency_switcher li:hover {
                background-color: #fafafa;
                color: #222
            }

            .sidebar .sidebar-entry .wcml_currency_switcher li + li {
                margin-top: 5px
            }

        .sidebar .sidebar-entry .wcml_currency_switcher.curr_list_horizontal li {
            margin-right: 5px
        }

            .sidebar .sidebar-entry .wcml_currency_switcher.curr_list_horizontal li + li {
                margin-top: 0
            }

    .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel {
        width: 100%;
        z-index: 100;
        position: relative
    }

        .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul li {
            width: 100%
        }

            .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul li img {
                vertical-align: baseline;
                position: relative;
                top: 2px
            }

            .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul li .lang_sel_sel {
                background-position: 98% center;
                border-color: #eee
            }

            .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul li a {
                margin: 0
            }

        .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul ul {
            width: 100%;
            height: auto;
            background: #fff;
            border-top-color: #eee
        }

            .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul ul li {
                border: 0
            }

                .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul ul li a {
                    border-color: #eee;
                    border-top: 0
                }

                    .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul ul li a img {
                        margin-right: 4px
                    }

                    .sidebar .sidebar-entry.widget_icl_lang_sel_widget #lang_sel ul ul li a:before {
                        display: none
                    }

.sidebar .sidebar-list {
    padding: 0;
    margin-bottom: 30px
}

    .sidebar .sidebar-list span {
        color: #222;
        text-align: right;
        float: right
    }

        .sidebar .sidebar-list span.total {
            font-size: 24px;
            padding-top: 10px
        }

    .sidebar .sidebar-list.bordered {
        border: 1px solid #eee;
        padding: 25px 30px
    }

    .sidebar .sidebar-list.bordered-list li {
        border-bottom: 1px solid #eee;
        line-height: 32px
    }

        .sidebar .sidebar-list.bordered-list li:first-child {
            border-bottom: 0;
            line-height: 0
        }

        .sidebar .sidebar-list.bordered-list li:last-child {
            border-bottom: 0
        }

    .sidebar .sidebar-list li {
        text-transform: uppercase;
        list-style: none;
        padding: 0;
        font-weight: 300;
        line-height: 26px
    }

        .sidebar .sidebar-list li ul {
            padding-left: 20px
        }

            .sidebar .sidebar-list li ul li {
                line-height: 22px;
                text-transform: none
            }

                .sidebar .sidebar-list li ul li a {
                    color: #333
                }

        .sidebar .sidebar-list li p {
            text-transform: none
        }

        .sidebar .sidebar-list li h1 {
            color: #222;
            font-size: 24px;
            font-weight: 300;
            padding: 20px 0;
            margin: 0;
            border-bottom: 1px solid #eee;
            -webkit-box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
            -moz-box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
            box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
            margin-bottom: 20px;
            padding-top: 0
        }

        .sidebar .sidebar-list li a {
            font-size: 14px;
            color: #222
        }

    .sidebar .sidebar-list.latest-posts li a {
        color: #222
    }

    .sidebar .sidebar-list.latest-posts li img {
        width: 48px;
        height: auto;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        float: left;
        margin: 0 15px 15px 0
    }

    .sidebar .sidebar-list.latest-posts li span {
        color: #ccc;
        display: block;
        font-size: 12px
    }

    .sidebar .sidebar-list.subscribe input[type=text] {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        text-transform: uppercase;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 12px;
        border: 1px solid #eee
    }

        .sidebar .sidebar-list.subscribe input[type=text]:focus {
            border-color: #888
        }

    .sidebar .sidebar-list.subscribe button[type=submit] {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        text-transform: uppercase;
        color: #333;
        border: 1px solid #eee;
        background: 0 0
    }

        .sidebar .sidebar-list.subscribe button[type=submit]:focus {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: 0
        }

        .sidebar .sidebar-list.subscribe button[type=submit]:active {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: 0
        }

.sidebar.borderless .sidebar-entry {
    padding: 0;
    border: 0;
    margin-bottom: 40px
}

    .sidebar.borderless .sidebar-entry .sidebar-entry-title {
        border-bottom-width: 2px;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

.sidebar.borderless > .sidebar-entry:first-child {
    margin-top: 0
}

.sidebar.borderless > .sidebar-entry:last-child {
    margin-bottom: 0
}

.bordered-block {
    border: 1px solid #eee;
    padding: 25px 30px
}

    .bordered-block h2 {
        color: #222;
        font-size: 24px;
        font-weight: 300;
        padding: 20px 0;
        margin: 0;
        border-bottom: 1px solid #eee;
        -webkit-box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
        -moz-box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
        box-shadow: 0 1px 0 #fff, 0 2px 0 #eee;
        margin-bottom: 20px;
        padding-top: 0
    }

        .bordered-block h2 ~ h2 {
            margin-top: 30px
        }

    .bordered-block .lost-password {
        color: #333;
        font-weight: 300
    }

.newsletter-signup {
    background: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4
}

    .newsletter-signup .popup {
        position: relative;
        background: #fff;
        width: 650px;
        margin: 0 auto;
        z-index: 3;
        padding: 50px 60px;
        margin-top: 150px;
        overflow: hidden
    }

        .newsletter-signup .popup .close {
            background: url(../images/close%402x.html)no-repeat;
            display: block;
            width: 24px;
            height: 24px;
            background-size: 15px;
            text-indent: -9999px;
            position: absolute;
            top: 20px;
            right: 10px
        }

        .newsletter-signup .popup h1 {
            font-size: 24px;
            font-weight: 400;
            margin: 0;
            margin-bottom: 10px
        }

        .newsletter-signup .popup * {
            position: relative;
            z-index: 10
        }

        .newsletter-signup .popup .newsletter-content {
            width: 60%
        }

            .newsletter-signup .popup .newsletter-content .form-group {
                margin-top: 30px
            }

        .newsletter-signup .popup .newsletter-image {
            position: absolute;
            right: 0;
            top: 0;
            z-index: 2
        }

.page-title-container {
    margin-top: 20px
}

    .page-title-container + .page-container {
        margin-top: 0
    }

@media screen and (max-width: 768px) {
    .page-title-container {
        margin-top: 0
    }

        .page-title-container .page-title {
            margin-top: 30px;
            margin-bottom: 20px
        }
}

.page-title {
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px
}

    .page-title h1 {
        padding: 0;
        margin: 0;
        font-weight: 300
    }

        .page-title h1 small {
            margin-top: 5px
        }

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: 300;
    color: #222
}

    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small {
        color: #888;
        font-weight: 300;
        display: block
    }

h1 {
    font-size: 22px
}

    h1 small {
        font-size: 16px
    }

h2 {
    font-size: 17px
}

    h2 small {
        font-size: 14px
    }

h3 {
    font-size: 20px
}

    h3 small {
        font-size: 14px
    }

h4 {
    font-size: 20px
}

    h4 small {
        font-size: 14px
    }

h5 {
    font-size: 18px
}

    h5 small {
        font-size: 12px
    }

h6 {
    font-size: 16px
}

    h6 small {
        font-size: 11px
    }

blockquote {
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
    border-left: 3px solid #eee;
    -moz-box-shadow: -1px 0 0 #ccc;
    -webkit-box-shadow: -1px 0 0 #ccc;
    box-shadow: -1px 0 0 #ccc
}

pre {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding: 20px;
    outline: 2px solid #fff;
    -moz-box-shadow: 0 0 0 3px #eee;
    -webkit-box-shadow: 0 0 0 3px #eee;
    box-shadow: 0 0 0 3px #eee;
    background: 0 0;
    border-color: #eee
}

.breadcrumb {
    font-size: 13px;
    background: 0 0;
    padding: 10px 0 0 0
}

    .breadcrumb li {
        color: #333
    }

        .breadcrumb li a {
            color: #222
        }

.btn {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none
}

    .btn:focus {
        outline: 0
    }

    .btn:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .btn:active:focus {
            outline: 0
        }

    .btn.btn-info {
        background: #00aeef
    }

        .btn.btn-info:hover {
            background: #009bd6
        }

    .btn.btn-success {
        background: #0fbd71
    }

        .btn.btn-success:hover {
            background: #0da563
        }

    .btn.btn-danger {
        background: #dd1f26
    }

        .btn.btn-danger:hover {
            background: #c71c22
        }

    .btn.btn-warning {
        background: #f7d227
    }

        .btn.btn-warning:hover {
            background: #f6cd0e
        }

    .btn.btn-default {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }

        .btn.btn-default:hover {
            background: #333333;
        }

    .btn.btn-primary {
        background: #222
    }

        .btn.btn-primary:hover {
            background: #151515
        }

    .btn.btn-link {
        color: #7b599b
    }

    .btn.btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        .btn.btn-bordered:hover {
            border-color: #ccc
        }

.dropdown-menu {
    background: #fff;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333;
    font-weight: 300;
    width: 100%;
    padding: 0;
    font-size: 13px;
    -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05)
}

    .dropdown-menu > li > a {
        color: #333;
        font-weight: 300;
        padding: 8px 15px
    }

    .dropdown-menu .divider {
        margin: 5px 0
    }

.pagination .btn-bordered {
    margin-right: 10px
}

    .pagination .btn-bordered.active {
        font-weight: 400;
        color: #222;
        -webkit-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee;
        -moz-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee;
        box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee
    }

.btn.btn-gray {
    color: #333;
    background-color: #ccc;
    border-color: #ccc
}

    .btn.btn-gray.active,
    .btn.btn-gray:active,
    .btn.btn-gray:focus,
    .btn.btn-gray:hover,
    .open > .dropdown-toggle.btn.btn-gray {
        color: #333;
        background-color: #b3b3b3;
        border-color: #adadad
    }

    .btn.btn-gray.active,
    .btn.btn-gray:active,
    .open > .dropdown-toggle.btn.btn-gray {
        background-image: none
    }

    .btn.btn-gray.disabled,
    .btn.btn-gray.disabled.active,
    .btn.btn-gray.disabled:active,
    .btn.btn-gray.disabled:focus,
    .btn.btn-gray.disabled:hover,
    .btn.btn-gray[disabled],
    .btn.btn-gray[disabled].active,
    .btn.btn-gray[disabled]:active,
    .btn.btn-gray[disabled]:focus,
    .btn.btn-gray[disabled]:hover,
    fieldset[disabled] .btn.btn-gray,
    fieldset[disabled] .btn.btn-gray.active,
    fieldset[disabled] .btn.btn-gray:active,
    fieldset[disabled] .btn.btn-gray:focus,
    fieldset[disabled] .btn.btn-gray:hover {
        background-color: #ccc;
        border-color: #ccc
    }

    .btn.btn-gray .badge {
        color: #ccc;
        background-color: #333
    }

.panel-group {
    font-weight: 300;
    background: 0 0
}

    .panel-group.panel-group-2 .panel {
        border: none;
        border-bottom: 1px solid #eee
    }

    .panel-group.panel-group-2 .panel-title a {
        text-decoration: none;
        padding-left: 0
    }

        .panel-group.panel-group-2 .panel-title a:before {
            padding: 0
        }

    .panel-group.panel-group-2 .panel-heading {
        padding-left: 0
    }

    .panel-group .panel {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #eee
    }

        .panel-group .panel + .panel {
            margin-top: 5px
        }

    .panel-group .panel-heading {
        background: 0 0;
        border-bottom: 0;
        font-weight: 300;
        font-size: 13px
    }

        .panel-group .panel-heading .panel-title a {
            text-decoration: none
        }
        /*.panel-group .panel-heading .panel-title a:before {
    font-family: EntypoRegular;
    content: '\2796';
    content: '\e819';
    font-weight: 300;
    font-size: 18px;
    font-style: normal;
    line-height: 0;
    margin-right: 10px;
    position: relative
}
.panel-group .panel-heading .panel-title a.collapsed:before {
    content: '\2795';
    content: '\e816'
}*/
        .panel-group .panel-heading a {
            font-size: 12px;
            display: block;
            padding: 10px 0px;
        }

        .panel-group .panel-heading + .panel-collapse > .panel-body {
            border-top: 1px solid #eee
        }

    .panel-group .panel-footer {
        border-top: 0
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #eee
        }

.container .jumbotron {
    background: 0 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding: 40px;
    -webkit-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #eee;
    -moz-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #eee;
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #eee;
    border: 1px solid #eee
}

    .container .jumbotron h1 {
        color: #222;
        font-size: 32px;
        margin: 0;
        display: inline-block
    }

    .container .jumbotron h3 {
        color: #888;
        font-weight: 300;
        font-size: 16px
    }

    .container .jumbotron.type-1 h1 {
        display: inline-block
    }

    .container .jumbotron.type-1 h3 {
        color: #888
    }

    .container .jumbotron.type-1 .btn {
        float: right
    }

    .container .jumbotron.type-1 .action-text {
        display: table-cell;
        width: 100%
    }

    .container .jumbotron.type-1 .action-button {
        display: table-cell;
        vertical-align: middle
    }

    .container .jumbotron.type-2 {
        text-align: center
    }

        .container .jumbotron.type-2 h1 {
            display: block;
            margin: 0
        }

        .container .jumbotron.type-2 h3 {
            color: #888;
            font-weight: 300;
            font-size: 16px;
            margin-top: 10px;
            margin-bottom: 30px
        }

        .container .jumbotron.type-2 .btn {
            margin: 0 auto
        }

.nav-tabs {
    border-bottom: 1px solid #eee
}

    .nav-tabs > li > a {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        padding: 15px 25px;
        text-transform: uppercase;
        background: #fafafa;
        border-color: #eee;
        margin: 0;
        margin-right: -1px;
        font-weight: 300;
        color: #333
    }

        .nav-tabs > li > a:hover {
            background: #FAFAFA;
            color: #222;
            border-bottom-color: #eee
        }

    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:focus,
    .nav-tabs > li.active > a:hover {
        padding: 15px 25px;
        border-color: #eee;
        border-bottom-color: #fff
    }

.tabs .tab-content {
    padding: 20px 0;
    font-weight: 300
}

.tabs-1 .tab-content {
    padding: 20px 0;
    font-weight: 300;
    border: 1px solid #eee;
    border-top-color: transparent;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    padding: 20px
}

.alert {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 5px solid;
    -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
    color: #fff;
    font-weight: 300
}

    .alert.alert-success {
        background: #0fbd71;
        border-color: #0fbd71
    }

    .alert.alert-info {
        background: #00aeef;
        border-color: #00aeef
    }

    .alert.alert-warning {
        background: #f7d227;
        border-color: #f7d227
    }

    .alert.alert-danger {
        background: #dd1f26;
        border-color: #dd1f26
    }

.form-control {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #eee;
    font-weight: 300
}

    .form-control:hover {
        border-color: #ccc
    }

    .form-control:focus {
        -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
        -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
        border-color: #ccc;
        outline: 0
    }

    .form-control:disabled {
        background: #f3f3f3
    }

.input-group .input-group-addon {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border-color: #eee;
    background: #f3f3f3
}

    .input-group .input-group-addon.light {
        background: 0 0
    }

.replaced-checkboxes,
.replaced-radio-buttons {
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
    top: 0
}

    .replaced-checkboxes + label,
    .replaced-radio-buttons + label {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

        .replaced-checkboxes + label:before,
        .replaced-radio-buttons + label:before {
            position: relative;
            top: 3px;
            content: '';
            display: block;
            float: left;
            background: #fff;
            -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
            -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
            margin-right: 10px;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            border-radius: 50%;
            width: 14px;
            height: 14px;
            cursor: pointer
        }

    .replaced-checkboxes:checked + label:before,
    .replaced-radio-buttons:checked + label:before {
        background-color: rgb(204,153,153);
        -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 4px #fff;
        -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 4px #fff;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 4px #fff
    }

    .replaced-checkboxes.replaced-checkboxes + label:before,
    .replaced-radio-buttons.replaced-checkboxes + label:before {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        margin-right: 10px
    }

    .replaced-checkboxes.replaced-checkboxes:checked + label:before,
    .replaced-radio-buttons.replaced-checkboxes:checked + label:before {
        -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff;
        -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff
    }

.banner {
    padding: 15px;
    background: #FFF;
    margin-bottom: 20px;
    border: 1px solid #eee;
    -webkit-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #eee;
    -moz-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #eee;
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px #eee
}

    .banner.wpb_content_element {
        margin-bottom: 20px
    }

    .banner.button-right .button_outer .button_inner .banner-content {
        text-align: right
    }

    .banner.text-button-center .button_outer .button_inner {
        text-align: center;
        display: block
    }

        .banner.text-button-center .button_outer .button_inner .banner-call-button,
        .banner.text-button-center .button_outer .button_inner .banner-content {
            display: block;
            width: 100%
        }

    .banner .button_outer .button_inner {
        padding: 20px 40px
    }

        .banner .button_outer .button_inner:after,
        .banner .button_outer .button_inner:before {
            content: " ";
            display: table
        }

        .banner .button_outer .button_inner:after {
            clear: both
        }

        .banner .button_outer .button_inner .banner-call-button,
        .banner .button_outer .button_inner .banner-content {
            display: table-cell;
            vertical-align: middle;
            padding: 10px 0
        }

@media screen and (max-width: 767px) {
    .banner .button_outer .button_inner .banner-call-button,
    .banner .button_outer .button_inner .banner-content {
        display: block;
        width: 100%;
        text-align: center !important
    }
}

.banner .button_outer .button_inner .banner-content {
    width: 100%
}

    .banner .button_outer .button_inner .banner-content strong {
        font-size: 30px;
        display: block;
        font-weight: 300
    }

    .banner .button_outer .button_inner .banner-content span {
        display: block;
        color: #777;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 300;
        margin-top: 10px
    }

.banner .button_outer .button_inner .banner-call-button .btn {
    border: 0
}

.banner.banner-white .btn {
    background-color: #000;
    color: #FFF
}

    .banner.banner-white .btn:hover {
        background-color: #404040;
        color: #FFF
    }

.banner.banner-black {
    background: #222;
    border: 0;
    -webkit-box-shadow: inset 0 0 0 4px #222, inset 0 0 0 5px rgba(255, 255, 255, .5);
    -moz-box-shadow: inset 0 0 0 4px #222, inset 0 0 0 5px rgba(255, 255, 255, .5);
    box-shadow: inset 0 0 0 4px #222, inset 0 0 0 5px rgba(255, 255, 255, .5)
}

    .banner.banner-black .button_outer {
        border-color: #626262
    }

        .banner.banner-black .button_outer .button_inner .banner-content span,
        .banner.banner-black .button_outer .button_inner .banner-content strong {
            color: #fff;
            font-weight: 300
        }

        .banner.banner-black .button_outer .button_inner .banner-content span {
            zoom: 1;
            -webkit-opacity: .7;
            -moz-opacity: .7;
            opacity: .7;
            filter: alpha(opacity=70)
        }

    .banner.banner-black .btn {
        color: #000;
        background: #fff
    }

        .banner.banner-black .btn:hover {
            color: #7b599b
        }

.banner.banner-purple {
    background: #7b599b;
    border: 0;
    -webkit-box-shadow: inset 0 0 0 4px #7b599b, inset 0 0 0 5px rgba(255, 255, 255, .4);
    -moz-box-shadow: inset 0 0 0 4px #7b599b, inset 0 0 0 5px rgba(255, 255, 255, .4);
    box-shadow: inset 0 0 0 4px #7b599b, inset 0 0 0 5px rgba(255, 255, 255, .4)
}

    .banner.banner-purple .button_outer {
        border-color: #baa7cc
    }

        .banner.banner-purple .button_outer .button_inner .banner-content span,
        .banner.banner-purple .button_outer .button_inner .banner-content strong {
            color: #fff
        }

        .banner.banner-purple .button_outer .button_inner .banner-content span {
            zoom: 1;
            -webkit-opacity: .7;
            -moz-opacity: .7;
            opacity: .7;
            filter: alpha(opacity=70)
        }

    .banner.banner-purple .btn {
        background-color: #61467b;
        color: #FFF
    }

        .banner.banner-purple .btn:hover {
            background-color: #48345a;
            color: #FFF
        }

.table {
    font-size: 13px
}

    .table > tbody > tr > td,
    .table > tbody > tr > th,
    .table > tfoot > tr > td,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > thead > tr > th {
        padding: 15px;
        border-top: 1px solid #eee
    }

    .table > thead > tr > th {
        border-bottom: 1px solid #eee;
        -webkit-box-shadow: 0 2px 0 #fff, 0 3px 0 #eee;
        -moz-box-shadow: 0 2px 0 #fff, 0 3px 0 #eee;
        box-shadow: 0 2px 0 #fff, 0 3px 0 #eee;
        text-transform: uppercase;
        color: #222;
        font-weight: 400
    }

    .table > tbody + tbody {
        border-bottom: 1px solid #eee;
        -webkit-box-shadow: 0 2px 0 #fff, 0 3px 0 #eee;
        -moz-box-shadow: 0 2px 0 #fff, 0 3px 0 #eee;
        box-shadow: 0 2px 0 #fff, 0 3px 0 #eee
    }

.table-bordered {
    border: 1px solid #eee
}

    .table-bordered > tbody > tr > td,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > td,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > thead > tr > th {
        border: 1px solid #eee
    }

    .table-bordered > thead > tr > th {
        background: #f3f3f3
    }

    .table-bordered > thead > tr > td,
    .table-bordered > thead > tr > th {
        border-bottom-width: 2px
    }

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f3f3f3
}

.tooltip {
    position: absolute;
    display: block;
    visibility: visible;
    line-height: 1.4;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0)
}

    .tooltip.tooltip-green .tooltip-inner {
        background-color: #0fbd71
    }

    .tooltip.tooltip-green.top .tooltip-arrow {
        border-top-color: #0fbd71
    }

    .tooltip.tooltip-green.top-left .tooltip-arrow {
        border-top-color: #0fbd71
    }

    .tooltip.tooltip-green.top-right .tooltip-arrow {
        border-top-color: #0fbd71
    }

    .tooltip.tooltip-green.right .tooltip-arrow {
        border-right-color: #0fbd71
    }

    .tooltip.tooltip-green.left .tooltip-arrow {
        border-left-color: #0fbd71
    }

    .tooltip.tooltip-green.bottom .tooltip-arrow {
        border-bottom-color: #0fbd71
    }

    .tooltip.tooltip-green.bottom-left .tooltip-arrow {
        border-bottom-color: #0fbd71
    }

    .tooltip.tooltip-green.bottom-right .tooltip-arrow {
        border-bottom-color: #0fbd71
    }

.tooltip-inner {
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #222;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    border-top-color: #222
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    border-top-color: #222
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    border-top-color: #222
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    border-right-color: #222
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 2px;
    border-left-color: #222
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    border-bottom-color: #222
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    border-bottom-color: #222
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    border-bottom-color: #222
}

.testimonials {
    padding: 50px 0
}

    .testimonials li {
        list-style: none;
        font-size: 18px;
        padding-top: 10px;
        position: relative;
        padding-left: 125px;
        color: #222
    }

        .testimonials li .avatar {
            position: absolute;
            left: 0;
            top: 0;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 150px;
            -moz-border-radius: 150px;
            -ms-border-radius: 150px;
            border-radius: 150px;
            width: 100px;
            height: 100px;
            display: block;
            float: left
        }

        .testimonials li h4 {
            margin: 0;
            font-style: normal;
            font-size: 12px;
            color: #888
        }

.search .search-header {
    background: #f4f4f4
}

    .search .search-header h2 {
        margin: 0;
        padding: 0;
        margin-top: 30px
    }

        .search .search-header h2 strong {
            font-weight: 400;
            color: #7b599b
        }

    .search .search-header .go-back {
        text-transform: uppercase;
        color: #888;
        font-size: 13px;
        display: inline-block;
        margin-top: 5px
    }

    .search .search-header .tabs {
        position: relative;
        top: 25px;
        margin-top: 20px
    }

        .search .search-header .tabs:after,
        .search .search-header .tabs:before {
            content: " ";
            display: table
        }

        .search .search-header .tabs:after {
            clear: both
        }

@media screen and (max-width: 768px) {
    .search .search-header .tabs {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee
    }
}

.search .search-header .tabs a {
    display: block;
    position: relative;
    float: left;
    background: #fafafa;
    text-transform: uppercase;
    color: #888;
    line-height: 1;
    padding: 10px 20px;
    border: 1px solid #eee;
    text-align: center;
    min-width: 90px
}

    .search .search-header .tabs a span {
        display: inline-block;
        padding-left: 5px;
        font-size: 12px;
        position: relative;
        top: -1px;
        zoom: 1;
        -webkit-opacity: .5;
        -moz-opacity: .5;
        opacity: .5;
        filter: alpha(opacity=50)
    }

        .search .search-header .tabs a span:before {
            content: '('
        }

        .search .search-header .tabs a span:after {
            content: ')'
        }

    .search .search-header .tabs a:hover {
        background-color: rgba(255, 255, 255, .8);
        text-decoration: none;
        color: #484848
    }

    .search .search-header .tabs a.active {
        background-color: #fff;
        color: #222;
        padding-top: 15px;
        margin-top: -5px;
        border-bottom-color: #fff
    }

    .search .search-header .tabs a + a {
        border-left: 0
    }

@media screen and (max-width: 768px) {
    .search .search-header .tabs a {
        min-width: 100%;
        border-bottom: 0
    }

        .search .search-header .tabs a.active {
            padding-top: 10px;
            margin-top: 0
        }
}

@media screen and (max-width: 768px) {
    .search .search-header .tabs {
        top: 0
    }

        .search .search-header .tabs a {
            width: auto;
            padding-left: 8px;
            padding-right: 8px
        }
}

.search .search-results-list .search-results {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 40px
}

@media screen and (max-width: 768px) {
    .search .search-results-list .search-results {
        margin-top: 30px
    }
}

.search .search-results-list .search-results li {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px
}

    .search .search-results-list .search-results li:after,
    .search .search-results-list .search-results li:before {
        content: " ";
        display: table
    }

    .search .search-results-list .search-results li:after {
        clear: both
    }

    .search .search-results-list .search-results li .post-thumbnail {
        float: left;
        width: 50px
    }

        .search .search-results-list .search-results li .post-thumbnail img {
            width: 100%;
            height: auto;
            border: 1px solid #dedede
        }

    .search .search-results-list .search-results li .post-details h3 {
        margin: 0;
        padding: 0;
        font-size: 18px
    }

    .search .search-results-list .search-results li .post-details .meta {
        padding-top: 5px;
        font-size: 12px;
        color: #888;
        text-transform: uppercase
    }

        .search .search-results-list .search-results li .post-details .meta ins {
            float: left;
            margin-right: 5px
        }

        .search .search-results-list .search-results li .post-details .meta .search-add-to-cart {
            display: inline-block;
            margin-top: 8px
        }

            .search .search-results-list .search-results li .post-details .meta .search-add-to-cart .icon {
                display: inline-block;
                line-height: 1;
                position: relative;
                top: 1px;
                width: 12px;
                height: 11px;
                font-size: 16px;
                margin-right: 2px;
                text-decoration: none
            }

                .search .search-results-list .search-results li .post-details .meta .search-add-to-cart .icon lesshat-selector {
                    -lh-property: 0
                }

@-webkit-keyframes spinPlus {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes spinPlus {
    from {
        -moz-transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-o-keyframes spinPlus {
    from {
        -o-transform: rotate(0)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

@keyframes spinPlus {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.search .search-results-list .search-results li .post-details .meta .search-add-to-cart .icon i {
    position: absolute;
    left: -5px;
    top: -3px
}

.search .search-results-list .search-results li .post-details .meta .search-add-to-cart.select-opts .icon {
    margin-right: 7px;
    margin-left: 3px
}

.search .search-results-list .search-results li .post-details .meta .search-add-to-cart.adding-to-cart .icon {
    -moz-animation: spinPlus 1s infinite linear;
    -webkit-animation: spinPlus 1s infinite linear;
    -o-animation: spinPlus 1s infinite linear;
    animation: spinPlus 1s infinite linear
}

.search .search-results-list .search-results li.has-thumbnail .post-details {
    padding-left: 70px
}

.search .search-results-list .search-results li + li {
    margin-top: 20px
}

@media screen and (max-width: 768px) {
    .search .pagination {
        margin-bottom: 40px
    }
}

.page-container {
    margin-top: 50px;
    margin-bottom: 50px
}

    .page-container.standalone-container {
        overflow: hidden
    }

@media screen and (max-width: 992px) {
    .page-container {
        margin-top: 30px;
        margin-bottom: 50px
    }
}

@media screen and (max-width: 768px) {
    .page-container {
        margin-top: 20px;
        margin-bottom: 35px
    }
}

.woocommerce-page .page-container {
    margin-top: 0;
    margin-bottom: 0
}

.page-container .woocommerce .container {
    width: 100%;
    margin: 0;
    padding: 0
}

.page-container .vc_row > .vc_col-sm-12 .sidebar > .wpb_wrapper {
    margin: 0 -15px
}

.page-container > .vc_row:last-child > .wpb_column > .wpb_wrapper {
    margin-bottom: 0
}

.page-container .wpb_wrapper {
    margin-bottom: 20px
}

.page-container .woocommerce .shop {
    padding: 0
}

.page-container .woocommerce .track_order {
    margin-bottom: 0
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_tabs {
        margin-bottom: 20px !important
    }
}

.page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav {
    position: relative;
    top: 1px
}

    .page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav li {
        position: relative;
        z-index: 1;
        background-color: transparent;
        border: 0;
        padding: 0;
        margin: 0
    }

        .page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav li a {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            border-radius: 2px;
            padding: 15px 25px;
            text-transform: uppercase;
            background: #fafafa;
            border: 1px solid #eee;
            margin: 0;
            margin-right: -1px;
            font-weight: 300;
            color: #333
        }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav li a {
        padding: 10px 15px
    }
}

.page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav li a:hover {
    color: #222
}

.page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav li.ui-state-active {
    z-index: 5
}

    .page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tabs_nav li.ui-state-active a {
        background-color: transparent;
        border-bottom-color: #fff
    }

.page-container .wpb_content_element.wpb_tabs .ui-tabs .wpb_tab {
    background-color: transparent;
    padding: 25px 20px;
    border: 1px solid #eee
}

.page-container .wpb_content_element.wpb_tabs.borderless .wpb_tab {
    padding: 20px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_accordion {
        margin-bottom: 20px !important
    }
}

.page-container .wpb_content_element.wpb_accordion .wpb_accordion_section {
    border: 1px solid #eee
}

    .page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header {
        position: relative;
        background: #fff;
        outline: 0
    }

        .page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header a {
            padding: 18px 20px;
            padding-left: 50px;
            font-weight: 300;
            text-transform: uppercase;
            line-height: 1.2
        }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header a {
        padding: 10px 15px;
        padding-left: 30px
    }
}

.page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header .ui-accordion-header-icon {
    float: left;
    position: static;
    right: 0;
    top: 0;
    background: 0 0
}

    .page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header .ui-accordion-header-icon:before {
        font-family: EntypoRegular;
        content: '\e816';
        font-weight: 300;
        font-size: 20px;
        font-style: normal;
        line-height: 0;
        position: absolute;
        left: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -moz-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 300ms;
        -moz-transition: all 300ms;
        -o-transition: all 300ms;
        transition: all 300ms
    }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header .ui-accordion-header-icon:before {
        left: 10px
    }
}

.page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_header.ui-accordion-header-active .ui-accordion-header-icon:before {
    content: '\e819';
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0)
}

.page-container .wpb_content_element.wpb_accordion .wpb_accordion_section .wpb_accordion_content {
    border-top: 1px solid #eee;
    color: #888
}

.page-container .wpb_content_element.wpb_accordion .wpb_accordion_section + .wpb_accordion_section {
    margin-top: 4px
}

.page-container .wpb_content_element.wpb_tour .wpb_tabs_nav {
    position: relative;
    z-index: 5;
    margin-right: -1px
}

    .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav li {
        margin: 0;
        background: 0 0
    }

        .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav li + li a {
            border-top: 0
        }

        .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav li a {
            position: relative;
            display: block;
            padding: 8px 15px;
            text-transform: uppercase;
            background: #fafafa;
            border: 1px solid #eee;
            margin: 0;
            margin-right: -1px;
            font-weight: 300;
            color: #333
        }

            .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav li a:hover {
                color: #222
            }

        .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav li.ui-state-active a {
            background: #fff;
            border-right-color: #fff
        }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav li.ui-state-active a {
        border-right-color: #eee;
        font-weight: 400
    }
}

.page-container .wpb_content_element.wpb_tour .wpb_tab {
    border: 1px solid #eee;
    color: #888;
    padding: 20px;
    min-height: 180px
}

.page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav {
    margin-left: 22%;
    padding-left: 0
}

    .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav a {
        position: relative;
        display: inline-block;
        border-bottom: 0;
        text-transform: uppercase;
        white-space: nowrap;
        color: #888
    }

        .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav a:before {
            position: relative;
            font-family: EntypoRegular;
            content: '\e878';
            font-weight: 300;
            font-size: 18px;
            font-style: normal;
            line-height: 0
        }

    .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav .wpb_prev_slide a:before {
        margin-right: 10px;
        top: 2px
    }

    .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav .wpb_next_slide a {
        padding-right: 15px
    }

        .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav .wpb_next_slide a:before {
            position: absolute;
            right: 0;
            top: 50%;
            content: '\e879';
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%)
        }

.page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tabs_nav {
    float: right;
    margin-right: 0;
    margin-left: 0
}

    .page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tabs_nav li a {
        left: -1px
    }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tabs_nav li a {
        left: 0
    }
}

.page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tabs_nav li.ui-state-active a {
    border-right-color: #eee;
    border-left-color: #fff
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tabs_nav li.ui-state-active a {
        border-left-color: #eee
    }
}

.page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tour_next_prev_nav {
    margin-left: 0;
    margin-right: 22%
}

.page-container .wpb_content_element.wpb_tour .wpb_tabs_nav {
    width: 22%
}

.page-container .wpb_content_element.wpb_tour .wpb_tab {
    width: 78%
}

.page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav {
    margin-left: 22%
}

@media screen and (max-width: 992px) {
    .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav {
        width: 30%
    }

    .page-container .wpb_content_element.wpb_tour .wpb_tab {
        width: 70%
    }

    .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav {
        margin-left: 30%
    }

    .page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tour_next_prev_nav {
        margin-left: 0;
        margin-right: 30%
    }
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.wpb_tour .wpb_tabs_nav {
        width: 100%
    }

    .page-container .wpb_content_element.wpb_tour .wpb_tab {
        width: 100%;
        border-top: 0
    }

    .page-container .wpb_content_element.wpb_tour .wpb_tour_next_prev_nav {
        margin-left: 0
    }

    .page-container .wpb_content_element.wpb_tour.tabs-right .wpb_tour_next_prev_nav {
        margin-right: 0
    }
}

.page-container .wpb_content_element.lab_wpb_image_banner a {
    display: block;
    position: relative;
    overflow: hidden
}

.page-container .wpb_content_element.lab_wpb_image_banner .banner-img {
    display: block;
    position: relative;
    z-index: 1;
    line-height: 1;
    width: 100% !important;
    height: auto !important;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out
}

.page-container .wpb_content_element.lab_wpb_image_banner:hover .banner-img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.page-container .wpb_content_element.lab_wpb_image_banner .ol {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2
}

.page-container .wpb_content_element.lab_wpb_image_banner .banner-text-container {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.page-container .wpb_content_element.lab_wpb_image_banner .banner-text-content {
    padding: 15px;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 300;
    white-space: nowrap;
    line-height: 1;
    text-align: center
}

    .page-container .wpb_content_element.lab_wpb_image_banner .banner-text-content.initially-hidden {
        visibility: hidden
    }

    .page-container .wpb_content_element.lab_wpb_image_banner .banner-text-content .banner-text-content {
        position: relative
    }

    .page-container .wpb_content_element.lab_wpb_image_banner .banner-text-content strong {
        font-weight: 300;
        display: block
    }

    .page-container .wpb_content_element.lab_wpb_image_banner .banner-text-content em {
        display: block;
        font-size: 15px;
        font-weight: 300;
        font-style: normal;
        padding-top: 10px;
        zoom: 1;
        -webkit-opacity: .7;
        -moz-opacity: .7;
        opacity: .7;
        filter: alpha(opacity=70)
    }

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-left .banner-text-container,
.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-right .banner-text-container,
.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-left .banner-text-container,
.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-right .banner-text-container {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-centered .banner-text-container,
.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-centered .banner-text-container {
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-left .banner-text-container {
    left: 35px;
    bottom: 35px;
    top: auto;
    right: auto
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-right .banner-text-container {
    bottom: 35px;
    right: 35px;
    left: auto;
    top: auto
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-centered .banner-text-container {
    bottom: 25px;
    top: auto
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-centered .banner-text-container {
    top: 25px
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-left .banner-text-container {
    top: 35px;
    left: 35px
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-right .banner-text-container {
    top: 35px;
    right: 35px;
    left: auto
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-left .banner-text-content,
.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-left .banner-text-content {
    text-align: left
}

.page-container .wpb_content_element.lab_wpb_image_banner.text-position-bottom-right .banner-text-content,
.page-container .wpb_content_element.lab_wpb_image_banner.text-position-top-right .banner-text-content {
    text-align: right
}

.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-double-bordered-title .banner-text-content {
    padding: 0
}

    .page-container .wpb_content_element.lab_wpb_image_banner.banner-type-double-bordered-title .banner-text-content strong {
        border: 2px solid #fff;
        border-left: 0;
        border-right: 0;
        display: block;
        margin: 5px 0;
        padding: 10px
    }

.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-only .banner-text-content {
    border: 0;
    padding: 0
}

.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description .banner-text-content,
.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description-bordersep .banner-text-content {
    border: 0;
    padding: 0
}

.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description-bordersep.banner-type-title-description-bordersep em,
.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description.banner-type-title-description-bordersep em {
    border-top: 1px solid #fff;
    margin-top: 10px
}

.page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description-dash .banner-text-content {
    padding: 0;
    border: 0
}

    .page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description-dash .banner-text-content em {
        margin-top: 5px
    }

    .page-container .wpb_content_element.lab_wpb_image_banner.banner-type-title-description-dash .banner-text-content .dash {
        display: inline-block;
        height: 2px;
        line-height: 1;
        background: #fff;
        width: 22px
    }

.page-container .wpb_content_element.alert {
    margin-bottom: 20px
}

    .page-container .wpb_content_element.alert p {
        margin: 0
    }

        .page-container .wpb_content_element.alert p + p {
            margin-top: 10px
        }

.page-container .wpb_content_element.wpb_gallery .wpb_image_grid {
    margin: 0 -10px
}

    .page-container .wpb_content_element.wpb_gallery .wpb_image_grid li {
        margin-bottom: 15px
    }

    .page-container .wpb_content_element.wpb_gallery .wpb_image_grid a {
        display: block;
        padding: 5px;
        margin: 0 10px;
        border: 1px solid #eee
    }

.page-container .wpb_content_element.vc_separator h4 {
    font-weight: 400;
    font-size: 18px
}

    .page-container .wpb_content_element.vc_separator h4 .title-container {
        font-weight: 400
    }

.page-container .wpb_content_element.vc_separator.vc_sep_double-border .vc_sep_holder .vc_second_line,
.page-container .wpb_content_element.vc_separator.vc_sep_double-border-2 .vc_sep_holder .vc_second_line {
    margin-top: 1px
}

.page-container .wpb_content_element.vc_separator.vc_sep_double-border-2 .vc_sep_holder .vc_first_line {
    border-top-width: 2px
}

.page-container .wpb_content_element.vc_separator.vc_sep_color_default .vc_sep_holder .vc_sep_line {
    border-color: #222
}

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_blue h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_blue h4 {
    border-color: #5472d2
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_blue h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_blue h4 .title-container {
        border-color: #5472d2
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_turquoise h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_turquoise h4 {
    border-color: #00c1cf
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_turquoise h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_turquoise h4 .title-container {
        border-color: #00c1cf
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_pink h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_pink h4 {
    border-color: #fe6c61
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_pink h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_pink h4 .title-container {
        border-color: #fe6c61
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_violet h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_violet h4 {
    border-color: #8d6dc4
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_violet h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_violet h4 .title-container {
        border-color: #8d6dc4
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_peacoc h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_peacoc h4 {
    border-color: #4cadc9
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_peacoc h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_peacoc h4 .title-container {
        border-color: #4cadc9
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_chino h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_chino h4 {
    border-color: #cec2ab
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_chino h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_chino h4 .title-container {
        border-color: #cec2ab
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_mulled_wine h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_mulled_wine h4 {
    border-color: #50485b
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_mulled_wine h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_mulled_wine h4 .title-container {
        border-color: #50485b
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_vista_blue h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_vista_blue h4 {
    border-color: #75d69c
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_vista_blue h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_vista_blue h4 .title-container {
        border-color: #75d69c
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_black h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_black h4 {
    border-color: #2a2a2a
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_black h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_black h4 .title-container {
        border-color: #2a2a2a
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_grey h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_grey h4 {
    border-color: #ebebeb
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_grey h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_grey h4 .title-container {
        border-color: #ebebeb
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_orange h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_orange h4 {
    border-color: #f7be68
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_orange h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_orange h4 .title-container {
        border-color: #f7be68
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_sky h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_sky h4 {
    border-color: #5aa1e3
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_sky h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_sky h4 .title-container {
        border-color: #5aa1e3
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_green h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_green h4 {
    border-color: #6dab3c
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_green h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_green h4 .title-container {
        border-color: #6dab3c
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_juicy_pink h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_juicy_pink h4 {
    border-color: #f4524d
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_juicy_pink h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_juicy_pink h4 .title-container {
        border-color: #f4524d
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_sandy_brown h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_sandy_brown h4 {
    border-color: #f79468
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_sandy_brown h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_sandy_brown h4 .title-container {
        border-color: #f79468
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_purple h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_purple h4 {
    border-color: #b97ebb
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_purple h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_purple h4 .title-container {
        border-color: #b97ebb
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_white h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_white h4 {
    border-color: #fff
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_white h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_white h4 .title-container {
        border-color: #fff
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_grace h4,
.page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_grace h4 {
    border-color: #aed13b
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded.vc_sep_color_grace h4 .title-container,
    .page-container .wpb_content_element.vc_separator.title-style-squared.vc_sep_color_grace h4 .title-container {
        border-color: #aed13b
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded h4,
.page-container .wpb_content_element.vc_separator.title-style-squared h4 {
    padding: 0;
    border: 1px solid #222;
    padding: 6px 15px
}

.page-container .wpb_content_element.vc_separator.title-style-rounded h4 {
    border: 0
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded h4 .title-container {
        display: block;
        border: 1px solid #222;
        padding: 5px 10px;
        text-align: center;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded.has-icon h4 .title-container {
    padding: 8px 6px
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_blue h4 {
    background-color: #5472d2
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_turquoise h4 {
    background-color: #00c1cf
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_pink h4 {
    background-color: #fe6c61
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_violet h4 {
    background-color: #8d6dc4
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_peacoc h4 {
    background-color: #4cadc9
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_chino h4 {
    background-color: #cec2ab
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_mulled_wine h4 {
    background-color: #50485b
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_vista_blue h4 {
    background-color: #75d69c
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_black h4 {
    background-color: #2a2a2a
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_grey h4 {
    background-color: #ebebeb
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_orange h4 {
    background-color: #f7be68
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_sky h4 {
    background-color: #5aa1e3
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_green h4 {
    background-color: #6dab3c
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_juicy_pink h4 {
    background-color: #f4524d
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_sandy_brown h4 {
    background-color: #f79468
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_purple h4 {
    background-color: #b97ebb
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_white h4 {
    background-color: #fff
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled.vc_sep_color_grace h4 {
    background-color: #aed13b
}

.page-container .wpb_content_element.vc_separator.title-style-squared-filled h4 {
    background: #222;
    color: #fff
}

    .page-container .wpb_content_element.vc_separator.title-style-squared-filled h4 .title-container {
        display: inline-block;
        padding: 5px 10px
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_blue h4 .title-container {
    background-color: #5472d2
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_turquoise h4 .title-container {
    background-color: #00c1cf
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_pink h4 .title-container {
    background-color: #fe6c61
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_violet h4 .title-container {
    background-color: #8d6dc4
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_peacoc h4 .title-container {
    background-color: #4cadc9
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_chino h4 .title-container {
    background-color: #cec2ab
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_mulled_wine h4 .title-container {
    background-color: #50485b
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_vista_blue h4 .title-container {
    background-color: #75d69c
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_black h4 .title-container {
    background-color: #2a2a2a
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_grey h4 .title-container {
    background-color: #ebebeb
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_orange h4 .title-container {
    background-color: #f7be68
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_sky h4 .title-container {
    background-color: #5aa1e3
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_green h4 .title-container {
    background-color: #6dab3c
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_juicy_pink h4 .title-container {
    background-color: #f4524d
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_sandy_brown h4 .title-container {
    background-color: #f79468
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_purple h4 .title-container {
    background-color: #b97ebb
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_white h4 .title-container {
    background-color: #fff
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.vc_sep_color_grace h4 .title-container {
    background-color: #aed13b
}

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled h4 {
    background-color: transparent !important
}

    .page-container .wpb_content_element.vc_separator.title-style-rounded-filled h4 .title-container {
        display: block;
        padding: 8px 14px;
        text-align: center;
        background-color: #222;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%
    }

.page-container .wpb_content_element.vc_separator.title-style-rounded-filled.has-icon h4 .title-container {
    padding: 10px 8px
}

.page-container .wpb_content_element.lab_wpb_products {
    padding-top: 0
}

    .page-container .wpb_content_element.lab_wpb_products .products {
        margin: 0 -15px
    }

.page-container .wpb_content_element.lab_vc_pagetitle h2 {
    margin: 0;
    font-size: 30px
}

    .page-container .wpb_content_element.lab_vc_pagetitle h2 small {
        display: block;
        margin-top: 8px
    }

.page-container .wpb_content_element.lab_vc_pagetitle .breadcrumb {
    padding-top: 5px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-subtitle .breadcrumb {
    padding-top: 20px
}

.page-container .wpb_content_element.lab_vc_pagetitle.text-aligned-center {
    text-align: center
}

.page-container .wpb_content_element.lab_vc_pagetitle.text-aligned-right {
    text-align: right
}

.page-container .wpb_content_element.lab_vc_pagetitle .dash {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    width: 16px;
    height: 2px;
    background-color: #222
}

.page-container .wpb_content_element.lab_vc_pagetitle.font-size-medium h2 {
    font-size: 24px
}

    .page-container .wpb_content_element.lab_vc_pagetitle.font-size-medium h2 small {
        font-size: 14px
    }

.page-container .wpb_content_element.lab_vc_pagetitle.font-size-medium.has-subtitle .breadcrumb {
    padding-top: 15px
}

.page-container .wpb_content_element.lab_vc_pagetitle.font-size-medium .dash {
    margin-top: 15px
}

.page-container .wpb_content_element.lab_vc_pagetitle.font-size-small h2 {
    font-size: 18px
}

    .page-container .wpb_content_element.lab_vc_pagetitle.font-size-small h2 small {
        font-size: 12px
    }

.page-container .wpb_content_element.lab_vc_pagetitle.font-size-small.has-subtitle .breadcrumb {
    padding-top: 10px
}

.page-container .wpb_content_element.lab_vc_pagetitle.font-size-small .dash {
    margin-top: 10px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon i {
    position: absolute;
    left: 0;
    top: 0
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon h2 {
    position: relative;
    padding-left: 55px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon .dash {
    left: 55px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon.font-size-medium h2 {
    padding-left: 45px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon.font-size-medium .dash {
    left: 45px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon.font-size-small h2 {
    padding-left: 35px
}

.page-container .wpb_content_element.lab_vc_pagetitle.has-icon.font-size-small .dash {
    left: 35px
}

.page-container .wpb_content_element.lab_wpb_products_carousel {
    position: relative;
    margin: 0 -15px;
    margin-top: -40px
}

    .page-container .wpb_content_element.lab_wpb_products_carousel.products-hidden {
        margin-left: 0;
        margin-right: 0
    }

        .page-container .wpb_content_element.lab_wpb_products_carousel.products-hidden .products-loading {
            display: block
        }

        .page-container .wpb_content_element.lab_wpb_products_carousel.products-hidden .products {
            display: none
        }

    .page-container .wpb_content_element.lab_wpb_products_carousel .products-loading {
        display: none;
        font-size: 18px;
        text-transform: uppercase;
        color: #888;
        font-weight: 300;
        padding: 20px;
        background: #fafafa;
        text-align: center;
        border: 1px solid #eee
    }

    .page-container .wpb_content_element.lab_wpb_products_carousel .products {
        position: relative
    }

        .page-container .wpb_content_element.lab_wpb_products_carousel .products .product {
            margin: 0 15px;
            margin-top: 20px
        }

            .page-container .wpb_content_element.lab_wpb_products_carousel .products .product .onsale {
                right: -10px
            }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.lab_wpb_products_carousel .products .product .onsale {
        right: 0
    }
}

.page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons {
    visibility: hidden;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms
}

    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next,
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev {
        position: absolute;
        top: 50%;
        display: block;
        text-indent: -9999px;
        background: #222 url(/Content/assets/images/arrow-left-white.svg)no-repeat center center;
        background-position: 40% center;
        margin-top: -40px;
        -webkit-background-size: 25px;
        -moz-background-size: 25px;
        background-size: 25px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        width: 40px;
        height: 40px
    }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next,
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev {
        width: 30px;
        height: 65px
    }
}

.page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next.owl-prev,
.page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev.owl-prev {
    left: -5px
}

@media screen and (max-width: 992px) {
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next.owl-prev,
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev.owl-prev {
        left: 30px
    }
}

.page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next.owl-next,
.page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev.owl-next {
    right: -5px;
    background-image: url(/Content/assets/images/arrow-right-white.svg)
}

@media screen and (max-width: 992px) {
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next.owl-next,
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev.owl-next {
        right: 30px
    }
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons {
        display: block;
        visibility: visible;
        zoom: 1;
        -webkit-opacity: .25;
        -moz-opacity: .25;
        opacity: .25;
        filter: alpha(opacity=25)
    }

        .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next,
        .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            margin-top: -75px
        }

            .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next.owl-prev,
            .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev.owl-prev {
                left: 0
            }

            .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-next.owl-next,
            .page-container .wpb_content_element.lab_wpb_products_carousel .owl-buttons .owl-prev.owl-next {
                right: 0
            }
}

.page-container .wpb_content_element.lab_wpb_products_carousel:hover .owl-buttons {
    visibility: visible;
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.lab_wpb_products_carousel:hover .owl-buttons {
        zoom: 1;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

.page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel {
    position: relative
}

    .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel.is-hidden {
        display: none
    }

    .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .logo-entry {
        text-align: center
    }

        .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .logo-entry a {
            display: inline-block
        }

        .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .logo-entry img {
            display: inline-block;
            max-width: 100%;
            height: auto
        }

@media screen and (max-width: 992px) {
    .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-buttons {
        display: none
    }
}

.page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-buttons div {
    position: absolute;
    background: url(/Content/assets/images/arrow-left.svg)no-repeat center center;
    text-indent: -9999px;
    top: 50%;
    margin-top: -15px;
    visibility: hidden;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    -webkit-background-size: 30px;
    -moz-background-size: 30px;
    background-size: 30px;
    width: 30px;
    height: 30px
}

    .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-buttons div.owl-prev {
        left: -40px
    }

    .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-buttons div.owl-next {
        background-image: url(/Content/assets/images/arrow-right.svg);
        right: -40px
    }

.page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-pagination {
    display: block;
    margin-top: 20px;
    text-align: center;
    line-height: 1
}

    .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-pagination .owl-page {
        display: inline-block;
        background: #222;
        margin: 0 4px;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        -o-transition: all 250ms;
        transition: all 250ms;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        zoom: 1;
        -webkit-opacity: .1;
        -moz-opacity: .1;
        opacity: .1;
        filter: alpha(opacity=10);
        width: 8px;
        height: 8px
    }

        .page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel .owl-controls .owl-pagination .owl-page.active {
            zoom: 1;
            -webkit-opacity: .35;
            -moz-opacity: .35;
            opacity: .35;
            filter: alpha(opacity=35)
        }

.page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel:hover .owl-controls .owl-buttons div {
    visibility: visible;
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

.page-container .wpb_content_element.lab_vc_logo_carousel .logos-carousel.has-numbers .owl-controls .owl-buttons div {
    margin-top: -32px
}

.page-container .wpb_content_element.lab_wpb_featuretab.text-aligned-center {
    text-align: center
}

.page-container .wpb_content_element.lab_wpb_featuretab.text-aligned-right {
    text-align: right
}

.page-container .wpb_content_element.vc_call_to_action {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    border-radius: 1px
}

    .page-container .wpb_content_element.vc_call_to_action .vc_btn {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        border-radius: 1px
    }

.page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner {
    padding: 20px;
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

    .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry {
        display: table;
        width: 100%;
        vertical-align: middle
    }

        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-blockquote,
        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-thumbnail {
            display: table-cell;
            vertical-align: top
        }

        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-thumbnail {
            padding-right: 20px;
            width: 130px
        }

            .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-thumbnail img {
                border-radius: 50%
            }

        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-blockquote {
            font-size: 18px;
            color: #000;
            font-weight: 700
        }

            .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-blockquote cite {
                position: relative;
                margin: 0;
                font-style: normal;
                font-size: 12px;
                color: #888;
                text-transform: uppercase;
                font-weight: 300
            }

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry {
        display: block
    }

        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-blockquote,
        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-thumbnail {
            display: block;
            width: 100%
        }

        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-thumbnail {
            text-align: center;
            padding-bottom: 20px
        }

            .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-thumbnail img {
                display: inline-block
            }

        .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-blockquote {
            text-align: center
        }

            .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonial-entry .testimonial-blockquote p {
                font-size: 15px
            }
}

.page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonials-nav {
    text-align: center;
    position: relative;
    top: 10px
}

@media screen and (max-width: 768px) {
    .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonials-nav {
        margin-top: 10px
    }
}

.page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonials-nav a {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #eee;
    text-indent: -9999px;
    border-radius: 50%;
    margin: 0 3px;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms
}

    .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonials-nav a.active,
    .page-container .wpb_content_element.lab_wpb_testimonials .testimonials-inner .testimonials-nav a:hover {
        background-color: #bbb
    }

.page-container .feature-tab {
    display: block;
    margin-bottom: 30px !important
}

    .page-container .feature-tab .icon {
        font-size: 24px
    }

    .page-container .feature-tab .title {
        font-size: 22px;
        font-weight: 300;
        text-transform: uppercase
    }

    .page-container .feature-tab .icon,
    .page-container .feature-tab .title {
        display: inline-block !important;
        color: #222
    }

    .page-container .feature-tab .description {
        display: block;
        color: #888;
        padding-top: 10px;
        font-weight: 300;
        font-size: 14px
    }

    .page-container .feature-tab:hover {
        text-decoration: none
    }

    .page-container .feature-tab.icon-top .icon,
    .page-container .feature-tab.icon-top-dark .icon {
        margin-bottom: 20px;
        line-height: 50px;
        text-align: left;
        width: 50px;
        height: 50px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%
    }

    .page-container .feature-tab.icon-top .title,
    .page-container .feature-tab.icon-top-dark .title {
        display: block !important
    }

    .page-container .feature-tab.icon-top-dark.icon-top-dark .icon,
    .page-container .feature-tab.icon-top.icon-top-dark .icon {
        background: #222;
        color: #fff;
        text-align: center
    }

    .page-container .feature-tab.icon-top .icon {
        font-size: 35px
    }

    .page-container .feature-tab.icon-top-dark .icon {
        font-size: 20px
    }

.page-container .wpb_button {
    border: none;
    text-shadow: none;
    padding: 5px 15px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    border-radius: 1px
}

    .page-container .wpb_button.wpb_btn-small {
        padding: 3px 10px
    }

    .page-container .wpb_button.wpb_btn-mini {
        padding: 3px 8px;
        text-transform: uppercase
    }

    .page-container .wpb_button.wpb_btn-large {
        padding: 10px 20px
    }

    .page-container .wpb_button:last-child {
        margin-bottom: 5px !important
    }

    .page-container .wpb_button.wpb_btn-default {
        background: #7b599b;
        color: #fff
    }

    .page-container .wpb_button.wpb_btn-primary {
        background-color: #222
    }

    .page-container .wpb_button.wpb_btn-warning {
        background-color: #f7d227
    }

    .page-container .wpb_button.wpb_btn-info {
        background-color: #00aeef
    }

    .page-container .wpb_button.wpb_btn-success {
        background-color: #0fbd71
    }

    .page-container .wpb_button.wpb_btn-danger {
        background-color: #dd1f26
    }

.page-container .wpb_gmaps_widget .wpb_wrapper {
    padding: 5px;
    border: 1px solid #eee
}

    .page-container .wpb_gmaps_widget .wpb_wrapper iframe {
        -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2);
        -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2);
        box-shadow: 0 0 1px rgba(0, 0, 0, .2)
    }

.page-container .vc_progress_bar .vc_single_bar {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    border-radius: 1px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #eee
}

    .page-container .vc_progress_bar .vc_single_bar .vc_label {
        text-transform: uppercase;
        padding: 5px 10px
    }

        .page-container .vc_progress_bar .vc_single_bar .vc_label .vc_label_units {
            zoom: 1;
            -webkit-opacity: .9;
            -moz-opacity: .9;
            opacity: .9;
            filter: alpha(opacity=90);
            display: inline-block;
            padding-left: 4px
        }

            .page-container .vc_progress_bar .vc_single_bar .vc_label .vc_label_units:before {
                display: inline-block;
                content: '—';
                position: relative;
                margin-right: 5px
            }

    .page-container .vc_progress_bar .vc_single_bar .vc_bar {
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        border-radius: 1px
    }

.page-container .vc_slide {
    overflow: hidden
}

    .page-container .vc_slide .vc_carousel-indicators {
        bottom: -25px;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        -o-transition: all 250ms;
        transition: all 250ms
    }

        .page-container .vc_slide .vc_carousel-indicators li {
            border: 0;
            background-color: rgba(0, 0, 0, .25)
        }

            .page-container .vc_slide .vc_carousel-indicators li:hover {
                background-color: rgba(0, 0, 0, .6)
            }

            .page-container .vc_slide .vc_carousel-indicators li.vc_active,
            .page-container .vc_slide .vc_carousel-indicators li:active,
            .page-container .vc_slide .vc_carousel-indicators li:focus {
                background: #fff
            }

    .page-container .vc_slide .vc_carousel-control {
        width: 40px;
        padding: 20px 0;
        zoom: 1;
        -webkit-opacity: .25;
        -moz-opacity: .25;
        opacity: .25;
        filter: alpha(opacity=25);
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        -o-transition: all 250ms;
        transition: all 250ms
    }

        .page-container .vc_slide .vc_carousel-control span {
            background: url(/Content/assets/images/arrow-right.svg)no-repeat;
            position: relative;
            margin-top: -10px;
            width: 20px;
            height: 20px;
            -webkit-background-size: 20px;
            -moz-background-size: 20px;
            background-size: 20px
        }

            .page-container .vc_slide .vc_carousel-control span:before {
                display: none
            }

        .page-container .vc_slide .vc_carousel-control.vc_left span {
            background-image: url(/Content/assets/images/arrow-left.svg);
            margin-left: -10px
        }

    .page-container .vc_slide:hover .vc_carousel-control {
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100);
        background: rgba(255, 255, 255, .5)
    }

    .page-container .vc_slide:hover .vc_carousel-indicators {
        bottom: 5px
    }

.page-container .post-thumb a img {
    width: 100%
}

.page-container .wpb_toggle {
    position: relative;
    background: #fff;
    outline: 0;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 18px 20px;
    padding-left: 45px;
    margin-bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .page-container .wpb_toggle:before {
        position: absolute;
        left: 20px;
        top: 50%;
        font-family: EntypoRegular;
        content: '\2795';
        font-weight: 300;
        font-size: 20px;
        font-style: normal;
        line-height: 0;
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -moz-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 300ms;
        -moz-transition: all 300ms;
        -o-transition: all 300ms;
        transition: all 300ms
    }

    .page-container .wpb_toggle.wpb_toggle_title_active:before {
        content: '\2796';
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

.page-container .wpb_toggle_content {
    border: 1px solid #eee;
    padding: 15px 20px;
    color: #888;
    border-top: 0;
    margin-top: 0
}

    .page-container .wpb_toggle_content + .wpb_toggle {
        margin-top: 10px
    }

.page-container .wpb_single_image img {
    width: auto !important;
    height: auto !important
}

.page-container .teaser_grid_container .wpb_thumbnails {
    padding-left: 0;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px
}

    .page-container .teaser_grid_container .wpb_thumbnails .isotope-inner {
        padding: 20px;
        border: 1px solid #eee;
        margin: 0 10px
    }

        .page-container .teaser_grid_container .wpb_thumbnails .isotope-inner:hover {
            background: #fafafa
        }

    .page-container .teaser_grid_container .wpb_thumbnails .post-thumb {
        margin-left: -20px;
        margin-right: -20px;
        margin-top: -20px
    }

        .page-container .teaser_grid_container .wpb_thumbnails .post-thumb img {
            width: 100%;
            height: auto !important
        }

    .page-container .teaser_grid_container .wpb_thumbnails .post-title {
        margin-top: 0;
        line-height: .85
    }

        .page-container .teaser_grid_container .wpb_thumbnails .post-title a {
            font-size: 18px
        }

    .page-container .teaser_grid_container .wpb_thumbnails .post-thumb + .post-title {
        margin-top: 10px
    }

    .page-container .teaser_grid_container .wpb_thumbnails .entry-content {
        font-size: 12px;
        color: #888;
        font-weight: 300
    }

    .page-container .teaser_grid_container .wpb_thumbnails .vc_read_more {
        display: inline-block;
        padding-top: 15px;
        text-transform: uppercase;
        font-size: 12px;
        color: #888
    }

.page-container .wpb_heading {
    margin-bottom: 20px;
    margin-top: 0
}

    .page-container .wpb_heading.wpb_pie_chart_heading {
        margin-top: 10px
    }

@media screen and (max-width: 480px) {
    .page-container .teaser_grid_container {
        margin-left: -10px
    }
}

.page-container .vc_grid-item-mini .vc_gitem-col {
    padding: 10px 20px
}

body.content-ntm .page-container {
    margin-top: 0
}

body.content-nbm .page-container {
    margin-bottom: 0
}

.upb_row_bg.vcpb-vz-jquery {
    min-width: 0 !important;
    width: 100% !important;
    left: 0 !important
}

.bounce-loader {
    margin: auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

    .bounce-loader .loading {
        width: 10px;
        height: 10px;
        background: #FFF;
        border-radius: 100%;
        float: left;
        margin-right: 5px
    }

    .bounce-loader .loading-0 {
        -webkit-animation: bounceLoader 1s infinite;
        -webkit-animation-delay: .1s;
        background: #888
    }

    .bounce-loader .loading-1 {
        -webkit-animation: bounceLoader 1s infinite;
        -webkit-animation-delay: .3s;
        background: #888
    }

    .bounce-loader .loading-2 {
        -webkit-animation: bounceLoader 1s infinite ease;
        -webkit-animation-delay: .5s;
        background: #888
    }

    .bounce-loader lesshat-selector {
        -lh-property: 0
    }

@-webkit-keyframes bounceLoader {
    0%, 100% {
        opacity: 1
    }

    60% {
        opacity: 0
    }
}

@-moz-keyframes bounceLoader {
    0%, 100% {
        opacity: 1
    }

    60% {
        opacity: 0
    }
}

@-o-keyframes bounceLoader {
    0%, 100% {
        opacity: 1
    }

    60% {
        opacity: 0
    }
}

@keyframes bounceLoader {
    0%, 100% {
        opacity: 1
    }

    60% {
        opacity: 0
    }
}

.welcome-page-container header {
    margin-top: 150px;
    margin-bottom: 70px;
    display: table;
    table-layout: fixed
}

    .welcome-page-container header > div {
        display: table-cell;
        vertical-align: middle
    }

    .welcome-page-container header .welcome-title h2 {
        margin: 0;
        padding: 0;
        margin-left: 50px;
        border-left: 2px solid #eee;
        padding-left: 40px;
        font-size: 18px
    }

@media screen and (max-width: 992px) {
    .welcome-page-container header {
        margin: 30px 0
    }
}

@media screen and (max-width: 768px) {
    .welcome-page-container header {
        display: block
    }

        .welcome-page-container header > div {
            display: block
        }

        .welcome-page-container header .welcome-title h2 {
            margin-left: 0;
            border-left: 0;
            padding-left: 0;
            margin-top: 15px
        }
}

.welcome-page-container .links-list h4 {
    text-transform: uppercase;
    color: #222;
    font-size: 17px;
    font-weight: 400
}

.welcome-page-container .links-list ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #888
}

@media screen and (max-width: 992px) {
    .welcome-page-container .links-list ul {
        margin-bottom: 20px
    }
}

.wcml_currency_switcher:after,
.wcml_currency_switcher:before {
    content: " ";
    display: table
}

.wcml_currency_switcher:after {
    clear: both
}

.top-menu div.currency-switcher,
.top-menu div.lang-switcher {
    float: left;
    position: relative
}

    .top-menu div.currency-switcher + div,
    .top-menu div.lang-switcher + div {
        margin-left: 15px;
        padding-left: 15px
    }

        .top-menu div.currency-switcher + div:before,
        .top-menu div.lang-switcher + div:before {
            content: "";
            width: 1px;
            display: inline-block;
            height: 10px;
            position: absolute;
            background: #3a3a3a;
            left: 0;
            top: 50%
        }

.gray.top-menu div.currency-switcher + div:before,
.gray.top-menu div.lang-switcher + div:before,
.light.top-menu div.currency-switcher + div:before,
.light.top-menu div.lang-switcher + div:before {
    background-color: #ccc
}

.top-menu div.lang-switcher {
    padding-top: 13px
}

    .top-menu div.lang-switcher #lang_sel {
        height: auto
    }

        .top-menu div.lang-switcher #lang_sel li {
            min-width: 0;
            width: auto
        }

        .top-menu div.lang-switcher #lang_sel ul {
            width: auto
        }

            .top-menu div.lang-switcher #lang_sel ul:after,
            .top-menu div.lang-switcher #lang_sel ul:before {
                content: " ";
                display: table
            }

            .top-menu div.lang-switcher #lang_sel ul:after {
                clear: both
            }

        .top-menu div.lang-switcher #lang_sel a {
            border: 0;
            padding: 0;
            color: #fff;
            font-size: 12px;
            font-weight: 300;
            text-shadow: none;
            line-height: 1;
            white-space: nowrap;
            text-transform: uppercase
        }

            .top-menu div.lang-switcher #lang_sel a:after,
            .top-menu div.lang-switcher #lang_sel a:before {
                content: " ";
                display: table
            }

            .top-menu div.lang-switcher #lang_sel a:after {
                clear: both
            }

.gray.top-menu div.lang-switcher #lang_sel a,
.light.top-menu div.lang-switcher #lang_sel a {
    color: #333
}

.top-menu div.lang-switcher #lang_sel a.lang_sel_sel {
    background: 0 0;
    padding-bottom: 8px;
    z-index: 2
}

    .top-menu div.lang-switcher #lang_sel a.lang_sel_sel img.iclflag {
        margin-right: 2px
    }

.top-menu div.lang-switcher #lang_sel a img.iclflag {
    vertical-align: baseline;
    margin-right: 5px
}

.top-menu div.lang-switcher #lang_sel ul ul {
    border: 0;
    left: -10px;
    background: #222;
    height: auto;
    min-width: 125px;
    top: 100%;
    padding-top: 5px !important;
    z-index: 10
}

    .top-menu div.lang-switcher #lang_sel ul ul li {
        float: none;
        border-top: 1px solid #2f2f2f
    }

        .top-menu div.lang-switcher #lang_sel ul ul li a {
            background-color: transparent;
            padding: 8px 10px
        }

            .top-menu div.lang-switcher #lang_sel ul ul li a:hover {
                background-color: #2f2f2f
            }

.gray.top-menu div.lang-switcher #lang_sel ul ul {
    background: #eee
}

    .gray.top-menu div.lang-switcher #lang_sel ul ul li {
        border-top: 1px solid #e1e1e1
    }

        .gray.top-menu div.lang-switcher #lang_sel ul ul li a:hover {
            background-color: #e9e9e9
        }

.light.top-menu div.lang-switcher #lang_sel ul ul {
    background: #fff
}

    .light.top-menu div.lang-switcher #lang_sel ul ul li {
        border-top: 0
    }

        .light.top-menu div.lang-switcher #lang_sel ul ul li a:hover {
            background-color: #fafafa
        }

.top-menu div.currency-switcher {
    position: relative
}

    .top-menu div.currency-switcher .wcml_currency_switcher {
        margin-top: 7px !important;
        border-top: 0 !important
    }

        .top-menu div.currency-switcher .wcml_currency_switcher li {
            border: 0;
            padding: 5px 0;
            font-size: 12px;
            font-weight: 300;
            color: #fff;
            display: inline-block;
            float: none
        }

            .top-menu div.currency-switcher .wcml_currency_switcher li + li {
                margin-left: 10px
            }

    .top-menu div.currency-switcher ul.wcml_currency_switcher + img {
        top: 50%;
        right: -20px;
        position: absolute;
        background-color: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        width: 8px;
        height: 8px;
        -moz-box-shadow: 0 0 0 3px #fff;
        -webkit-box-shadow: 0 0 0 3px #fff;
        box-shadow: 0 0 0 3px #fff
    }

    .top-menu div.currency-switcher select.wcml_currency_switcher {
        margin-top: 11px !important
    }

        .top-menu div.currency-switcher select.wcml_currency_switcher + img {
            display: none !important
        }

.top-menu div .bootstrap-select.wcml_currency_switcher {
    width: auto !important;
    outline: 0 !important
}

    .top-menu div .bootstrap-select.wcml_currency_switcher + img {
        display: none !important
    }

    .top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-toggle {
        padding: 0;
        padding-right: 10px;
        margin-top: 6px;
        background-color: transparent;
        font-size: 12px;
        font-weight: 300;
        outline: 0 !important;
        color: #fff !important;
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

.gray.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-toggle,
.light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-toggle {
    color: #222 !important
}

.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-toggle .caret {
    right: -2px
}

.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu {
    min-width: 50px;
    background: #222;
    border: 0;
    min-height: 0 !important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

    .top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu.open {
        margin-top: 9px;
        margin-left: -5px;
        min-height: 0;
        width: auto !important
    }

    .top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li {
        margin: 0;
        padding: 0;
        border-top: 1px solid #2f2f2f;
        float: none;
        width: 100%
    }

        .top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a {
            padding: 3px 10px;
            float: none;
            width: 100%;
            color: rgba(255, 255, 255, .6);
            font-size: 12px
        }

            .top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a:hover {
                background-color: #2f2f2f
            }

        .top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li.selected a {
            background-color: #2f2f2f;
            color: #fff
        }

.gray.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu,
.light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu {
    background-color: #eee
}

    .gray.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li,
    .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li {
        border-color: #e1e1e1
    }

        .gray.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a,
        .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a {
            color: #888
        }

            .gray.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a:hover,
            .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a:hover {
                background-color: #e9e9e9
            }

        .gray.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li.selected a,
        .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li.selected a {
            background-color: #e9e9e9;
            color: #222
        }

.light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu {
    background-color: #fff
}

    .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li {
        border: 0
    }

        .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li a:hover {
            background-color: #f5f5f5
        }

        .light.top-menu div .bootstrap-select.wcml_currency_switcher .dropdown-menu li.selected a {
            background-color: #fafafa;
            color: #222
        }

.top-menu div .bootstrap-select.wcml_currency_switcher[disabled] .dropdown-toggle {
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    zoom: 1;
    -webkit-opacity: .25;
    -moz-opacity: .25;
    opacity: .25;
    filter: alpha(opacity=25)
}

.top-menu .right-align .bootstrap-select.wcml_currency_switcher .dropdown-menu.open {
    right: -5px;
    left: auto
}

.site-header .ubermenu {
    white-space: normal
}

    .site-header .ubermenu.ubermenu-skin-none {
        position: static
    }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-target {
            outline: 0
        }

            .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-target .ubermenu-target-title {
                text-transform: uppercase;
                font-weight: 300;
                font-size: 14px
            }

            .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-target .ubermenu-image + .ubermenu-target-title {
                display: block
            }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item > .ubermenu-submenu-type-flyout:after,
        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item > .ubermenu-submenu-type-flyout:before {
            display: block;
            height: 15px;
            content: ''
        }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target {
            padding: 25px 20px
        }

            .site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-title {
                font-size: 16px
            }

.transparent-header .site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-title {
    color: #fff
}

    .transparent-header .site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-title:after {
        background-color: #fff
    }

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-title:after {
    display: block;
    content: '';
    height: 2px;
    margin-top: 1px;
    background: #222;
    visibility: hidden
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target > .ubermenu-target-description {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    color: #888
}

.transparent-header .site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target:hover {
    background-color: rgba(255, 255, 255, .25)
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0:hover > .ubermenu-target {
    background-color: #f7f7f7
}

.transparent-header .site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0:hover > .ubermenu-target {
    background-color: rgba(255, 255, 255, .25)
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target > .ubermenu-target-title:after,
.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target > .ubermenu-target-title:after,
.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0.ubermenu-current_page_ancestor > .ubermenu-target > .ubermenu-target-title:after,
.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0.ubermenu-current_page_item > .ubermenu-target > .ubermenu-target-title:after {
    visibility: visible
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-submenu-align-full_width {
    left: 15px;
    right: 15px;
    width: auto
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-1 .ubermenu-submenu-type-flyout {
    margin-top: -15px
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu-type-flyout > .ubermenu-item-has-children > .ubermenu-target > .ubermenu-target-title {
    white-space: nowrap
}

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu-type-flyout > .ubermenu-item-has-children > .ubermenu-target > .ubermenu-target-title:before {
        font-family: EntypoRegular;
        content: '\e879';
        display: block;
        float: right;
        margin-left: 10px;
        zoom: 1;
        -webkit-opacity: .5;
        -moz-opacity: .5;
        opacity: .5;
        filter: alpha(opacity=50)
    }

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu-type-flyout > .ubermenu-item-has-children:hover > .ubermenu-target > .ubermenu-target-title:before {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100)
}

.site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu {
    background-color: #f7f7f7;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item > .ubermenu-target {
        padding: 5px 20px;
        padding: 3px 20px
    }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item > .ubermenu-target > .ubermenu-target-description {
            text-transform: uppercase;
            color: #888;
            font-size: 11px;
            font-weight: 300
        }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item > .ubermenu-target.ubermenu-item-notext {
            background-color: transparent !important
        }

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item:hover > .ubermenu-target {
        background-color: #efefef;
        color: #222
    }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item:hover > .ubermenu-target .ubermenu-target-title {
            text-decoration: underline
        }

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item.ubermenu-current-menu-ancestor > .ubermenu-target,
    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item.ubermenu-current-menu-item > .ubermenu-target,
    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item.ubermenu-current_page_ancestor > .ubermenu-target,
    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item.ubermenu-current_page_item > .ubermenu-target {
        background-color: #efefef
    }

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item .ubermenu-content-block {
        padding: 5px 20px;
        font-weight: 300;
        font-size: 12px
    }

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu .ubermenu-item img {
        max-width: 100%;
        height: auto !important
    }

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item:hover > .ubermenu-target {
        background-color: transparent
    }

    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current-menu-ancestor > .ubermenu-target,
    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current-menu-item > .ubermenu-target,
    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current_page_ancestor > .ubermenu-target,
    .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current_page_item > .ubermenu-target {
        background-color: transparent
    }

        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current-menu-ancestor > .ubermenu-target > .ubermenu-target-title,
        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current-menu-item > .ubermenu-target > .ubermenu-target-title,
        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current_page_ancestor > .ubermenu-target > .ubermenu-target-title,
        .site-header .ubermenu.ubermenu-skin-none .ubermenu-item .ubermenu-submenu.ubermenu-submenu-type-mega .ubermenu-item.ubermenu-current_page_item > .ubermenu-target > .ubermenu-target-title {
            color: #7b599b;
            font-weight: 500
        }

.site-header .ubermenu.ubermenu-skin-none.ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target:after {
    display: none
}

.site-header .menu-centered .ubermenu.ubermenu-skin-none {
    display: inline-block !important
}

    .site-header .menu-centered .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target {
        padding: 10px 20px
    }

.site-header.sticky.sticked .ubermenu.ubermenu-skin-none .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target {
    padding: 10px 20px
}

.hidden-overflow {
    overflow: hidden !important
}

.block {
    display: block !important
}

.pagination {
    display: block;
    width: 100%
}

    .pagination:after,
    .pagination:before {
        content: " ";
        display: table
    }

    .pagination:after {
        clear: both
    }

    .pagination.pagination-center {
        text-align: center
    }

    .pagination.pagination-right {
        text-align: right
    }

    .pagination > li {
        display: inline-block
    }

        .pagination > li > a {
            position: relative;
            background: 0 0;
            border-color: #eee;
            color: #333;
            -webkit-background-clip: padding-box !important;
            -moz-background-clip: padding !important;
            background-clip: padding-box !important;
            -webkit-border-radius: 0 !important;
            -moz-border-radius: 0 !important;
            -ms-border-radius: 0 !important;
            border-radius: 0 !important
        }

            .pagination > li > a:hover {
                color: #0d0d0d;
                background-color: transparent;
                border-color: #d5d5d5
            }

        .pagination > li .current,
        .pagination > li.active > a {
            background: 0 0;
            border-color: #eee;
            color: #222;
            -webkit-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee;
            -moz-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee;
            box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee
        }

            .pagination > li .current:hover,
            .pagination > li.active > a:hover {
                border-color: #eee;
                color: #222;
                background-color: transparent;
                -webkit-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #d9d9d9;
                -moz-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #d9d9d9;
                box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #d9d9d9
            }

        .pagination > li.dots span {
            border-color: #eee;
            color: #d5d5d5
        }

        .pagination > li.dots:hover span {
            background-color: transparent
        }

        .pagination > li + li {
            margin-left: 5px
        }

    .pagination > a,
    .pagination > span {
        display: inline-block;
        border: 1px solid #eee;
        padding: 8px 12px;
        color: #333;
        font-size: 14px;
        text-align: center;
        line-height: 1;
        margin-right: 3px
    }

        .pagination > a:hover,
        .pagination > span:hover {
            color: #0d0d0d;
            background-color: transparent;
            border-color: #d5d5d5;
            text-decoration: none
        }

        .pagination > a.active,
        .pagination > span.active {
            border-color: #eee;
            color: #222;
            -webkit-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee;
            -moz-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee;
            box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #eee
        }

            .pagination > a.active:hover,
            .pagination > span.active:hover {
                border-color: #eee;
                color: #222;
                -webkit-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #d9d9d9;
                -moz-box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #d9d9d9;
                box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #d9d9d9
            }

.breadcrumb {
    color: #bbb;
    font-size: 12px;
    padding-top: 20px
}

.bc-more-padding .breadcrumb {
    padding-top: 30px;
    padding-top: 50px
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        padding-top: 0 !important
    }
}

.breadcrumb span {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 3px;
    color: #b3b3b3
}

    .breadcrumb span a {
        color: #333
    }

.pull-right-md.breadcrumb span:last-child {
    margin-right: 0
}

@media screen and (max-width: 768px) {
    .pull-right-md.breadcrumb span:first-child {
        margin-left: 0
    }
}

@media screen and (min-width: 768px) {
    .pull-right-md {
        float: right
    }
}

@media screen and (min-width: 480px) {
    .pull-right-sm {
        float: right
    }
}

.owl-slider {
    display: block;
    position: relative
}

    .owl-slider:after,
    .owl-slider:before {
        content: " ";
        display: table
    }

    .owl-slider:after {
        clear: both
    }

    .owl-slider a {
        display: block
    }

    .owl-slider:hover .owl-buttons .owl-next,
    .owl-slider:hover .owl-buttons .owl-prev {
        left: 0
    }

    .owl-slider .owl-buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        z-index: 100;
        height: 0
    }

        .owl-slider .owl-buttons .owl-next,
        .owl-slider .owl-buttons .owl-prev {
            display: block;
            position: relative;
            background: rgba(255, 255, 255, .8) url(/Content/assets/images/arrow-left.svg)no-repeat center center;
            margin-top: -30px;
            text-indent: -9999px;
            width: 30px;
            height: 60px;
            -webkit-transition: all 150ms ease-in-out;
            -moz-transition: all 150ms ease-in-out;
            -o-transition: all 150ms ease-in-out;
            transition: all 150ms ease-in-out;
            -webkit-background-size: 30px;
            -moz-background-size: 30px;
            background-size: 30px
        }

            .owl-slider .owl-buttons .owl-next:hover,
            .owl-slider .owl-buttons .owl-prev:hover {
                background-color: #fff
            }

        .owl-slider .owl-buttons .owl-prev {
            float: left;
            left: -30px
        }

        .owl-slider .owl-buttons .owl-next {
            float: right;
            background-image: url(/Content/assets/images/arrow-right.svg);
            left: 30px
        }

.faq-items-list {
    margin-bottom: 10px;
    padding-top: 30px
}

.page-title-container + .faq-items-list {
    padding-top: 0
}

#cart-totals {
    color: #222
}

.chosen-container .chosen-results li,
.select2-drop.select2-drop-active .select2-results .select2-no-results,
.select2-drop.select2-drop-active .select2-results .select2-result .select2-result-label,
.shop .place-order .button,
.up {
    text-transform: uppercase
}

.no-margin {
    margin: 0 !important
}

.no-top-margin {
    margin-top: 0 !important
}

.no-right-margin {
    margin-right: 0 !important
}

.no-horizontal-padding {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.no-vertical-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.alpha {
    padding-left: 7.5px !important
}

.omega {
    padding-right: 7.5px !important
}

.clear {
    clear: both
}

@media screen and (max-width: 991px) {
    .clear-sm {
        clear: both
    }
}

@media screen and (min-width: 992px) {
    .clear-md {
        clear: both
    }
}

@-moz-document url-prefix() {
    .shop .orderBy .dropdown .caret {
        float: none;
        top: 0
    }

    .shop-item-single .item-info.summary .variations div.variation-select .btn .caret {
        position: absolute
    }
}

@media screen and (max-width: 480px) {
    .coupon-env .coupon .close-coupon {
        display: none
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.spritezoom-container {
    margin: 10px;
    text-decoration: none
}

.spritezoom-view {
    border: 4px solid #ccc;
    margin: -4px
}

.spritezoom-zoom {
    border: 4px solid #ccc;
    margin: -4px
}

.spritezoom-tint {
    background: #ccc
}

.spritezoom-lens {
    border: 4px solid #ccc;
    margin: -4px
}

.spritezoom-title {
    background: #888;
    color: #fff;
    padding: 3px;
    text-align: center
}

.imagezoom-view {
    -moz-box-shadow: 0 0 0 2px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, .05);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .05);
    background: rgba(255, 255, 255, .2)
}

    .imagezoom-view img {
        height: auto !important
    }

.wc-proceed-to-checkout {
    position: absolute;
    left: -9999999px;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0)
}

@-moz-document url-prefix() {
    .shop .orderBy .dropdown .caret {
        margin-top: -11px
    }
}

.imagezoom-view img {
    max-width: none !important
}

a.button.btn.btn-primary.btn-sm.cancel {
    margin: 0 10px
}

.Xwpb_widgetised_column .wpb_wrapper > .col-md-3,
.Xwpb_widgetised_column .wpb_wrapper > .col-md-4,
.Xwpb_widgetised_column .wpb_wrapper > .col-md-6 {
    width: 100% !important
}

.post-formatting:after,
.post-formatting:before {
    content: " ";
    display: table
}

.post-formatting:after {
    clear: both
}

.post-formatting a {
    font-weight: 500
}

.post-formatting code {
    background-color: #eee;
    color: #333;
    font-size: 11px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    border-radius: 1px
}

.post-formatting kbd {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    border-radius: 1px
}

.post-formatting img {
    max-width: 100%;
    height: auto !important
}

    .post-formatting img.alignleft,
    .post-formatting img.alignright {
        position: relative;
        vertical-align: text-top;
        margin-right: 15px;
        margin-bottom: 15px;
        line-height: 1;
        top: 5px;
        float: left
    }

    .post-formatting img.alignright {
        float: right;
        margin-right: 0;
        margin-left: 15px
    }

.post-formatting .wp-caption {
    max-width: 100%;
    margin-bottom: 15px
}

    .post-formatting .wp-caption.aligncenter {
        text-align: center;
        margin: 0 auto;
        margin-bottom: 15px
    }

        .post-formatting .wp-caption.aligncenter .wp-caption-text {
            margin: 0 5px
        }

    .post-formatting .wp-caption.alignleft {
        float: left;
        margin-right: 15px
    }

        .post-formatting .wp-caption.alignleft .wp-caption-text {
            margin-right: 10px
        }

    .post-formatting .wp-caption.alignright {
        float: right;
        margin-left: 15px
    }

        .post-formatting .wp-caption.alignright .wp-caption-text {
            margin-right: 10px
        }

    .post-formatting .wp-caption.alignleft,
    .post-formatting .wp-caption.alignright {
        position: relative;
        top: 5px
    }

    .post-formatting .wp-caption .wp-caption-text {
        background: #eee;
        padding: 5px 10px;
        font-size: 12px !important
    }

.post-formatting blockquote p {
    color: #888
}

    .post-formatting blockquote p:last-child {
        margin-bottom: 0 !important
    }

.post-formatting cite {
    font-weight: 500
}

.post-formatting dl dd {
    margin-bottom: 15px
}

.post-formatting ol,
.post-formatting ul {
    padding-left: 20px
}

    .post-formatting ol li,
    .post-formatting ul li {
        padding: 2px 0
    }

.post-formatting address {
    border-left: 3px solid #eee;
    padding-left: 20px
}

.post-formatting iframe {
    max-width: 100%
}

.bootstrap-select {
    width: 220px \0
}

    .bootstrap-select > .btn {
        width: 100%;
        padding-right: 25px
    }

.error .bootstrap-select .btn {
    border: 1px solid #dd1f26
}

.control-group.error .bootstrap-select .dropdown-toggle {
    border-color: #dd1f26
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 250px
}

.bootstrap-select .btn:focus {
    outline: thin dotted #333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}

    .bootstrap-select.form-control:not([class*=col-]) {
        width: 100%
    }

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*=col-] {
    float: none;
    display: inline-block;
    margin-left: 0
}

    .bootstrap-select.btn-group.dropdown-menu-right,
    .bootstrap-select.btn-group[class*=col-].dropdown-menu-right,
    .row-fluid .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
        float: right
    }

.form-group .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-inline .bootstrap-select.btn-group,
.form-search .bootstrap-select.btn-group {
    margin-bottom: 0
}

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0
}

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%
}

.input-append .bootstrap-select.btn-group {
    margin-left: -1px
}

.input-prepend .bootstrap-select.btn-group {
    margin-right: -1px
}

.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed
}

    .bootstrap-select.btn-group > .disabled:focus {
        outline: 0 !important
    }

.bootstrap-select.btn-group .btn .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left
}

.bootstrap-select.btn-group .btn .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.bootstrap-select.btn-group[class*=col-] .btn {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    z-index: 1035;
    box-sizing: border-box
}

    .bootstrap-select.btn-group .dropdown-menu.inner {
        position: static;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none
    }

    .bootstrap-select.btn-group .dropdown-menu li {
        position: relative
    }

        .bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) a small,
        .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,
        .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small {
            color: #64b1d8;
            color: rgba(100, 177, 216, .4)
        }

        .bootstrap-select.btn-group .dropdown-menu li.disabled a {
            cursor: not-allowed
        }

        .bootstrap-select.btn-group .dropdown-menu li a {
            cursor: pointer
        }

            .bootstrap-select.btn-group .dropdown-menu li a.opt {
                position: relative;
                padding-left: 2.25em
            }

            .bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
                display: none
            }

            .bootstrap-select.btn-group .dropdown-menu li a span.text {
                display: inline-block
            }

        .bootstrap-select.btn-group .dropdown-menu li small {
            padding-left: .5em
        }

    .bootstrap-select.btn-group .dropdown-menu .notify {
        position: absolute;
        bottom: 5px;
        width: 96%;
        margin: 0 2%;
        min-height: 26px;
        padding: 3px 5px;
        background: #f5f5f5;
        border: 1px solid #e3e3e3;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
        pointer-events: none;
        opacity: .9;
        box-sizing: border-box
    }

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px
}

.bootstrap-select.btn-group.fit-width .btn .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .btn .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 5px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}

.bootstrap-select.show-menu-arrow.open > .btn {
    z-index: 1036
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom-width: 7px;
    border-bottom-style: solid;
    border-bottom-color: #ccc;
    border-bottom-color: rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-bottom: 0;
    border-top-width: 7px;
    border-top-style: solid;
    border-top-color: #ccc;
    border-top-color: rgba(204, 204, 204, .2)
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
    display: block
}

.bs-actionsbox,
.bs-searchbox {
    padding: 4px 8px
}

.bs-actionsbox {
    float: left;
    width: 100%;
    box-sizing: border-box
}

    .bs-actionsbox .btn-group button {
        width: 50%
    }

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px
}

.bs-searchbox input.form-control {
    margin-bottom: 0;
    width: 100%
}

.mobile-device {
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 100%;
    height: 100% !important;
    opacity: 0
}

.scrollbar-rail-default {
    display: none;
    position: absolute;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    -o-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear opacity .2s linear;
    -moz-transition: background-color .2s linear opacity .2s linear;
    -o-transition: background-color .2s linear opacity .2s linear;
    transition: background-color .2s linear opacity .2s linear
}

.scrollbar-rail-hover {
    background-color: #eee;
    zoom: 1;
    -webkit-opacity: .9;
    -moz-opacity: .9;
    opacity: .9;
    filter: alpha(opacity=90)
}

.scrollbar-default {
    position: absolute;
    background-color: #aaa;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background-color .2s linear;
    -moz-transition: background-color .2s linear;
    -o-transition: background-color .2s linear;
    transition: background-color .2s linear
}

.scrollbar-hover {
    background-color: #999
}

.in-scrolling.in-scrolling {
    background-color: #eee;
    zoom: 1;
    -webkit-opacity: .9;
    -moz-opacity: .9;
    opacity: .9;
    filter: alpha(opacity=90)
}

.ps-container.ps-active-x > .ps-scrollbar-x-rail,
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
    display: block
}

.ps-container > .ps-scrollbar-x-rail {
    display: none;
    position: absolute;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    -o-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear opacity .2s linear;
    -moz-transition: background-color .2s linear opacity .2s linear;
    -o-transition: background-color .2s linear opacity .2s linear;
    transition: background-color .2s linear opacity .2s linear;
    bottom: 1px;
    height: 5px
}

    .ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
        position: absolute;
        background-color: #aaa;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -webkit-transition: background-color .2s linear;
        -moz-transition: background-color .2s linear;
        -o-transition: background-color .2s linear;
        transition: background-color .2s linear;
        bottom: 0;
        height: 5px
    }

    .ps-container > .ps-scrollbar-x-rail.in-scrolling {
        background-color: #eee;
        zoom: 1;
        -webkit-opacity: .9;
        -moz-opacity: .9;
        opacity: .9;
        filter: alpha(opacity=90)
    }

.ps-container > .ps-scrollbar-y-rail {
    display: none;
    position: absolute;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    -moz-transition: background-color .2s linear, opacity .2s linear;
    -o-transition: background-color .2s linear, opacity .2s linear;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear opacity .2s linear;
    -moz-transition: background-color .2s linear opacity .2s linear;
    -o-transition: background-color .2s linear opacity .2s linear;
    transition: background-color .2s linear opacity .2s linear;
    right: 1px;
    width: 5px
}

    .ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
        position: absolute;
        background-color: #aaa;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -webkit-transition: background-color .2s linear;
        -moz-transition: background-color .2s linear;
        -o-transition: background-color .2s linear;
        transition: background-color .2s linear;
        right: 0;
        width: 5px
    }

    .ps-container > .ps-scrollbar-y-rail.in-scrolling {
        background-color: #eee;
        zoom: 1;
        -webkit-opacity: .9;
        -moz-opacity: .9;
        opacity: .9;
        filter: alpha(opacity=90)
    }

.ps-container:hover > .ps-scrollbar-x-rail,
.ps-container:hover > .ps-scrollbar-y-rail {
    zoom: 1;
    -webkit-opacity: .6;
    -moz-opacity: .6;
    opacity: .6;
    filter: alpha(opacity=60)
}

    .ps-container:hover > .ps-scrollbar-x-rail.in-scrolling,
    .ps-container:hover > .ps-scrollbar-y-rail.in-scrolling {
        background-color: #eee;
        zoom: 1;
        -webkit-opacity: .9;
        -moz-opacity: .9;
        opacity: .9;
        filter: alpha(opacity=90)
    }

    .ps-container:hover > .ps-scrollbar-x-rail:hover {
        background-color: #eee;
        zoom: 1;
        -webkit-opacity: .9;
        -moz-opacity: .9;
        opacity: .9;
        filter: alpha(opacity=90)
    }

        .ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
            background-color: #999
        }

    .ps-container:hover > .ps-scrollbar-y-rail:hover {
        background-color: #eee;
        zoom: 1;
        -webkit-opacity: .9;
        -moz-opacity: .9;
        opacity: .9;
        filter: alpha(opacity=90)
    }

        .ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
            background-color: #999
        }

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .chosen-container * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .chosen-container .chosen-drop {
        position: absolute;
        top: 100%;
        left: -9999px;
        z-index: 1010;
        width: 100%;
        border: 1px solid #eee;
        border-top: 0;
        background: #fff;
        box-shadow: 0 4px 5px rgba(0, 0, 0, .0015)
    }

    .chosen-container.chosen-with-drop .chosen-drop {
        left: 0
    }

    .chosen-container a {
        cursor: pointer
    }

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 10px;
    height: 34px !important;
    border: 1px solid #eee;
    border-radius: 0;
    background: #fff;
    background-clip: padding-box;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 33px !important
}

    .chosen-container-single .chosen-single div b {
        background-position: 0 6px
    }

.chosen-container-single .chosen-default {
    color: #999
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 1px
}

    .chosen-container-single .chosen-single abbr:hover {
        background-position: -42px -10px
    }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 4px;
    display: block;
    width: 15px;
    height: 100%
}

    .chosen-container-single .chosen-single div b {
        display: block;
        width: 100%;
        height: 100%
    }

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 10px;
    white-space: nowrap;
    margin-bottom: 10px
}

    .chosen-container-single .chosen-search input[type=text] {
        margin: 1px 0;
        padding: 4px 20px 4px 5px;
        width: 100%;
        height: auto;
        outline: 0;
        border: 1px solid #eee;
        background: #fff no-repeat 100% -20px;
        font-size: 1em;
        font-family: sans-serif;
        line-height: normal;
        border-radius: 0
    }

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0;
    background-clip: padding-box
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px
}

.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    max-height: 240px;
    border-top: 1px solid #eee;
    -webkit-overflow-scrolling: touch
}

    .chosen-container .chosen-results li {
        display: none;
        margin: 0;
        padding: 7px 10px;
        list-style: none;
        line-height: 15px;
        word-wrap: break-word;
        -webkit-touch-callout: none;
        font-size: 12px
    }

        .chosen-container .chosen-results li.active-result {
            display: list-item;
            cursor: pointer
        }

        .chosen-container .chosen-results li.disabled-result {
            display: list-item;
            color: #ccc;
            cursor: default
        }

        .chosen-container .chosen-results li.highlighted {
            background: #eee;
            color: #222
        }

        .chosen-container .chosen-results li.no-results {
            color: #777;
            display: list-item;
            background: #f4f4f4
        }

        .chosen-container .chosen-results li.group-result {
            display: list-item;
            font-weight: 700;
            cursor: default
        }

        .chosen-container .chosen-results li.group-option {
            padding-left: 15px
        }

        .chosen-container .chosen-results li em {
            font-style: normal;
            text-decoration: underline
        }

.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto !important;
    height: 1%;
    border: 1px solid #eee;
    background-color: #fff;
    background-image: 8121991;
    background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(#eee 1%, #fff 15%);
    background-image: -o-linear-gradient(#eee 1%, #fff 15%);
    background-image: linear-gradient(#eee 1%, #fff 15%);
    cursor: text
}

    .chosen-container-multi .chosen-choices li {
        float: left;
        list-style: none
    }

        .chosen-container-multi .chosen-choices li.search-field {
            margin: 0;
            padding: 0;
            white-space: nowrap
        }

            .chosen-container-multi .chosen-choices li.search-field input[type=text] {
                margin: 1px 0;
                padding: 0;
                height: 25px;
                outline: 0;
                border: 0 !important;
                background: 0 0 !important;
                box-shadow: none;
                color: #999;
                font-size: 100%;
                font-family: sans-serif;
                line-height: normal;
                border-radius: 0
            }

        .chosen-container-multi .chosen-choices li.search-choice {
            position: relative;
            margin: 3px 5px 3px 0;
            padding: 3px 20px 3px 5px;
            border: 1px solid #eee;
            max-width: 100%;
            border-radius: 0;
            background-color: #eee;
            background-size: 100% 19px;
            background-repeat: repeat-x;
            background-clip: padding-box;
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .0005);
            color: #333;
            line-height: 13px;
            cursor: default
        }

            .chosen-container-multi .chosen-choices li.search-choice span {
                word-wrap: break-word
            }

            .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
                position: absolute;
                top: 4px;
                right: 3px;
                display: block;
                width: 12px;
                height: 12px;
                font-size: 1px
            }

                .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
                    background-position: -42px -10px
                }

        .chosen-container-multi .chosen-choices li.search-choice-disabled {
            padding-right: 5px;
            border: 1px solid #ccc;
            background-color: #e4e4e4;
            background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZjRmNGY0IiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2YwZjBmMCIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSI1MiUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
            background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
            background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
            background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
            background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
            color: #666
        }

        .chosen-container-multi .chosen-choices li.search-choice-focus {
            background: #d4d4d4
        }

            .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
                background-position: -42px -10px
            }

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default
}

.chosen-container-active .chosen-single {
    border: 1px solid #ccc
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #eee;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
    background: #fff
}

    .chosen-container-active.chosen-with-drop .chosen-single div {
        border-left: none;
        background: 0 0
    }

        .chosen-container-active.chosen-with-drop .chosen-single div b {
            background-position: -18px 7px !important
        }

.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, .003)
}

    .chosen-container-active .chosen-choices li.search-field input[type=text] {
        color: #222 !important
    }

.chosen-disabled {
    opacity: .5 !important;
    cursor: default
}

    .chosen-disabled .chosen-single {
        cursor: default
    }

    .chosen-disabled .chosen-choices .search-choice .search-choice-close {
        cursor: default
    }

.chosen-rtl {
    text-align: right
}

    .chosen-rtl .chosen-single {
        overflow: visible;
        padding: 0 8px 0 0
    }

        .chosen-rtl .chosen-single span {
            margin-right: 0;
            margin-left: 26px;
            direction: rtl
        }

    .chosen-rtl .chosen-single-with-deselect span {
        margin-left: 38px
    }

    .chosen-rtl .chosen-single div {
        right: auto;
        left: 3px
    }

    .chosen-rtl .chosen-single abbr {
        right: auto;
        left: 26px
    }

    .chosen-rtl .chosen-choices li {
        float: right
    }

        .chosen-rtl .chosen-choices li.search-field input[type=text] {
            direction: rtl
        }

        .chosen-rtl .chosen-choices li.search-choice {
            margin: 3px 5px 3px 0;
            padding: 3px 5px 3px 19px
        }

            .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
                right: auto;
                left: 4px
            }

    .chosen-rtl .chosen-drop,
    .chosen-rtl.chosen-container-single-nosearch .chosen-search {
        left: 9999px
    }

    .chosen-rtl.chosen-container-single .chosen-results {
        margin: 0 0 4px 4px;
        padding: 0 4px 0 0
    }

    .chosen-rtl .chosen-results li.group-option {
        padding-right: 15px;
        padding-left: 0
    }

    .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
        border-right: none
    }

    .chosen-rtl .chosen-search input[type=text] {
        padding: 4px 5px 4px 20px;
        direction: rtl
    }

    .chosen-rtl.chosen-container-single .chosen-single div b {
        background-position: 6px 2px
    }

    .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
        background-position: -12px 2px
    }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span,
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container-single .chosen-search input[type=text],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-rtl .chosen-search input[type=text] {
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important
    }
}

.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b {
    background-position: 0 7px !important
}

.shop {
    padding: 20px 0;
}

    .shop .shop-spacer {
        height: 45px;
        display: block
    }

    .shop .page-title {
        margin-top: 0;
        margin-bottom: 30px
    }

        .shop .page-title small p {
            margin: 0;
            margin-top: 10px
        }

    .shop .orderBy {
        display: block
    }

        .shop .orderBy:after,
        .shop .orderBy:before {
            content: " ";
            display: table
        }

        .shop .orderBy:after {
            clear: both
        }

        .shop .orderBy.without-title .dropdown {
            padding-top: 30px
        }

        .shop .orderBy .dropdown {
            min-width: 200px;
            padding-top: 45px
        }

@media screen and (max-width: 768px) {
    .shop .orderBy .dropdown {
        padding-top: 0
    }
    .shop {
        margin-top:-90px
    }
}

.shop .orderBy .dropdown .dropdown-toggle {
    padding: 8px 10px
}

.shop .orderBy .dropdown .caret {
    margin-left: 5px;
    color: #bbb;
    float: right;
    margin-top: 8px
}

.shop .orderBy .dropdown .btn {
    color: #888
}

.shop .altar-pagination .pagination {
    margin-top: 0
}

.shop #comments h4 {
    position: relative;
    margin-top: 0;
    zoom: 1;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    filter: alpha(opacity=50)
}

.shop .commentlist .comment_container {
    position: relative;
    padding: 40px 0;
    padding-left: 100px;
    border-bottom: 1px solid #eee
}

    .shop .commentlist .comment_container:after,
    .shop .commentlist .comment_container:before {
        content: " ";
        display: table
    }

    .shop .commentlist .comment_container:after {
        clear: both
    }

@media screen and (max-width: 768px) {
    .shop .commentlist .comment_container {
        padding-top: 20px;
        padding-bottom: 20px
    }
}

.shop .commentlist .comment_container .avatar {
    position: absolute;
    left: 0
}

    .shop .commentlist .comment_container .avatar img {
        display: block;
        line-height: 1;
        width: 60px;
        height: 60px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
        -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .1)
    }

.shop .commentlist .comment_container .comment-details .star-rating {
    float: right;
    position: relative;
    top: 8px
}

    .shop .commentlist .comment_container .comment-details .star-rating i {
        font-style: normal
    }

        .shop .commentlist .comment_container .comment-details .star-rating i.star {
            color: #999
        }

        .shop .commentlist .comment_container .comment-details .star-rating i.filled {
            color: gold
        }

        .shop .commentlist .comment_container .comment-details .star-rating i:before {
            margin-right: 0;
            width: 12px
        }

.shop .commentlist .comment_container .comment-details time {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    padding-top: 3px;
    zoom: 1;
    -webkit-opacity: .75;
    -moz-opacity: .75;
    opacity: .75;
    filter: alpha(opacity=75)
}

.shop .commentlist .comment_container .comment-details .meta strong {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300
}

.shop .commentlist .comment_container .comment-details .meta .verified {
    text-transform: uppercase;
    font-size: 11px;
    background: #222;
    color: #fff;
    line-height: 1;
    padding: 2px 5px;
    font-style: normal;
    position: relative;
    top: -2px;
    margin-left: 5px
}

.shop .commentlist .comment_container .comment-details .meta em {
    font-style: normal;
    text-decoration: underline
}

.shop #review_form_wrapper form {
    position: relative;
    padding-top: 65px
}

.shop #review_form_wrapper .comment-reply-title {
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 20px
}

.shop #review_form_wrapper .comment-form-rating {
    position: absolute;
    top: 0
}

    .shop #review_form_wrapper .comment-form-rating label {
        text-transform: uppercase;
        color: #999;
        font-weight: 400;
        font-size: 12px;
        margin-top: 5px;
        display: block
    }

    .shop #review_form_wrapper .comment-form-rating #rating {
        display: none
    }

    .shop #review_form_wrapper .comment-form-rating .stars {
        display: block;
        margin-top: 10px
    }

        .shop #review_form_wrapper .comment-form-rating .stars span {
            display: block
        }

            .shop #review_form_wrapper .comment-form-rating .stars span:after,
            .shop #review_form_wrapper .comment-form-rating .stars span:before {
                content: " ";
                display: table
            }

            .shop #review_form_wrapper .comment-form-rating .stars span:after {
                clear: both
            }

            .shop #review_form_wrapper .comment-form-rating .stars span a {
                display: inline-block;
                position: relative;
                color: transparent;
                width: 25px;
                height: 25px
            }

                .shop #review_form_wrapper .comment-form-rating .stars span a:before {
                    font-family: EntypoRegular;
                    content: '\e808';
                    font-size: 20px;
                    display: block;
                    color: #999;
                    position: absolute;
                    left: 0;
                    top: 4px;
                    line-height: 0
                }

                .shop #review_form_wrapper .comment-form-rating .stars span a.active ~ a:before {
                    color: #999
                }

            .shop #review_form_wrapper .comment-form-rating .stars span:hover a:before {
                color: #666
            }

            .shop #review_form_wrapper .comment-form-rating .stars span:hover a:hover ~ a:before {
                color: #999
            }

        .shop #review_form_wrapper .comment-form-rating .stars.has-rating span a:before {
            color: gold
        }

        .shop #review_form_wrapper .comment-form-rating .stars.has-rating span a.active ~ a:before {
            color: #999
        }

.shop #review_form_wrapper .form-submit [type=submit] {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: #222;
    color: #fff;
    padding: 4px 12px;
    float: right;
    margin-top: 20px
}

    .shop #review_form_wrapper .form-submit [type=submit]:focus {
        outline: 0
    }

    .shop #review_form_wrapper .form-submit [type=submit]:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .shop #review_form_wrapper .form-submit [type=submit]:active:focus {
            outline: 0
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-info {
        background: #00aeef
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-info:hover {
            background: #009bd6
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-success {
        background: #0fbd71
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-success:hover {
            background: #0da563
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-danger {
        background: #dd1f26
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-danger:hover {
            background: #c71c22
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-warning {
        background: #f7d227
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-warning:hover {
            background: #f6cd0e
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-default {
        background: #7b599b;
        color: #fff
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-default:hover {
            background: #6e508b
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-primary {
        background: #222
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-primary:hover {
            background: #151515
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-link {
        color: #7b599b
    }

    .shop #review_form_wrapper .form-submit [type=submit].btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        .shop #review_form_wrapper .form-submit [type=submit].btn-bordered:hover {
            border-color: #ccc
        }

    .shop #review_form_wrapper .form-submit [type=submit].btn-gray {
        color: #333;
        background-color: #ccc;
        border-color: #ccc
    }

        .open > .dropdown-toggle.shop #review_form_wrapper .form-submit [type=submit].btn-gray,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray:active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray:focus,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray:hover {
            color: #333;
            background-color: #b3b3b3;
            border-color: #adadad
        }

        .open > .dropdown-toggle.shop #review_form_wrapper .form-submit [type=submit].btn-gray,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray:active {
            background-image: none
        }

        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.disabled,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.disabled.active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.disabled:active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.disabled:focus,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray.disabled:hover,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray[disabled],
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray[disabled].active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray[disabled]:active,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray[disabled]:focus,
        .shop #review_form_wrapper .form-submit [type=submit].btn-gray[disabled]:hover,
        fieldset[disabled] .shop #review_form_wrapper .form-submit [type=submit].btn-gray,
        fieldset[disabled] .shop #review_form_wrapper .form-submit [type=submit].btn-gray.active,
        fieldset[disabled] .shop #review_form_wrapper .form-submit [type=submit].btn-gray:active,
        fieldset[disabled] .shop #review_form_wrapper .form-submit [type=submit].btn-gray:focus,
        fieldset[disabled] .shop #review_form_wrapper .form-submit [type=submit].btn-gray:hover {
            background-color: #ccc;
            border-color: #ccc
        }

        .shop #review_form_wrapper .form-submit [type=submit].btn-gray .badge {
            color: #ccc;
            background-color: #333
        }

    .shop #review_form_wrapper .form-submit [type=submit]:hover {
        background: #151515
    }

.shop #review_form_wrapper .form-control {
    background: #EEE
}

    .shop #review_form_wrapper .form-control:focus,
    .shop #review_form_wrapper .form-control:hover {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #EEE
    }

.shop #review_form_wrapper textarea#comment {
    min-height: 150px;
    max-height: 350px
}

.shop #reviews .pagination {
    margin-top: 40px
}

@media screen and (max-width: 768px) {
    .shop .share-post {
        margin-top: 15px
    }
}

.shop .shop_attributes {
    width: 100%
}

    .shop .shop_attributes .alt {
        background: #f6f6f6
    }

    .shop .shop_attributes td,
    .shop .shop_attributes th {
        vertical-align: middle;
        padding: 8px 10px;
        font-size: 13px;
        text-transform: uppercase
    }

        .shop .shop_attributes td p:last-child,
        .shop .shop_attributes th p:last-child {
            margin-bottom: 0
        }

    .shop .shop_attributes th {
        font-weight: 400;
        color: #333;
        width: 200px;
        white-space: nowrap
    }

    .shop .shop_attributes tr:hover {
        background: #f1f1f1
    }

.shop .share-post h3 {
    margin-right: 10px
}

.shop .related.products h2,
.shop .upsells.products h2 {
    margin: 30px 15px
}

.shop dl.variation {
    list-style: none;
    margin: 0;
    padding: 0
}

    .shop dl.variation:after,
    .shop dl.variation:before {
        content: " ";
        display: table
    }

    .shop dl.variation:after {
        clear: both
    }

    .shop dl.variation dd,
    .shop dl.variation dt {
        display: block;
        float: left;
        margin: 0;
        padding: 0;
        text-transform: uppercase;
        color: #888;
        font-size: 12px;
        font-weight: 300
    }

        .shop dl.variation dd p,
        .shop dl.variation dt p {
            padding: 0;
            margin: 0
        }

    .shop dl.variation dt {
        padding-right: 5px
    }

    .shop dl.variation dd {
        font-weight: 400
    }

        .shop dl.variation dd p {
            font-weight: 400
        }

        .shop dl.variation dd + dt {
            clear: left
        }

.shop .cart-collaterals {
    margin-top: 40px
}

.shop .cart_totals h2 {
    font-size: 18px
}

.shop .cart_totals table {
    width: 100%
}

    .shop .cart_totals table tr td,
    .shop .cart_totals table tr th {
        font-weight: 400;
        border-bottom: 1px solid #eee;
        padding: 7px 0;
        text-transform: uppercase;
        color: #888;
        font-weight: 300;
        vertical-align: top;
        word-break: break-word
    }

        .shop .cart_totals table tr td[valign=middle],
        .shop .cart_totals table tr th[valign=middle] {
            vertical-align: middle
        }

        .shop .cart_totals table tr td strong,
        .shop .cart_totals table tr th strong {
            font-weight: 400
        }

    .shop .cart_totals table tr:last-child td,
    .shop .cart_totals table tr:last-child th {
        border-bottom: 0
    }

    .shop .cart_totals table tr td {
        text-align: right;
        color: #222
    }

    .shop .cart_totals table tr select.form-control {
        margin: 5px 0
    }

    .shop .cart_totals table thead > tr:first-child td,
    .shop .cart_totals table thead > tr:first-child th {
        position: relative;
        border-bottom: 1px solid #eee
    }

        .shop .cart_totals table thead > tr:first-child td:after,
        .shop .cart_totals table thead > tr:first-child th:after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 1px;
            height: 1px;
            background: #eee
        }

    .shop .cart_totals table tfoot > tr:first-child td,
    .shop .cart_totals table tfoot > tr:first-child th {
        position: relative;
        border-top: 1px solid #eee
    }

        .shop .cart_totals table tfoot > tr:first-child td:after,
        .shop .cart_totals table tfoot > tr:first-child th:after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            top: 1px;
            height: 1px;
            background: #eee
        }

    .shop .cart_totals table tfoot tr td {
        font-weight: 400
    }

.shop .cart_totals ul#shipping_method {
    list-style: none;
    margin: 0;
    padding: 0
}

    .shop .cart_totals ul#shipping_method input {
        float: right;
        margin-left: 5px;
        position: relative;
        top: -1px
    }

    .shop .cart_totals ul#shipping_method label {
        font-weight: 300;
        font-size: 13px
    }

        .shop .cart_totals ul#shipping_method label .amount {
            font-weight: 400
        }

    .shop .cart_totals ul#shipping_method input[type=radio] + label:before {
        float: right;
        margin-left: 5px;
        margin-right: 0
    }

@media screen and (max-width: 480px) {
    .shop .cart_totals table {
    }
}

.shop .cart-bottom-details {
    margin-bottom: 40px
}

    .shop .cart-bottom-details h2 {
        font-size: 18px
    }

    .shop .cart-bottom-details .shipping_calculator {
        margin-top: 20px
    }

    .shop .cart-bottom-details .shipping-calculator-form {
        padding-top: 8px
    }

.shop .woocommerce-remove-coupon {
    background: url(../images/remove-from-cart.png)no-repeat;
    -webkit-background-size: 16px;
    -moz-background-size: 16px;
    background-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-block;
    z-index: 1;
    text-indent: 100px;
    position: relative;
    overflow: hidden;
    top: 3px
}

.shop .cross-sells {
    margin-bottom: 30px
}

    .shop .cross-sells h2 {
        margin: 0;
        padding: 0;
        padding-bottom: 10px
    }

    .shop .cross-sells .product-item {
        display: table;
        width: 100%;
        table-layout: auto
    }

        .shop .cross-sells .product-item + .product-item {
            border-top: 1px solid #eee
        }

        .shop .cross-sells .product-item .image,
        .shop .cross-sells .product-item .product-details,
        .shop .cross-sells .product-item .product-link {
            display: table-cell;
            vertical-align: middle;
            padding: 10px 0
        }

        .shop .cross-sells .product-item .image {
            width: 50px;
            padding-right: 15px
        }

            .shop .cross-sells .product-item .image img {
                width: 100% !important;
                height: auto !important
            }

        .shop .cross-sells .product-item .product-details {
            white-space: nowrap
        }

            .shop .cross-sells .product-item .product-details h4 {
                margin: 0;
                font-size: 15px;
                font-weight: 400
            }

            .shop .cross-sells .product-item .product-details .price {
                padding-top: 3px;
                font-size: 12px;
                font-weight: 400;
                margin: 0
            }

                .shop .cross-sells .product-item .product-details .price del {
                    zoom: 1;
                    -webkit-opacity: .5;
                    -moz-opacity: .5;
                    opacity: .5;
                    filter: alpha(opacity=50);
                    font-weight: 300
                }

                    .shop .cross-sells .product-item .product-details .price del + ins {
                        float: left;
                        margin-right: 5px
                    }

                .shop .cross-sells .product-item .product-details .price ins {
                    text-decoration: none
                }

        .shop .cross-sells .product-item .product-link {
            text-align: right
        }

            .shop .cross-sells .product-item .product-link .btn {
                text-transform: uppercase;
                font-size: 11px;
                padding: 4px 10px;
                display: inline-block
            }

                .shop .cross-sells .product-item .product-link .btn.adding-to-cart {
                    zoom: 1;
                    -webkit-opacity: .5;
                    -moz-opacity: .5;
                    opacity: .5;
                    filter: alpha(opacity=50)
                }

.shop .checkout .woocommerce-billing-fields h3 {
    margin-top: 0;
    margin-bottom: 20px
}

.shop label {
    font-weight: 300
}

.shop #customer_details {
    margin-bottom: 40px
}

    .shop #customer_details .create-account-block {
        background: #fafafa;
        border: 1px solid #eee;
        padding: 15px
    }

        .shop #customer_details .create-account-block .form-group:last-child {
            margin-bottom: 0
        }

    .shop #customer_details #ship-to-different-address {
        margin-top: 40px;
        margin-bottom: 20px
    }

        .shop #customer_details #ship-to-different-address label:before {
            top: 6px
        }

    .shop #customer_details #order_comments {
        min-height: 120px;
        max-height: 250px
    }

.shop .checkout .woocommerce-error {
    margin-left: 20px;
    margin-right: 20px
}

.shop #place_order {
    margin-top: 30px
}

.shop .payment_methods img {
    display: block
}

.shop .payment_methods label {
    display: block
}

.shop .payment_methods li {
    margin: 10px 0;
    padding: 0
}

    .shop .payment_methods li:after,
    .shop .payment_methods li:before {
        content: " ";
        display: table
    }

    .shop .payment_methods li:after {
        clear: both
    }

.shop .payment_methods .payment_box {
    padding-top: 10px
}

.shop .form-row.terms {
    margin: 20px 0
}

.shop .form-login-env {
    margin-bottom: 40px
}

.shop .def-m {
    margin-top: 20px
}

    .shop .def-m.alert {
        margin-top: 50px
    }

@media screen and (max-width: 768px) {
    .shop .def-m {
        margin-top: 0
    }
}

.shop .order-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    width: 100%;
    margin-bottom: 20px;
    background: #fafafa;
    border: 1px solid #eee
}

    .shop .order-details-list li {
        display: table-cell;
        vertical-align: middle;
        width: 1%;
        text-align: center;
        height: 150px;
        text-transform: uppercase
    }

        .shop .order-details-list li strong {
            display: block;
            font-size: 20px;
            font-weight: 400
        }

        .shop .order-details-list li.order strong {
            color: #7b599b
        }

        .shop .order-details-list li + li {
            border-left: 1px solid #eee
        }

@media screen and (max-width: 768px) {
    .shop .order-details-list {
        display: block
    }

        .shop .order-details-list li {
            display: block;
            height: auto;
            width: auto;
            padding: 10px;
            border-left: 0
        }

            .shop .order-details-list li + li {
                border-top: 1px solid #eee
            }
}

.shop .bacs_details {
    list-style: none;
    margin: 0;
    padding: 0
}

    .shop .bacs_details li {
        font-size: 12px;
        padding: 5px 20px;
        color: #888;
        font-weight: 300;
        text-transform: uppercase;
        background: #fafafa
    }

        .shop .bacs_details li strong {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #222;
            text-transform: none
        }

.shop .bacs-entries:after,
.shop .bacs-entries:before {
    content: " ";
    display: table
}

.shop .bacs-entries:after {
    clear: both
}

.shop .bacs-entries h2 {
    margin-top: 40px
}

.shop .bacs-entries h3 {
    background: #f0f0f0;
    padding: 15px 20px;
    margin-bottom: 0;
    font-size: 20px
}

.shop .bacs-entries > h3 {
    display: none
}

.shop .bacs-entries .order_details {
    width: 33.3%;
    float: left;
    padding-right: 15px
}

@media screen and (max-width: 992px) {
    .shop .bacs-entries .order_details {
        width: 100%;
        padding-right: 0
    }
}

.shop .customer-details-env {
    margin-top: 30px;
    margin-bottom: 20px
}

    .shop .customer-details-env h2,
    .shop .customer-details-env h3 {
        padding-bottom: 10px;
        font-size: 24px
    }

    .shop .customer-details-env .customer_details dd + dt {
        margin-top: 10px
    }

@media screen and (max-width: 768px) {
    .shop .customer-details-env h3 {
        margin-top: 30px
    }
}

.shop .order-details h2 {
    font-size: 28px;
    margin-top: 10px
}

.shop .digital-downloads {
    list-style: none;
    margin: 0;
    padding: 0
}

    .shop .digital-downloads li {
        background: #fafafa;
        padding: 8px 10px;
        border: 1px solid transparent
    }

        .shop .digital-downloads li:after,
        .shop .digital-downloads li:before {
            content: " ";
            display: table
        }

        .shop .digital-downloads li:after {
            clear: both
        }

        .shop .digital-downloads li .count {
            float: right;
            color: #888;
            text-transform: uppercase;
            font-size: 12px
        }

        .shop .digital-downloads li:hover {
            border-color: #e9e9e9
        }

        .shop .digital-downloads li + li {
            margin-top: 5px
        }

.shop .chosen-container {
    width: 100% !important
}

.shop legend {
    font-size: 14px;
    padding-top: 20px;
    text-transform: uppercase;
    color: #888;
    font-weight: 300
}

    .shop legend.no-top-margin {
        padding-top: 0
    }

.shop mark {
    display: inline-block;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    padding-left: 5px;
    padding-right: 5px
}

.shop .order-notes-title {
    margin-top: 30px
}

.shop .order-notes li {
    position: relative;
    padding-left: 35px
}

    .shop .order-notes li i {
        position: absolute;
        line-height: 25px;
        text-align: center;
        border: 1px solid #eee;
        left: 5px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        font-style: normal;
        font-size: 12px;
        top: 50%;
        margin-top: -22.5px
    }

    .shop .order-notes li .meta {
        color: #888;
        font-size: 11px;
        padding: 4px 8px;
        margin: 0;
        margin-bottom: 10px
    }

    .shop .order-notes li .description {
        padding: 4px 8px
    }

        .shop .order-notes li .description p {
            margin: 0
        }

    .shop .order-notes li:hover i {
        background-color: #fafafa
    }

.shop .track_order {
    margin-bottom: 30px
}

.shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: #222;
    color: #fff;
    padding: 4px 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
    text-decoration: none
}

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:focus {
        outline: 0
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:active:focus {
            outline: 0
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-info {
        background: #00aeef
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-info:hover {
            background: #009bd6
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-success {
        background: #0fbd71
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-success:hover {
            background: #0da563
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-danger {
        background: #dd1f26
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-danger:hover {
            background: #c71c22
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-warning {
        background: #f7d227
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-warning:hover {
            background: #f6cd0e
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-default {
        background: #7b599b;
        color: #fff
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-default:hover {
            background: #6e508b
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-primary {
        background: #222
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-primary:hover {
            background: #151515
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-link {
        color: #7b599b
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-bordered:hover {
            border-color: #ccc
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray {
        color: #333;
        background-color: #ccc;
        border-color: #ccc
    }

        .open > .dropdown-toggle.shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:hover {
            color: #333;
            background-color: #b3b3b3;
            border-color: #adadad
        }

        .open > .dropdown-toggle.shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:active {
            background-image: none
        }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.disabled,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.disabled.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.disabled:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.disabled:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.disabled:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray[disabled],
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray[disabled].active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray[disabled]:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray[disabled]:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray[disabled]:hover,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray.active,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:active,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:focus,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray:hover {
            background-color: #ccc;
            border-color: #ccc
        }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.btn-gray .badge {
            color: #ccc;
            background-color: #333
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:hover {
        background: #151515
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:before {
        content: "\f08a";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        padding-right: 10px
    }

.shop .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .ajax-loading {
    width: 10px !important;
    height: 10px !important;
    position: relative;
    top: -2px;
    left: 2px
}

.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:after,
.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:before,
.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:after,
.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:before {
    content: " ";
    display: table
}

.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse:after,
.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse:after {
    clear: both
}

.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: #222;
    color: #fff;
    padding: 4px 12px;
    font-size: 13px;
    background-color: #7b599b;
    float: left;
    margin-right: 10px;
    text-decoration: none;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: -2px
}

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:focus,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:focus {
        outline: 0
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:active,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:active:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:active:focus {
            outline: 0
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-info,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-info {
        background: #00aeef
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-info:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-info:hover {
            background: #009bd6
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-success,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-success {
        background: #0fbd71
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-success:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-success:hover {
            background: #0da563
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-danger,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-danger {
        background: #dd1f26
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-danger:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-danger:hover {
            background: #c71c22
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-warning,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-warning {
        background: #f7d227
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-warning:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-warning:hover {
            background: #f6cd0e
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-default,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-default {
        background: #7b599b;
        color: #fff
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-default:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-default:hover {
            background: #6e508b
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-primary,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-primary {
        background: #222
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-primary:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-primary:hover {
            background: #151515
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-link,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-link {
        color: #7b599b
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-bordered,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-bordered:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-bordered:hover {
            border-color: #ccc
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray {
        color: #333;
        background-color: #ccc;
        border-color: #ccc
    }

        .open > .dropdown-toggle.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray,
        .open > .dropdown-toggle.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:hover {
            color: #333;
            background-color: #b3b3b3;
            border-color: #adadad
        }

        .open > .dropdown-toggle.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray,
        .open > .dropdown-toggle.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:active {
            background-image: none
        }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.disabled,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.disabled.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.disabled:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.disabled:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.disabled:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray[disabled],
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray[disabled].active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray[disabled]:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray[disabled]:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray[disabled]:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.disabled,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.disabled.active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.disabled:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.disabled:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.disabled:hover,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray[disabled],
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray[disabled].active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray[disabled]:active,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray[disabled]:focus,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray[disabled]:hover,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray.active,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:active,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:focus,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray:hover,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray.active,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:active,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:focus,
        fieldset[disabled] .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray:hover {
            background-color: #ccc;
            border-color: #ccc
        }

        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a.btn-gray .badge,
        .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a.btn-gray .badge {
            color: #ccc;
            background-color: #333
        }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
        background: #151515
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
        background-color: #6e508b
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:active,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:active {
        background-color: #61467b
    }

    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
    .shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
        content: "\f004";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        padding-right: 10px
    }

.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .feedback,
.shop .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .feedback {
    margin-top: 5px;
    display: inline-block
}

.shop .shop_table.customer_details {
    width: 100%
}

.shop .woocommerce-checkout-payment .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0
}

    .shop .woocommerce-checkout-payment .payment_methods input[type=radio] {
        position: absolute !important;
        left: -9999px !important;
        visibility: hidden !important;
        top: 0
    }

        .shop .woocommerce-checkout-payment .payment_methods input[type=radio] + label {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none
        }

            .shop .woocommerce-checkout-payment .payment_methods input[type=radio] + label:before {
                position: relative;
                top: 3px;
                content: '';
                display: block;
                float: left;
                background: #fff;
                -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
                -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
                box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
                margin-right: 10px;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                border-radius: 50%;
                width: 14px;
                height: 14px;
                cursor: pointer
            }

        .shop .woocommerce-checkout-payment .payment_methods input[type=radio]:checked + label:before {
            background-color: #7b599b;
            -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 4px #fff;
            -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 4px #fff;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 4px #fff
        }

        .shop .woocommerce-checkout-payment .payment_methods input[type=radio].replaced-checkboxes + label:before {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            margin-right: 10px
        }

        .shop .woocommerce-checkout-payment .payment_methods input[type=radio].replaced-checkboxes:checked + label:before {
            -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff;
            -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff
        }

.shop .place-order .button {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none;
    display: block;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 10px 10px;
    font-size: 18px
}

    .shop .place-order .button:focus {
        outline: 0
    }

    .shop .place-order .button:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .shop .place-order .button:active:focus {
            outline: 0
        }

    .shop .place-order .button.btn-info {
        background: #00aeef
    }

        .shop .place-order .button.btn-info:hover {
            background: #009bd6
        }

    .shop .place-order .button.btn-success {
        background: #0fbd71
    }

        .shop .place-order .button.btn-success:hover {
            background: #0da563
        }

    .shop .place-order .button.btn-danger {
        background: #dd1f26
    }

        .shop .place-order .button.btn-danger:hover {
            background: #c71c22
        }

    .shop .place-order .button.btn-warning {
        background: #f7d227
    }

        .shop .place-order .button.btn-warning:hover {
            background: #f6cd0e
        }

    .shop .place-order .button.btn-default {
        background: #7b599b;
        color: #fff
    }

        .shop .place-order .button.btn-default:hover {
            background: #6e508b
        }

    .shop .place-order .button.btn-primary {
        background: #222
    }

        .shop .place-order .button.btn-primary:hover {
            background: #151515
        }

    .shop .place-order .button.btn-link {
        color: #7b599b
    }

    .shop .place-order .button.btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        .shop .place-order .button.btn-bordered:hover {
            border-color: #ccc
        }

    .shop .place-order .button.btn-gray {
        color: #333;
        background-color: #ccc;
        border-color: #ccc
    }

        .open > .dropdown-toggle.shop .place-order .button.btn-gray,
        .shop .place-order .button.btn-gray.active,
        .shop .place-order .button.btn-gray:active,
        .shop .place-order .button.btn-gray:focus,
        .shop .place-order .button.btn-gray:hover {
            color: #333;
            background-color: #b3b3b3;
            border-color: #adadad
        }

        .open > .dropdown-toggle.shop .place-order .button.btn-gray,
        .shop .place-order .button.btn-gray.active,
        .shop .place-order .button.btn-gray:active {
            background-image: none
        }

        .shop .place-order .button.btn-gray.disabled,
        .shop .place-order .button.btn-gray.disabled.active,
        .shop .place-order .button.btn-gray.disabled:active,
        .shop .place-order .button.btn-gray.disabled:focus,
        .shop .place-order .button.btn-gray.disabled:hover,
        .shop .place-order .button.btn-gray[disabled],
        .shop .place-order .button.btn-gray[disabled].active,
        .shop .place-order .button.btn-gray[disabled]:active,
        .shop .place-order .button.btn-gray[disabled]:focus,
        .shop .place-order .button.btn-gray[disabled]:hover,
        fieldset[disabled] .shop .place-order .button.btn-gray,
        fieldset[disabled] .shop .place-order .button.btn-gray.active,
        fieldset[disabled] .shop .place-order .button.btn-gray:active,
        fieldset[disabled] .shop .place-order .button.btn-gray:focus,
        fieldset[disabled] .shop .place-order .button.btn-gray:hover {
            background-color: #ccc;
            border-color: #ccc
        }

        .shop .place-order .button.btn-gray .badge {
            color: #ccc;
            background-color: #333
        }

.shop .form-row.terms {
    position: relative;
    padding-left: 30px
}

    .shop .form-row.terms .input-checkbox {
        position: absolute;
        left: 0;
        top: 0;
        background: #fff;
        margin-right: 10px;
        cursor: pointer;
        -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
        -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        width: 14px;
        height: 14px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }

        .shop .form-row.terms .input-checkbox:checked {
            background-color: #7b599b;
            -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff;
            -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), inset 0 0 0 3px #fff
        }

.shop .vspacer {
    height: 40px
}

.shop .select2-container {
    padding: 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0
}

    .shop .select2-container .select2-choice {
        border: 0;
        padding: 6px 10px;
        font-weight: 400
    }

        .shop .select2-container .select2-choice .select2-chosen {
            color: #555;
            font-weight: 300
        }

        .shop .select2-container .select2-choice .select2-arrow::after {
            color: #888
        }

.shop .container > .wc-social-login-profile {
    display: none
}

.shop .shop_table .blockOverlay {
    background: rgba(255, 255, 255, .8) !important;
    zoom: 1 !important;
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important
}

    .shop .shop_table .blockOverlay:after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #7b599b;
        margin-top: -20px;
        margin-left: -20px;
        width: 40px;
        height: 40px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        border-radius: 100%;
        -moz-animation: scaleout 1s infinite ease-in-out;
        -webkit-animation: scaleout 1s infinite ease-in-out;
        -o-animation: scaleout 1s infinite ease-in-out;
        animation: scaleout 1s infinite ease-in-out
    }

        .shop .shop_table .blockOverlay:after lesshat-selector {
            -lh-property: 0
        }

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@-moz-keyframes scaleout {
    0% {
        -moz-transform: scale(0)
    }

    100% {
        -moz-transform: scale(1);
        opacity: 0
    }
}

@-o-keyframes scaleout {
    0% {
        -o-transform: scale(0)
    }

    100% {
        -o-transform: scale(1);
        opacity: 0
    }
}

@keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.select2-drop.select2-drop-active {
    border: 0;
    padding-right: 1px
}

    .select2-drop.select2-drop-active .select2-search {
        border: 1px solid #eee;
        border-top: 0;
        padding: 5px;
        padding-bottom: 10px
    }

        .select2-drop.select2-drop-active .select2-search .select2-input {
            padding: 4px 7px 2px 7px !important;
            border-color: #eee;
            background: 0 0 !important;
            font-size: 12px;
            color: #888
        }

    .select2-drop.select2-drop-active .select2-results {
        background-color: transparent;
        margin: 0;
        padding: 0;
        border: 1px solid #eee;
        border-top: 0
    }

        .select2-drop.select2-drop-active .select2-results .select2-result {
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0
        }

            .select2-drop.select2-drop-active .select2-results .select2-result .select2-result-label {
                padding: 7px 10px;
                font-size: 12px;
                font-weight: 300
            }

            .select2-drop.select2-drop-active .select2-results .select2-result.select2-result-selectable .select2-result-label {
                color: #555
            }

        .select2-drop.select2-drop-active .select2-results .select2-no-results {
            padding: 7px 10px;
            font-size: 12px;
            font-weight: 300;
            color: #888;
            margin: 0
        }

.wishlist_table tbody tr .product-name,
.wishlist_table tbody tr .product-stock-status {
    text-align: left
}

    .wishlist_table tbody tr .product-stock-status span {
        display: inline-block;
        margin-left: 15px;
        text-transform: uppercase
    }

.wishlist_table tbody tr .add_to_cart {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: #222;
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    text-transform: uppercase
}

    .wishlist_table tbody tr .add_to_cart:focus {
        outline: 0
    }

    .wishlist_table tbody tr .add_to_cart:active {
        outline: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .wishlist_table tbody tr .add_to_cart:active:focus {
            outline: 0
        }

    .wishlist_table tbody tr .add_to_cart.btn-info {
        background: #00aeef
    }

        .wishlist_table tbody tr .add_to_cart.btn-info:hover {
            background: #009bd6
        }

    .wishlist_table tbody tr .add_to_cart.btn-success {
        background: #0fbd71
    }

        .wishlist_table tbody tr .add_to_cart.btn-success:hover {
            background: #0da563
        }

    .wishlist_table tbody tr .add_to_cart.btn-danger {
        background: #dd1f26
    }

        .wishlist_table tbody tr .add_to_cart.btn-danger:hover {
            background: #c71c22
        }

    .wishlist_table tbody tr .add_to_cart.btn-warning {
        background: #f7d227
    }

        .wishlist_table tbody tr .add_to_cart.btn-warning:hover {
            background: #f6cd0e
        }

    .wishlist_table tbody tr .add_to_cart.btn-default {
        background: #7b599b;
        color: #fff
    }

        .wishlist_table tbody tr .add_to_cart.btn-default:hover {
            background: #6e508b
        }

    .wishlist_table tbody tr .add_to_cart.btn-primary {
        background: #222
    }

        .wishlist_table tbody tr .add_to_cart.btn-primary:hover {
            background: #151515
        }

    .wishlist_table tbody tr .add_to_cart.btn-link {
        color: #7b599b
    }

    .wishlist_table tbody tr .add_to_cart.btn-bordered {
        background: #fff;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        text-align: left;
        color: #333;
        font-weight: 300
    }

        .wishlist_table tbody tr .add_to_cart.btn-bordered:hover {
            border-color: #ccc
        }

    .wishlist_table tbody tr .add_to_cart.btn-gray {
        color: #333;
        background-color: #ccc;
        border-color: #ccc
    }

        .open > .dropdown-toggle.wishlist_table tbody tr .add_to_cart.btn-gray,
        .wishlist_table tbody tr .add_to_cart.btn-gray.active,
        .wishlist_table tbody tr .add_to_cart.btn-gray:active,
        .wishlist_table tbody tr .add_to_cart.btn-gray:focus,
        .wishlist_table tbody tr .add_to_cart.btn-gray:hover {
            color: #333;
            background-color: #b3b3b3;
            border-color: #adadad
        }

        .open > .dropdown-toggle.wishlist_table tbody tr .add_to_cart.btn-gray,
        .wishlist_table tbody tr .add_to_cart.btn-gray.active,
        .wishlist_table tbody tr .add_to_cart.btn-gray:active {
            background-image: none
        }

        .wishlist_table tbody tr .add_to_cart.btn-gray.disabled,
        .wishlist_table tbody tr .add_to_cart.btn-gray.disabled.active,
        .wishlist_table tbody tr .add_to_cart.btn-gray.disabled:active,
        .wishlist_table tbody tr .add_to_cart.btn-gray.disabled:focus,
        .wishlist_table tbody tr .add_to_cart.btn-gray.disabled:hover,
        .wishlist_table tbody tr .add_to_cart.btn-gray[disabled],
        .wishlist_table tbody tr .add_to_cart.btn-gray[disabled].active,
        .wishlist_table tbody tr .add_to_cart.btn-gray[disabled]:active,
        .wishlist_table tbody tr .add_to_cart.btn-gray[disabled]:focus,
        .wishlist_table tbody tr .add_to_cart.btn-gray[disabled]:hover,
        fieldset[disabled] .wishlist_table tbody tr .add_to_cart.btn-gray,
        fieldset[disabled] .wishlist_table tbody tr .add_to_cart.btn-gray.active,
        fieldset[disabled] .wishlist_table tbody tr .add_to_cart.btn-gray:active,
        fieldset[disabled] .wishlist_table tbody tr .add_to_cart.btn-gray:focus,
        fieldset[disabled] .wishlist_table tbody tr .add_to_cart.btn-gray:hover {
            background-color: #ccc;
            border-color: #ccc
        }

        .wishlist_table tbody tr .add_to_cart.btn-gray .badge {
            color: #ccc;
            background-color: #333
        }

    .wishlist_table tbody tr .add_to_cart:hover {
        background: #151515
    }

.wishlist_table tbody tr .wishlist-empty {
    text-transform: uppercase;
    color: #888
}

.yith-wcwl-share {
    margin-top: 15px;
    margin-bottom: 40px
}

    .yith-wcwl-share:after,
    .yith-wcwl-share:before {
        content: " ";
        display: table
    }

    .yith-wcwl-share:after {
        clear: both
    }

    .yith-wcwl-share h4 {
        float: left
    }

    .yith-wcwl-share ul {
        float: right;
        margin: 10px 0
    }

#yith-wcwl-popup-message {
    background: rgba(15, 189, 113, .8);
    color: #fff;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding: 15px 30px;
    line-height: 1.42857143;
    text-transform: uppercase;
    border: 0
}

    #yith-wcwl-popup-message:after {
        position: absolute;
        content: '';
        display: block;
        left: 6px;
        right: 6px;
        top: 6px;
        bottom: 6px;
        border: 1px solid rgba(255, 255, 255, .6)
    }

.shop-empty-cart-page {
    background: #222;
    padding: 200px 0;
    border: 1px solid #3a3a3a
}

@media screen and (max-width: 992px) {
    .shop-empty-cart-page {
        padding: 100px 0
    }
}

.shop-empty-cart-page .cart-bag-env {
    display: inline-block;
    vertical-align: top
}

@media screen and (max-width: 768px) {
    .shop-empty-cart-page .cart-bag-env {
        -moz-transform: scale(.8);
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
        transform: scale(.8);
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        -o-transition: all 250ms;
        transition: all 250ms
    }
}

.shop-empty-cart-page .cart-bag-env .cart-smiley {
    overflow: hidden;
    position: relative;
    height: 55px
}

    .shop-empty-cart-page .cart-bag-env .cart-smiley i {
        display: block;
        background: url(../images/cart-bag-smiley.html)no-repeat center center;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 55px;
        bottom: 0;
        -webkit-transition: all 350ms linear;
        -moz-transition: all 350ms linear;
        -o-transition: all 350ms linear;
        transition: all 350ms linear;
        -moz-transition-delay: 600ms;
        -o-transition-delay: 600ms;
        -webkit-transition-delay: 600ms;
        transition-delay: 600ms
    }

        .shop-empty-cart-page .cart-bag-env .cart-smiley i.cart-smiley-hands {
            -webkit-transition: all 500ms linear;
            -moz-transition: all 500ms linear;
            -o-transition: all 500ms linear;
            transition: all 500ms linear;
            -moz-transition-delay: 0;
            -o-transition-delay: 0;
            -webkit-transition-delay: 0;
            transition-delay: 0;
            background: url(../images/cart-bag-smiley-hands.html)no-repeat center bottom
        }

    .shop-empty-cart-page .cart-bag-env .cart-smiley.shown i {
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100);
        top: 0
    }

.shop-empty-cart-page .cart-bag-env .cart-bag {
    background: url(../images/cart-bag-empty.html)no-repeat;
    width: 170px;
    height: 172px
}

.shop-empty-cart-page .cart-empty-title {
    display: inline-block;
    padding-left: 40px;
    padding-top: 70px;
    text-align: left
}

@media screen and (max-width: 768px) {
    .shop-empty-cart-page .cart-empty-title {
        text-align: center;
        padding-left: 0
    }
}

.shop-empty-cart-page .cart-empty-title h1 {
    margin: 0;
    margin-bottom: 5px;
    font-size: 56px;
    font-weight: 300;
    color: #fff
}

@media screen and (max-width: 768px) {
    .shop-empty-cart-page .cart-empty-title h1 {
        font-size: 40px
    }
}

.shop-empty-cart-page .cart-empty-title p {
    zoom: 1;
    -webkit-opacity: .7;
    -moz-opacity: .7;
    opacity: .7;
    filter: alpha(opacity=70);
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms
}

    .shop-empty-cart-page .cart-empty-title p:hover {
        zoom: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        filter: alpha(opacity=100)
    }

    .shop-empty-cart-page .cart-empty-title p a {
        font-size: 18px;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none
    }

@media screen and (max-width: 768px) {
    .shop-empty-cart-page .cart-empty-title p a {
        font-size: 15px
    }
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background-color: #0fbd71;
    padding: 15px;
    margin: 6px;
    margin-top: 0;
    margin-bottom: 40px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    list-style: none;
    -moz-box-shadow: 0 0 0 6px #0fbd71;
    -webkit-box-shadow: 0 0 0 6px #0fbd71;
    box-shadow: 0 0 0 6px #0fbd71
}

    .woocommerce-error:after,
    .woocommerce-error:before,
    .woocommerce-info:after,
    .woocommerce-info:before,
    .woocommerce-message:after,
    .woocommerce-message:before {
        content: " ";
        display: table
    }

    .woocommerce-error:after,
    .woocommerce-info:after,
    .woocommerce-message:after {
        clear: both
    }

    .woocommerce-error a,
    .woocommerce-info a,
    .woocommerce-message a {
        color: #fff
    }

    .woocommerce-error .button,
    .woocommerce-info .button,
    .woocommerce-message .button {
        position: relative;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        border: none;
        background: #222;
        color: #fff;
        padding: 4px 12px;
        float: right;
        margin-top: -10px;
        top: 6px;
        margin-left: 10px
    }

        .woocommerce-error .button:focus,
        .woocommerce-info .button:focus,
        .woocommerce-message .button:focus {
            outline: 0
        }

        .woocommerce-error .button:active,
        .woocommerce-info .button:active,
        .woocommerce-message .button:active {
            outline: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none
        }

            .woocommerce-error .button:active:focus,
            .woocommerce-info .button:active:focus,
            .woocommerce-message .button:active:focus {
                outline: 0
            }

        .woocommerce-error .button.btn-info,
        .woocommerce-info .button.btn-info,
        .woocommerce-message .button.btn-info {
            background: #00aeef
        }

            .woocommerce-error .button.btn-info:hover,
            .woocommerce-info .button.btn-info:hover,
            .woocommerce-message .button.btn-info:hover {
                background: #009bd6
            }

        .woocommerce-error .button.btn-success,
        .woocommerce-info .button.btn-success,
        .woocommerce-message .button.btn-success {
            background: #0fbd71
        }

            .woocommerce-error .button.btn-success:hover,
            .woocommerce-info .button.btn-success:hover,
            .woocommerce-message .button.btn-success:hover {
                background: #0da563
            }

        .woocommerce-error .button.btn-danger,
        .woocommerce-info .button.btn-danger,
        .woocommerce-message .button.btn-danger {
            background: #dd1f26
        }

            .woocommerce-error .button.btn-danger:hover,
            .woocommerce-info .button.btn-danger:hover,
            .woocommerce-message .button.btn-danger:hover {
                background: #c71c22
            }

        .woocommerce-error .button.btn-warning,
        .woocommerce-info .button.btn-warning,
        .woocommerce-message .button.btn-warning {
            background: #f7d227
        }

            .woocommerce-error .button.btn-warning:hover,
            .woocommerce-info .button.btn-warning:hover,
            .woocommerce-message .button.btn-warning:hover {
                background: #f6cd0e
            }

        .woocommerce-error .button.btn-default,
        .woocommerce-info .button.btn-default,
        .woocommerce-message .button.btn-default {
            background: #7b599b;
            color: #fff
        }

            .woocommerce-error .button.btn-default:hover,
            .woocommerce-info .button.btn-default:hover,
            .woocommerce-message .button.btn-default:hover {
                background: #6e508b
            }

        .woocommerce-error .button.btn-primary,
        .woocommerce-info .button.btn-primary,
        .woocommerce-message .button.btn-primary {
            background: #222
        }

            .woocommerce-error .button.btn-primary:hover,
            .woocommerce-info .button.btn-primary:hover,
            .woocommerce-message .button.btn-primary:hover {
                background: #151515
            }

        .woocommerce-error .button.btn-link,
        .woocommerce-info .button.btn-link,
        .woocommerce-message .button.btn-link {
            color: #7b599b
        }

        .woocommerce-error .button.btn-bordered,
        .woocommerce-info .button.btn-bordered,
        .woocommerce-message .button.btn-bordered {
            background: #fff;
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #eee;
            text-align: left;
            color: #333;
            font-weight: 300
        }

            .woocommerce-error .button.btn-bordered:hover,
            .woocommerce-info .button.btn-bordered:hover,
            .woocommerce-message .button.btn-bordered:hover {
                border-color: #ccc
            }

        .woocommerce-error .button.btn-gray,
        .woocommerce-info .button.btn-gray,
        .woocommerce-message .button.btn-gray {
            color: #333;
            background-color: #ccc;
            border-color: #ccc
        }

            .open > .dropdown-toggle.woocommerce-error .button.btn-gray,
            .open > .dropdown-toggle.woocommerce-info .button.btn-gray,
            .open > .dropdown-toggle.woocommerce-message .button.btn-gray,
            .woocommerce-error .button.btn-gray.active,
            .woocommerce-error .button.btn-gray:active,
            .woocommerce-error .button.btn-gray:focus,
            .woocommerce-error .button.btn-gray:hover,
            .woocommerce-info .button.btn-gray.active,
            .woocommerce-info .button.btn-gray:active,
            .woocommerce-info .button.btn-gray:focus,
            .woocommerce-info .button.btn-gray:hover,
            .woocommerce-message .button.btn-gray.active,
            .woocommerce-message .button.btn-gray:active,
            .woocommerce-message .button.btn-gray:focus,
            .woocommerce-message .button.btn-gray:hover {
                color: #333;
                background-color: #b3b3b3;
                border-color: #adadad
            }

            .open > .dropdown-toggle.woocommerce-error .button.btn-gray,
            .open > .dropdown-toggle.woocommerce-info .button.btn-gray,
            .open > .dropdown-toggle.woocommerce-message .button.btn-gray,
            .woocommerce-error .button.btn-gray.active,
            .woocommerce-error .button.btn-gray:active,
            .woocommerce-info .button.btn-gray.active,
            .woocommerce-info .button.btn-gray:active,
            .woocommerce-message .button.btn-gray.active,
            .woocommerce-message .button.btn-gray:active {
                background-image: none
            }

            .woocommerce-error .button.btn-gray.disabled,
            .woocommerce-error .button.btn-gray.disabled.active,
            .woocommerce-error .button.btn-gray.disabled:active,
            .woocommerce-error .button.btn-gray.disabled:focus,
            .woocommerce-error .button.btn-gray.disabled:hover,
            .woocommerce-error .button.btn-gray[disabled],
            .woocommerce-error .button.btn-gray[disabled].active,
            .woocommerce-error .button.btn-gray[disabled]:active,
            .woocommerce-error .button.btn-gray[disabled]:focus,
            .woocommerce-error .button.btn-gray[disabled]:hover,
            .woocommerce-info .button.btn-gray.disabled,
            .woocommerce-info .button.btn-gray.disabled.active,
            .woocommerce-info .button.btn-gray.disabled:active,
            .woocommerce-info .button.btn-gray.disabled:focus,
            .woocommerce-info .button.btn-gray.disabled:hover,
            .woocommerce-info .button.btn-gray[disabled],
            .woocommerce-info .button.btn-gray[disabled].active,
            .woocommerce-info .button.btn-gray[disabled]:active,
            .woocommerce-info .button.btn-gray[disabled]:focus,
            .woocommerce-info .button.btn-gray[disabled]:hover,
            .woocommerce-message .button.btn-gray.disabled,
            .woocommerce-message .button.btn-gray.disabled.active,
            .woocommerce-message .button.btn-gray.disabled:active,
            .woocommerce-message .button.btn-gray.disabled:focus,
            .woocommerce-message .button.btn-gray.disabled:hover,
            .woocommerce-message .button.btn-gray[disabled],
            .woocommerce-message .button.btn-gray[disabled].active,
            .woocommerce-message .button.btn-gray[disabled]:active,
            .woocommerce-message .button.btn-gray[disabled]:focus,
            .woocommerce-message .button.btn-gray[disabled]:hover,
            fieldset[disabled] .woocommerce-error .button.btn-gray,
            fieldset[disabled] .woocommerce-error .button.btn-gray.active,
            fieldset[disabled] .woocommerce-error .button.btn-gray:active,
            fieldset[disabled] .woocommerce-error .button.btn-gray:focus,
            fieldset[disabled] .woocommerce-error .button.btn-gray:hover,
            fieldset[disabled] .woocommerce-info .button.btn-gray,
            fieldset[disabled] .woocommerce-info .button.btn-gray.active,
            fieldset[disabled] .woocommerce-info .button.btn-gray:active,
            fieldset[disabled] .woocommerce-info .button.btn-gray:focus,
            fieldset[disabled] .woocommerce-info .button.btn-gray:hover,
            fieldset[disabled] .woocommerce-message .button.btn-gray,
            fieldset[disabled] .woocommerce-message .button.btn-gray.active,
            fieldset[disabled] .woocommerce-message .button.btn-gray:active,
            fieldset[disabled] .woocommerce-message .button.btn-gray:focus,
            fieldset[disabled] .woocommerce-message .button.btn-gray:hover {
                background-color: #ccc;
                border-color: #ccc
            }

            .woocommerce-error .button.btn-gray .badge,
            .woocommerce-info .button.btn-gray .badge,
            .woocommerce-message .button.btn-gray .badge {
                color: #ccc;
                background-color: #333
            }

        .woocommerce-error .button:hover,
        .woocommerce-info .button:hover,
        .woocommerce-message .button:hover {
            background: #151515
        }

    .woocommerce-error li,
    .woocommerce-info li,
    .woocommerce-message li {
        display: block
    }

    .woocommerce-error.woocommerce-error,
    .woocommerce-info.woocommerce-error,
    .woocommerce-message.woocommerce-error {
        background-color: #dd1f26;
        -moz-box-shadow: 0 0 0 6px #dd1f26;
        -webkit-box-shadow: 0 0 0 6px #dd1f26;
        box-shadow: 0 0 0 6px #dd1f26
    }

    .woocommerce-error.woocommerce-info,
    .woocommerce-info.woocommerce-info,
    .woocommerce-message.woocommerce-info {
        background-color: #00aeef;
        -moz-box-shadow: 0 0 0 6px #00aeef;
        -webkit-box-shadow: 0 0 0 6px #00aeef;
        box-shadow: 0 0 0 6px #00aeef
    }

.post-type-archive-product .woocommerce-error,
.post-type-archive-product .woocommerce-info,
.post-type-archive-product .woocommerce-message,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
    margin-bottom: 20px
}

@media screen and (max-width: 992px) {
    nav.nav-growpop {
        display: none
    }
}

nav.nav-growpop a {
    position: fixed;
    top: 40%;
    display: block;
    outline: 0;
    text-align: left;
    z-index: 1000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

    nav.nav-growpop a.prev {
        left: 0
    }

    nav.nav-growpop a.next {
        right: 0
    }

    nav.nav-growpop a svg {
        display: block;
        margin: 0 auto;
        padding: 0
    }

nav.nav-growpop .icon-wrap {
    position: relative;
    z-index: 100;
    display: block;
    padding: 20px 10px;
    border: 0 solid #fff;
    background: #fff;
    -webkit-transition: border-width .3s .15s;
    transition: border-width .3s .15s
}

nav.nav-growpop svg.icon {
    fill: #333
}

nav.nav-growpop div.popup-container {
    position: absolute;
    top: 50%;
    padding: 20px;
    width: 350px;
    height: 100px;
    background: #fff;
    opacity: 0;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    -moz-box-shadow: inset 0 0 0 1px #eee;
    -webkit-box-shadow: inset 0 0 0 1px #eee;
    box-shadow: inset 0 0 0 1px #eee
}

nav.nav-growpop a.prev div.popup-container {
    left: 0;
    padding: 16px 100px 20px 70px;
    text-align: right;
    -webkit-transform: translateY(-50%) translateX(-100%) scale(.75);
    transform: translateY(-50%) translateX(-100%) scale(.75)
}

nav.nav-growpop a.next div.popup-container {
    right: 0;
    padding: 16px 70px 20px 100px;
    -webkit-transform: translateY(-50%) translateX(100%) scale(.75);
    transform: translateY(-50%) translateX(100%) scale(.75)
}

nav.nav-growpop h3 {
    margin: 0;
    padding-top: 10px;
    color: #222;
    font-weight: 300;
    font-size: 1.325em;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

nav.nav-growpop div.popup-container p.price {
    padding-top: 5px
}

    nav.nav-growpop div.popup-container p.price > del {
        display: none
    }

    nav.nav-growpop div.popup-container p.price ins {
        text-decoration: none
    }

nav.nav-growpop img {
    position: absolute;
    top: 20px;
    width: 60px !important;
    height: auto !important
}

nav.nav-growpop a.prev img {
    right: 20px
}

nav.nav-growpop a.next img {
    left: 20px
}

nav.nav-growpop a:hover .icon-wrap {
    border-top-width: 18px;
    border-bottom-width: 18px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #222;
    border-color: #222
}

nav.nav-growpop a:hover svg.icon {
    fill: #fff
}

nav.nav-growpop a:hover div.popup-container {
    opacity: 1;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: translateY(-50%) translateX(0) scale(1);
    transform: translateY(-50%) translateX(0) scale(1)
}

@media screen and (max-width: 520px) {
    nav.nav-growpop a.prev {
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%
    }

    nav.nav-growpop a.next {
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%
    }

    nav.nav-growpop a {
        -webkit-transform: translateY(-50%) scale(.6);
        transform: translateY(-50%) scale(.6)
    }
}

.nivo-lightbox-body-effect-fade nav.nav-growpop {
    display: none
}

.svg-wrap {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    margin-top: 30px;
    margin-bottom: 0
}

    .woocommerce-error + .woocommerce-error,
    .woocommerce-error + .woocommerce-info,
    .woocommerce-error + .woocommerce-message,
    .woocommerce-info + .woocommerce-error,
    .woocommerce-info + .woocommerce-info,
    .woocommerce-info + .woocommerce-message,
    .woocommerce-message + .woocommerce-error,
    .woocommerce-message + .woocommerce-info,
    .woocommerce-message + .woocommerce-message {
        margin-top: 30px
    }

@media screen and (max-width: 992px) {
    .woocommerce-error,
    .woocommerce-info,
    .woocommerce-message {
        margin-top: 10px;
        margin-bottom: 30px
    }
}

.single-product .woocommerce-error,
.single-product .woocommerce-info,
.single-product .woocommerce-message {
    margin-top: 0;
    margin-bottom: 40px
}

.woocommerce-error + .row .page-title,
.woocommerce-info + .row .page-title,
.woocommerce-message + .row .page-title {
    padding-top: 5px
}

.checkout .woocommerce-error,
.checkout .woocommerce-info,
.checkout .woocommerce-message {
    margin-top: 0;
    margin-bottom: 40px
}

.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
    margin-top: 30px;
    margin-bottom: 30px
}

.header-menu .lab-mini-cart {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #ebebeb;
    width: 350px;
    visibility: hidden;
    z-index: 11;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 350ms;
    -moz-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms
}

.header-type-2 .header-menu .lab-mini-cart {
    margin-top: 13px
}

.header-menu .lab-mini-cart .cart_list {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    max-height: 300px
}

    .header-menu .lab-mini-cart .cart_list li {
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #f3f3f3;
        float: none;
        display: block;
        -webkit-transition: all 200ms;
        -moz-transition: all 200ms;
        -o-transition: all 200ms;
        transition: all 200ms
    }

        .header-menu .lab-mini-cart .cart_list li:after,
        .header-menu .lab-mini-cart .cart_list li:before {
            content: " ";
            display: table
        }

        .header-menu .lab-mini-cart .cart_list li:after {
            clear: both
        }

        .header-menu .lab-mini-cart .cart_list li:hover {
            background-color: #fbfbfb
        }

        .header-menu .lab-mini-cart .cart_list li .product-img {
            float: left;
            width: 15%
        }

            .header-menu .lab-mini-cart .cart_list li .product-img img {
                width: 100%;
                height: auto !important;
                -moz-box-shadow: 0 0 0 1px #e1e1e1;
                -webkit-box-shadow: 0 0 0 1px #e1e1e1;
                box-shadow: 0 0 0 1px #e1e1e1
            }

        .header-menu .lab-mini-cart .cart_list li .product-details {
            float: left;
            position: relative;
            padding-right: 50px;
            width: 85%;
            padding-left: 15px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box
        }

            .header-menu .lab-mini-cart .cart_list li .product-details .price-total {
                position: absolute;
                top: 50%;
                right: 0;
                font-size: 15px;
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%)
            }

            .header-menu .lab-mini-cart .cart_list li .product-details a {
                display: block;
                text-decoration: none;
                text-transform: uppercase;
                font-size: 15px;
                color: #222
            }

            .header-menu .lab-mini-cart .cart_list li .product-details .quantity {
                color: #888;
                font-weight: 300;
                text-transform: uppercase;
                font-size: 12px;
                background-color: transparent;
                width: 100%;
                margin-top: 5px
            }

                .header-menu .lab-mini-cart .cart_list li .product-details .quantity .price {
                    font-weight: 400;
                    color: #222
                }

            .header-menu .lab-mini-cart .cart_list li .product-details .variation {
                list-style: none;
                margin: 0;
                padding: 0
            }

                .header-menu .lab-mini-cart .cart_list li .product-details .variation dd,
                .header-menu .lab-mini-cart .cart_list li .product-details .variation dt {
                    font-weight: 400;
                    display: inline-block;
                    float: none;
                    clear: none;
                    margin: 0;
                    padding: 0;
                    font-size: 11px
                }

                    .header-menu .lab-mini-cart .cart_list li .product-details .variation dd p,
                    .header-menu .lab-mini-cart .cart_list li .product-details .variation dt p {
                        padding: 0;
                        margin: 0
                    }

                    .header-menu .lab-mini-cart .cart_list li .product-details .variation dd + dt:before {
                        content: ', ';
                        font-weight: 400;
                        position: relative;
                        left: -1px
                    }

        .header-menu .lab-mini-cart .cart_list li.empty {
            text-transform: uppercase;
            text-align: center;
            color: #888;
            border-bottom: 0
        }

.header-menu .lab-mini-cart .cart-bottom {
    border-top: 1px solid #e8e8e8;
    padding: 15px 20px;
    background: #f7f7f7
}

.header-menu .lab-mini-cart .total {
    padding-top: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0
}

    .header-menu .lab-mini-cart .total strong {
        font-weight: 300;
        display: inline-block;
        margin-right: 5px
    }

    .header-menu .lab-mini-cart .total .amount {
        font-weight: 400;
        color: #333
    }

.header-menu .lab-mini-cart .cart-is-loading {
    padding: 20px;
    text-align: center;
    color: #888
}

.cart-visible .lab-mini-cart,
.cart-visible.lab-mini-cart {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible
}

.woocommerce-demo-store {
    padding-top: 30px
}

    .woocommerce-demo-store .demo_store {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 30px;
        background: #7b599b;
        color: #fff;
        text-align: center;
        line-height: 30px;
        font-size: 12px;
        text-transform: uppercase
    }

    .woocommerce-demo-store.admin-bar .demo_store {
        top: 32px
    }

.woocommerce-checkout .page-title {
    margin-top: 20px
}

.header-menu .lab-mini-cart .cart_list li .product-details a {
    text-overflow: ellipsis;
    overflow: hidden
}

#yith-wcwl-form {
    margin-bottom: 40px
}

.product-add-to-cart .button {
    white-space: nowrap
}

.view-cart .blockUI.blockOverlay {
    background-color: rgba(255, 255, 255, .8) !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    top: 55px !important;
    height: auto !important;
    bottom: 5px !important
}

.add_to_cart_button.button {
    text-decoration: none
}

    .add_to_cart_button.button.loading {
        zoom: 1;
        -webkit-opacity: .5;
        -moz-opacity: .5;
        opacity: .5;
        filter: alpha(opacity=50)
    }

@media (min-width: 768px)and (max-width: 991px) {
    header .menu-wrapper .search {
        margin-right: 0
    }

    .blog .post {
        padding: 25px 0
    }

        .blog .post .post-content .title {
            margin: 25px 0
        }
}

@media (max-width: 767px) {
    header.type-2 .menu-wrapper {
        height: auto !important
    }

    header.type-2 .right-menu {
        float: none !important;
        text-align: center
    }

        header.type-2 .right-menu a {
            margin: 20px 0
        }

    header.type-3 .menu-wrapper .logo {
        margin: 25px 0
    }

    header .top-menu {
        display: none
    }

    header .main-menu {
        display: none
    }

    header .menu-wrapper .cart,
    header .menu-wrapper .search,
    header .menu-wrapper .toggle-menu {
        margin-right: 0
    }

    header .menu-wrapper .toggle-menu {
        display: inline-block
    }

    footer {
        padding: 30px 0
    }

        footer .footer-bottom {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
            text-align: center
        }

    .form-control {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .contact-page .contact-information {
        padding-left: 15px
    }

    #map {
        height: 250px
    }

    section {
        padding: 0
    }

    .form-control:disabled {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none
    }

    .container .jumbotron {
        padding: 25px
    }

        .container .jumbotron.type-1 .action-text {
            display: block;
            margin-bottom: 20px
        }

            .container .jumbotron.type-1 .action-text h1 {
                font-size: 25px
            }

            .container .jumbotron.type-1 .action-text h3 {
                margin-top: 5px
            }

        .container .jumbotron.type-1 .action-buton {
            display: block
        }

    .cart-totals .checkout {
        margin-bottom: 20px
    }

    .shop .shop-item {
        height: auto
    }


        .shop .shop-item .item-image {
            width: 100%;
            height: auto
        }


            .shop .shop-item .item-image img {
                width: 100%;
                height: auto
            }

    .contact-page .contact-form .form-control {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none
    }

    .contact-page .contact-form .send-message {
        width: 100%;
        margin-bottom: 40px
    }

    .bordered-block {
        padding: 20px 20px;
        margin-bottom: 25px
    }

    .sidebar .sidebar-list .bordered {
        padding: 0
    }

    .page-title {
        padding: 0;
        margin: 0
    }

        .page-title h1 {
            font-size: 25px
        }

        .page-title .sort {
            margin-top: 25px
        }

            .page-title .sort .dropdown .btn {
                width: 100%
            }

            .page-title .sort.pull-right {
                float: none !important
            }

    .nav-tabs li.active a {
        padding: 10px
    }

    .nav-tabs li a {
        padding: 10px
    }

    .blog.blog-sidebar .container {
        padding-left: 0;
        padding-right: 0
    }

    .blog .post {
        padding: 25px 0
    }

        .blog .post .post-content .title {
            font-size: 25px;
            margin: 20px 0
        }

        .blog .post .post-content p {
            line-height: 20px
        }

        .blog .post .comments .form-control {
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: none
        }

        .blog .post .comments .comment {
            padding: 25px 0;
            padding-left: 0
        }

            .blog .post .comments .comment .comment {
                padding-left: 25px
            }

            .blog .post .comments .comment .avatar {
                position: relative
            }

        .blog .post .comments .reply-form > .title {
            margin: 30px 0 20px 0
        }

        .blog .post .comments .send-comment {
            width: 100%
        }

        .blog .post .comments .title {
            font-size: 25px
        }

    .view-order {
        display: none
    }

    .status {
        display: none
    }

    .wishlist td h3,
    .wishlist th h3 {
        font-size: 15px !important
    }

    .wishlist td.stock,
    .wishlist th.stock {
        display: none
    }

    .wishlist td .add-to-cart,
    .wishlist th .add-to-cart {
        padding: 7px;
        font-size: 13px
    }

    .shop .item-info {
        padding: 0
    }
}

@media (max-width: 480px) {
    .shop .item-info {
        padding: 0
    }
}

/* ubermenu.min.css */

/*
 * UberMenu 3 
 * http://wpmegamenu.com 
 * Copyright 2011-2014 Chris Mavricos, SevenSpark 
 */
.ubermenu, .ubermenu .ubermenu-column, .ubermenu .ubermenu-divider, .ubermenu .ubermenu-icon, .ubermenu .ubermenu-image, .ubermenu .ubermenu-item, .ubermenu .ubermenu-nav, .ubermenu .ubermenu-retractor, .ubermenu .ubermenu-row, .ubermenu .ubermenu-search, .ubermenu .ubermenu-search-input, .ubermenu .ubermenu-search-submit, .ubermenu .ubermenu-submenu, .ubermenu .ubermenu-submenu-footer, .ubermenu .ubermenu-tabs, .ubermenu .ubermenu-tabs-panels, .ubermenu .ubermenu-target, .ubermenu-responsive-toggle {
    margin: 0;
    padding: 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    text-indent: 0;
    clip: auto;
    position: static;
    background: 0 0;
    text-transform: none;
    overflow: visible;
    z-index: 10;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    line-height: 1.3em;
    border: none;
    border-radius: 0
}

    .ubermenu, .ubermenu .ubermenu-column, .ubermenu .ubermenu-divider, .ubermenu .ubermenu-item, .ubermenu .ubermenu-nav, .ubermenu .ubermenu-retractor, .ubermenu .ubermenu-row, .ubermenu .ubermenu-search, .ubermenu .ubermenu-search-input, .ubermenu .ubermenu-search-submit, .ubermenu .ubermenu-submenu, .ubermenu .ubermenu-submenu-footer, .ubermenu .ubermenu-tabs, .ubermenu .ubermenu-tabs-panels, .ubermenu .ubermenu-target, .ubermenu-responsive-toggle {
        height: auto;
        width: auto;
        max-height: none;
        min-height: 0
    }

        .ubermenu .ubermenu-image, .ubermenu .ubermenu-submenu-drop {
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            -moz-transform: translateZ(0);
            -webkit-transform: translateZ(0)
        }

.ubermenu {
    display: block;
    line-height: 1.3em;
    text-align: left
}

.ubermenu-bound, .ubermenu-bound-inner .ubermenu-nav {
    position: relative
}

.ubermenu, .ubermenu-nav {
    overflow: visible !important;
    z-index: 100
}

.ubermenu-nav, .ubermenu-row, .ubermenu-submenu {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none
}

.ubermenu a.ubermenu-target, .ubermenu-trigger-click .ubermenu-has-submenu-drop > .ubermenu-target {
    cursor: pointer
}

.ubermenu span.ubermenu-target {
    cursor: default
}

.ubermenu-accessible .ubermenu-target {
    outline: 0
}

.ubermenu-accessible input:not(:hover):focus, .ubermenu-accessible:not(:hover) .ubermenu-target:focus {
    outline: #2cc4ff solid 1px;
    box-shadow: 0 0 5px #2CC4FF !important;
    z-index: 50;
    transition: outline .1s linear
}

.ubermenu-responsive-toggle, .ubermenu-sticky-toggle-wrapper {
    display: none;
    text-decoration: none;
    cursor: pointer;
    max-width: 100%
}

    .ubermenu-responsive-toggle:hover {
        text-decoration: none
    }

    .ubermenu-responsive-toggle .fa {
        width: 1.3em;
        text-align: center;
        margin-right: .6em
    }

.ubermenu-bar-align-full {
    clear: both
}

.ubermenu-bar-align-left {
    float: left
}

.ubermenu-bar-align-right {
    float: right
}

.ubermenu-bar-align-center {
    float: none;
    margin: 0 auto
}

.ubermenu-bar-inner-center .ubermenu-nav {
    margin: 0 auto
}

.ubermenu-items-align-center {
    text-align: center
}

.ubermenu-items-align-right {
    text-align: right
}

.ubermenu .ubermenu-item {
    text-align: left;
    display: inline-block;
    vertical-align: top
}

.ubermenu .ubermenu-item-level-0 {
    vertical-align: bottom;
    -moz-backface-visibility: visible;
    backface-visibility: visible
}

.ubermenu-items-align-top .ubermenu-item-level-0 {
    vertical-align: top
}

.ubermenu .ubermenu-item.ubermenu-item-level-0 {
    float: none
}

.ubermenu-items-align-left.ubermenu-horizontal .ubermenu-item.ubermenu-item-level-0, .ubermenu.ubermenu-horizontal .ubermenu-item.ubermenu-align-left {
    float: left
}

.ubermenu.ubermenu-horizontal .ubermenu-item.ubermenu-align-right {
    float: right
}

.ubermenu.ubermenu-horizontal .ubermenu-item-level-0:first-child > .ubermenu-target {
    border-left: none
}

.ubermenu .ubermenu-colgroup .ubermenu-column, .ubermenu .ubermenu-custom-content-padded, .ubermenu .ubermenu-nonlink, .ubermenu .ubermenu-retractor, .ubermenu .ubermenu-submenu-padded, .ubermenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target, .ubermenu .ubermenu-target, .ubermenu .ubermenu-widget, .ubermenu-responsive-toggle {
    padding: 15px 20px
}

.ubermenu .ubermenu-target-nowrap > .ubermenu-target-title {
    white-space: nowrap
}

.ubermenu-horizontal .ubermenu-item.ubermenu-item-mini > .ubermenu-target {
    padding-left: 5px;
    padding-right: 5px
}

.ubermenu .ubermenu-item-level-0.ubermenu-has-submenu-stack {
    position: relative
}

.ubermenu .ubermenu-item-level-0 > .ubermenu-submenu-type-stack {
    padding-top: 0
}

    .ubermenu .ubermenu-item-level-0 > .ubermenu-submenu-type-stack > .ubermenu-item {
        clear: both;
        width: 100%
    }

.ubermenu .ubermenu-submenu .ubermenu-submenu-type-stack {
    width: auto
}

.ubermenu .ubermenu-autocolumn, .ubermenu .ubermenu-submenu-type-stack {
    padding-top: 10px;
    padding-bottom: 10px
}

.ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack {
    padding-top: 0;
    padding-bottom: 0
}

    .ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:first-child {
        margin-top: 10px
    }

.ubermenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target {
    padding-top: 5px;
    padding-bottom: 5px
}

.ubermenu .ubermenu-target {
    display: block;
    text-decoration: none;
    position: relative
}

.ubermenu .ubermenu-target-with-image {
    overflow: hidden
}

.ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target:after {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    content: "\f107";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target {
    padding-right: 25px
}

.ubermenu-sub-indicators .ubermenu-item-has-children > .ubermenu-target.ubermenu-noindicator {
    padding-right: 20px
}

.ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-noindicator:after {
    content: '';
    display: none
}

.ubermenu-sub-indicators .ubermenu-submenu-type-flyout > .ubermenu-has-submenu-drop > .ubermenu-target:after, .ubermenu-sub-indicators .ubermenu-submenu-type-stack > .ubermenu-has-submenu-drop.ubermenu-has-submenu-flyout > .ubermenu-target:after {
    content: "\f105"
}

.ubermenu-sub-indicators .ubermenu-submenu .ubermenu-has-submenu-flyout.ubermenu-submenu-reverse > .ubermenu-target:after {
    right: auto;
    left: 10px;
    content: '\f104'
}

.ubermenu .ubermenu-target-text {
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    font-weight: inherit;
    color: inherit
}

.ubermenu .ubermenu-target-description {
    font-size: 80%;
    font-weight: 400;
    clear: both;
    display: block
}

.ubermenu .ubermenu-target-with-image > .ubermenu-target-text {
    display: block;
    clear: none
}

.ubermenu .ubermenu-item.ubermenu-disable-padding > .ubermenu-target {
    padding: 0
}

.ubermenu .ubermenu-item.ubermenu-disable-padding.ubermenu-has-submenu-drop > .ubermenu-target {
    padding-right: 30px
}

.ubermenu .ubermenu-image {
    display: block;
    max-width: 100%;
    transition: opacity 1s ease;
    opacity: 1
}

    .ubermenu .ubermenu-image:not(.ubermenu-image-lazyload) {
        height: auto
    }

.ubermenu .ubermenu-image-lazyload {
    opacity: 0
}

.ubermenu .ubermenu-item-layout-image_left > .ubermenu-target-text {
    padding-left: 50px
}

.ubermenu .ubermenu-item-layout-image_left > .ubermenu-image {
    float: left
}

.ubermenu .ubermenu-item-layout-image_right > .ubermenu-target-text {
    padding-right: 50px
}

.ubermenu .ubermenu-item-layout-image_right > .ubermenu-image {
    float: right
}

.ubermenu .ubermenu-item-layout-image_above > .ubermenu-image {
    margin-bottom: 10px
}

.ubermenu .ubermenu-item-layout-image_below > .ubermenu-image {
    margin-top: 10px
}

.ubermenu .ubermenu-icon {
    width: 1.3em;
    text-align: center;
    line-height: 1em
}

.ubermenu .ubermenu-item-notext > .ubermenu-icon {
    line-height: 1.3em
}

.ubermenu .ubermenu-item-layout-icon_left > .ubermenu-icon, .ubermenu .ubermenu-item-layout-icon_right > .ubermenu-icon {
    vertical-align: middle
}

.ubermenu .ubermenu-item-layout-icon_bottom > .ubermenu-icon, .ubermenu .ubermenu-item-layout-icon_top > .ubermenu-icon {
    line-height: 1.3em
}

.ubermenu .ubermenu-item-layout-icon_left > .ubermenu-target-title {
    margin-left: .6em;
    display: inline-block
}

.ubermenu.ubermenu-icons-inline .ubermenu-item-layout-icon_left > .ubermenu-icon, .ubermenu.ubermenu-icons-inline .ubermenu-item-layout-icon_left > .ubermenu-target-title {
    display: inline;
    white-space: normal
}

.ubermenu .ubermenu-content-align-left {
    text-align: left
}

    .ubermenu .ubermenu-content-align-left > .ubermenu-image {
        display: inline-block
    }

.ubermenu .ubermenu-content-align-center {
    text-align: center
}

    .ubermenu .ubermenu-content-align-center > .ubermenu-image {
        float: none;
        margin-left: auto;
        margin-right: auto
    }

.ubermenu .ubermenu-content-align-right {
    text-align: right
}

    .ubermenu .ubermenu-content-align-right > .ubermenu-image {
        display: inline-block
    }

.ubermenu .ubermenu-item .ubermenu-submenu-drop {
    position: absolute;
    z-index: 500;
    top: -10000px;
    height: 0;
    max-height: 0;
    visibility: hidden;
    overflow: hidden
}

.ubermenu .ubermenu-item:not(.ubermenu-active) .ubermenu-submenu-drop {
    min-height: 0 !important
}

.ubermenu .ubermenu-item .ubermenu-submenu-padded {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box
}

.ubermenu .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop, .ubermenu-nojs .ubermenu-item:hover > .ubermenu-submenu-drop {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
    max-height: none
}

.ubermenu .ubermenu-item.ubermenu-active > .ubermenu-submenu-type-flyout, .ubermenu-nojs .ubermenu-item:hover > .ubermenu-submenu-type-flyout {
    overflow: visible
}

.ubermenu .ubermenu-item.ubermenu-in-transition > .ubermenu-submenu-type-flyout {
    overflow: hidden
}

.ubermenu .ubermenu-item .ubermenu-submenu-drop {
    box-shadow: 0 0 20px rgba(0,0,0,.15)
}

.ubermenu .ubermenu-item-level-0 > .ubermenu-submenu-drop {
    clip: rect(0,5000px,5000px,-5000px)
}

.ubermenu-bound .ubermenu-submenu-type-mega {
    min-width: 50%
}

.ubermenu .ubermenu-grid-row, .ubermenu .ubermenu-submenu-grid {
    padding-right: 20px
}

    .ubermenu .ubermenu-grid-row .ubermenu-target, .ubermenu .ubermenu-submenu-grid .ubermenu-target {
        padding-right: 0
    }

.ubermenu .ubermenu-item.ubermenu-active > .ubermenu-target, .ubermenu-nojs .ubermenu-item:hover > .ubermenu-target {
    position: relative
}

.ubermenu .ubermenu-item.ubermenu-active .ubermenu-submenu-drop, .ubermenu-nojs .ubermenu-item:hover .ubermenu-submenu-drop {
    z-index: 20
}

.ubermenu .ubermenu-submenu-drop.ubermenu-submenu-align-left_edge_item {
    left: auto
}

.ubermenu .ubermenu-submenu-drop.ubermenu-submenu-align-right_edge_item {
    right: auto
}

.ubermenu .ubermenu-submenu-drop.ubermenu-submenu-align-full_width, .ubermenu .ubermenu-submenu-drop.ubermenu-submenu-align-left_edge_bar {
    left: 0
}

.ubermenu .ubermenu-submenu-drop.ubermenu-submenu-align-right_edge_bar {
    right: 0
}

.ubermenu .ubermenu-submenu-rtl {
    direction: rtl
}

    .ubermenu .ubermenu-submenu-rtl > * {
        direction: ltr
    }

.ubermenu .ubermenu-submenu-drop.ubermenu-submenu-align-full_width {
    width: 100%
}

.ubermenu .ubermenu-retractor {
    display: block;
    clear: both;
    text-align: center;
    cursor: pointer
}

    .ubermenu .ubermenu-retractor:hover {
        background: rgba(0,0,0,.1)
    }

.ubermenu .ubermenu-retractor-desktop {
    position: absolute;
    right: 0;
    top: 0;
    padding: 7px 10px;
    z-index: 100
}

.ubermenu .ubermenu-submenu-type-stack > .ubermenu-item {
    display: block
}

    .ubermenu .ubermenu-submenu-type-stack > .ubermenu-item.ubermenu-column-auto {
        width: 100%;
        display: block;
        float: none;
        min-width: 0
    }

.ubermenu .ubermenu-submenu-type-stack.ubermenu-submenu-indent {
    padding-left: 1.6em;
    padding-top: .4em
}

.ubermenu .ubermenu-submenu-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 20px;
    color: inherit;
    font-size: inherit;
    list-style: none
}

    .ubermenu .ubermenu-submenu-footer a {
        text-decoration: none;
        font-weight: 700;
        font-size: inherit
    }

.ubermenu .ubermenu-item.ubermenu-active.ubermenu-in-transition > .ubermenu-submenu-drop, .ubermenu .ubermenu-item.ubermenu-in-transition > .ubermenu-submenu-drop {
    overflow: hidden !important;
    height: auto
}

.ubermenu .ubermenu-item .ubermenu-submenu-drop {
    -webkit-transition-duration: .3s;
    -ms-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in;
    -ms-transition-timing-function: ease-in;
    transition-timing-function: ease-in
}

.ubermenu-transition-none .ubermenu-item .ubermenu-submenu-drop {
    -webkit-transition: none;
    -ms-transition: none;
    transition: none;
    top: auto
}

.ubermenu-nojs.ubermenu-transition-none .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-none .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    max-height: none;
    height: auto;
    overflow-y: visible
}

.ubermenu-transition-slide .ubermenu-item .ubermenu-submenu-drop {
    -webkit-transition-property: max-height,visibility;
    -ms-transition-property: max-height,visibility;
    transition-property: max-height,visibility;
    max-height: 0;
    top: auto
}

.ubermenu-nojs.ubermenu-transition-slide .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-slide .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    max-height: 1000px
}

.ubermenu-transition-fade .ubermenu-item .ubermenu-submenu-drop {
    opacity: 0;
    -webkit-transition-property: opacity,visibility;
    -ms-transition-property: opacity,visibility;
    transition-property: opacity,visibility;
    top: auto;
    margin-top: 1px
}

.ubermenu-nojs.ubermenu-transition-fade .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-fade .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    opacity: 1;
    top: auto
}

.ubermenu-transition-shift .ubermenu-item .ubermenu-submenu-drop {
    margin-top: 20px;
    top: auto;
    opacity: 0;
    -webkit-transition-property: margin-top,opacity,visibility;
    -ms-transition-property: margin-top,opacity,visibility;
    transition-property: margin-top,opacity,visibility
}

.ubermenu-nojs.ubermenu-transition-shift .ubermenu-item:hover > .ubermenu-submenu-drop, .ubermenu-transition-shift .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    margin-top: 0;
    opacity: 1
}

.ubermenu.ubermenu-transition-slide .ubermenu-active > .ubermenu-submenu.ubermenu-submenu-type-mega, .ubermenu:not(.ubermenu-transition-slide) .ubermenu-submenu.ubermenu-submenu-type-mega {
    max-height: 600px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.ubermenu .ubermenu-submenu-type-flyout > .ubermenu-item {
    display: block;
    float: none;
    position: relative;
    min-width: 150px;
    clear: both
}

    .ubermenu .ubermenu-submenu-type-flyout > .ubermenu-item.ubermenu-active {
        z-index: 50
    }

.ubermenu .ubermenu-submenu .ubermenu-submenu-type-flyout {
    margin-top: -1px;
    top: 0;
    left: 100%;
    min-width: none;
    clip: rect(-10px,5000px,5000px,0)
}

    .ubermenu .ubermenu-submenu .ubermenu-submenu-type-flyout.ubermenu-submenu-align-right_edge_item {
        left: auto;
        right: 100%;
        clip: rect(-10px,5000px,5000px,-10px)
    }

.ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-active > .ubermenu-submenu-type-flyout {
    top: 0
}

.ubermenu .ubermenu-submenu-type-flyout > .ubermenu-item.ubermenu-has-submenu-mega {
    position: static
}

.ubermenu .ubermenu-submenu-type-flyout > .ubermenu-item > .ubermenu-submenu.ubermenu-submenu-type-mega {
    left: 100%;
    top: 0;
    min-height: 100%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
    clip: rect(-10px,5000px,5000px,0)
}

.ubermenu.ubermenu-horizontal .ubermenu-item-level-1:first-child > .ubermenu-submenu-type-flyout, .ubermenu.ubermenu-horizontal .ubermenu-item-level-1:first-child > .ubermenu-submenu-type-flyout > .ubermenu-item:first-child > .ubermenu-submenu-type-flyout, .ubermenu.ubermenu-horizontal .ubermenu-submenu-type-flyout .ubermenu-submenu-type-mega {
    border-top: none
}

.ubermenu .ubermenu-item .ubermenu-submenu-type-mega .ubermenu-submenu-drop {
    margin-top: 0;
    clip: rect(0,5000px,5000px,-5000px)
}

.ubermenu .ubermenu-item .ubermenu-submenu-type-mega .ubermenu-item.ubermenu-has-submenu-flyout {
    position: relative
}

.ubermenu .ubermenu-item .ubermenu-submenu-type-mega > .ubermenu-item.ubermenu-has-submenu-flyout > .ubermenu-submenu-drop {
    top: auto;
    left: auto;
    box-shadow: none
}

.ubermenu .ubermenu-submenu-type-mega .ubermenu-item.ubermenu-has-submenu-flyout.ubermenu-active {
    z-index: 100
}

.ubermenu .ubermenu-row {
    margin-bottom: 10px;
    clear: both
}

    .ubermenu .ubermenu-row:after {
        content: "";
        display: table;
        clear: both
    }

.ubermenu .ubermenu-submenu .ubermenu-column {
    display: block;
    float: left;
    width: auto
}

.ubermenu .ubermenu-submenu .ubermenu-column-auto {
    min-width: 100px;
    width: auto
}

.ubermenu .ubermenu-nav .ubermenu-column-full {
    width: 100%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-2 {
    width: 50%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-3 {
    width: 33.33%
}

.ubermenu .ubermenu-nav .ubermenu-column-2-3 {
    width: 66.66%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-4 {
    width: 25%
}

.ubermenu .ubermenu-nav .ubermenu-column-3-4 {
    width: 75%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-5 {
    width: 20%
}

.ubermenu .ubermenu-nav .ubermenu-column-2-5 {
    width: 40%
}

.ubermenu .ubermenu-nav .ubermenu-column-3-5 {
    width: 60%
}

.ubermenu .ubermenu-nav .ubermenu-column-4-5 {
    width: 80%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-6 {
    width: 16.66%
}

.ubermenu .ubermenu-nav .ubermenu-column-5-6 {
    width: 83.33%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-7 {
    width: 14.28%
}

.ubermenu .ubermenu-nav .ubermenu-column-2-7 {
    width: 28.57%
}

.ubermenu .ubermenu-nav .ubermenu-column-3-7 {
    width: 42.85%
}

.ubermenu .ubermenu-nav .ubermenu-column-4-7 {
    width: 57.14%
}

.ubermenu .ubermenu-nav .ubermenu-column-5-7 {
    width: 71.42%
}

.ubermenu .ubermenu-nav .ubermenu-column-6-7 {
    width: 85.71%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-8 {
    width: 12.5%
}

.ubermenu .ubermenu-nav .ubermenu-column-3-8 {
    width: 37.5%
}

.ubermenu .ubermenu-nav .ubermenu-column-5-8 {
    width: 62.5%
}

.ubermenu .ubermenu-nav .ubermenu-column-7-8 {
    width: 87.5%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-9 {
    width: 11.11%
}

.ubermenu .ubermenu-nav .ubermenu-column-2-9 {
    width: 22.22%
}

.ubermenu .ubermenu-nav .ubermenu-column-4-9 {
    width: 44.44%
}

.ubermenu .ubermenu-nav .ubermenu-column-5-9 {
    width: 55.55%
}

.ubermenu .ubermenu-nav .ubermenu-column-7-9 {
    width: 77.77%
}

.ubermenu .ubermenu-nav .ubermenu-column-8-9 {
    width: 88.88%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-10 {
    width: 10%
}

.ubermenu .ubermenu-nav .ubermenu-column-3-10 {
    width: 30%
}

.ubermenu .ubermenu-nav .ubermenu-column-7-10 {
    width: 70%
}

.ubermenu .ubermenu-nav .ubermenu-column-9-10 {
    width: 90%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-11 {
    width: 9.09%
}

.ubermenu .ubermenu-nav .ubermenu-column-2-11 {
    width: 18.18%
}

.ubermenu .ubermenu-nav .ubermenu-column-3-11 {
    width: 27.27%
}

.ubermenu .ubermenu-nav .ubermenu-column-4-11 {
    width: 36.36%
}

.ubermenu .ubermenu-nav .ubermenu-column-5-11 {
    width: 45.45%
}

.ubermenu .ubermenu-nav .ubermenu-column-6-11 {
    width: 54.54%
}

.ubermenu .ubermenu-nav .ubermenu-column-7-11 {
    width: 63.63%
}

.ubermenu .ubermenu-nav .ubermenu-column-8-11 {
    width: 72.72%
}

.ubermenu .ubermenu-nav .ubermenu-column-9-11 {
    width: 81.81%
}

.ubermenu .ubermenu-nav .ubermenu-column-10-11 {
    width: 90.9%
}

.ubermenu .ubermenu-nav .ubermenu-column-1-12 {
    width: 8.33%
}

.ubermenu .ubermenu-nav .ubermenu-column-5-12 {
    width: 41.66%
}

.ubermenu .ubermenu-nav .ubermenu-column-7-12 {
    width: 58.33%
}

.ubermenu .ubermenu-nav .ubermenu-column-11-12 {
    width: 91.66%
}

.ubermenu .ubermenu-autoclear > .ubermenu-column-1-10:nth-child(10n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-11:nth-child(11n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-12:nth-child(12n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-2:nth-child(2n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-3:nth-child(3n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-4:nth-child(4n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-5:nth-child(5n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-6:nth-child(6n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-7:nth-child(7n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-8:nth-child(8n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-1-9:nth-child(9n+1), .ubermenu .ubermenu-autoclear > .ubermenu-column-full {
    clear: both
}

.ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column {
    clear: none
}

.ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-10:nth-child(10n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-11:nth-child(11n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-12:nth-child(12n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-2:nth-child(2n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-3:nth-child(3n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-4:nth-child(4n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-5:nth-child(5n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-6:nth-child(6n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-7:nth-child(7n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-8:nth-child(8n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-1-9:nth-child(9n+2), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top > .ubermenu-column-full {
    clear: both
}

.ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top.ubermenu-submenu-retractor-top-2 > .ubermenu-column {
    clear: none
}

.ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-10:nth-child(10n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-11:nth-child(11n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-12:nth-child(12n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-2:nth-child(2n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-3:nth-child(3n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-4:nth-child(4n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-5:nth-child(5n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-6:nth-child(6n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-7:nth-child(7n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-8:nth-child(8n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-1-9:nth-child(9n+3), .ubermenu .ubermenu-autoclear.ubermenu-submenu-retractor-top-2 > .ubermenu-column-full {
    clear: both
}

.ubermenu .ubermenu-tabs {
    position: relative;
    width: 100%
}

.ubermenu .ubermenu-tabs-group {
    border-style: solid
}

.ubermenu .ubermenu-tab .ubermenu-tab-content-panel {
    position: absolute;
    display: none
}

.ubermenu .ubermenu-tab .ubermenu-tab-content-panel, .ubermenu .ubermenu-tab > .ubermenu-target {
    border-width: 0;
    border-style: solid
}

.ubermenu .ubermenu-tab.ubermenu-active > .ubermenu-tab-content-panel, .ubermenu-nojs .ubermenu-tab:hover > .ubermenu-tab-content-panel, .ubermenu-nojs .ubermenu-tabs-show-default > .ubermenu-tabs-group > .ubermenu-tab:first-child > .ubermenu-tab-content-panel {
    display: block
}

.ubermenu-nojs .ubermenu-tabs-show-default:hover > .ubermenu-tabs-group > .ubermenu-tab:first-child > .ubermenu-tab-content-panel {
    display: none
}

.ubermenu-nojs .ubermenu-tabs-show-default:hover > .ubermenu-tabs-group > .ubermenu-tab:first-child:hover > .ubermenu-tab-content-panel {
    display: block
}

.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group {
    float: left;
    border-width: 0 1px 0 0
}

    .ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
        right: 0;
        top: 0
    }

.ubermenu-sub-indicators .ubermenu-tabs.ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-has-submenu-drop > .ubermenu-target:after {
    content: "\f105"
}

.ubermenu .ubermenu-tab-layout-right > .ubermenu-tabs-group {
    float: right;
    border-width: 0 0 0 1px
}

    .ubermenu .ubermenu-tab-layout-right > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
        left: 0;
        top: 0
    }

    .ubermenu .ubermenu-tab-layout-right > .ubermenu-tabs-group > .ubermenu-has-submenu-drop > .ubermenu-target {
        padding-left: 25px;
        padding-right: 20px
    }

.ubermenu-sub-indicators .ubermenu-tab-layout-right > .ubermenu-tabs-group > .ubermenu-has-submenu-drop > .ubermenu-target:after {
    content: "\f104";
    right: auto;
    left: 10px
}

.ubermenu .ubermenu-tab-layout-top > .ubermenu-tabs-group {
    border-width: 0
}

    .ubermenu .ubermenu-tab-layout-top > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
        left: 0;
        top: auto;
        border-width: 1px 0 0
    }

.ubermenu .ubermenu-tab-layout-bottom > .ubermenu-tabs-group {
    border-width: 1px 0 0;
    position: absolute;
    bottom: 0
}

    .ubermenu .ubermenu-tab-layout-bottom > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
        left: 0;
        bottom: 100%
    }

.ubermenu-sub-indicators .ubermenu-tabs.ubermenu-tab-layout-bottom > .ubermenu-tabs-group > .ubermenu-has-submenu-drop > .ubermenu-target:after {
    content: "\f106"
}

.ubermenu h3.ubermenu-widgettitle {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.3em
}

.ubermenu .ubermenu-divider {
    clear: both;
    display: block;
    padding: 20px 0
}

.ubermenu .ubermenu-submenu-type-stack > .ubermenu-divider {
    padding: 10px 0
}

.ubermenu .ubermenu-divider hr {
    padding: 0;
    margin: 0;
    display: block;
    height: 1px;
    background: 0 0;
    border: 0;
    border-top: 1px solid #ddd;
    border-top: 1px solid rgba(0,0,0,.1)
}

.ubermenu .ubermenu-search .ubermenu-searchform {
    position: relative;
    background: #f9f9f9;
    width: 150px;
    margin: 7px
}

.ubermenu .ubermenu-search input.ubermenu-search-input {
    width: 100%;
    padding: 8px 40px 8px 15px;
    height: 100%;
    color: #333;
    background: 0 0;
    border: none
}

.ubermenu .ubermenu-search .ubermenu-search-submit, .ubermenu .ubermenu-searchbar-drop .ubermenu-search-submit {
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    right: 0;
    border: none;
    background: 0 0;
    cursor: pointer;
    color: #666;
    font-family: FontAwesome !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ubermenu .ubermenu-submenu .ubermenu-search .ubermenu-searchform {
    height: 50px;
    margin: 0;
    background: #f9f9f9;
    width: 100%
}

.ubermenu .ubermenu-submenu .ubermenu-search input.ubermenu-search-input {
    width: 100%;
    padding: 14px 50px 14px 25px;
    height: 100%;
    color: #333;
    background: 0 0
}

.ubermenu .ubermenu-submenu .ubermenu-search .ubermenu-search-submit, .ubermenu .ubermenu-submenu .ubermenu-searchbar-drop .ubermenu-search-submit {
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    right: 0;
    border: none;
    background: 0 0;
    cursor: pointer;
    color: #666;
    font-family: FontAwesome !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ubermenu .ubermenu-postlist-item {
    margin-bottom: 10px
}

.ubermenu .ubermenu-postlist .ubermenu-image {
    float: left
}

.ubermenu .ubermenu-postlist-title > a {
    color: inherit;
    text-decoration: none
}

.ubermenu .ubermenu-postlist-content {
    font-size: 11px;
    opacity: .7
}

.ubermenu .ubermenu-map-canvas img {
    max-width: none
}

.ubermenu-screen-reader, .ubermenu-target-divider {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    padding: 0;
    margin: 0;
    border: 0
}

.uber-clear:after, .ubermenu .ubermenu-column:after, .ubermenu .ubermenu-content-block:after, .ubermenu .ubermenu-image:after, .ubermenu .ubermenu-postlist-item:after, .ubermenu .ubermenu-submenu:after, .ubermenu .ubermenu-tabs:after, .ubermenu:after {
    content: "";
    display: table;
    clear: both
}

.ubermenu {
    background: 0 0
}

.ubermenu-submenu-drop {
    background: #fff
}

.ubermenu-test-dimensions {
    visibility: hidden !important;
    display: block !important
}

.ubermenu .ubermenu-force > .ubermenu-submenu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    top: auto !important;
    max-height: 600px;
    height: auto;
    overflow: auto !important
}

.ubermenu-notransition, .ubermenu-notransition > .ubermenu-submenu-drop {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important
}

.ubermenu-admin-notice {
    background: #eee;
    color: #333;
    padding: 15px;
    border-left: 30px solid #4D90FE;
    margin: 20px;
    position: relative;
    font-size: 12px;
    clear: both
}

    .ubermenu-admin-notice a, .ubermenu-admin-notice a:visited {
        color: #00A3FF;
        text-decoration: underline;
        font-size: inherit
    }

        .ubermenu-admin-notice a:hover {
            color: #0D75AF
        }

    .ubermenu-admin-notice strong {
        color: tomato
    }

    .ubermenu-admin-notice .ubermenu-admin-notice-icon {
        position: absolute;
        left: -18px;
        top: 50%;
        margin-top: -5px;
        color: #fff;
        font-size: 13px
    }

    .ubermenu-admin-notice:after {
        display: none;
        position: absolute;
        content: 'UberMenu Notice: Only displayed to admin users';
        left: -30px;
        bottom: 100%;
        background: #666;
        color: #eee;
        padding: 7px 10px;
        font-size: 11px
    }

    .ubermenu-admin-notice:hover:after {
        display: block
    }

#wp-admin-bar-ubermenu .fa, #wp-admin-bar-ubermenu_loading .fa {
    font-family: FontAwesome;
    margin-right: 4px;
    color: #aaa
}

#wp-admin-bar-ubermenu_loading .fa {
    color: #ff0
}

#wpadminbar #wp-admin-bar-ubermenu_loading #wp-admin-bar-ubermenu_loading_msg .ab-item {
    width: 300px;
    white-space: normal;
    height: auto;
    padding: 10px 20px;
    line-height: 1.5em
}

.ubermenu-responsive-toggle.ubermenu-loc-ubermenu-direct-inject, .ubermenu.ubermenu-loc-ubermenu-direct-inject {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%
}

.admin-bar .ubermenu-responsive-toggle.ubermenu-loc-ubermenu-direct-inject, .admin-bar .ubermenu.ubermenu-loc-ubermenu-direct-inject {
    top: 32px
}

@media screen and (max-width:959px) {
    .ubermenu.ubermenu-loc-ubermenu-direct-inject {
        margin-top: 47px
    }
}

@media screen and (max-width:782px) {
    .admin-bar .ubermenu-responsive-toggle.ubermenu-loc-ubermenu-direct-inject, .admin-bar .ubermenu.ubermenu-loc-ubermenu-direct-inject {
        top: 46px
    }

    .ubermenu-responsive-toggle.ubermenu-loc-ubermenu-direct-inject, .ubermenu.ubermenu-loc-ubermenu-direct-inject {
        position: absolute
    }
}

.ubermenu-vertical .ubermenu-item-level-0 {
    display: block;
    clear: both
}

    .ubermenu-vertical .ubermenu-item-level-0 > .ubermenu-submenu-drop {
        clip: rect(-5000px,5000px,5000px,0)
    }

.ubermenu.ubermenu-vertical .ubermenu-item-level-0 > .ubermenu-target {
    box-shadow: none;
    border-left: none
}

.ubermenu-vertical.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-item-has-children > a.ubermenu-target:after {
    content: '\f105'
}

.ubermenu-vertical .ubermenu-item > .ubermenu-submenu-drop {
    left: 100%;
    margin-left: 0;
    top: 0
}

.ubermenu-nojs.ubermenu-vertical .ubermenu-item-level-0:hover > .ubermenu-submenu-drop, .ubermenu-vertical .ubermenu-active .ubermenu-submenu.ubermenu-submenu-type-flyout .ubermenu-submenu-type-mega, .ubermenu-vertical .ubermenu-item-level-0.ubermenu-active > .ubermenu-submenu-drop {
    top: 0;
    min-height: 100%
}

    .ubermenu-nojs.ubermenu-vertical .ubermenu-item-level-0:hover > .ubermenu-submenu-drop.ubermenu-submenu-align-vertical_parent_item, .ubermenu-vertical .ubermenu-item-level-0.ubermenu-active > .ubermenu-submenu-drop.ubermenu-submenu-align-vertical_parent_item {
        min-height: 0
    }

.ubermenu-vertical .ubermenu-item.ubermenu-flyout-full-height {
    position: static
}

    .ubermenu-vertical .ubermenu-item.ubermenu-flyout-full-height > .ubermenu-submenu-drop {
        min-height: 100% !important;
        max-height: none;
        height: auto
    }

.ubermenu-vertical .ubermenu-submenu .ubermenu-item.ubermenu-active > .ubermenu-submenu-drop {
    top: 0
}

.ubermenu-vertical.ubermenu-transition-slide .ubermenu-item.ubermenu-active.ubermenu-in-transition > .ubermenu-submenu-drop {
    min-height: 0
}

.ubermenu-vertical .ubermenu-item > .ubermenu-submenu-type-mega {
    width: 600px;
    margin: 0
}

.ubermenu-vertical .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel, .ubermenu-vertical .ubermenu-tab-layout-right > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
    min-height: 100%
}

.ubermenu-vertical .ubermenu-item.ubermenu-relative {
    position: relative
}

.ubermenu-vertical .ubermenu-item.ubermenu-item-level-0.ubermenu-relative.ubermenu-active > .ubermenu-submenu-drop.ubermenu-submenu-align-vertical_parent_item {
    top: 0
}

.ubermenu-vertical .ubermenu-item.ubermenu-item-mini {
    float: left;
    clear: none
}

.ubermenu.ubermenu-vertical .ubermenu-item.ubermenu-item-mini > .ubermenu-target {
    background: 0 0;
    box-shadow: none
}

@media screen and (min-width:960px) {
    .ubermenu-responsive-default.ubermenu {
        display: block !important
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item.ubermenu-hide-desktop {
        display: none !important
    }

    .ubermenu-responsive-default.ubermenu-responsive.ubermenu-retractors-responsive .ubermenu-retractor-mobile {
        display: none
    }
}

@media screen and (max-width:959px) {
    .ubermenu-responsive-toggle, .ubermenu-sticky-toggle-wrapper {
        display: block
    }

    .ubermenu-no-transitions.ubermenu-responsive.ubermenu-responsive-collapse {
        display: none;
        visibility: visible;
        height: auto;
        max-height: none;
        overflow: visible !important
    }

    .ubermenu-sticky-wrapper {
        min-height: 0 !important
    }

    .ubermenu-responsive-default .ubermenu-responsive-toggle, .ubermenu-responsive-default .ubermenu-sticky-toggle-wrapper, .ubermenu-sticky-toggle-wrapper {
        display: block
    }

    .ubermenu-responsive-default.ubermenu-responsive {
        width: 100%;
        max-height: 500px;
        visibility: visible;
        overflow: visible;
        -webkit-transition: max-height 1s ease-in;
        transition: max-height .3s ease-in
    }

        .ubermenu-responsive-default.ubermenu-repsonsive.ubermenu-no-transitions, .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-nocollapse {
            display: block;
            max-height: none
        }

        .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse {
            max-height: 0;
            overflow: hidden !important;
            visibility: hidden
        }

        .ubermenu-responsive-default.ubermenu-responsive.ubermenu-in-transition, .ubermenu-responsive-default.ubermenu-responsive.ubermenu-in-transition .ubermenu-nav {
            overflow: hidden !important;
            visibility: visible
        }

        .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse:not(.ubermenu-in-transition) {
            border-top-width: 0;
            border-bottom-width: 0
        }

        .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item-level-0 {
            width: 50%
        }

        .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target {
            border: none;
            box-shadow: none
        }

        .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item.ubermenu-has-submenu-flyout {
            position: static
        }

        .ubermenu-responsive-default.ubermenu-responsive.ubermenu-sub-indicators .ubermenu-submenu-type-flyout .ubermenu-has-submenu-drop > .ubermenu-target:after {
            content: "\f107"
        }

        .ubermenu-responsive-default.ubermenu-responsive .ubermenu-nav .ubermenu-item .ubermenu-submenu.ubermenu-submenu-drop {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            top: auto;
            left: 0 !important
        }

        .ubermenu-responsive-default.ubermenu-responsive .ubermenu-active > .ubermenu-submenu-type-mega {
            max-height: none;
            height: auto
        }

        .ubermenu-responsive-default.ubermenu-responsive.ubermenu-transition-slide .ubermenu-item.ubermenu-in-transition > .ubermenu-submenu-drop {
            max-height: 1000px
        }

    .ubermenu-responsive-default.ubermenu .ubermenu-submenu-type-flyout .ubermenu-submenu-type-mega {
        min-height: 0
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column, .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column-auto {
        min-width: 50%
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-autoclear > .ubermenu-column {
        clear: none
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column:nth-of-type(2n+1) {
        clear: both
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-submenu-retractor-top:not(.ubermenu-submenu-retractor-top-2) .ubermenu-column:nth-of-type(2n+1) {
        clear: none
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-submenu-retractor-top:not(.ubermenu-submenu-retractor-top-2) .ubermenu-column:nth-of-type(2n+2) {
        clear: both
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tab, .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tab-content-panel, .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tabs, .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tabs-group {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        left: 0
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tab-content-panel, .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tabs {
        min-height: 0 !important
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-tab-content-panel {
        z-index: 20
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tab > .ubermenu-target {
        border-width: 0 0 1px
    }

    .ubermenu-responsive-default.ubermenu-responsive.ubermenu-sub-indicators .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab.ubermenu-has-submenu-drop > .ubermenu-target:after {
        content: "\f107"
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
        position: relative;
        border-width: 0 0 2px
    }

    .ubermenu-responsive-default.ubermenu-reponsive .ubermenu-item-level-0 > .ubermenu-submenu-type-stack, .ubermenu-responsive-default.ubermenu-responsive .ubermenu-tab-layout-bottom > .ubermenu-tabs-group {
        position: relative
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-submenu-type-stack .ubermenu-column, .ubermenu-responsive-default.ubermenu-responsive .ubermenu-submenu-type-stack .ubermenu-column-auto {
        width: 100%;
        max-width: 100%
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item-mini {
        min-width: 0;
        width: auto;
        float: left;
        clear: none !important
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item.ubermenu-item-mini > a.ubermenu-target {
        padding: 20px
    }

    .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item.ubermenu-hide-mobile {
        display: none !important
    }

    .ubermenu-responsive-default.ubermenu-responsive.ubermenu-hide-bkgs .ubermenu-submenu.ubermenu-submenu-bkg-img {
        background-image: none
    }
}

@media screen and (max-width:480px) {
    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-item-level-0 {
        width: 100%
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column, .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column-auto {
        min-width: 100%
    }

    .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-item-mini {
        min-width: 0;
        width: auto
    }
}

/* nivo-lightbox.css */

/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .nivo-lightbox-overlay.nivo-lightbox-open {
        visibility: visible;
        opacity: 1;
    }

.nivo-lightbox-wrap {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
}

.nivo-lightbox-content {
    width: 100%;
    height: 100%;
}

.nivo-lightbox-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    text-align: center;
}

.nivo-lightbox-nav {
    display: none;
}

.nivo-lightbox-prev {
    position: absolute;
    top: 50%;
    left: 0;
}

.nivo-lightbox-next {
    position: absolute;
    top: 50%;
    right: 0;
}

.nivo-lightbox-close {
    position: absolute;
    top: 2%;
    right: 2%;
}

.nivo-lightbox-image {
    text-align: center;
}

    .nivo-lightbox-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        vertical-align: middle;
    }

.nivo-lightbox-content iframe {
    width: 100%;
    height: 100%;
}

.nivo-lightbox-inline,
.nivo-lightbox-ajax {
    max-height: 100%;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}

.nivo-lightbox-error {
    display: table;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-shadow: 0 1px 1px #000;
}

    .nivo-lightbox-error p {
        display: table-cell;
        vertical-align: middle;
    }

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
    -webkit-transform: translateX(-10%);
    -moz-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
}

.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    transform: translateX(10%);
}

.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
    -webkit-transform: translateY(-10%);
    -moz-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
}

.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
}

.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}

.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: translateZ(300px);
    -moz-transform: translateZ(300px);
    -ms-transform: translateZ(300px);
    transform: translateZ(300px);
}

.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/* nivo default.css */

/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-theme-default.nivo-lightbox-overlay {
    background: #666;
    background: rgba(0,0,0,0.6);
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
    background: url(../images/nivo/loading.gif) no-repeat 50% 50%;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
    top: 10%;
    width: 8%;
    height: 80%;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
}

    .nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
        opacity: 1;
        background-color: rgba(0,0,0,0.5);
    }

.nivo-lightbox-theme-default .nivo-lightbox-prev {
    background-image: url(../images/nivo/prev.png);
    border-radius: 0 3px 3px 0;
}

.nivo-lightbox-theme-default .nivo-lightbox-next {
    background-image: url(../images/nivo/next.png);
    border-radius: 3px 0 0 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
    display: block;
    background: url(../images/nivo/close.png) no-repeat 5px 5px;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    padding: 5px;
    opacity: 0.5;
}

    .nivo-lightbox-theme-default .nivo-lightbox-close:hover {
        opacity: 1;
    }

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
    bottom: -7%;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
    font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    background: #000;
    color: #fff;
    padding: 7px 15px;
    border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
    background: #fff;
    -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
    box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
    background: #fff;
    padding: 40px;
    -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
    box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}

@media (-webkit-min-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {

    .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
        background-image: url(../images/nivo/loading%402x.gif);
        background-size: 32px 32px;
    }

    .nivo-lightbox-theme-default .nivo-lightbox-prev {
        background-image: url(../images/nivo/prev%402x.png);
        background-size: 48px 48px;
    }

    .nivo-lightbox-theme-default .nivo-lightbox-next {
        background-image: url(../images/nivo/next%402x.png);
        background-size: 48px 48px;
    }

    .nivo-lightbox-theme-default .nivo-lightbox-close {
        background-image: url(../images/nivo/close%402x.png);
        background-size: 16px 16px;
    }
}

/* owl-carousel.css */

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* display none until init */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

    .owl-carousel .owl-wrapper {
        display: none;
        position: relative;
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper-outer {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

        .owl-carousel .owl-wrapper-outer.autoHeight {
            -webkit-transition: height 500ms ease-in-out;
            -moz-transition: height 500ms ease-in-out;
            -ms-transition: height 500ms ease-in-out;
            -o-transition: height 500ms ease-in-out;
            transition: height 500ms ease-in-out;
        }

    .owl-carousel .owl-item {
        float: left;
    }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
    cursor: url(../images/owl/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
}

/*  Brands */

/* markalar sayfasi */
div#twocolumn-right {
    width: 100%;
}

    div#twocolumn-right div#contentmain {
        text-align: left
    }

    div#twocolumn-right div#contentright {
        text-align: right;
    }

    div#twocolumn-right div#contentmain #brandlist {
    }

        div#twocolumn-right div#contentmain #brandlist .brandcolumn {
            text-align: left;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumnleft {
            padding: 0px 0px 0px 0px;
            height: auto;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumnmiddle {
            adding: 0px 0px 0px 15px;
            height: auto;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumnright {
            padding: 0px 0px 0px 15px;
            height: auto;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumn .grouptitle { /* font-family:'mbc_tg_cd_20bold'; */
            font-size: 14px;
            margin: 5px 0px 10px 0px;
            font-weight: bold;
            border-bottom: 1px solid #ddd;
            padding-bottom: 3px;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumn .groupitems {
            margin: 6px 0px 30px 0px;
        }

            div#twocolumn-right div#contentmain #brandlist .brandcolumn .groupitems a {
                display: block; /* font-family:'mbc_tg_18regular'; */
                font-size: 12px;
                line-height: 20px;
                color: #666666;
                text-decoration: none;
            }

                div#twocolumn-right div#contentmain #brandlist .brandcolumn .groupitems a:hover {
                    color: orange;
                }

/* markalar product listeleme */

div#brandpage {
    width: 100%;
    float: none;
    display: block;
    margin: 0px 0px 16px 0px;
}

    div#brandpage div#brandheader {
        background: #ADADAD;
        height: 240px;
        padding: 25px 25px 25px 25px;
    }

        div#brandpage div#brandheader div#brandheaderleft {
            width: 455px;
            float: left;
            text-align: left;
        }

        div#brandpage div#brandheader div#brandheaderright {
            width: 460px;
            float: right;
            text-align: left;
        }

            div#brandpage div#brandheader div#brandheaderright:after {
                content: ".";
                visibility: hidden;
                display: none;
                clear: left;
            }

        div#brandpage div#brandheader div#brandheaderleft h1#brandtitle {
            font-family: 'heroic_condensedmedium';
            font-size: 55px;
            letter-spacing: -1px;
            line-height: 52px;
            margin-bottom: 15px;
            display: block;
        }

        div#brandpage div#brandheader div#brandheaderleft div#branddescription {
            font-family: 'mbc_tg_18regular';
            font-size: 14px;
            line-height: 17px;
            color: #333333;
            height: 175px;
            width: 445px;
            overflow: auto;
            letter-spacing: 1.2px;
            line-height: 19px;
        }

    div#brandpage div#brandcontent {
        text-align: left;
        float: none;
        height: 100%;
    }

        div#brandpage div#brandcontent div#brandcontentleft {
            width: 220px;
            float: left;
            min-height: 1000px;
            height: 100%;
        }

        div#brandpage div#brandcontent div#brandcontentright {
            width: 770px;
            float: right;
            min-height: 1000px;
            height: 100%;
            text-align: right;
        }

            div#brandpage div#brandcontent div#brandcontentright:after {
                content: ".";
                visibility: hidden;
                display: none;
                clear: left;
            }

    div#brandpage:after {
        content: ".";
        visibility: hidden;
        display: none;
        clear: left;
    }

.noProductsInBrand {
    font-size: 30px;
    color: #CCCCCC;
    padding: 20px 0px 0px 20px;
    height: 300px;
    font-family: 'mbc_tg_18regular';
}


div#productlist {
    text-align: left;
    float: none;
    height: 100%;
}
    /*div#productlist div#productlistleft {width:220px;float:left;min-height:1000px;height:100%;text-align:left;margin:28px 0px 0px 0px;}
div#productlist div#productlistright {width:770px;float:right;min-height:1000px;height:100%;text-align:left;margin:30px 0px 0px 0px;}*/
    div#productlist div#productlistleft {
        width: 220px;
        float: left;
        min-height: 1000px;
        height: 100%;
        text-align: left;
        margin: 8px 0px 0px 0px;
    }

    div#productlist div#productlistright {
        width: 770px;
        float: right;
        min-height: 1000px;
        height: 100%;
        text-align: left;
        margin: 8px 0px 0px 0px;
    }

        div#productlist div#productlistright:after {
            content: ".";
            visibility: hidden;
            display: none;
            clear: left;
        }

        div#productlist div#productlistright .productcount {
            font-family: 'mbc_tg_18regular';
            font-size: 16px;
            font-style: normal;
            font-weight: normal;
            color: #333333;
            margin: 0px 0px 15px 15px;
        }

.brandRight {
    text-align: left;
}

    .brandRight img {
        width: 100%;
    }

    .brandRight p {
        font-size: 12px;
        color: #666;
        font-family: Verdana;
        margin-top: 10px;
    }

@media screen and (min-width:480px) {
    div#twocolumn-right div#contentmain { /* width:650px; */
    }

        div#twocolumn-right div#contentmain #brandlist .brandcolumn {
            width: 48%;
            float: left;
            margin: 1%;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumnright {
            margin-right: 0;
        }

    div#twocolumn-right div#contentright {
        width: 48%;
        margin-left: 2%;
        float: right;
    }

    .brandRight p {
        float: right;
    }
}


@media screen and (min-width:768px) {
    div#twocolumn-right div#contentmain { /* width:650px; */
        float: left;
        width: 75%;
    }

        div#twocolumn-right div#contentmain #brandlist .brandcolumn {
            width: 32%;
            float: left;
            margin-left: 0;
            margin-right: 2%;
        }

        div#twocolumn-right div#contentmain #brandlist .brandcolumnright {
            margin-right: 0;
        }

    div#twocolumn-right div#contentright {
        width: 23%;
        margin-left: 2%;
        float: right;
        margin-top: -97px;
    }

    .brandRight p {
        float: right;
    }
}

/* Statik Sayfalar */

@font-face {
    font-family: 'Flama';
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-Book.eot");
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-Book.eot?#iefix") format("embedded-opentype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-Book.woff") format("woff"), url("https://sf-p.rtrcdn.com/webfonts/Flama-Book.ttf") format("truetype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-Book.svg#Austin Web") format("svg");
    font-weight: 300;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: 'Flama';
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-BookItalic.eot");
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-BookItalic.eot?#iefix") format("embedded-opentype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-BookItalic.woff") format("woff"), url("https://sf-p.rtrcdn.com/webfonts/Flama-BookItalic.ttf") format("truetype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-BookItalic.svg#Austin Web") format("svg");
    font-weight: 300;
    font-style: italic;
    font-stretch: normal
}

@font-face {
    font-family: 'Flama';
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-Medium.eot");
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-Medium.eot?#iefix") format("embedded-opentype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-Medium.woff") format("woff"), url("https://sf-p.rtrcdn.com/webfonts/Flama-Medium.ttf") format("truetype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-Medium.svg#Austin Web") format("svg");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: 'Flama';
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-MediumItalic.eot");
    src: url("https://sf-p.rtrcdn.com/webfonts/Flama-MediumItalic.eot?#iefix") format("embedded-opentype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-MediumItalic.woff") format("woff"), url("https://sf-p.rtrcdn.com/webfonts/Flama-MediumItalic.ttf") format("truetype"), url("https://sf-p.rtrcdn.com/webfonts/Flama-MediumItalic.svg#Austin Web") format("svg");
    font-weight: 500;
    font-style: italic;
    font-stretch: normal
}

@font-face {
    font-family: 'dceyV2';
    src: url('/Content/assets/font/dceyV2-1.eot?s4jwjv');
    src: url('/Content/assets/font/dceyV2-1.eot?s4jwjv#iefix') format('embedded-opentype'), url('/Content/assets/font/dceyV2-1.ttf?s4jwjv') format('truetype'), url('/Content/assets/font/dceyV2-1.woff?s4jwjv') format('woff'), url('/Content/assets/font/dceyV2-1.svg?s4jwjv#dceyV2-1') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="new-icon-"], [class*=" new-icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'dceyV2' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.new-icon-instagram:before {
    content: "\e906";
}

.new-icon-blackArrowRight:before {
    content: "\e907";
}

.new-icon-gift:before {
    content: "\e908";
}

.new-icon-baloon:before {
    content: "\e909";
}

.new-icon-pasta:before {
    content: "\e90a";
}

.new-icon-glass:before {
    content: "\e90b";
}

.new-icon-calendarIco:before {
    content: "\e900";
}

.new-icon-pinIco:before {
    content: "\e901";
}

.new-icon-bagIco:before {
    content: "\e902";
}

.new-icon-heartIco:before {
    content: "\e903";
}

.new-icon-searchIco:before {
    content: "\e904";
}

.new-icon-menuIco:before {
    content: "\e905";
}


/*@font-face {
  font-family: 'dceyV2';
  src:  url('../font/dceyV2.eot?ggfgfgf');
  src:  url('../font/dceyV2.eot?ggfgfgf#iefix') format('embedded-opentype'),
    url('../font/dceyV2.ttf?ggfgfgf') format('truetype'),
    url('../font/dceyV2.woff?ggfgfgf') format('woff'),
    url('../font/dceyV2.svg?ggfgfgf#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="new-icon-"], [class*=" new-icon-"] {
  font-family: 'dceyV2' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.new-icon-calendarIco:before {
  content: "\e900";
}
.new-icon-pinIco:before {
  content: "\e901";
}
.new-icon-bagIco:before {
  content: "\e902";
}
.new-icon-heartIco:before {
  content: "\e903";
}
.new-icon-searchIco:before {
  content: "\e904";
}
.new-icon-menuIco:before {
  content: "\e905";
}
*/



/* profil sayfasi */

#profilepage {
    width: 100%;
    min-height: 500px;
    text-align: left;
    margin: 20px 0px 0px 0px;
    /* height: 500px; */
}

#profilepagetitle {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    margin: 20px 0px 10px 0px;
}


#profilepage #profilepageleft {
    border: 1px dotted #EBEBEB;
    text-align: left;
    height: 100%;
    padding: 20px;
}

#profilepage #profilepagecontent {
    text-align: left;
    font-size: 13px;
    margin-bottom: 20px;
}

#profilepage .profilepagecontent {
    letter-spacing: 2.20px;
}

#profilepage #profilepageleft .pageleftitem {
    color: #707070;
    font-size: 13px;
    font-weight: 300;
    display: block;
    text-decoration: none;
    margin: 0px 0px 8px 0px;
    /* float: left; */
}

#profilepage #profilepageleft .pageleftitemActive {
    color: #101010;
    font-size: 13px;
    font-weight: 300;
    display: block;
    text-decoration: none;
    margin: 0px 0px 8px 0px;
    /* float: left; */
}

#profilepage #profilepagecontent .sectionGroupTitle {
    font-weight: bold;
    color: #000000;
    font-size: 12px;
    margin: 0px 0px 0px 0px;
    border-bottom: 1px solid #CCCCCC;
    padding: 5px 0px 5px 0px;
}

#profilepage #profilepagecontent .sectionGroupTitleCMS {
    font-weight: bold;
    color: #000000;
    font-size: 12px;
    margin: 0px 0px 10px 0px;
    border-bottom: 1px solid #CCCCCC;
    padding: 5px 0px 5px 0px;
}

@media screen and (min-width:768px) {
    #profilepage #profilepageleft {
        width: 30%;
        float: left;
    }

    #profilepage #profilepagecontent {
        width: 67%;
        float: right;
    }
}

a.filter-label-link {
    text-decoration: none;
}

.filter-attributes-colors .filter-item {
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    margin: 0 6px 9px 0;
    height: 26px;
    width: 26px;
    border: 1px solid #dddddd;
    background-color: white;
    text-align: center;
    line-height: 18px;
    padding: 0;
    overflow: hidden;
}

    .filter-attributes-colors .filter-item label {
        display: block;
        background: none;
        width: 20px;
        height: 20px;
        color: inherit;
        margin: 2px;
        text-indent: 9999px;
        cursor: pointer;
    }

        .filter-attributes-colors .filter-item label:before {
            display: none
        }

.filter-attributes-colors input[type="radio"], .filter-attributes-colors input[type="checkbox"] {
    opacity: 0.01;
    filter: alpha(opacity=1);
    position: absolute;
    vertical-align: top;
    margin-right: 1px;
}

.filter-attributes-colors .filter-item.filter-checked, .no-touch .filter-attributes-colors .filter-item:hover {
    border-color: #555;
}

#variationBox {
    padding: 0;
    list-style: none;
}

    #variationBox label {
        display: none;
        float: left;
        line-height: 44px;
        margin-right: 10px;
        min-width: 75px;
        /* position: absolute; */
        font-size: 15px;
    }

    #variationBox select, #variationBox input[type=text] {
        width: 100%;
        max-width: 355px;
        font-size: 15px;
    }

    #variationBox li {
        overflow: hidden;
        position: relative;
        margin-bottom: 10px;
    }

::-webkit-input-placeholder {
    color: #333;
}

:-moz-placeholder { /* Firefox 18- */
    color: #333;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #333;
}

:-ms-input-placeholder {
    color: #333;
}

.datepicker-wrapper {
    z-index: 32000;
    padding: 30px;
    border: 1px solid #eeeeee;
    background: white;
    max-width: 355px;
    margin-top: -1px;
    width: 100%;
    display: none;
    margin-bottom: 10px;
}

    .datepicker-wrapper.visible {
        display: block;
    }

    .datepicker-wrapper .ui-datepicker-title {
        text-align: center;
    }

.filters-wrapper .datepicker-wrapper {
    left: 0;
    margin-left: 0
}

.calendar-overlay .datepicker-wrapper {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -140px
}

    .calendar-overlay .datepicker-wrapper:before,
    .calendar-overlay .datepicker-wrapper:after {
        content: " ";
        width: 0;
        height: 0;
        border: 0 solid transparent;
        border-width: 10px 10px;
        left: 50%;
        top: 0;
        margin-top: -21px;
        margin-left: -20px;
        border-bottom-color: #eeeeee;
        position: absolute
    }

.datepicker-wrapper:after {
    border-bottom-color: white;
    top: 1px
}

.ff_nye-calendar-topper .datepicker-wrapper:after {
    border-bottom-color: #f7f7f7
}

.datepicker-wrapper.hidden {
    display: none
}

.datepicker-wrapper .final-boss-calendar.hidden {
    opacity: 0.5;
    filter: alpha(opacity=50)
}

    .datepicker-wrapper .final-boss-calendar.hidden.calendar-overlay {
        display: none
    }

.datepicker-wrapper .final-boss-calendar.calendar-overlay {
    position: relative;
    height: 0;
    overflow: visible;
    z-index: 1
}

.datepicker-wrapper .datepicker-header,
.datepicker-wrapper .calendar-header,
.datepicker-wrapper th {
    text-align: center;
    text-transform: uppercase;
    line-height: 40px;
    letter-spacing: 0;
    font-size: inherit;
    font-weight: 500
}

.datepicker-wrapper .datepicker-header {
    text-transform: none;
    padding: 4px 0 16px
}

.datepicker-wrapper .datepicker-header,
.datepicker-wrapper .datepicker-footer {
    padding: 15px 30px;
    margin: -30px;
    border: 0 solid #eeeeee;
    font-size: 11px;
    line-height: 10px;
    letter-spacing: 0
}

.datepicker-wrapper .datepicker-header {
    border-bottom-width: 1px;
    margin-bottom: 10px;
    line-height: 20px
}

.datepicker-wrapper .promo {
    background-color: #f7f7f7
}

    .datepicker-wrapper .promo p {
        text-align: left;
        margin-left: 18%
    }

    .datepicker-wrapper .promo img {
        float: left;
        margin-left: 2%;
        margin-top: -2%
    }

.datepicker-wrapper .datepicker-footer {
    margin-top: 0;
    overflow: hidden
}

    .datepicker-wrapper .datepicker-footer p {
        font-size: 11px;
        line-height: 10px;
        color: #656466;
        width: 120px;
        float: left;
        text-align: left
    }

        .datepicker-wrapper .datepicker-footer p + p {
            float: right
        }

        .datepicker-wrapper .datepicker-footer p:before {
            content: " ";
            float: left;
            width: 5px;
            height: 5px;
            border: 0 solid #656466;
            border-width: 1px 14px 14px 1px;
            margin: 0 10px 0 10px
        }

        .datepicker-wrapper .datepicker-footer p.datepicker-legend-end:before {
            border-width: 14px 1px 1px 14px
        }

    .datepicker-wrapper .datepicker-footer strong {
        display: block;
        text-transform: uppercase;
        font-size: inherit
    }

.datepicker-wrapper .calendar-header {
    letter-spacing: 0;
    font-size: 18px;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 0;
    position: relative
}

.datepicker-wrapper .ui-datepicker-prev, .datepicker-wrapper .ui-datepicker-next {
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100px;
    height: 40px;
    width: 40px;
    line-height: 80px;
    display: block;
    position: absolute;
    top: 0;
    background: transparent;
    border: 0;
    cursor: pointer
}

    .datepicker-wrapper .ui-datepicker-prev:before, .datepicker-wrapper .ui-datepicker-next:before {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border: 0 solid transparent;
        border-width: 5px;
        margin: 15px auto
    }

.datepicker-wrapper .ui-datepicker-prev {
    left: 0
}

    .datepicker-wrapper .ui-datepicker-prev:before {
        border-right-color: #333333
    }

.datepicker-wrapper .ui-datepicker-next {
    right: 0
}

    .datepicker-wrapper .ui-datepicker-next:before {
        border-left-color: #333333
    }

.datepicker-wrapper table {
    border-bottom: 1px solid #eeeeee;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%
}

    .datepicker-wrapper table th,
    .datepicker-wrapper table td {
        height: 40px;
        width: 40px;
        line-height: 40px;
        position: relative
    }

    .datepicker-wrapper table th {
        height: 20px;
        line-height: 20px
    }

    .datepicker-wrapper table:hover td.date-hover .day {
        background-color: #333333;
        color: white
    }

    .datepicker-wrapper table:hover td.date-selected-delivery.date-hover .day:before,
    .datepicker-wrapper table:hover td.date-selected-return.date-hover .day:after {
        display: none
    }

    .datepicker-wrapper table:hover td.date-delivery .day:before,
    .datepicker-wrapper table:hover td.date-selected-delivery.date-delivery .day:before,
    .datepicker-wrapper table:hover td.date-return .day:after,
    .datepicker-wrapper table:hover td.date-selected-return.date-return .day:after {
        display: block
    }

    .datepicker-wrapper table td {
        border: 1px solid #eeeeee;
        border-width: 1px 0 0 1px;
        text-align: center;
        width: 40px;
        position: relative
    }

        .datepicker-wrapper table td:last-child {
            border-right-width: 1px
        }

        .datepicker-wrapper table td.today .day {
            background-color: transparent;
            color: #333333
        }

        .datepicker-wrapper table td.inactive .day {
            background-color: transparent;
            color: #999999
        }

        .datepicker-wrapper table td.blackout .day {
            background-color: transparent;
            color: #999999
        }

        .datepicker-wrapper table td.inactive .day,
        .datepicker-wrapper table td.blackout .day {
            letter-spacing: 0;
            font-size: 11px;
            font-weight: 300
        }

        .datepicker-wrapper table td.past-date .day {
            background-color: #f7f7f7
        }

        .datepicker-wrapper table td .day {
            display: block;
            line-height: 40px;
            width: 100%;
            border: 0;
            position: relative;
            background-color: transparent;
            cursor: pointer;
            outline: none;
            letter-spacing: 0;
            font-size: 11px;
            font-weight: 500
        }

        .datepicker-wrapper table td.inactive .day:not(.booked) {
            cursor: default
        }

        .datepicker-wrapper table td.date-delivery .day:before,
        .datepicker-wrapper table td.date-selected-delivery .day:before,
        .datepicker-wrapper table td.date-return .day:after,
        .datepicker-wrapper table td.date-selected-return .day:after {
            content: "";
            display: none;
            position: absolute;
            margin: 1px;
            height: 0;
            width: 8px;
            border-width: 0 0 8px 0;
            border-style: solid;
            padding: 0;
            color: inherit
        }

        .datepicker-wrapper table td.date-delivery .day:before,
        .datepicker-wrapper table td.date-selected-delivery .day:before {
            top: 0;
            left: 0
        }

        .datepicker-wrapper table td.date-return .day:after,
        .datepicker-wrapper table td.date-selected-return .day:after {
            bottom: 0;
            right: 0
        }

        .datepicker-wrapper table td.date-selected .day {
            background-color: #bd935d;
            color: white
        }

        .datepicker-wrapper table td.date-selected-delivery .day:before,
        .datepicker-wrapper table td.date-selected-return .day:after {
            display: block
        }

    .datepicker-wrapper table .days td {
        border: 0;
        text-transform: uppercase;
        letter-spacing: 0;
        font-size: inherit;
        font-weight: 500
    }

.datepicker-wrapper .datepicker-tip-wrapper {
    position: relative
}

.datepicker-wrapper .datepicker-tip {
    display: none;
    position: absolute;
    background: #333333;
    color: #eeeeee;
    padding: 10px;
    z-index: 50;
    width: 180px;
    bottom: 100%;
    left: 50%;
    margin-left: -100px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 15px
}

    .datepicker-wrapper .datepicker-tip:before {
        content: " ";
        position: absolute;
        left: 50%;
        top: 100%;
        margin-left: -10px;
        border: 10px solid transparent;
        border-top-color: #333333;
        width: 0;
        height: 0
    }

    .datepicker-wrapper .datepicker-tip small {
        display: block;
        letter-spacing: 0;
        text-transform: none;
        font-size: inherit
    }

.datepicker-wrapper td:hover .datepicker-tip {
    display: block
}

.datepicker-wrapper .ui-datepicker-header {
    position: relative;
    height: 40px;
    line-height: 40px;
}

.datepicker-wrapper table td a, .datepicker-wrapper table td span {
    display: block;
}

.datepicker-wrapper table td.ui-datepicker-unselectable span, .datepicker-wrapper table td.ui-state-disabled span {
    background: #f7f7f7;
    color: #999;
}

.datepicker-wrapper table td a.highlight {
    background: rgb(204,153,153);
    color: #fff;
}

#rentDate {
    background: url('../images/calendar-icon.png') no-repeat right 10px center;
    background-size: 25px;
    cursor: pointer;
}

.sidebar .sidebar-entry #variationBox select, .sidebar .sidebar-entry #variationBox input[type=text] {
    color: #333;
    line-height: 1.2;
}

/* Altar Slider */
.altarSlider {
    position: relative;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: 0;
}

    .altarSlider .slideCt {
        margin-left: -30%;
        margin-right: -30%;
        position: relative;
    }

@media screen and (min-width:768px) {
    .altarSlider .slideCt {
        margin-left: 0;
        margin-right: 0;
    }
}

.altarSlider .imgFixer {
    width: 100%;
    height: auto;
}

.altarSlider ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

    .altarSlider ul li {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        -webkit-transition: opacity .9s;
        transition: opacity .9s;
        -moz-transition: opacity .9s;
        -o-transition: opacity .9s;
        -ms-transition: opacity .9s;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .altarSlider ul li.currentSlide {
            opacity: 1;
            filter: alpha(opacity=100);
            z-index: 2;
        }

        .altarSlider ul li img {
            width: 100%;
        }

.altarSlider .ctrl {
    position: absolute;
    top: 0%;
    z-index: 3;
    margin-top: 0;
    background: red;
    display: block;
    width: 15%;
    height: 100%;
    display: block;
    width: 15%;
    height: 100%;
    font-size: 60px;
    text-align: center;
    text-decoration: none;
    outline: 0;
    color: #FFF;
    z-index: 10;
    background: transparent;
    line-height: 60px;
}

    .altarSlider .ctrl:before {
        margin: 0;
        position: absolute;
        top: 50%;
        margin-top: -30px;
    }

    .altarSlider .ctrl.prev {
        left: 0;
        text-align: left;
    }

        .altarSlider .ctrl.prev:before {
            left: 15px;
        }

    .altarSlider .ctrl.next {
        right: 0;
        text-align: right;
    }

        .altarSlider .ctrl.next:before {
            right: 15px;
        }
/* Home Slider - End */

.titleType {
    float: left;
}

#homeProducts .titleType {
    margin-bottom: 30px;
}

.titleShowAll {
    float: right;
    margin-top: 8px;
}

@media (min-width: 480px) and (max-width: 991px) {
    #homeProducts .col-sm-6, .productlist .col-sm-6 {
        width: 50%;
    }
}

#instagramCt {
    margin-top: 40px;
}

    #instagramCt:before, #instagramCt:after, #homeProducts:before, #homeProducts:after {
        content: "";
        display: table;
    }

    #instagramCt:after, #homeProducts:after {
        clear: both;
    }

    #instagramCt ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        #instagramCt ul li {
            padding: 0 1px;
            margin-bottom: 2px;
        }

    #instagramCt img {
        max-width: 100%;
    }

#insta-feed .insta-feed_title {
    display: inline-block;
    margin-right: -175px;
    color: #252525;
}

.sc-btn {
    display: inline-block;
    position: relative;
    margin: 0 .25em .5em 0;
    padding: 0;
    color: #fff;
    font-family: "Helvetica Neue","Helvetica",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    text-decoration: none;
    text-shadow: rgba(0,0,0,0.3) 0 -0.1em 0;
    border: 0;
    border-radius: .4em;
    -webkit-border-radius: .4em;
    -moz-border-radius: .4em;
    -ms-border-radius: .4em;
    -o-border-radius: .4em;
    background-color: #1a1a1a;
    background-image: -webkit-linear-gradient(top, #595959, #1a1a1a 100%);
    background-image: -moz-linear-gradient(top, #595959, #1a1a1a);
    background-image: -ms-linear-gradient(top, #595959, #1a1a1a);
    background-image: -o-linear-gradient(top, #595959, #1a1a1a);
    background-image: linear-gradient(top, #595959, #1a1a1a);
    box-shadow: inset rgba(0,0,0,0.1) 0 -0.15em 0,inset rgba(255,255,255,0.2) 0 .15em 0,rgba(0,0,0,0.3) 0 .1em .3em;
    text-align: center;
    background-repeat: no-repeat;
    -webkit-transition: background-position .1s ease-in-out;
    -webkit-appearance: none;
    cursor: pointer;
    overflow: hidden;
}

.sc--instagram {
    background-color: #2c4d6e;
    background-image: -webkit-linear-gradient(top, #4a81b6, #2c4d6e 100%);
    background-image: -moz-linear-gradient(top, #4a81b6, #2c4d6e);
    background-image: -ms-linear-gradient(top, #4a81b6, #2c4d6e);
    background-image: -o-linear-gradient(top, #4a81b6, #2c4d6e);
    background-image: linear-gradient(top, #4a81b6, #2c4d6e);
}

    .sc--instagram:hover {
        background-color: #294866;
        background-image: -webkit-linear-gradient(top, #5c8dbd, #294866 90%);
        background-image: -moz-linear-gradient(top, #5c8dbd, #294866);
        background-image: -ms-linear-gradient(top, #5c8dbd, #294866);
        background-image: -o-linear-gradient(top, #5c8dbd, #294866);
        background-image: linear-gradient(top, #5c8dbd, #294866);
        background-color: #3e6c99;
    }

.sc-icon, .sc-text {
    display: block;
    float: left;
}

.followCt {
    overflow: hidden;
    font-size: 30px;
}

.sc-text {
    padding: .95em 1em .85em 1em;
    font-size: 1.15em;
    text-align: center;
}

#insta-feed .sc-text {
    font-size: 18px;
    padding: .7em 3em;
}

#homeBanner img {
    width: 100%;
}

#homeBanner {
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
}


#searchBar {
    background: #000;
    padding: 15px 0;
    width: 100%;
    z-index: 11;
    /*margin-top: -20px;*/
}

    #searchBar #rentCity {
        background-color: #000;
        border: 1px solid #fff;
        padding: 9px 8px 8px;
        height: 40px;
        color: #fff;
    }

    #searchBar option {
        color: #333;
    }



#searchBtn button {
    height: 40px;
    background: #fff;
    border: 0;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 300;
    outline: 0;
    width: 100%;
    color: #000;
}

    #searchBtn button:hover {
        opacity: .9;
    }

#searchBar #rentPicker {
    position: absolute;
    left: 0;
    top: 40px;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

#searchBar #date {
    padding: 0;
}

#searchBar #rentDate {
    width: 50%;
    float: left;
    margin-right: 2%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 35px;
    background-color: #000;
    border: 1px solid #fff;
    padding: 9px 8px 8px;
    height: 40px;
    color: #fff;
    background-image: url(../images/calendar-icon-white.png);
}

#searchBar ::-webkit-input-placeholder {
    color: #fff;
    font-size: 15px;
}

#searchBar :-moz-placeholder { /* Firefox 18- */
    color: #fff;
    font-size: 15px;
}

#searchBar ::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    font-size: 15px;
}

#searchBar :-ms-input-placeholder {
    color: #fff;
    font-size: 15px;
}

#searchBar #sizeSelector {
    background-color: #000;
    border: 1px solid #fff;
    padding: 9px 8px 8px;
    height: 40px;
    color: #fff;
    width: 48%;
    float: left;
}

div#rentingRule {
    margin-top: 10px;
    font-size: 12px;
    color: #333;
    text-align: center;
}

    div#rentingRule #rentDay {
        font-weight: bold;
        font-size: 1.2em;
    }

@media screen and (max-width:767px) {
    #searchBar {
        position: relative;
        margin-bottom: 20px;
        background: none;
    }

        #searchBar #rentCity {
            color: #000;
            background-color: transparent;
            border: 1px solid #000;
        }

        #searchBar #rentDate {
            width: 100%;
            float: none;
            color: #000;
            border: 1px solid #000;
            background-color: #fff;
            background-image: url(../images/calendar-icon.png);
        }

        #searchBar #sizeSelector {
            display: none;
        }

    #searchBtn button {
        background: #000;
        color: #fff;
    }

    #searchBar ::-webkit-input-placeholder {
        color: #000;
    }

    #searchBar :-moz-placeholder { /* Firefox 18- */
        color: #f000
    }

    #searchBar ::-moz-placeholder { /* Firefox 19+ */
        color: #000;
    }

    #searchBar :-ms-input-placeholder {
        color: #000;
    }

    #city, #date, #searchBtn {
        padding: 0;
        margin-bottom: 10px;
    }

    .altarSlider {
    }

        .altarSlider .slideCt {
            height: auto !important
        }

        .altarSlider .imgFixer {
            height: auto !important
        }

        .altarSlider .ctrl {
            font-size: 40px;
            line-height: 40px;
        }

            .altarSlider .ctrl:before {
                margin-top: -20px;
            }
}

.videoThumb {
    opacity: 1 !important;
    text-align: center;
    font-size: 12px;
    border: 1px solid #ddd;
    padding: 5px;
    color: #000;
    width: 100%;
    display: block;
    overflow: hidden;
}

    .videoThumb img {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
    }

.nav-group {
    position: relative;
}

.megaMenu {
    display: none;
    position: absolute;
    left: 0;
    top: 51px;
    width: 220px;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
}

.nav-group:hover .megaMenu {
    display: block;
}

.megaMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left
}

.megaMenu h3 {
    font-size: 18px;
    margin-top: 0
}

.megaMenu ul li a {
    font-size: 16px;
    font-weight: bold
}

.megaMenu img {
    max-width: 100%;
}

.megaMenu .menuList {
    padding-left: 0;
    padding-right: 15px;
}

.megaMenu .menuPhoto {
    padding: 0;
}

#mOpenVideo {
    margin-right: 20px;
    border: 1px solid #ccc;
    border-width: 1px 0 1px 0;
    margin: auto;
    width: 200px;
    padding: 0;
    text-align: center;
    position: relative;
    line-height: 31px;
    margin-bottom: -10px;
    margin-top: 10px;
    text-decoration: none;
}

    #mOpenVideo:before {
        font-size: 27px;
        position: absolute;
        left: 0;
        top: 2px;
    }
/* Will Be Remove */
.item-image img:nth-of-type(3) {
    display: none !important;
}


/* DCEY V2 VEESK */
@media (min-width: 1200px) {
    .container {
/*        width: 90%;*/
        /*      max-width: 1540px;*/

        width: unset;
        max-width: 100%;
        padding-left: calc(8.6805555556vw - 36.6666666667px);
        padding-right: calc(8.6805555556vw - 36.6666666667px);
    }
    }
}

a.nav-item.dcey-ico-home {
    font-size: 20px;
    line-height: 34px;
}

.newLogin {
    /*float: right;*/
    font-family: 'core_sans_g55_medium';
    font-size: 12px;
    color: #000;
    padding-top: 0;
    text-decoration: none;
}

    .newLogin:before {
        content: "";
    }

    .newLogin i {
        font-size: 20px;
        position: relative;
        top: 2px;
        margin-right: 10px;
    }

.user-menu-item-title-label.dcey-ico-search {
    font-size: 21px;
    display: block;
    /*margin-top: 3px;*/
}

.user-menu-item.ext {
    margin-right: 18px
}

.titleStyle {
    text-align: center;
    font-family: 'core_sans_g15_thin';
    color: #000;
    font-size: 40px;
    margin-bottom: 25px;
}

    .titleStyle span {
        font-family: 'core_sans_g45_regular';
        display: inline-block;
        position: relative;
    }

        .titleStyle span:before {
            content: "";
            height: 1px;
            display: block;
            position: absolute;
            background: #000;
            z-index: 1;
            width: 100%;
            bottom: 4px;
        }

.zebraCt:before, .zebraCt:after {
    content: "";
    display: table;
}

.zebraCt:after {
    clear: both;
}

.zebraCt {
    margin-top: 55px;
}


.bnr {
    margin-bottom: 20px;
    display: block;
}

.zebraCt img {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 1100px) {
    .nav-group h2 .nav-item-label {
        font-size: 15px;
    }

    .nav-group h2 a {
        padding: 0 12px;
    }
}


/* v2 Start */

h1, h2, h3, h4, h5, h6 {
    text-transform: none;
}

@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900,900i&amp;subset=latin-ext");

@font-face {
    font-family: 'decomeco';
    src: url("https://i.icomoon.io/public/c9afc0bac7/decomeco/decomeco.eot?s7wz9i");
    src: url("https://i.icomoon.io/public/c9afc0bac7/decomeco/decomeco.eot?s7wz9i#iefix") format("embedded-opentype"), url("https://i.icomoon.io/public/c9afc0bac7/decomeco/decomeco.woff2?s7wz9i") format("woff2"), url("https://i.icomoon.io/public/c9afc0bac7/decomeco/decomeco.ttf?s7wz9i") format("truetype"), url("https://i.icomoon.io/public/c9afc0bac7/decomeco/decomeco.woff?s7wz9i") format("woff"), url("https://i.icomoon.io/public/c9afc0bac7/decomeco/decomeco.svg?s7wz9i#decomeco") format("svg");
    font-weight: normal;
    font-style: normal;
}

.addToWishlist:before, .box.roomBox .roomList li a span:after, .breadCrumb ol li a:after, .cart tbody tr td.delete-product .removecarttrigger:before, .cart tfoot tr td.delete-product .removecarttrigger:before, .cart thead tr td.delete-product .removecarttrigger:before, .fancybox-slide > div.resultCt.error:before, .fancybox-slide > div.resultCt.success:before, .favoriteLists li .deleteWishlist:before, .filterBar .moreFilterBtn:after, .filterList > li .filterTitleCt .title:after, .filterSide .closeFilter:after, .filterSide .filterList > li.collapsed .filterTitleCt .title:after, .filterSide .filterList > li .filterTitleCt .title:after, .inspItem .tags .tag:before, .owl-theme .owl-nav .owl-next:before, .owl-theme .owl-nav .owl-prev:before, .pagination .nextBtn:before, .pagination .prevBtn:before, .prodDetailCt .detailCt .actionsCt .btnAddToBasket:before, .prodDetailCt .detailCt .actionsCt .btnQty:after, .prodDetailCt .detailCt .actionsCt .btnWishlist:before, .prodDetailCt .detailCt .stars li:before, .prodDetailCt .imgCt .item a:before, .prodDetailCt.quickView .goProdDetail:after, .resultCt.error:before, .resultCt.success:before, .sbFix:after, .selectListCt .listslist.quickAdd li a:before, .siteHeader .catBar .catNav > ul > li.parent > a:after, .siteHeader .catBar .userNav > li a.basket:before, .siteHeader .catBar .userNav > li a.login:before, .siteHeader .topBar .wishlist:after, .slider .owl-nav .owl-next:before, .slider .owl-nav .owl-prev:before, .social > li > a.ins:before, .social > li > a.pin:before, .social > li > a.tw:before, .social > li > a.wa:before, .social > li > a:before, .tabsCt .tab.active .tabTitle:after, .tabsCt .tab .tabTitle:after, [class*=" deco-"], [class^=deco-], header.mobile-menu ul.mobile-menu li a.login:before {
    font-family: 'decomeco' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.deco-edit:before {
    content: "\e912";
}

.deco-people:before {
    content: "\e913";
}

.deco-settings:before {
    content: "\e914";
    color: #fff;
}

.deco-trash:before {
    content: "\e915";
}

.deco-arrowNewL:before, .owl-theme .owl-nav .owl-prev:before, .slider .owl-nav .owl-prev:before {
    content: "\e911";
}

.box.roomBox .roomList li a span:after, .deco-arrowNew:before, .owl-theme .owl-nav .owl-next:before, .slider .owl-nav .owl-next:before {
    content: "\e910";
}

.deco-menu2:before {
    content: "\e90f";
}

.deco-zoom-in2:before, .prodDetailCt .imgCt .item a:before {
    content: "\e90d";
}

.deco-arrowThinR:before {
    content: "\e90c";
}

.deco-menu:before {
    content: "\e90b";
}

.deco-plus:before, .filterSide .filterList > li.collapsed .filterTitleCt .title:after {
    content: "\e909";
}

.deco-minus:before, .filterSide .filterList > li .filterTitleCt .title:after, .tabsCt .tab.active .tabTitle:after {
    content: "\e90a";
}

.deco-arrowLL:before, .pagination .prevBtn:before {
    content: "\e908";
}

.deco-arrowRL:before, .pagination .nextBtn:before {
    content: "\e907";
}

.deco-arrowD:before, .filterList > li .filterTitleCt .title:after, .prodDetailCt .detailCt .actionsCt .btnQty:after, .sbFix:after, .siteHeader .catBar .catNav > ul > li.parent > a:after {
    content: "\e906";
}

.deco-search:before {
    content: "\e905";
}

.deco-star:before, .prodDetailCt .detailCt .stars li:before {
    content: "\e900";
}

.deco-arrowRT:before {
    content: "\e901";
}

.deco-arrowLT:before {
    content: "\e902";
}

.deco-cart:before, .prodDetailCt .detailCt .actionsCt .btnAddToBasket:before, .siteHeader .catBar .userNav > li a.basket:before {
    content: "\e93a";
}

.deco-phone:before {
    content: "\e942";
}

.deco-user:before, .siteHeader .catBar .userNav > li a.login:before, header.mobile-menu ul.mobile-menu li a.login:before {
    content: "\e971";
}

.deco-truck:before {
    content: "\e9b0";
}

.deco-star-half:before {
    content: "\e9d8";
}

.deco-star-full:before {
    content: "\e9d9";
}

.addToWishlist:before, .deco-heart:before, .prodDetailCt .detailCt .actionsCt .btnWishlist:before, .siteHeader .topBar .wishlist:after {
    content: "\e9da";
}

.cart tbody tr td.delete-product .removecarttrigger:before, .cart tfoot tr td.delete-product .removecarttrigger:before, .cart thead tr td.delete-product .removecarttrigger:before, .deco-cross:before, .filterSide .closeFilter:after {
    content: "\ea0f";
}

.deco-checkmark:before, .fancybox-slide > div.resultCt.success:before, .resultCt.success:before {
    content: "\ea10";
}

.deco-mail:before {
    content: "\ea83";
}

.deco-google-plus:before {
    content: "\ea8b";
}

.deco-facebook:before, .social > li > a:before {
    content: "\ea90";
}

.deco-instagram:before, .social > li > a.ins:before {
    content: "\ea92";
}

.deco-whatsapp:before, .social > li > a.wa:before {
    content: "\ea93";
}

.deco-twitter:before, .social > li > a.tw:before {
    content: "\ea96";
}

.deco-pencil:before {
    content: "\e90e";
}

.deco-folder-open:before, .selectListCt .listslist.quickAdd li a:before {
    content: "\e930";
}

.deco-price-tag:before, .inspItem .tags .tag:before {
    content: "\e935";
}

.deco-pushpin:before {
    content: "\e946";
}

.deco-clock:before {
    content: "\e94e";
}

.deco-zoom-in:before {
    content: "\e987";
}

.deco-bin:before, .favoriteLists li .deleteWishlist:before {
    content: "\e9ac";
}

.deco-warning:before, .fancybox-slide > div.resultCt.error:before, .resultCt.error:before {
    content: "\ea07";
}

.deco-plus2:before, .tabsCt .tab .tabTitle:after {
    content: "\ea0a";
}

.deco-info:before {
    content: "\ea0c";
}

.deco-cancel-circle:before {
    content: "\ea0d";
}

.deco-checkmark2:before {
    content: "\ea11";
}

.deco-filter:before, .filterBar .moreFilterBtn:after {
    content: "\ea5b";
}

.deco-pinterest:before, .social > li > a.pin:before {
    content: "\ead1";
}

.breadCrumb ol li a:after, .deco-arrowR:before, .prodDetailCt.quickView .goProdDetail:after {
    content: "\e903";
}

.deco-arrowL:before {
    content: "\e904";
}


/* From HomePage Start */
/* New Occassion Mobile */
strong.hashTagOcc {
    display: block;
    font-size: 18px;
    margin-bottom: 13px;
}

.newMobileOccassion {
    text-align: center;
    color: #000;
    margin-top: 20px;
}

span.descOcc {
    display: block;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
}

ul.occIcoList li a {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 1px dotted #000;
    border-radius: 50%;
    text-decoration: none;
}

ul.occIcoList {
    padding: 0;
    list-style: none;
    display: table;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: auto;
}


    ul.occIcoList li {
        display: inline-block;
        width: 33.333%;
    }

.newMobileOccassion .btnCt .btn {
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    border-bottom: 1px solid #676767;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.newTitle {
    color: #000;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 25px;
}

    .newTitle span {
        border-bottom: 1px solid #676767;
        font-weight: 400;
    }

ul.occIcoList li a:before {
    font-family: 'dceyV2';
    font-size: 30px;
    line-height: 70px;
    text-align: center;
}

ul.occIcoList li a.glass:before {
    content: "\e90b";
}

ul.occIcoList li a.pasta:before {
    content: "\e90a";
}

ul.occIcoList li a.baloon:before {
    content: "\e909";
}

ul.occIcoList li a.gift:before {
    content: "\e908";
}

ul.occIcoList li a span {
    position: absolute;
    left: 0;
    bottom: -40px;
    text-align: center;
    right: 0;
    display: none;
    font-family: 'core_sans_g55_medium';
    font-size: 18px;
}

@media (min-width:768px) {
    .newMobileOccassion {
        margin-top: 67px;
    }

    strong.hashTagOcc {
        font-size: 24px;
    }

    span.descOcc {
        font-size: 30px;
        margin-bottom: 28px;
    }

    ul.occIcoList li a span {
        display: block;
    }

    ul.occIcoList li a {
        width: 158px;
        height: 158px;
        border: 1px dashed #000;
        position: relative;
        color: #000;
        margin-bottom: 40px;
    }

        ul.occIcoList li a:before {
            font-size: 70px;
            line-height: 158px;
        }

        ul.occIcoList li a.dinner:before {
            font-family: 'dcey' !important;
            content: "\e90a";
        }

    ul.occIcoList {
        max-width: 874px;
        margin: auto;
    }

    .newMobileOccassion .btnCt .btn {
        font-size: 18px;
        font-family: 'core_sans_g55_medium';
        margin-top: 30px;
    }
}



/* From HomePage End */
header.mobile-menu div.mobile-menu > ul, header.mobile-menu ul.mobile-menu {
    box-shadow: none;
}

#reb-header-wrapper, .nav-menu, .videoHome {
    max-width: 100%;
}
/*.container {
    max-width: 100%;
}*/

.altarSlider {
    overflow: visible;
}

    .altarSlider ul li {
        overflow: hidden;
        max-height: 100%;
    }

#instagramContainer > .row {
    margin-left: 0;
    margin-right: 0;
}

#instagramContainer .socialfeed .listitem {
    margin: 0;
    padding: 1px;
}

    #instagramContainer .socialfeed .listitem a {
        position: relative;
        padding-top: 100%;
        display: block;
        overflow: hidden;
    }

    #instagramContainer .socialfeed .listitem .listimage {
        width: 100%;
        border: 0px solid #CCCCCC;
        padding: 0;
        position: absolute;
        top: 0;
    }

#instagramContainer .show-more-instagram {
    margin-left: auto;
    margin-right: auto;
    width: 150px !important;
    display: block;
    color: #fff !important;
    background-color: #333 !important;
    border: none;
    font-size: 11px;
    letter-spacing: .6px;
}

footer.site-footer.inverted {
    background: #f3f3f6;
    border-top: 1px solid #ccc;
}

    footer.site-footer.inverted .footer-widgets .sidebar > h3 {
        font-family: "core_sans_g85_heavy";
        font-size: 18px;
        letter-spacing: .4px;
    }

    footer.site-footer.inverted .footer-widgets .sidebar ul li a {
        color: #000;
        font-size: 14px;
        font-weight: bold;
    }

    footer.site-footer.inverted .footer-widgets .sidebar > h3 {
        color: #000;
    }
    /*footer.site-footer.inverted .social-networks li a {
    background: #eee;
}*/
    footer.site-footer.inverted .footer-widgets .sidebar ul li a:hover {
        color: #7c7c7d;
    }

    footer.site-footer.inverted .footer-bottom {
        border-color: #ccc;
    }


.altarSlider .slideCt {
    margin-left: -15px;
    margin-right: -15px;
}

ul.occIcoList li a {
    width: 60px;
    height: 60px;
}

    ul.occIcoList li a:before {
        line-height: 60px;
    }

    ul.occIcoList li a span {
        bottom: -34px;
        font-family: "core_sans_g85_heavy";
        font-size: 14px;
        letter-spacing: 1.3px;
        white-space: nowrap;
    }

    ul.occIcoList li a.dinner:before {
        font-family: 'dcey' !important;
        content: "\e90a";
    }

.newMobileOccassion .btnCt .btn {
    font-size: 14px;
    font-family: 'core_sans_g55_medium';
    margin-top: 20px;
}

span.descOcc {
    display: block;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
    font-family: 'core_sans_g25_extralight';
}

strong.hashTagOcc {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 700 !important;
    letter-spacing: 2.6px;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

.titleStyleNew {
    text-align: center;
    font-family: "core_sans_g85_heavy";
    color: #0a0a0a;
    font-size: 25px;
    margin-bottom: 25px;
    position: relative;
    margin-top: 20px;
    /*font-family: 'Playfair Display', serif;*/
    font-weight: 400;
    letter-spacing: .6px;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

    .titleStyleNew:before {
        content: "";
        height: 2px;
        background: #f0f0f0;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -1px;
        left: 10%;
        right: 10%;
        z-index: -1;
    }

    .titleStyleNew u {
        background: #fff;
        padding: 0 15px;
        text-decoration: none;
    }

    .titleStyleNew span {
        font-weight: 900;
        display: inline-block;
        position: relative;
    }

.addLater {
    display: block !important;
}

.removeLater {
    display: none !important;
}

.socialfeed .instagramheader .follow-in-instagram.addLater {
    display: inline-block !important;
}

.miniTip {
    font-size: 75%;
    padding: 5px 10px 3px 10px;
    letter-spacing: .4px;
}

    .miniTip > img {
        width: 22px !important;
        height: 22px !important;
    }

    .miniTip > strong {
        font-size: 12px !important;
    }

.showDetailBtn, .hideDetailBtn {
    font-size: 12px !important;
}

.altarSlider .ctrl {
    font-size: 30px;
    line-height: 30px;
}

    .altarSlider .ctrl:before {
        margin-top: -15px;
    }

footer.site-footer.inverted .footer-widgets .sidebar > h3 {
    letter-spacing: .2px;
}

.zebraCt a.bnr strong, ul.occIcoList li a span, footer.site-footer.inverted .footer-widgets .sidebar > h3 {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

.zebraCt a.bnr:before {
    content: "";
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    background: #000;
    position: absolute;
    opacity: 0.23;
    z-index: 1;
}

.zebraCt a.bnr {
    position: relative;
    text-align: center;
}

    .zebraCt a.bnr:after {
        content: "";
        left: 35px;
        right: 35px;
        top: 20px;
        bottom: 20px;
        position: absolute;
        border: 1px solid #fff;
        opacity: 0.28;
        z-index: 2;
    }

    .zebraCt a.bnr span {
        position: absolute;
        bottom: 40px;
        left: 50%;
        display: inline-block;
        border: 1px solid;
        color: #fff;
        padding: 7px;
        width: 100%;
        max-width: 150px;
        transform: translateX(-50%);
        z-index: 3;
        letter-spacing: .6px;
        font-family: "core_sans_g55_medium";
    }

    .zebraCt a.bnr strong {
        position: relative;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        padding: 4px;
        text-align: center;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        z-index: 4;
        font-family: "core_sans_g85_heavy";
        letter-spacing: .3px;
        text-shadow: 0 0 6px #555;
        left: 15px;
        right: 15px;
        /* max-width: 300px; */
    }

.altarSlider .ctrl.next:before {
    right: 30px;
}

.altarSlider .ctrl.prev:before {
    left: 30px;
}

footer.site-footer.inverted .expand-footer {
    background: none;
    text-indent: 0;
    line-height: 38px;
}

.customerPhotosThumb {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

    .customerPhotosThumb img {
        width: 100%;
        max-width: 100%;
    }

    .customerPhotosThumb span {
        font-size: 11px;
        margin-top: 10px;
        display: block;
        letter-spacing: .7px;
    }

        .customerPhotosThumb span em {
            font-style: normal;
        }

.sizeChartBtn {
    display: block;
    padding: 10px 0;
    text-align: right;
    font-weight: 700;
    font-size: 12px;
    text-decoration: underline;
}

    .sizeChartBtn.single {
        padding-top: 18px;
        text-align: left;
        line-height: 44px;
    }
/* MOBILE START ====================================================================================================================================================================
====================================================================================================================================================================================
====================================================================================================================================================================================
====================================================================================================================================================================================
====================================================================================================================================================================================
====================================================================================================================================================================================
====================================================================================================================================================================================
====================================================================================================================================================================================
*/
@media (min-width: 768px) {
    strong.hashTagOcc {
        font-size: 25px;
    }

    .newHeaderDesktop {
        display: block !important;
    }

    header.site-header {
        box-shadow: none;
        -webkit-box-shadow: none;
    }

    #nav {
        margin-left: 0;
        padding-left: 0;
        float: none;
        clear: none;
        text-align: left;
        height: 51px;
        background: url(/images/header_bottom_bg.png);
    }

        #nav > li.nav-group {
            float: none;
            display: inline-block;
        }

    .nav-group h2 .nav-item-label {
        height: 51px;
        line-height: 51px;
        display: block;
        color: #000;
        font-size: 15px;
        font-weight: bold;
        padding: 0 20px;
        -webkit-transition: .2s linear;
        -moz-transition: .2s linear;
        -o-transition: .2s linear;
        transition: .2s linear;
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent
    }

    #user-menu {
        clear: none;
        float: right;
        margin: 0;
        list-style: none;
        line-height: 30px;
        font-family: 'core_sans_g55_medium';
        padding-left: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #user-menu2 {
        clear: none;
        float: right;
        margin: 0;
        list-style: none;
        line-height: 30px;
        font-family: 'core_sans_g55_medium';
        padding-left: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #nav-logo {
        float: none;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

        #nav-logo .nav-logo-inner {
            margin-left: 0;
            /*width: 200px;
    height: 84px;*/
            /*margin-top: 20px;
    margin-bottom: 25px;*/
            background-size: 100%;
        }

    ul#user-customer {
        float: left;
        clear: none;
        margin: 0;
        list-style: none;
        line-height: 30px;
        font-family: 'core_sans_g45_regular';
        padding-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: .5px;
    }

    .user-menu-item.with-menu .user-menu-item-title:before {
        font-size: 10px;
    }

    .user-menu-item {
        color: #444;
    }

    span.user-menu-item-title-label.dcey-ico-search, .user-menu-item-title-label.dcey-ico-heart, header.site-header .cart-counter {
        font-size: 16px;
    }

    .newLogin {
        float: none;
        margin-top: 0;
        color: #000;
    }

        .newLogin i {
            font-size: 18px;
            margin-right: 0;
            top: 1px;
        }

    #searchBar {
        top: 0;
        position: absolute;
        bottom: 0;
        top: auto;
        background: rgba(38, 36, 36, 0.31);
        left: 10px;
        bottom: 10px;
        right: 10px;
        width: auto;
        padding: 10px 0;
        border-radius: 4px;
    }

        #searchBar #rentCity, #searchBar #rentDate, #searchBar #sizeSelector {
            padding: 4px 8px 4px;
            height: 30px;
            font-size: 11px;
            background-color: rgba(0,0,0,.44);
        }

        #searchBar ::-webkit-input-placeholder {
            font-size: 11px;
        }

        #searchBar :-moz-placeholder { /* Firefox 18- */
            font-size: 11px;
        }

        #searchBar ::-moz-placeholder { /* Firefox 19+ */
            font-size: 11px;
        }

        #searchBar :-ms-input-placeholder {
            font-size: 11px;
        }

        #searchBar #rentDate {
            background-size: 15px;
        }

    #searchBtn button {
        height: 30px;
        font-size: 13px;
        font-family: "core_sans_g55_medium";
        letter-spacing: .4px;
    }

    .altarSlider .slideCt {
        margin-left: 0;
        margin-right: 0;
    }

    ul.occIcoList {
        max-width: 700px;
    }

        ul.occIcoList li {
            display: table-cell;
            width: auto;
        }

            ul.occIcoList li a {
                width: 108px;
                height: 108px;
                margin-bottom: 30px;
            }

                ul.occIcoList li a:before {
                    font-size: 38px;
                    line-height: 108px;
                }

    .newMobileOccassion .btnCt .btn {
        font-size: 14px;
        font-family: 'core_sans_g55_medium';
        margin-top: 20px;
    }
}
/* media 768 end */
