/**
 * Flexbox toolkit
 */
:root {
    --gis-gutter-width: 1rem;
    --gis-outer-margin: 2rem;
    --gis-gutter-compensation: calc((var(--gis-gutter-width) * 0.5) * -1);
    --gis-half-gutter-width: calc((var(--gis-gutter-width) * 0.5));
    --gis-xs-min: 30;
    --gis-sm-min: 48;
    --gis-md-min: 64;
    --gis-lg-min: 75;
    --gis-screen-xs-min: var(--gis-xs-min)em;
    --gis-screen-sm-min: var(--gis-sm-min)em;
    --gis-screen-md-min: var(--gis-md-min)em;
    --gis-screen-lg-min: var(--gis-lg-min)em;
    --gis-container-sm: calc(var(--gis-sm-min) + var(--gis-gutter-width));
    --gis-container-md: calc(var(--gis-md-min) + var(--gis-gutter-width));
    --gis-container-lg: calc(var(--gis-lg-min) + var(--gis-gutter-width));
}


.gis-container-fluid, .gis-container {
    margin-right: auto;
    margin-left: auto;
}

.gis-container-fluid {
    padding-right: var(--gis-outer-margin, 2rem);
    padding-left: var(--gis-outer-margin, 2rem);
}

.gis-row {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: var(--gis-gutter-compensation, -0.5rem);
    margin-left: var(--gis-gutter-compensation, -0.5rem);
}

.gis-row.gis-reverse {
    flex-direction: row-reverse;
}

.gis-col.gis-reverse {
    flex-direction: column-reverse;
}

.gis-col-xs,
.gis-col-xs-1,
.gis-col-xs-2,
.gis-col-xs-3,
.gis-col-xs-4,
.gis-col-xs-5,
.gis-col-xs-6,
.gis-col-xs-7,
.gis-col-xs-8,
.gis-col-xs-9,
.gis-col-xs-10,
.gis-col-xs-11,
.gis-col-xs-12,
.gis-col-xs-offset-0,
.gis-col-xs-offset-1,
.gis-col-xs-offset-2,
.gis-col-xs-offset-3,
.gis-col-xs-offset-4,
.gis-col-xs-offset-5,
.gis-col-xs-offset-6,
.gis-col-xs-offset-7,
.gis-col-xs-offset-8,
.gis-col-xs-offset-9,
.gis-col-xs-offset-10,
.gis-col-xs-offset-11,
.gis-col-xs-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--gis-gutter-width, 0.5rem);
    padding-left: var(--gis-gutter-width, 0.5rem);
}

.gis-col-xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
}

.gis-col-xs-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
}

.gis-col-xs-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.gis-col-xs-3 {
    flex-basis: 25%;
    max-width: 25%;
}

.gis-col-xs-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.gis-col-xs-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
}

.gis-col-xs-6 {
    flex-basis: 50%;
    max-width: 50%;
}

.gis-col-xs-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
}

.gis-col-xs-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
}

.gis-col-xs-9 {
    flex-basis: 75%;
    max-width: 75%;
}

.gis-col-xs-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
}

.gis-col-xs-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
}

.gis-col-xs-12 {
    flex-basis: 100%;
    max-width: 100%;
}

.gis-col-xs-offset-0 {
    margin-left: 0;
}

.gis-col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.gis-col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.gis-col-xs-offset-3 {
    margin-left: 25%;
}

.gis-col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.gis-col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.gis-col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.gis-col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.gis-col-xs-offset-9 {
    margin-left: 75%;
}

.gis-col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.gis-col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.gis-start-xs {
    justify-content: flex-start;
    text-align: start;
}

.gis-center-xs {
    justify-content: center;
    text-align: center;
}

.gis-end-xs {
    justify-content: flex-end;
    text-align: end;
}

.gis-top-xs {
    align-items: flex-start;
}

.gis-middle-xs {
    align-items: center;
}

.gis-bottom-xs {
    align-items: flex-end;
}

.gis-around-xs {
    justify-content: space-around;
}

.gis-between-xs {
    justify-content: space-between;
}

.gis-first-xs {
    order: -1;
}

.gis-last-xs {
    order: 1;
}

@media (min-width: 48em) {
    .gis-container {
        width: var(--gis-container-sm, 46rem);
    }

    .gis-col-sm,
    .gis-col-sm-1,
    .gis-col-sm-2,
    .gis-col-sm-3,
    .gis-col-sm-4,
    .gis-col-sm-5,
    .gis-col-sm-6,
    .gis-col-sm-7,
    .gis-col-sm-8,
    .gis-col-sm-9,
    .gis-col-sm-10,
    .gis-col-sm-11,
    .gis-col-sm-12,
    .gis-col-sm-offset-0,
    .gis-col-sm-offset-1,
    .gis-col-sm-offset-2,
    .gis-col-sm-offset-3,
    .gis-col-sm-offset-4,
    .gis-col-sm-offset-5,
    .gis-col-sm-offset-6,
    .gis-col-sm-offset-7,
    .gis-col-sm-offset-8,
    .gis-col-sm-offset-9,
    .gis-col-sm-offset-10,
    .gis-col-sm-offset-11,
    .gis-col-sm-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: var(--gis-gutter-width, 0.5rem);
        padding-left: var(--gis-gutter-width, 0.5rem);
    }

    .gis-col-sm {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
    }

    .gis-col-sm-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .gis-col-sm-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .gis-col-sm-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .gis-col-sm-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .gis-col-sm-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .gis-col-sm-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .gis-col-sm-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .gis-col-sm-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .gis-col-sm-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .gis-col-sm-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .gis-col-sm-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .gis-col-sm-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .gis-col-sm-offset-0 {
        margin-left: 0;
    }

    .gis-col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .gis-col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .gis-col-sm-offset-3 {
        margin-left: 25%;
    }

    .gis-col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .gis-col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .gis-col-sm-offset-6 {
        margin-left: 50%;
    }

    .gis-col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .gis-col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .gis-col-sm-offset-9 {
        margin-left: 75%;
    }

    .gis-col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .gis-col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .gis-start-sm {
        justify-content: flex-start;
        text-align: start;
    }

    .gis-center-sm {
        justify-content: center;
        text-align: center;
    }

    .gis-end-sm {
        justify-content: flex-end;
        text-align: end;
    }

    .gis-top-sm {
        align-items: flex-start;
    }

    .gis-middle-sm {
        align-items: center;
    }

    .gis-bottom-sm {
        align-items: flex-end;
    }

    .gis-around-sm {
        justify-content: space-around;
    }

    .gis-between-sm {
        justify-content: space-between;
    }

    .gis-first-sm {
        order: -1;
    }

    .gis-last-sm {
        order: 1;
    }
}

@media (min-width: 64em) {
    .gis-container {
        width: var(--gis-container-md, 61rem);
    }

    .gis-col-md,
    .gis-col-md-1,
    .gis-col-md-2,
    .gis-col-md-3,
    .gis-col-md-4,
    .gis-col-md-5,
    .gis-col-md-6,
    .gis-col-md-7,
    .gis-col-md-8,
    .gis-col-md-9,
    .gis-col-md-10,
    .gis-col-md-11,
    .gis-col-md-12,
    .gis-col-md-offset-0,
    .gis-col-md-offset-1,
    .gis-col-md-offset-2,
    .gis-col-md-offset-3,
    .gis-col-md-offset-4,
    .gis-col-md-offset-5,
    .gis-col-md-offset-6,
    .gis-col-md-offset-7,
    .gis-col-md-offset-8,
    .gis-col-md-offset-9,
    .gis-col-md-offset-10,
    .gis-col-md-offset-11,
    .gis-col-md-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: var(--gis-gutter-width, 0.5rem);
        padding-left: var(--gis-gutter-width, 0.5rem);
    }

    .gis-col-md {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
    }

    .gis-col-md-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .gis-col-md-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .gis-col-md-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .gis-col-md-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .gis-col-md-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .gis-col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .gis-col-md-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .gis-col-md-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .gis-col-md-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .gis-col-md-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .gis-col-md-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .gis-col-md-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .gis-col-md-offset-0 {
        margin-left: 0;
    }

    .gis-col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .gis-col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .gis-col-md-offset-3 {
        margin-left: 25%;
    }

    .gis-col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .gis-col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .gis-col-md-offset-6 {
        margin-left: 50%;
    }

    .gis-col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .gis-col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .gis-col-md-offset-9 {
        margin-left: 75%;
    }

    .gis-col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .gis-col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .gis-start-md {
        justify-content: flex-start;
        text-align: start;
    }

    .gis-center-md {
        justify-content: center;
        text-align: center;
    }

    .gis-end-md {
        justify-content: flex-end;
        text-align: end;
    }

    .gis-top-md {
        align-items: flex-start;
    }

    .gis-middle-md {
        align-items: center;
    }

    .gis-bottom-md {
        align-items: flex-end;
    }

    .gis-around-md {
        justify-content: space-around;
    }

    .gis-between-md {
        justify-content: space-between;
    }

    .gis-first-md {
        order: -1;
    }

    .gis-last-md {
        order: 1;
    }
}

@media (min-width: 75em) {
    .gis-container {
        width: var(--gis-container-lg, 71rem);
    }

    .gis-col-lg,
    .gis-col-lg-1,
    .gis-col-lg-2,
    .gis-col-lg-3,
    .gis-col-lg-4,
    .gis-col-lg-5,
    .gis-col-lg-6,
    .gis-col-lg-7,
    .gis-col-lg-8,
    .gis-col-lg-9,
    .gis-col-lg-10,
    .gis-col-lg-11,
    .gis-col-lg-12,
    .gis-col-lg-offset-0,
    .gis-col-lg-offset-1,
    .gis-col-lg-offset-2,
    .gis-col-lg-offset-3,
    .gis-col-lg-offset-4,
    .gis-col-lg-offset-5,
    .gis-col-lg-offset-6,
    .gis-col-lg-offset-7,
    .gis-col-lg-offset-8,
    .gis-col-lg-offset-9,
    .gis-col-lg-offset-10,
    .gis-col-lg-offset-11,
    .gis-col-lg-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: var(--gis-gutter-width, 0.5rem);
        padding-left: var(--gis-gutter-width, 0.5rem);
    }

    .gis-col-lg {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
    }

    .gis-col-lg-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .gis-col-lg-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .gis-col-lg-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .gis-col-lg-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .gis-col-lg-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .gis-col-lg-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .gis-col-lg-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .gis-col-lg-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .gis-col-lg-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .gis-col-lg-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .gis-col-lg-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .gis-col-lg-offset-0 {
        margin-left: 0;
    }

    .gis-col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .gis-col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .gis-col-lg-offset-3 {
        margin-left: 25%;
    }

    .gis-col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .gis-col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .gis-col-lg-offset-6 {
        margin-left: 50%;
    }

    .gis-col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .gis-col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .gis-col-lg-offset-9 {
        margin-left: 75%;
    }

    .gis-col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .gis-col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .gis-start-lg {
        justify-content: flex-start;
        text-align: start;
    }

    .gis-center-lg {
        justify-content: center;
        text-align: center;
    }

    .gis-end-lg {
        justify-content: flex-end;
        text-align: end;
    }

    .gis-top-lg {
        align-items: flex-start;
    }

    .gis-middle-lg {
        align-items: center;
    }

    .gis-bottom-lg {
        align-items: flex-end;
    }

    .gis-around-lg {
        justify-content: space-around;
    }

    .gis-between-lg {
        justify-content: space-between;
    }

    .gis-first-lg {
        order: -1;
    }

    .gis-last-lg {
        order: 1;
    }
}

/**
 * Styling
 */
body {
    font-family: 'Source Sans Pro';
    font-weight: 400;
    color: #666666;
    font-size: 15px;
    line-height: 20px;
    width: 100%;
    overflow-x: hidden;
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}
.text-base-color {
    color: #666666 !important;
}
.text-black {
    color: #000 !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #000;
    margin: 0;
}
h1, .h1 {
    color: #9d263c;
}
#tab-description h1, #tab-description h2, #tab-description h3 {
    font-size: 18px;
}
#tab-description h1 a, #tab-description h2 a, #tab-description h3 a {
    color: #000;
}
/* default font size */
.fa {
    font-size: 14px;
}
/* Override the bootstrap defaults */
h1, .h1 {
    font-size: 28px;
}
.page-title, #content > h1, .page-title, #content > .h1, #content h2, #content .h2 {
    margin: 0 0 20px 0;
}
.page-title, .page-title h1, .page-title, .page-title .h1 {
    color: #666;
    font-weight: bold;
    font-size: 24px;
}
.page-title a {
    color: #666;
}
.page-title a:hover, .page-title a:focus, .page-title a:active {
    color: #2f829a;
}
.page-title > div {
    position: relative;
    top: 2px;
}
h2, .h2 {
    font-size: 22px;
}
h3, .h3 {
    font-size: 22px;
}
h4, .h4 {
    font-size: 16px;
}
h5, .h5 {
    font-size: 12px;
}
h6, .h6 {
    font-size: 10.2px;
}
a {
    color: #2f829a;
}
.text-primary {
    color: #2f829a !important;
}
a:hover, a:focus, a:active {
    color: #9d263c;
    text-decoration: none;
}
legend {
    font-size: 18px;
    padding: 7px 0px
}
label {
    font-weight: normal;
}
label.text-left {
    text-align: left !important;
}
.input-group .input-group-addon {
    font-size: 12px;
    height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
    display: inline;
}

.nav-tabs {
    margin-bottom: 15px;
}
/*div.required .control-label:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}*/

/**
 * Flexslider
 */
.flex-container a:hover,
.flex-slider a:hover {
    outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
.flex-pauseplay span {
    text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
    margin: 0;
    padding: 0;
}
.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
    width: 100%;
    display: block;
}
.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
html[xmlns] .flexslider .slides {
    display: block;
}
* html .flexslider .slides {
    height: 1%;
}
.no-js .flexslider .slides > li:first-child {
    display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
    margin: 0 0 60px;
    background: #fff;
    border: 4px solid #fff;
    position: relative;
    zoom: 1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
    zoom: 1;
}
.flexslider .slides img {
    height: auto;
    -moz-user-select: none;
}
.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.loading .flex-viewport {
    max-height: 300px;
}
@-moz-document url-prefix() {
    .loading .flex-viewport {
        max-height: none;
    }
}
.carousel li {
    margin-right: 5px;
}
.flex-direction-nav {
    *height: 0;
}
.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
    font-family: "Font Awesome 6 Pro";
    font-size: 40px;
    display: inline-block;
    content: '\f104';
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}
.flex-direction-nav a.flex-next:before {
    content: '\f105';
}
.flex-direction-nav .flex-prev {
    left: -50px;
}
.flex-direction-nav .flex-next {
    right: -50px;
    text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}
.flex-direction-nav .flex-disabled {
    opacity: 0!important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1;
}
.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000;
}
.flex-pauseplay a:before {
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    display: inline-block;
    content: '\f004';
}
.flex-pauseplay a:hover {
    opacity: 1;
}
.flex-pauseplay a.flex-play:before {
    content: '\f003';
}
.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center;
}
.flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    cursor: default;
}
.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden;
}
.flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
}
.flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .7;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.flex-control-thumbs img:hover {
    opacity: 1;
}
.flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px;
    }
    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px;
    }
}

/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #229ac8;
    background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
    background-repeat: repeat-x;
}
/* top */
#top {
    background-color: #EEEEEE;
    border-bottom: 1px solid #e2e2e2;
    padding: 4px 0px 3px 0;
    margin: 0 0 20px 0;
    min-height: 40px;
}
#top .container {
    padding: 0 20px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
    text-align: left;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
    text-shadow: none;
    color: #ffffff;
    background-color: #229ac8;
    background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
    background-repeat: repeat-x;
}
#top .btn-link, #top-links li, #top-links a {
    color: #888;
    text-shadow: 0 1px 0 #FFF;
    text-decoration: none;
}
#top .btn-link:hover, #top-links a:hover {
    color: #444;
}
#top-links .dropdown-menu a {
    text-shadow: none;
}
#top-links .dropdown-menu a:hover {
    color: #FFF;
}
#top .btn-link strong {
    font-size: 14px;
    line-height: 14px;
}
#top-links {
    padding-top: 6px;
}
#top-links a + a {
    margin-left: 15px;
}
/* logo */
#logo {
    margin: 10px 0;
}
@media (max-width: 991px) {
    #logo {
        margin: 10px 0 0 0;
    }
    #logo img {
        margin: 17px auto 0 auto;
    }
}
@media (max-width: 438px) {
    #logo img {
        max-width: 80%;
    }
}
#logo a > img {
    max-height: 50px !important;
}
/* icon menu */
#icon-menu {
    margin-top: 22px;
    float: right;
}
@media (max-width: 767px) {
    #icon-menu {
        float: none;
        display: flex;
        justify-content: center;
    }
}
#icon-menu a {
    text-align: center;
    font-size: 10px
}
#icon-menu i {
    display: block;
    font-size: 28px;
    margin: 0 auto;
}
/* search */
#search {
    margin-top: 15px;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    #search {
        float: none;
        margin: 15px auto;
    }
}
#search .input-lg {
    height: 40px;
    line-height: 20px;
    padding: 0 10px;
}
#search .btn-lg {
    font-size: 15px;
    line-height: 18px;
    padding: 10px 35px;
    border: 1px solid #2f829a;
}
@media (max-width: 767px) {
    #search .btn-lg {
        padding: 10px 15px;
    }
}
/* cart */
#cart {
    margin-bottom: 10px;
}
#cart > .btn {
    font-size: 12px;
    line-height: 18px;
    color: #FFF;
}
#cart.open > .btn {
    background-image: none;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    color: #666;
    box-shadow: none;
    text-shadow: none;
}
#cart.open > .btn:hover {
    color: #444;
}
#cart .dropdown-menu {
    background: #eee;
    z-index: 1001;
}
#cart .dropdown-menu {
    min-width: 100%;
}
@media (max-width: 478px) {
    #cart .dropdown-menu {
        width: 100%;
    }
}
#cart .dropdown-menu table {
    margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
    min-width: 427px;
    padding: 0 10px;
}
@media (max-width: 478px) {
    #cart .dropdown-menu li > div {
        min-width: 100%;
    }
}
#cart .dropdown-menu li p {
    margin: 20px 0;
}
/* menu */
#menu {
    min-height: 40px;
    background: #2f829a;
    border: 0px;
    border-radius: 0;
    margin-bottom: 20px;
}
#menu .navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
}
#menu .nav > li > a {
    color: #fff;
    min-height: 15px;
    background-color: transparent;
    padding: 10px 15px;
    font-size: 18px;
}
@media (max-width: 1199px) {
    #menu {
        min-height: 36px;
    }
    #menu .nav > li > a {
        padding: 8px;
        font-size: 16px;
    }
}
#menu .nav > li > a:hover, #menu .nav > li.open > a {
    background: #215968;
}
#menu .dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
    border: none;
    border-radius: 0px;
    background: #215968;
    width: 220px;
    min-width: 220px;
}
#menu .dropdown-inner {
    display: table;
    width: 220px;
    min-width: 220px;
}
#menu .dropdown-inner ul {
    display: table-cell;
}
#menu .dropdown-inner a {
    display: block;
    padding: 0px 15px;
    clear: both;
    line-height: 30px;
    color: #FFFFFF;
    font-size: 15px;
}
#menu .dropdown-inner li a:hover {
    color: #FFFFFF;
    background: #1b3c46;
}
#menu #category {
    float: left;
    padding-left: 15px;
    font-size: 15px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
    #menu #category {
        font-size: 16px;
    }
}
#menu .btn-navbar {
    font-size: 15px;
    font-stretch: expanded;
    color: #FFF;
    padding: 2px 18px;
    float: right;
    background-color: #229ac8;
    background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
    background-repeat: repeat-x;
    border-color: #1f90bb #1f90bb #145e7a;
}
@media (max-width: 767px) {
    #menu .btn-navbar {
        font-size: 16px;
    }
}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
    color: #ffffff;
    background-color: #229ac8;
}
@media (min-width: 768px) {
    #menu .dropdown:hover .dropdown-menu {
        display: block;
    }
}
@media (max-width: 767px) {
    #menu {
        border-radius: 4px;
    }
    #menu div.dropdown-inner > ul.list-unstyled {
        display: block;
    }
    #menu div.dropdown-menu {
        margin-left: 0 !important;
        padding-bottom: 10px;
        background-color: rgba(0, 0, 0, 0.1);
    }
    #menu .dropdown-inner {
        display: block;
    }
    #menu .dropdown-inner a {
        width: 100%;
        color: #fff;
    }
    #menu .dropdown-menu a {
        font-size: 16px;
        line-height: 34px;
        padding: 0 10px;
        color: #fff;
    }
    .dropdown-menu li > a:hover {
        background: #193d47;
    }
    #menu .see-all {
        margin-top: 0;
        border: none;
        border-radius: 0;
        color: #fff;
    }
}
/* content */
#content {
    min-height: 300px;
}

/* footer */
footer {
    margin-top: 30px;
    padding-top: 30px;
    background-color: #37829a;
    color: #e2e2e2;
    line-height: 24px;
    font-size: 15px;
}
@media (max-width: 767px) {
    footer {
        font-size: 16px;
        padding-bottom: 30px;
    }
}
footer tr td:first-child {
    padding-right: 5px;
}
footer hr {
    border-top: none;
    border-bottom: 1px solid #666;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
}
footer ul, footer table {
    margin-bottom: 20px;
}
footer li {
    margin-bottom: 5px;
}
footer h5, footer .h5 {
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
footer .lead a {
    padding-right: 8px;
}
#copyright {
    text-align: center;
    background: #f4f4f4;
    padding: 10px 0px;
}
/* alert */
.alert {
    padding: 8px 14px 8px 14px;
}
/* breadcrumb */
.breadcrumb {
    margin: 0 0 20px 0;
    background: none;
    border: none;
    padding: 0;
    height: 20px;
}
.breadcrumb i {
    font-size: 15px;
}
@media (max-width: 767px) {
    .breadcrumb i {
        font-size: 16px;
    }
}
.breadcrumb > li {
    padding: 0 10px 0 0px;
    position: relative;
    white-space: nowrap;
}
.breadcrumb > li + li:before {
    content: '»';
    width: 10px;
    height: 20px;
    top: 0px;
    left: -5px;
    transform: none;
    border: none;
    position: relative;
}
.pagination {
    margin: 0;
}
/* buttons */
.buttons {
    margin: 1em 0;
}
.btn {
    padding: 7.5px 12px;
    font-size: 12px;
    border-radius: 4px;
    box-shadow: none;
    text-shadow: none;
    border: none;
}
.btn-xs {
    font-size: 9px;
}
.btn-sm {
    font-size: 10.2px;
}
.btn-lg {
    padding: 10px 16px;
    font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
    font-size: 12px;
}
.btn-group > .btn-xs {
    font-size: 9px;
}
.btn-group > .btn-sm {
    font-size: 10.2px;
}
.btn-group > .btn-lg {
    font-size: 15px;
}
@media (max-width: 767px) {
    .btn-group > .btn-lg {
        font-size: 16px;
    }
}
.btn-default {
    box-shadow: none;
    text-shadow: none;
    border: none;
}
.btn-primary, .btn-default {
    background: #2f829a;
    color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled],
.btn-default:hover, .btn-default:active, .btn-default.active, .btn-default.disabled, .btn-default[disabled]{
    background-color: #9d263c;
    background-position: 0 -15px;
    color: #fff;
}
.btn-warning {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #faa732;
    background-image: linear-gradient(to bottom, #fbb450, #f89406);
    background-repeat: repeat-x;
    border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #da4f49;
    background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
    background-repeat: repeat-x;
    border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #5bb75b;
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    background-repeat: repeat-x;
    border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #df5c39;
    background-image: linear-gradient(to bottom, #e06342, #dc512c);
    background-repeat: repeat-x;
    border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}
.btn-link {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #23A1D1;
    border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    box-shadow: none;
}
.btn-inverse {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #363636;
    background-image: linear-gradient(to bottom, #444444, #222222);
    background-repeat: repeat-x;
    border-color: #222222 #222222 #000000;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
    background-color: #222222;
    background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group-item.header {
    background: #eeeeee;
}
.list-group a {
    border: 1px solid #DDDDDD;
    color: #666;
    padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
    color: #444444;
    background: #eeeeee;
    border: 1px solid #DDDDDD;
    text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
    color: #FFFFFF;
    text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
    content: '\f053';
    font-family: FontAwesome;
}
.carousel-control .icon-next:before {
    content: '\f054';
    font-family: FontAwesome;
}
/* product list */
.category-description {
    padding-bottom: 15px;
}
.category-description-more {
    margin-top: 25px;
}
.product-thumb {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    overflow: auto;
}
.product-thumb .image, .thumbnails .thumbnail {
    text-align: center;
    position: relative;
}
.product-thumb .image .product-labels, .thumbnails .thumbnail .product-labels {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.product-thumb .image .product-labels .product-label, .thumbnails .thumbnail .product-labels .product-label {
    display: flex;
    margin-top: 5px;
    margin-right: 5px;
    position: relative;
    top: 0;
    right: 0;
    bottom: initial;
    left: initial;
    justify-content: flex-end;
}
.product-thumb .image .product-labels .product-label b, .thumbnails .thumbnail .product-labels .product-label b {
    min-width: 50px;
    min-height: 50px;
    line-height: 50px;
    font-size: 15px;
    background: rgba(171, 51, 59, 1);
    border-radius: 50%;
    padding: 0px;
    color: rgba(255, 255, 255, 1);
}
.product-thumb .image a {
    display: block;
}
.product-thumb .image a:hover {
    opacity: 0.8;
}
.product-thumb .image img {
    margin-left: auto;
    margin-right: auto;
}
.product-grid .product-thumb {
    text-align: center;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
}
.product-grid .product-thumb .btn-group .btn {
    background: #2f829a;
}
.product-grid .product-thumb:hover {
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    cursor: pointer;
}
.swiper-viewport .product-grid .product-thumb:hover {
    box-shadow: none;
}
.product-grid .product-thumb:hover .btn-group .btn, .btn-red {
    background: #9d263c;
}
.product-grid .product-thumb .image {
    float: none;
}
.product-grid .product-thumb .image, .category-grid .image {
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .product-list .product-thumb .image {
        float: left;
        padding: 0 15px;
    }
}
.product-grid .product-thumb h2, .product-grid .product-thumb .h2 {
    color: #000;
    font-size: 15px;
    line-height: 18px;
    height: 54px;
    margin-bottom: 20px;
    overflow: hidden;
}
.product-thumb .caption {
    padding: 0 20px;
    min-height: 180px;
}
.product-list .product-thumb .caption {
    margin-left: 230px;
}
.product-grid .product-thumb .caption {
    min-height: 100px;
}
@media (max-width: 1200px) {
    .product-grid .product-thumb .caption {
        min-height: 210px;
        padding: 0 10px;
    }
}
@media (max-width: 767px) {
    .product-list .product-thumb .caption {
        min-height: 0;
        margin-left: 0;
        padding: 0 10px;
    }
    .product-grid .product-thumb .caption {
        min-height: 0;
    }
}

.blog-grid .product-thumb .caption {
    height: auto;
    min-height: auto;
}
.product-grid .product-thumb .price-new, .product-grid .product-thumb .price-default, #product-product .price-new, #product-product .price-default {
    color: #9d263c;
    font-size: 18px;
    line-height: 23px;
}
#product-product .price-new, #product-product .price-default {
    font-size: 20px;
}
#product-product .product-price-type {
    margin-bottom: 20px;
}
#product-product .product-versions .h4 {
    color: #666;
}
.product-thumb .rating {
    padding-bottom: 10px;
}
.rating .fa-stack {
    font-size: 8px;
}
.rating .fa-star-o {
    color: #999;
    font-size: 15px;
}
.rating .fa-star {
    color: #FC0;
    font-size: 15px;
}
.rating .fa-star + .fa-star-o {
    color: #E69500;
}
h2.price {
    margin: 0;
}
.product-thumb .price {
    color: #444;
    height: 46px;
}
.product-thumb .price-new {
    font-weight: 600;
}
.product-thumb .price-old {
    color: #666;
    font-size: 14px;
    text-decoration: line-through;
}
.product-thumb .price-tax {
    color: #999;
    font-size: 12px;
    display: block;
}

#product-product .price {
    color: #444;
}
#product-product .price-new {
    font-weight: 600;
}
#product-product .price-old {
    color: #666;
    font-size: 14px;
    text-decoration: line-through;
}
#product-product .price-tax {
    color: #999;
    font-size: 12px;
    display: block;
}

.product-thumb .button-group {
    border-top: 1px solid #ddd;
    background-color: #eee;
    overflow: auto;
}
.product-list .product-thumb .button-group {
    border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
    .product-list .product-thumb .button-group {
        border-left: none;
    }
}
.product-thumb .button-group button {
    width: 60%;
    border: none;
    display: inline-block;
    float: left;
    background-color: #eee;
    color: #888;
    line-height: 38px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.product-thumb .button-group button + button {
    width: 20%;
    border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
    color: #444;
    background-color: #ddd;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 1200px) {
    .product-thumb .button-group button, .product-thumb .button-group button + button {
        width: 33.33%;
    }
}
@media (max-width: 767px) {
    .product-thumb .button-group button, .product-thumb .button-group button + button {
        width: 33.33%;
    }
}
.thumbnails-container {
    text-align: center;
}
.thumbnails {
    overflow: auto;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.thumbnails > li {
    margin-left: 20px;
}
.thumbnails > li:first-child a.thumbnail {
    border: none;
    padding: 0px;
}
.thumbnails {
    margin-left: -20px;
}
.thumbnails > img {
    width: 100%;
}
.image-additional a {
    margin-bottom: 20px;
    padding: 5px;
    display: block;
    border: 2px solid #2f829a;
}
.image-additional {
    max-width: 78px;
}
.thumbnails .image-additional {
    float: left;
    margin-left: 20px;
}

@media (min-width: 1200px) {
    .category-grid.col-lg-2:nth-child(6n+1),
    .category-grid.col-lg-3:nth-child(4n+1),
    .category-grid.col-lg-4:nth-child(3n+1),
    .category-grid.col-lg-6:nth-child(2n+1),
    .product-grid.col-lg-2:nth-child(6n+1),
    .product-grid.col-lg-3:nth-child(4n+1),
    .product-grid.col-lg-4:nth-child(3n+1),
    .product-grid.col-lg-6:nth-child(2n+1){
        clear:left;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .category-grid.col-md-2:nth-child(6n+1),
    .category-grid.col-md-3:nth-child(4n+1),
    .category-grid.col-md-4:nth-child(3n+1),
    .category-grid.col-md-6:nth-child(2n+1),
    .product-grid.col-md-2:nth-child(6n+1),
    .product-grid.col-md-3:nth-child(4n+1),
    .product-grid.col-md-4:nth-child(3n+1),
    .product-grid.col-md-6:nth-child(2n+1){
        clear:left;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .category-grid.col-sm-2:nth-child(6n+1),
    .category-grid.col-sm-3:nth-child(4n+1),
    .category-grid.col-sm-4:nth-child(3n+1),
    .category-grid.col-sm-6:nth-child(2n+1),
    .product-grid.col-sm-2:nth-child(6n+1),
    .product-grid.col-sm-3:nth-child(4n+1),
    .product-grid.col-sm-4:nth-child(3n+1),
    .product-grid.col-sm-6:nth-child(2n+1){
        clear:left;
    }
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
        width: 100%;
    }

    #column-left + #content .product-layout .col-md-3 {
        width: 50%;
    }

    #column-left + #content + #column-right .product-layout .col-md-3 {
        width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
        width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
    width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
    min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}

/**
 * USPs
 */
#usps-container {
    background: #f4f4f4;
}

#usps-container .usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#usps-container .usps .col {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex: 1;

    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 16px;
    height: 20px;
}
#usps-container .usps .col.calendly {
    margin-top: 2px;
    margin-bottom: 2px;
    height: 36px;
}
#usps-container .usps .col.calendly .btn {
    line-height: 15px;
}
@media (max-width: 767px) {
    #usps-container .usps .col {
        font-size: 16px;
    }
}

#usps-container .usps .col > div {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

#usps-container .usps .col i {
    margin-right: 10px;
    font-size: 18px;
}

#usps-mobile-container {
    background: #37829a;
    padding-left: 15px;
    padding-right: 15px;
    height: 34px;
}
#usps-mobile-container .flexslider {
    margin: 0;
    border: none;
    background: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#usps-mobile-container .flex-direction-nav a:before {
    font-size: 20px;
    color: rgba(255,255,255, .6);
}
#usps-mobile-container .flex-direction-nav a {
    font-size: 0;
    width: 20px;
    height: 20px;
    top: 27px;
}
#usps-mobile-container .flex-direction-nav .flex-prev {
    left: -20px;
}
#usps-mobile-container .flex-direction-nav .flex-next {
    right: -20px;
}
#usps-mobile-container .slides a {
    color: #fff;
    display: block;
    text-align: center;
}
#usps-mobile-container .slides div {
    display: inline-block;
    line-height: 34px;
}
#usps-mobile-container .slides div+div {
    padding-left: 5px;
}


/**
 * Pagination background: #9d263c;background: #2f829a;
 */
.pagination>li>a, .pagination>li>span {
    color: #2f829a;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    background: #9d263c;
    border-color: #9d263c;
    color: #fff;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background: #2f829a;
}

/**
 * Read more + buttons Desktop
 */
#description-buttons-title {
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    #description-buttons-title {
        font-size: 16px;
    }
}
#description-buttons-list {
    margin-bottom: 20px;
}
#description-buttons-list > a {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px;
    border-radius: 25px;
    background: #f7f7f7;
    color: #2f829a;
    border: 1px solid #a9b8c0;
}
#category-read-more, #category-read-less, #backLink {
    font-size: 15px;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 10px;
    color: #fff;
}
@media (max-width: 767px) {
    #category-read-more, #category-read-less, #backLink {
        font-size: 16px;
    }
}

/**
 * Read more + buttons Mobile
 */
.category-text-auto-hide-container #category-read-more {
    display: none;
}
.category-text-auto-hide-container #category-read-less {
    display: none;
}
@media (max-width: 767px) {
    .category-text-auto-hide-container {
        margin-bottom: 10px;
    }
    .category-text-auto-hide-container #category-read-more {
        display: block;
    }
    .category-text-auto-hide-container.active #category-read-more {
        display: none;
    }
    .category-text-auto-hide-container.active #category-read-less {
        display: block;
    }
    .category-text-auto-hide {
        max-height: 40px;
        overflow: hidden;
        margin-bottom: 10px;
    }
    .category-text-auto-hide-container.active .category-text-auto-hide {
        max-height: none;
    }
}

/**
 * Hide old back links
 */
#backLink {
    display: none !important;
}

/**
 * Kiyoh widgets
 */
#kiyoh-footer {
    margin-bottom: 30px
}
.kv-widget-wrapper, #kiyoh-header {
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
}
#kiyoh-header {
    margin-top: 15px;
    margin-bottom: 10px;
    flex-direction: row;
}
#kiyoh-footer .kv-widget-wrapper .kv-widget {
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.kv-widget-wrapper .kv-widget .kv-widget-part > * {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.kv-widget-wrapper .default-widget-rating-number, #kiyoh-header .default-widget-rating-number {
    display: block;
    background: url(/image/kiyoh-icon.svg) 50% 50% no-repeat;
    background-size: auto;
    background-size: cover;
    width: 10em;
    height: 10em;
    position: relative;
    color: #ffffff;
}
#kiyoh-header .default-widget-rating-number {
    width: 40px;
    height: 40px;
}
#kiyoh-header .rating-wrapper {
    margin-right: 10px;
}
.kv-widget-wrapper .default-widget-rating-number .rating, #kiyoh-header .default-widget-rating-number .rating {
    display: block;
    position: absolute;
    font-weight: 500;
    font-size: 3.2em;
    top: 62%;
    left: 0;
    width: 100%;
    margin: -0.7em 0 0 -.04em;
    letter-spacing: -.05em;
    text-align: center;
    color: #ffffff;
}
#kiyoh-header .default-widget-rating-number .rating {
    top: 50%;
    font-size: 15px;
    color: #2f829a;
}
@media (max-width: 767px) {
    #kiyoh-header .default-widget-rating-number .rating {
        font-size: 16px;
    }
}
.kv-widget-wrapper .stars-wrapper {
    margin-top: 1em;
}
.kv-widget-wrapper .rating-stars, #kiyoh-header .rating-stars {
    margin-left: -.1em;
    margin-right: -.1em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    user-select: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.kv-widget-wrapper .rating-stars ul, .rating-stars li, #kiyoh-header .rating-stars ul, #kiyoh-header .rating-stars li {
    margin: 0 !important;
    padding: 0 !important;
}
.kv-widget-wrapper .rating-stars ul, #kiyoh-header .rating-stars ul {
    list-style: none;
}
.kv-widget-wrapper .rating-stars li, #kiyoh-header .rating-stars li {
    display: inline;
}
.kv-widget-wrapper .rating-stars img, #kiyoh-header .rating-stars img {
    width: 24px;
    display: inline;
}
#kiyoh-header .rating-stars img {
    width: 18px;
}
.kv-widget-wrapper .review-count {
    margin-top: .5em;
    font-size: 1em;
    color: #ffffff;
}
.kv-widget-wrapper .portal-wrapper .name {
    color: #ffffff;
    font-size: 1.8em;
}

/**
 * Ajax Filter PRO
 */
d_ajax_filter_selected{
    display:block;
    border:1px solid #d5d5d5;
    margin-bottom:20px;
    color:yellow;
    padding-top:10px
}
d_ajax_filter_selected.empty-wrapper{
    display:none
}
d_ajax_filter_selected .button-reset{
    line-height:13px;
    padding:4px 10px 5px !important;
    margin-bottom:10px;
    cursor:pointer;
    float:right
}
d_ajax_filter_selected .button-reset>span{
    display:block;
    float:left;
    width:13px;
    height:13px;
    margin-right:5px;
    background:url("../../ddb/image/d_ajax_filter/cross_close.svg")
}
d_ajax_filter_selected .button-reset>p{
    font-size:16px;
    float:left;
    color:#555
}
d_ajax_filter_selected .selected-list{
    padding:0px 10px
}
d_ajax_filter_selected .selected-list .af-selected{
    font-size:16px;
    line-height:12px;
    position:relative;
    float:left;
    overflow:hidden;
    width:auto;
    height:34px;
    margin-right:11px;
    margin-bottom:10px;
    padding:10px 33px 10px 13px;
    cursor:pointer;
    text-align:center;
    color:#555;
    border-width:1px;
    border-style:solid;
    border-color:#bfc7d0;
    border-radius:2px;
    background-color:#f2f5f7
}
d_ajax_filter_selected .selected-list .af-selected>p{
    height:12px
}
d_ajax_filter_selected .selected-list .af-selected:after{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    display:block;
    width:25px;
    content:'';
    background-image:url(../../ddb/image/d_ajax_filter/cross.svg);
    background-repeat:no-repeat;
    background-position:left center;
    background-size:auto
}
.d_ajax_filter_popup_button{
    position:fixed;
    z-index:1051;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translate3d(-50%,0,0);
    height: 34px;
    line-height: 34px;
    text-align:center;
    color:white;
    border-radius: 3px;
    background:#9d263c;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
}
.d_ajax_filter_popup_button:hover, .d_ajax_filter_popup_button:focus, .d_ajax_filter_popup_button:active {
    color:white;
}
.ajax-filter{
    display:block;
    border:1px solid #d5d5d5;
    margin-bottom:20px
}
.ajax-filter.modal{
    margin-bottom:0;
    z-index:1050 !important;
    background:#fff
}
@media (max-width: 960px){
    .ajax-filter.modal .title{
        margin-bottom:0
    }
}
.ajax-filter.modal .modal-dialog{
    max-width:34.7rem;
    min-height:100%;
    padding:3rem 2rem !important;
    background:#fff
}
@media (max-width: 960px){
    .ajax-filter.modal .button-reset{
        position:absolute;
        right:50px
    }
}
.ajax-filter.modal .button-close{
    position:absolute;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    width:5rem;
    height:5rem;
    top:0rem;
    right:0rem;
    font-size:2.5rem;
    background:#F3F3F3;
    color:#222222;
    z-index:2;
    border:none
}
.ajax-filter.modal .button-close i{
    font-size:16px
}
.ajax-filter.modal .button-close:active,.ajax-filter.modal .button-close:hover,.ajax-filter.modal .button-close:focus{
    outline:none;
    border:none
}
.ajax-filter.modal .af-body{
    height:100%
}
.ajax-filter .modal-dialog{
    pointer-events:auto
}
.ajax-filter .button-close{
    display:none
}
.ajax-filter>.title{
    position:relative;
    display:block;
    padding: 10px;
    cursor:pointer
}
.ajax-filter>.title .button-reset{
    line-height:13px;
    padding:0px;
    cursor:pointer;
    float:right
}
.ajax-filter>.title .button-reset>span{
    display:block;
    float:left;
    width:13px;
    height:13px;
    margin-right:5px;
    background:url("../../ddb/image/d_ajax_filter/cross_close.svg")
}
.ajax-filter>.title .button-reset>p{
    font-size:16px;
    float:left;
    color:#555;
    margin: 0;
}
.ajax-filter>.title.collapsed>span{
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg)
}
.ajax-filter>.title>span{
    position:absolute;
    top:25px;
    right:23px;
    display:block;
    width:10px;
    height:5px;
    background:url("../../ddb/image/d_ajax_filter/arrow.svg")
}
.ajax-filter>.title>.title{
    font-size:16px;
    font-weight:bold;
    width:100%;
    display:inline-block
}
.ajax-filter>.title:empty{
    display:none
}
.ajax-filter .af-body{
    margin:0;
    padding:0
}
.ajax-filter .af-body .selected-list{
    padding:0px 10px
}
.ajax-filter .af-body .selected-list .af-selected{
    font-size:12px;
    line-height:12px;
    position:relative;
    float:left;
    overflow:hidden;
    width:auto;
    height:34px;
    margin-right:11px;
    margin-bottom:10px;
    padding:10px 33px 10px 13px;
    cursor:pointer;
    text-align:center;
    color:#555;
    border-width:1px;
    border-style:solid;
    border-color:#bfc7d0;
    border-radius:2px;
    background-color:#f2f5f7
}
.ajax-filter .af-body .selected-list .af-selected>p{
    height:12px
}
.ajax-filter .af-body .selected-list .af-selected:after{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    display:block;
    width:25px;
    content:'';
    background-image:url(../../ddb/image/d_ajax_filter/cross.svg);
    background-repeat:no-repeat;
    background-position:left center;
    background-size:auto
}
.ajax-filter .af-body .af-button-filter>a{
    line-height:51px;
    display:block;
    width:100%;
    height:51px;
    cursor:pointer;
    text-align:center;
    color:#fff
}
.ajax-filter .af-body .af-button-filter.af-popup{
    position:absolute;
    z-index:99;
    top:0;
    right:-157px;
    display:none;
    width:170px;
    padding:10px 5px 10px 15px;
    text-align:center;
    border:1px solid #d2d2d2;
    border-radius:4px;
    background:white
}
.ajax-filter .af-body .af-button-filter.af-popup>#fitlers{
    line-height:34px;
    float:left;
    width:85%;
    height:34px;
    border-radius:4%
}
.ajax-filter .af-body .af-button-filter.af-popup>.close{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    width:15%;
    height:34px;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.ajax-filter .af-body .af-container{
    background-color:#fff
}
.ajax-filter .af-body .af-container.selected{
    margin:0;
    padding:10px 25px !important;
    cursor:pointer
}
.ajax-filter .af-body .af-container>.af-heading{
    position:relative;
    display:block;
    padding: 10px;
    cursor:pointer;
    border-top:1px solid #d5d5d5
}
.ajax-filter .af-body .af-container>.af-heading.collapsed>span{
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg)
}
.ajax-filter .af-body .af-container>.af-heading>span{
    position:absolute;
    top:18px;
    right:10px;
    display:block;
    width:13px;
    height:8px;
    background:url("../../ddb/image/d_ajax_filter/arrow.svg")
}
.ajax-filter .af-body .af-container>.af-heading>.title{
    font-size:16px;
    font-weight:bold;
    display:inline-block;
    margin:0
}
.ajax-filter .af-body .af-container>.af-elements .input-field>input[type=text]{
    width:100%;
    border:1px solid #bfc7d0;
    height:41px;
    min-width:210px;
    border-radius:1px;
    font-size:16px;
    padding-left:16px
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box{
    min-width:100%
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box:not(.in)>.af-select-element.empty{
    display:block
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box:not(.in)>.af-select-element.empty::after{
    position:absolute;
    top:17px;
    right:13px;
    display:block;
    width:13px;
    height:8px;
    content:'';
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
    background:url(../../ddb/image/d_ajax_filter/arrow.svg)
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box:not(.in)>.af-select-element.active{
    border-top:1px solid #bfc7d0
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box:not(.in)>.af-select-element.active ~ .empty{
    display:none
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box:not(.in)>.af-select-element.active::after{
    position:absolute;
    top:17px;
    right:13px;
    display:block;
    width:13px;
    height:8px;
    content:'';
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg);
    background:url(../../ddb/image/d_ajax_filter/arrow.svg)
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box.in>.af-select-element{
    display:block
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box.in>.af-select-element:hover{
    background-color:#f2f5f7
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box.in>.af-select-element.disabled{
    pointer-events:none
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box.in>.af-select-element.disabled>*{
    opacity:.5
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box.in>.af-select-element:nth-child(1)::after{
    position:absolute;
    top:17px;
    right:13px;
    display:block;
    width:13px;
    height:8px;
    content:'';
    background:url(../../ddb/image/d_ajax_filter/arrow.svg)
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box>.af-select-element{
    font-size:16px;
    line-height:41px;
    position:relative;
    display:none;
    min-height:41px;
    padding-left:18px;
    cursor:pointer;
    border-right:1px solid #bfc7d0;
    border-bottom:1px solid #bfc7d0;
    border-left:1px solid #bfc7d0;
    border-radius:1px
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box>.af-select-element>p{
    margin:0;
    padding:0;
    color:#666666
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box>.af-select-element>p .quantity{
    color:#7b7a7a
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box>.af-select-element.active{
    display:block
}
.ajax-filter .af-body .af-container>.af-elements .af-select-box>.af-select-element:nth-child(1){
    border-top:1px solid #bfc7d0
}
.ajax-filter .af-body .af-container>.af-elements .rating.af-element>label{
    display:block
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper{
    padding: 0px 10px;
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .slider-range{
    height:5px !important;
    margin-top:5px;
    margin-bottom:12px;
    border:0;
    border-radius:0;
    -webkit-box-shadow:none;
    box-shadow:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .slider-range>.noUi-base{
    height:5px !important
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .slider-range>.noUi-base>.noUi-origin .noUi-handle{
    top:-7.5px !important;
    left:-10.5px !important;
    width:19px !important;
    height:19px !important;
    border-radius:50%
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .slider-range>.noUi-base>.noUi-origin .noUi-handle:after,.ajax-filter .af-body .af-container>.af-elements .af-wrapper .slider-range>.noUi-base>.noUi-origin .noUi-handle:before{
    display:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .slider-range>.noUi-base>.noUi-connect{
    -webkit-box-shadow:none;
    box-shadow:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid{
    overflow:auto
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid .af-element{
    float:left;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    margin:0 11px 10px 0;
    padding:0;
    text-align:center
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid .af-element>label{
    cursor:pointer
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid .af-element>label>input:checked+img{
    width:45px !important;
    height:45px !important;
    border:2px solid #ed8f09 !important
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid .af-element>label>img{
    width:45px;
    height:45px;
    margin:0;
    border:1px solid #bfc7d0 !important
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid .af-element>label>input[type=checkbox]{
    display:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-image-grid .af-element>label>input[type=radio]{
    display:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element{
    position:relative;
    min-height:20px;
    margin:10px 0 12px
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element:not(.slider){
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -ms-flex-wrap:nowrap;
    flex-wrap:nowrap
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.grid{
    float:left;
    width:20%;
    margin:0;
    text-align:center
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.disabled{
    pointer-events:none;
    opacity:.5
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price{
    font-size:16px;
    font-weight:300;
    overflow:auto;
    margin-top:12px
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price .input-price{
    position:relative
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price .input-price>i:nth-child(1){
    font-style:normal;
    position:absolute;
    top:50%;
    display:block;
    width:25px;
    padding-right:3px;
    -webkit-transform:translate(0, -50%);
    transform:translate(0, -50%);
    text-align:right;
    pointer-events:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price .input-price>i:nth-child(3){
    font-style:normal;
    position:absolute;
    top:50%;
    right:0;
    display:block;
    width:25px;
    padding-right:3px;
    -webkit-transform:translate(0, -50%);
    transform:translate(0, -50%);
    text-align:right;
    pointer-events:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price .input-price>input{
    padding-right:0;
    padding-left:25px
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price input{
    font-size:16px;
    font-weight:300;
    width:66px;
    height:30px;
    text-align:left;
    color:#666666;
    border:1px solid #bfc7d0;
    border-radius:2px;
    background-color:#f2f5f7
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price>.slider-separator{
    width:10px;
    height:1px;
    margin:18px 7px 0;
    background:#666666
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element.slider>.price>*{
    float:left
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element input[type='text']{
    width:100%;
    border:1px solid #d5d5d5
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label{
    font-size:16px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    min-width:50%;
    margin:0;
    padding:0;
    cursor:pointer;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    -ms-flex-wrap:nowrap;
    flex-wrap:nowrap
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>.title{
    min-width:50%;
    word-break:break-all;
    color:#666666
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>.title af_quantity{
    color:#7c7b7b
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>.bootstrap-rating{
    min-width:90px;
    margin-top:0
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>.bootstrap-rating>.rating-symbol .rating-symbol-foreground{
    line-height:inherit
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>img{
    width:20px;
    height:20px;
    margin-right:3px
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='radio']{
    display:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='radio']+span{
    position:relative;
    display:block;
    float:left;
    width:15px;
    min-width:15px;
    height:15px;
    min-height:15px;
    margin-top:2.5px;
    margin-right:8px;
    border-width:1px;
    border-style:solid;
    border-color:#d5d5d5;
    border-radius:50%;
    background-color:#f4f4f4
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='radio']+span::after{
    position:absolute;
    top:4px;
    left:4px;
    width:5px;
    height:5px;
    content:'';
    opacity:0;
    border-radius:50%;
    background-color:#111
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='radio']:checked+img{
    width:25px;
    height:25px;
    border:2px solid #111
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='radio']:checked+span::after{
    opacity:1
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='checkbox']{
    display:none
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='checkbox']+span{
    position:relative;
    display:block;
    float:left;
    width:15px;
    min-width:15px;
    height:15px;
    min-height:15px;
    margin-top:2.5px;
    margin-right:8px;
    border-width:1px;
    border-style:solid;
    border-color:#d5d5d5;
    background-color:#f4f4f4
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='checkbox']+span::after{
    position:absolute;
    top:3px;
    left:2px;
    width:9px;
    height:5px;
    content:'';
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
    opacity:0;
    border:2px solid #111;
    border-top:none;
    border-right:none;
    background:transparent
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='checkbox']>img{
    width:25px;
    height:25px
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='checkbox']:checked+img{
    width:25px;
    height:25px;
    border:2px solid #111
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element label>input[type='checkbox']:checked+span::after{
    opacity:1
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-element>af_quantity>.quantity{
    font-size:11px;
    line-height:1.6;
    float:right;
    height:20px;
    padding:0 10px;
    text-align:center
}
.ajax-filter .af-body .af-container>.af-elements .af-wrapper .af-show-all{
    font-size:16px;
    line-height:34px;
    position:relative;
    width:86px;
    height:34px;
    cursor:pointer;
    text-align:center;
    color:#555;
    border-width:1px;
    border-style:solid;
    border-color:#bfc7d0;
    border-radius:2px;
    background-color:#f2f5f7
}
.ajax-filter .af-body .af-container>.af-elements#price .af-wrapper{
    padding:0 32px 0 34px !important
}
.ajax-filter .af-body .af-container>.af-elements#price .af-wrapper .af-element{
    margin:0 0 33px
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-heading{
    float:left;
    width:20%;
    pointer-events:none;
    border:0
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-heading>span{
    display:none
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-elements{
    width:80%
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-elements#keywords .af-wrapper>.af-element{
    float:none
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-elements .af-wrapper{
    overflow:auto;
    padding:15px 15px 15px 25px !important
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-elements .af-wrapper .af-element{
    float:left;
    margin-right:10px
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-elements .af-wrapper .af-element>label{
    padding-right:5px
}
.ajax-filter.af-horizontal:not(.modal)>.af-body .af-container>.af-elements .af-wrapper .af-element.slider{
    float:none;
    width:100%
}
af_loader{
    position:absolute;
    z-index:10000;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px
}

.ajax-filter > div > div.panel-heading{
    color: #666666!important;
    background:rgb(247, 247, 247)!important;
}
.ajax-filter span.quantity{
    color:#9d263c!important;
}
.ajax-filter .irs-bar {
    background: #9d263c!important;
    border-color: #9d263c!important;
}
.ajax-filter .irs-line {
    background: rgb(243, 244, 248)!important;
    border: 1px solid rgb(243, 244, 248)!important;
}
.ajax-filter .irs-slider{
    background: rgb(246, 246, 246)!important;
    border: 1px solid rgb(204, 204, 204)!important;
}
.ajax-filter > .title{
    color:#666666!important;
    background:rgb(247, 247, 247)!important;
}
.ajax-filter .af-heading,.af-heading:hover{
    color:#666666!important;
    background:rgb(247, 247, 247)!important;
}
.ajax-filter #resetFilter > p{
    color:#2f829a!important;
}
.ajax-filter a#fitlers{
    background:#2f829a!important;
    border:1px solid #2f829a!important;
}
.irs-from, .irs-to, .irs-single {
    background:#2f829a!important;
}
.ajax-filter #label_radio_and_image > input:checked+img{
    border:2px solid rgb(17, 17, 17)!important;
}
.ajax-filter #label_radio_and_image > input+img{
    border-radius:0!important;
}
.ajax-filter #label_checbox_and_image > input:checked+img{
    border:2px solid rgb(17, 17, 17)!important;
    border-radius:0!important;
}
.ajax-filter #label_checbox_and_image > input+img{
    border-radius:0!important;
}
.ajax-filter #label_image_checkbox input:checked+img{
    border:1px solid rgb(17, 17, 17)!important;
}
.ajax-filter #label_image_checkbox input+img{
    border-radius:0!important;
}
.ajax-filter #label_image_radio input:checked+img{
    border:1px solid rgb(17, 17, 17)!important;
}
.ajax-filter #label_image_radio input+img{
    border-radius:0!important;
}
.ajax-filter .af-container > div:not([id^=price]) > .af-wrapper {
    overflow-x: hidden;
    max-height:150px; overflow-y: auto;
}

@media (min-width: 768px) {
    #top-banners-home {
        margin-bottom: 30px;
    }
    #top-banners-home .row .row > div:last-child {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    #top-banners-home .row > div:first-child {
        margin-bottom: 30px;
    }
}

.banners-home .row > div {
    margin-bottom: 30px;
}
.banners-information {
    margin-top: 30px;
}
.banners-information .row > div {
    margin-bottom: 30px;
}


#banners-home-8, #banners-home-8 .h3 {
    margin-bottom: 30px;
}

#product-product #product {
    margin-top: 15px;
    margin-bottom: 15px;
}
#product-product #product .product-box {
    background: #f4f4f4;
    padding: 15px;
}
#product-product #product h3, #product-product #product .h3, #content > h3, #content > .h3, #product-product #product h4, #product-product #product .h4 {
    margin-bottom: 15px;
}
#product-product #product .fa {
    font-size: 20px;
}
#input-quantity {
    height: 42px !important;
}
#input-quantity::-webkit-inner-spin-button {
    opacity: 1
}

#product-details {
    font-size: 14px;
}

#product-product .nav-tabs {
    margin-bottom: 0;
}
#product-product .tab-content {
    background: #f4f4f4;
    padding: 15px;
}

div[id*='ultimate_banners-'] ul {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 20px 0px;
}
div[id*='ultimate_banners-'] li {
    padding-left: 30px;
    position: relative;
    line-height: 26px;
}
div[id*='ultimate_banners-'] strong, div[id*='ultimate_banners-'] b {
    color: #2f829a;
}
div[id*='ultimate_banners-'] li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Duotone";
    position: absolute;
    left: 0px;
    color: #2f829a;
}

#product-related, #product-lastviewed {
    margin-top: 30px;
    margin-bottom: 15px;
}

.lg-backdrop {
    z-index: 999949 !important;
}
.lg-outer {
    z-index: 999999 !important;
}

.modal {
    z-index: 99999 !important;
}
@media (min-width: 992px) {
    .modal-dialog {
        width: 800px;
    }
}
.modal-dialog img {
    max-width: 100%;
}
.modal-dialog .row > div {
    padding-right: 15px;
    padding-left: 15px;
}

#header-wrapper.fixed-top {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
}
#header-wrapper.fixed-top header {
    background: #fff;
}
header > .container {
    position: relative;
}
.off-canvas-toggle {
    position: absolute;
    left: 15px;
    top: 25px;
    color: #2f829a;
    background: #fff;
    padding: 0px;
}
.off-canvas-toggle i {
    font-size: 23px;
}
.off-canvas {
    width: 90%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    transform: translateX(-100%);
    z-index: 1060;
}
.off-canvas-active .off-canvas {
    transform: translateX(0);
    transition: .4s ease-in-out;
}
.off-canvas-active .page-wrapper,
.off-canvas-active .navbar-fixed-top {
    transform: translateX(300px);
}
.off-canvas-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: .4s ease-in-out;
}
.off-canvas-active .off-canvas-overlay {
    opacity: 1;
    visibility: visible;
}
.off-canvas-heading {
    color: #9d263c;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 18px;
}
.off-canvas-heading a {
    float: right;
}
.off-canvas .nav > li > a {
    border-radius: 0px;
    font-size: 18px;
    border: none;
    border-top: 1px solid rgba(238, 238, 238, 1);
    color: #323232;
}
.off-canvas .nav > li.special > a {
    color: #9d263c;
    font-weight: bold;
}
.off-canvas .nav-stacked>li+li {
    margin-top: 0px;
}
.off-canvas .nav > li.menu-dropdown > ul a {
    padding: 10px 30px;
    font-size: 16px;
}
.off-canvas .nav>li a:focus, .off-canvas .nav>li a:hover {
    background: #fff;
    color: #2f829a;
}
.off-canvas .nav > li.menu-dropdown > a i {
    float: right;
}

.galleryItem {
    margin-top: 15px;
    margin-bottom: 15px;
}
.galleryItem img {
    max-width: 100%;
}

.datepicker {z-index:99999999 !important;}
#mkenqpop .modal-header h3{margin:8px;color:#fff}
#mkenqpop .modal-header .close{margin-top:8px;opacity:1;color:#fff}
#mkenqpop .modal-header i{font-size:20px;margin-right:8px;}
#mkenqpop .modal-header-success { color:#fff; padding:9px 15px; border-bottom:1px solid #eee; background-color: #5cb85c; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px;}

#mkenqpop .quotetable, #mkenqpop .quotetable td, #mkenqpop .quotetable th { border: 1px solid #ddd; text-align: left;}
#mkenqpop .quotetable { border-collapse: collapse; width: 100%;}
#mkenqpop .quotetable th, #mkenqpop .quotetable td { padding: 15px;}
fieldset{overflow:hidden}
/*.quote-label{width:20%; display:inline-block;}
.quote-div{width:70%; display:inline-block;padding:5px;vertical-align:middle;}*/
.mkenq_btn_dual{position: absolute; bottom: 70px; left: 70px;}

.ultimate_banners {
    margin-bottom: 20px;
}
.ultimate_banners img {
    max-width: 100%;
}


/* OpenCart Code */
.swiper-viewport {
    position: relative;
}
.swiper-button-next, .swiper-button-prev {
    color: #000;
}


.price-type {
    text-align: center;
    margin-top: -30px;
    font-size: 13px;
}

.mfilter-box .box-heading {
    background: #f7f7f7;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #d5d5d5;
    border-bottom: 0;
    color: #666666;
}
.mfilter-box .mfilter-content {
    border-radius: 0;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}
.mfilter-box .mfilter-heading {
    background: #f7f7f7;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #d5d5d5;
    color: #666666;
}
.mfilter-box .mfilter-heading-content {
    padding: 0;
}
.mfilter-free-container {
    top: 0px;
    border: none;
    padding: 0;
    height: 100%;
}
.scroll-wrapper {
    min-height: 100%;
}
.mfilter-free-container [id^="mfilter-free-container-"] {
    padding: 0;
}
.mfilter-free-button {
    position: fixed;
    bottom: 30px;
    left: calc(50vw - 35px);
    margin: 0;
    background: #3e3c3c !important;
    color: #fff;
    border: none;
    padding: 8px 0px;
    width: 70px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    z-index: 99999;
}
.mfilter-free-button-close {
    background: #3e3c3c !important;
    width: 140px;
    left: calc(50vw - 70px);
}

#cart-counter-container {
    position: relative;
}
#cart-counter {
    position: absolute;
    top: -12px;
    right: -12px;
    min-width: 23px;
    min-height: 23px;
    line-height: 23px;
    font-size: 12px;
    background: rgba(171, 51, 59, 1);
    border-radius: 50%;
    padding: 0px;
    color: rgba(255, 255, 255, 1);
}

.lightboxOverlay {
    z-index: 999999 !important;
}
.lightbox {
    z-index: 9999999 !important;
}

.product-versions .gis-row {
    margin-top: 10px;
    margin-bottom: 20px;
}
.fw-bold {
    font-weight: bold;
}

.shadow {
    display: block;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

#gdpr-cookie-message .gdprcookiemessage {
    margin-bottom: 15px;
}
#gdpr-cookie-message ul {
    padding-left: 0px;
}
#gdpr-cookie-message .gdprcookiebuttons {
    margin-left: -15px;
}

form[id^=_form_]._inline-form, form[id^=_form_]._inline-form ._form-content,
form[id^=_form_]._inline-form ._form-title,
form[id^=_form_]._inline-form ._form-content,
form[id^=_form_]._inline-form ._form-label,
form[id^=_form_] ._form_element *{
    font-family: inherit!important;
    font-size: 16px!important;
    font-weight: normal!important;
    color: #101010 !important;
}
form[id^=_form_]._inline-form ._form-title {
    font-size: 24px!important;
    font-weight: bold!important;
    text-transform: uppercase;
}
form[id^=_form_] ._submit {
    text-transform: uppercase;
    background: #9d263c!important;
}
form[id^=_form_] {
    color: #101010 !important;
    padding: 0px !important;
    margin: 0px auto !important;
    background: none !important;
    width: 500px !important;
    max-width: 90% !important;
}
form[id^=_form_]._inline-style ._button-wrapper {
    margin: 0px !important;
}

#tmdinfomation_list > div {
    margin-top: 25px;
}
#tmdinfomation_list h2 {
    margin-bottom: 10px;
    color: #9d263c;
    font-size: 18px;
    line-height: 25px;
}
#tmdinfomation_list .list-unstyled > li a {
    display: block;
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 5px;
}