/* Minification failed. Returning unminified contents.
(755,31): run-time error CSS1046: Expect comma, found '250'
(755,39): run-time error CSS1046: Expect comma, found '/'
 */
.container.cd-container {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}

.cd-main-content {
    position: relative;
    min-height: 610px;
}

    /* Let's get this party started */
    .cd-main-content ::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }

    /* Track */
    .cd-main-content ::-webkit-scrollbar-track {
        /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
        -webkit-border-radius: 0px;
        border-radius: 0px;
    }

    /* Handle */
    .cd-main-content ::-webkit-scrollbar-thumb {
        -webkit-border-radius: 0px;
        border-radius: 0px;
        background: #EEEEEE;
        /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);*/
    }

        .cd-main-content ::-webkit-scrollbar-thumb:window-inactive {
            background: #EEEEEE;
        }

    .cd-main-content:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-main-content.is-fixed .cd-tab-filter-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .cd-main-content.is-fixed .cd-gallery {
        padding-top: 76px;
    }

    .cd-main-content.is-fixed .cd-filter {
        /*position: fixed;
                height: 100vh;
                overflow: hidden;*/
    }

        .cd-main-content.is-fixed .cd-filter form {
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }

    .cd-main-content.is-fixed .cd-filter-trigger {
        position: fixed;
    }

/*@media only screen and (min-width: 768px) {
    .cd-main-content.is-fixed .cd-gallery {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-main-content.is-fixed .cd-gallery {
        padding-top: 100px;
    }
}*/

/* -------------------------------- 

xtab-filter 

-------------------------------- */
.cd-tab-filter-wrapper {
    background-color: #ffffff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

    .cd-tab-filter-wrapper:after {
        content: "";
        display: table;
        clear: both;
    }

.cd-tab-filter {
    /* tabbed navigation style on mobile - dropdown */
    position: relative;
    height: 50px;
    width: 200px;
    margin: 0 auto;
    z-index: 1;
}

    .cd-tab-filter::after {
        /* small arrow icon */
        content: '';
        position: absolute;
        right: 14px;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        display: inline-block;
        width: 16px;
        height: 16px;
        background: url("../img/cd-icon-arrow.svg") no-repeat center center;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        pointer-events: none;
    }

    .cd-tab-filter ul {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #ffffff;
        box-shadow: inset 0 -2px 0 #757575;
        padding: 0;
    }

    .cd-tab-filter li {
        display: none;
    }

        .cd-tab-filter li:first-child {
            /* this way the placehodler is alway visible */
            display: block;
        }

    .cd-tab-filter a {
        display: block;
        width: 200px;
        height: 36px;
        line-height: 36px;
        padding-left: 14px;
        color: inherit;
        font-size: 14px;
    }

    .cd-tab-filter li.placeholder a {
        height: 50px;
        line-height: 50px;
    }

    .cd-tab-filter a.selected, .cd-tab-filter a:hover {
        background: #757575;
        color: #ffffff;
    }

    .cd-tab-filter a:hover {
        opacity: .4;
    }

    .cd-tab-filter.is-open::after {
        /* small arrow rotation */
        -webkit-transform: translateY(-50%) rotate(-180deg);
        -moz-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
        -o-transform: translateY(-50%) rotate(-180deg);
        transform: translateY(-50%) rotate(-180deg);
    }

    .cd-tab-filter.is-open ul {
        box-shadow: inset 0 -2px 0 #757575, 0 2px 10px rgba(0, 0, 0, 0.2);
    }

        .cd-tab-filter.is-open ul li {
            display: block;
        }

    .cd-tab-filter.is-open .placeholder a {
        /* reduces the opacity of the placeholder on mobile when the menu is open */
        opacity: .4;
    }

@media only screen and (min-width: 768px) {
    .cd-tab-filter {
        /* tabbed navigation style on medium devices */
        width: auto;
        cursor: auto;
    }

        .cd-tab-filter::after {
            /* hide the arrow */
            display: none;
        }

        .cd-tab-filter ul {
            background: transparent;
            position: static;
            box-shadow: none;
            text-align: center;
        }

        .cd-tab-filter li {
            display: inline-block;
        }

            .cd-tab-filter li.placeholder {
                display: none !important;
            }

        .cd-tab-filter a {
            display: inline-block;
            padding: 0 1em;
            width: auto;
            color: #9a9a9a;
            text-transform: uppercase;
            font-weight: 500;
            height: 50px;
            line-height: 50px;
        }

    .no-touch .cd-tab-filter a:hover {
        color: #757575;
    }

    .cd-tab-filter a.selected {
        background: transparent;
        color: #757575;
        /* create border bottom using box-shadow property */
        box-shadow: inset 0 -2px 0 #757575;
    }

    .cd-tab-filter.is-open ul li {
        display: inline-block;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-tab-filter {
        /* tabbed navigation on big devices */
        width: 100%;
        float: right;
        margin: 0;
        -webkit-transition: width 0.3s;
        -moz-transition: width 0.3s;
        transition: width 0.3s;
    }

        .cd-tab-filter.filter-is-visible {
            /* reduce width when filter is visible */
            width: calc(100% - 280px);
        }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
.cd-gallery {
    padding: 30px 0;
    width: 100%;
}

    .cd-gallery ul {
        list-style: none;
        padding: 0;
        margin: 0 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cd-gallery li {
        flex-basis: calc(100% - 30px);
        margin: 15px;
    }

@media only screen and (min-width: 576px) {
    .cd-gallery li {
        flex-basis: calc(50% - 30px);
    }
}

@media only screen and (min-width: 992px) {
    .cd-gallery li {
        flex-basis: calc(33.33333% - 30px);
    }
}

@media only screen and (min-width: 1170px) {
    .cd-gallery.filter-is-visible {
        /* reduce width when filter is visible */
        width: calc(100% - 280px);
        float: right;
    }

    .cd-gallery li {
        flex-basis: calc(25% - 30px);
    }

    .cd-gallery.filter-is-visible li {
        flex-basis: calc(33.33333% - 30px);
    }
}

@media only screen and (min-width: 1600px) {
    .cd-gallery li {
        flex-basis: calc(20% - 30px);
    }

    .cd-gallery.filter-is-visible li {
        flex-basis: calc(25% - 30px);
    }
}

.cd-gallery .cd-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

    .cd-gallery .cd-pagination a {
        min-width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        border: solid 1px #e6e6e6;
        border-radius: 4px;
        color: #7c859b;
        margin: 5px;
    }

        .cd-gallery .cd-pagination a.current {
            background-color: #c8c8c8;
            color: #fff;
        }
/* -------------------------------- 

xfilter 

-------------------------------- */
.cd-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #ffffff;
    box-shadow: 4px 4px 20px transparent;
    z-index: 2;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
    -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .cd-filter::before {
        /* top colored bar */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 50px;
        width: 100%;
        background-color: #757575;
        z-index: 2;
    }

    .cd-filter form {
        position: absolute;
        bottom: 0;
        padding: 15px 20px 0;
        width: 100%;
        height: calc(100% - 50px);
        overflow: auto;
    }

    .cd-filter .cd-close {
        position: absolute;
        top: 0;
        right: 0;
        height: 50px;
        line-height: 50px;
        width: 60px;
        color: #ffffff;
        font-size: 14px;
        text-align: center;
        background: #616161;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s;
        z-index: 3;
    }

.no-touch .cd-filter .cd-close:hover {
    background: #32255f;
}

.cd-filter.filter-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

    .cd-filter.filter-is-visible .cd-close {
        opacity: 1;
    }

.cd-filter-trigger {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    line-height: 50px;
    width: 60px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    background: transparent url("../img/cd-icon-filter.svg") no-repeat center center;
    z-index: 3;
}

    .cd-filter-trigger.filter-is-visible {
        pointer-events: none;
    }

@media only screen and (min-width: 1170px) {
    .cd-filter-trigger {
        width: auto;
        left: 2%;
        text-indent: 0;
        color: #9a9a9a;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 500;
        padding-left: 24px;
        background-position: left center;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        transition: color 0.3s;
    }

    .no-touch .cd-filter-trigger:hover {
        color: #757575;
    }

    .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
        color: #ffffff;
    }
}

/* -------------------------------- 

xcustom form elements 

-------------------------------- */
.cd-filter-block {
    margin-bottom: 20px;
}

    .cd-filter-block h4 {
        /* filter block title */
        position: relative;
        margin-bottom: .2em;
        padding: 10px 0 10px 20px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
    }

.no-touch .cd-filter-block h4:hover {
    color: #757575;
}

.cd-filter-block h4::before {
    /* arrow */
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url("../img/cd-icon-arrow.svg") no-repeat center center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.cd-filter-block h4.closed::before {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.cd-filter-block input, .cd-filter-block select,
.cd-filter-block .radio-label::before,
.cd-filter-block .checkbox-label::before {
    /* shared style for input elements */
    border-radius: 0;
    background-color: #ffffff;
    border: 2px solid #e6e6e6;
}

    .cd-filter-block input[type='search'],
    .cd-filter-block input[type='text'],
    .cd-filter-block select {
        width: 100%;
        padding: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        box-shadow: none;
    }

        .cd-filter-block input[type='search']:focus,
        .cd-filter-block input[type='text']:focus,
        .cd-filter-block select:focus {
            outline: none;
            background-color: #ffffff;
            border-color: #757575;
        }

    .cd-filter-block input[type='search'] {
        /* custom style for the search element */
        border-color: transparent;
        background-color: #e6e6e6;
        /* prevent jump - ios devices */
        font-size: 16px !important;
    }

        .cd-filter-block input[type='search']::-webkit-search-cancel-button {
            /*display: none;*/
        }

.cd-search {
    display: flex;
    border: 2px solid #e6e6e6;
    background-color: #F5F5F5;
}

    .cd-search input[type='search'] {
        flex: 1;
        border: none;
        background-color: transparent;
        padding-right: 0;
    }

        .cd-search input[type='search']:focus {
            background-color: transparent;
        }

    .cd-search button {
        border: none;
        outline: none;
        width: 40px;
        background-color: transparent;
    }

        .cd-search button i {
            color: #bbb;
        }

    .cd-search:hover {
        border-color: #757575;
    }

.cd-filter-block .cd-select {
    /* select element wrapper */
    position: relative;
}

    .cd-filter-block .cd-select::after {
        /* switcher arrow for select element */
        content: '';
        position: absolute;
        z-index: 1;
        right: 14px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
        width: 16px;
        height: 16px;
        background: url("../img/cd-icon-arrow.svg") no-repeat center center;
        pointer-events: none;
    }

.cd-filter-block select {
    cursor: pointer;
    font-size: 16px;
}

    .cd-filter-block select::-ms-expand {
        display: none;
    }

.cd-filter-block .list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .cd-filter-block .list li {
        position: relative;
        margin-bottom: .8em;
        display: flex;
        align-items: center;
    }

        .cd-filter-block .list li:last-of-type {
            margin-bottom: 0;
        }

.cd-filter-block input[type=radio],
.cd-filter-block input[type=checkbox] {
    /* hide original check and radio buttons */
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 2;
}

.cd-filter-block .checkbox-label,
.cd-filter-block .radio-label {
    padding-left: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0;
    display: inline;
}

    .cd-filter-block .checkbox-label::before, .cd-filter-block .checkbox-label::after,
    .cd-filter-block .radio-label::before,
    .cd-filter-block .radio-label::after {
        /* custom radio and check boxes */
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .cd-filter-block .checkbox-label::before,
    .cd-filter-block .radio-label::before {
        width: 16px;
        height: 16px;
        left: 0;
    }

    .cd-filter-block .checkbox-label::after,
    .cd-filter-block .radio-label::after {
        /* check mark - hidden */
        display: none;
    }

    .cd-filter-block .checkbox-label::after {
        /* check mark style for check boxes */
        width: 16px;
        height: 16px;
        background: url("../img/cd-icon-check.svg") no-repeat center center;
    }

    .cd-filter-block .radio-label::before,
    .cd-filter-block .radio-label::after {
        border-radius: 50%;
    }

    .cd-filter-block .radio-label::after {
        /* check mark style for radio buttons */
        width: 6px;
        height: 6px;
        background-color: #ffffff;
        left: 5px;
    }

.cd-filter-block input[type=radio]:checked + label::before,
.cd-filter-block input[type=checkbox]:checked + label::before {
    border-color: #757575;
    background-color: #757575;
}

.cd-filter-block input[type=radio]:checked + label::after,
.cd-filter-block input[type=checkbox]:checked + label::after {
    display: block;
}

@-moz-document url-prefix() {
    /* hide custom arrow on Firefox - select element */
    .cd-filter-block .cd-select::after {
        display: none;
    }
}

.cd-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(250 250 250 / 28%);
    z-index: 3;
    display: none;
    padding-top: 100px;
}

    .cd-loading.show {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

.cd-loading-icon {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #FF6F00;
    border-radius: 50%;
    border-top-color: #FFC107;
    animation: cd-spin 1s ease-in-out infinite;
    -webkit-animation: cd-spin 1s ease-in-out infinite;
}

.cd-loading-label {
    color: #333;
}

@keyframes cd-spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes cd-spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* -------------------------------- 

xcard

-------------------------------- */
.cd-card {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    height: 100%;
}

    .cd-card .cd-card-img {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 235px;
        border-radius: 10px;
    }

    .cd-card .cd-card-details {
        position: relative;
        top: -36px;
        width: 96%;
        height: calc(100% - 235px);
        padding: 10px 10px 55px;
        margin: 0 auto;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px 0 rgba(3, 6, 31, 0.15);
    }

        .cd-card .cd-card-details h3 {
            font-size: 20px;
            color: #333;
        }

        .cd-card .cd-card-details p {
            margin-bottom: 10px;
        }

        .cd-card .cd-card-details .cd-price {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

            .cd-card .cd-card-details .cd-price .cd-star {
                white-space: nowrap;
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: start;
            }

                .cd-card .cd-card-details .cd-price .cd-star i {
                    font-size: 13px;
                    color: #fc0;
                }

            .cd-card .cd-card-details .cd-price .cd-price-right {
                white-space: nowrap;
                flex: 1;
                text-align: right;
            }

                .cd-card .cd-card-details .cd-price .cd-price-right .cd-price-label {
                    font-weight: 600;
                    color: #E53935;
                }

                .cd-card .cd-card-details .cd-price .cd-price-right .cd-measure-label {
                }

        .cd-card .cd-card-details a {
            padding: 10px;
            border-radius: 5px;
            color: #fff;
            text-align: center;
            position: absolute;
            bottom: 10px;
            right: 10px;
            left: 10px;
            background-color: #2196F3;
            background-size: 300% 300%;
            background-image: linear-gradient(to right, #2196F3 0%, #80DEEA 50%, #2196F3 100%);
            transition: 0.5s;
        }

            .cd-card .cd-card-details a:hover {
                background-position: right center;
            }

    .cd-card .cd-card-meta {
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        padding: 10px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .cd-card .cd-card-meta span {
            flex: 1;
            text-align: center;
        }

