/* Minification failed. Returning unminified contents.
(2632,56): run-time error CSS1062: Expected semicolon or closing curly-brace, found ':'
(2646,44): run-time error CSS1062: Expected semicolon or closing curly-brace, found ':'
(2824,1): run-time error CSS1019: Unexpected token, found '@import'
(2824,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css?family=Open+Sans|Open+Sans+Condensed:300,700|Roboto|Roboto+Condensed|Lato:300,400,700|Russo+One:400')'
(5834,42): run-time error CSS1031: Expected selector, found ')'
(5834,42): run-time error CSS1025: Expected comma or open brace, found ')'
 */
.margin-top-40 {
    margin-top: 40px;
}

.no-scroll {
    overflow: hidden;
}

/*-----------
  ----------- COOKIE 
-----------*/
#cookie-overlay {
    background-color: rgba(0, 0, 0, 0.83);
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
    padding: 20px;
}

    #cookie-overlay #cookie-box {
        width: 790px;
        max-width: 100%;
        max-height: 100%;
        background: #F4F4F4;
        color: #4B4B4B;
        overflow-x: hidden;
        padding: 40px;
        font-family: Verdana;
    }

        #cookie-overlay #cookie-box .title {
            font-size: 33px;
            font-weight: 400;
            padding-bottom: 25px;
        }

        #cookie-overlay #cookie-box .description {
            font-size: 16px;
            font-weight: 400;
        }

            #cookie-overlay #cookie-box .description a {
                color: #8DC63F;
                text-decoration: underline;
            }

        #cookie-overlay #cookie-box .cookieBtn-selected {
            background-image: linear-gradient(#CECECE, #868686);
            color: #fff;
            font-size: 16px;
            height: 44px;
            width: 188px;
            font-weight: 700;
            border: none;
            border-radius: 25px;
            margin-right: 20px;
            cursor: pointer;
        }

        #cookie-overlay #cookie-box .cookieBtn-all {
            background-image: linear-gradient(#76FF00, #239A00);
            color: #fff;
            font-size: 16px;
            height: 44px;
            width: 188px;
            font-weight: 700;
            border: none;
            border-radius: 25px;
            cursor: pointer;
        }

            #cookie-overlay #cookie-box .cookieBtn-all:focus,
            #cookie-overlay #cookie-box .cookieBtn-selected:focus {
                outline: none;
            }

/* SWITCHES */
.switch-wrapper {
    height: 63px;
    padding-left: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 61px;
    height: 32px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

#cookie-overlay #cookie-box .slide {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #A2A2A2;
    border: 2px solid #626262;
    -webkit-transition: .4s;
    transition: .4s;
}

    #cookie-overlay #cookie-box .slide:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 4px;
        bottom: 2px;
        background-color: #D8D8D8;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:focus + .slide {
    box-shadow: 0 0 1px #2196F3;
}

#cookie-overlay #cookie-box input:checked + .slide:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: #53E01E;
}

#cookie-overlay #cookie-box .slide.round {
    border-radius: 34px;
}

    #cookie-overlay #cookie-box .slide.round:before {
        border-radius: 50%;
    }

.disabled-switch .slide {
    cursor: auto;
}

/* COOKIE SETTINGS BUTTON POPUP */
#cookie-settings {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.83);
    position: fixed;
    left: -56px;
    bottom: -56px;
    cursor: pointer;
    z-index: 100000;
}

    #cookie-settings img {
        position: absolute;
        right: 28px;
        width: 19px;
        height: 40px;
        top: 18px;
    }

/*Video replacement*/
.videoReplacement {
    background-color: #444;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 20px;
}

.videoReplacement i {
    font-size: 60px;
    margin-bottom: 10px;
}

    .videoReplacement .text {
        margin-bottom: 30px;
    }

    .videoReplacement a {
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
    }


/* REPONSIVE */
@media screen and (max-width:991px) {
    #cookie-overlay #cookie-box .title {
        line-height: 38px;
    }
}

@media screen and (max-width:767px) {
    .switch-wrapper {
        height: 55px;
        padding-left: 0;
    }

    #cookie-overlay #cookie-box {
        padding: 20px;
    }

        #cookie-overlay #cookie-box .title {
            font-size: 24px;
            font-weight: 400;
            padding-bottom: 15px;
        }

        #cookie-overlay #cookie-box .description {
            font-size: 14px;
        }

        #cookie-overlay #cookie-box #buttons-wrapper {
            display: unset;
        }

        #cookie-overlay #cookie-box .cookieBtn-all,
        #cookie-overlay #cookie-box .cookieBtn-selected {
            width: 80%;
            font-size: 14px;
            float: right;
            margin-right: 0;
        }

        #cookie-overlay #cookie-box .cookieBtn-all {
            margin-top: 10px;
        }

        #cookie-overlay #cookie-box .buttons-wrapper {
            display: unset !important;
        }

    .videoReplacement {
        height: auto;
    }
}

@media screen and (max-width:360px) {
    #cookie-overlay #cookie-box .title {
        line-height: 30px;
    }

    #cookie-overlay #cookie-box .cookieBtn-all,
    #cookie-overlay #cookie-box .cookieBtn-selected {
        line-height: 18px;
    }

    .videoReplacement {
        padding: 15px;
    }
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.side-basket-outer.floating-right {
    position: static;
    right: 10px;
    display: block;
}
.side-basket-outer {
    width: 100%;
    min-height: 100px;
    /*border: 2px solid red;*/
    padding: 0 0 30px 0;
}
.side-basket-inner {
    position: static;
    top: 0px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
}
.side-basket-content {
    font-family: 'Encode Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
}
.side-basket-headline {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.side-basket-sum {
    padding-top: 15px;
}
.side-basket-total-label {
    font-size: 14px;
}
.side-basket-total-price {
    font-size: 18px;
    font-weight: 600;
}
.side-basket-footer {
    font-family: 'Encode Sans', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 15px;

    background: rgb(147,53,55);
    background: -moz-linear-gradient(top, rgba(147,53,55,1) 0%, rgba(219,20,25,1) 100%);
    background: -webkit-linear-gradient(top, rgba(147,53,55,1) 0%,rgba(219,20,25,1) 100%);
    background: linear-gradient(to bottom, rgba(147,53,55,1) 0%,rgba(219,20,25,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#933537', endColorstr='#db1419',GradientType=0 );
}
.side-basket-footer a{
    color: white;
}
    .side-basket-footer a:hover {
        color: #ccc;
        text-decoration: none;
    }

.side-basket-line {
    display: flex;
    justify-content: space-between;
}
.side-basket-line-col1 {
    width: 70%;
    padding-left: 5px;
}
.side-basket-line-col2 {
    width: 30%;
    min-width: 100px;
    text-align: right;
}
.side-basket-line-col3 {
    width: 25px;
    text-align: right;
}
.side-basket-toggle {
    cursor: pointer;
}

/* -- Item Related Items and Frames*/
.item-relateditems, .item-frames {
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid #808080;
}

.item-relateditems .headline, .item-frames .headline {
    font-size: 18px;
    font-weight: bold;
}

.item-relateditem {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding: 10px 0px;
}

    .item-relateditem .image {
        width: 25%;
    }
    .item-relateditem .image img {
        max-width: 80px;
        max-height: 60px;
    }

    .item-relateditem .name {
        width: 75%;
        padding: 5px;
    }

    .item-relateditem .price-outer {
        display: flex;
        flex-flow: column;
        width: 25%;
    }

.item-relateditem .price {
    font-weight: bold;
    text-align: right;
}

    .item-relateditem .add-to-basket {
        color: white;
        padding: 5px;
        text-align: center;
        background-color: #FF0000;
        cursor: pointer;
        background: rgb(147,53,55);
        background: -moz-linear-gradient(top, rgba(147,53,55,1) 0%, rgba(219,20,25,1) 100%);
        background: -webkit-linear-gradient(top, rgba(147,53,55,1) 0%,rgba(219,20,25,1) 100%);
        background: linear-gradient(to bottom, rgba(147,53,55,1) 0%,rgba(219,20,25,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#933537', endColorstr='#db1419',GradientType=0 );
    }

.item-frames-composite {
    padding: 10px 0px;
    font-size: 12px;
    color: #666;
}

/*// Extra small devices (portrait phones, less than 576px)*/ 
@media (max-width: 575px) {
    .side-basket-sum {
        padding-top: 0px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        /*border: 2px solid red;*/
    }
    .side-basket-sum-inner {
        position: relative;
        right: 0px;
    }
    .side-basket-outer.floating-right {
        /*position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;*/
        position: sticky;
        top: 0px;

        z-index: 30;
        background-color: white;
    }

}

/*// Small devices (landscape phones, 576px and up)*/ 
@media (min-width: 576px) and (max-width: 767px) {
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

@media (min-width: 576px) and (max-width: 1889px) {
    .side-basket-outer.floating-right {
        position: sticky;
        top: 0px;
        z-index:30;
        background-color: white;
    }
    .side-basket-inner {
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .side-basket-sum {
        /*position: relative;
        right: 260px;
        bottom: 10px;*/
    }

    .side-basket-footer {
        height: 70px;
        font-size: 18px;
        line-height: 40px;
        width: 220px;
        min-width: 220px;
    }

    .side-basket-sum {
        padding-top: 0px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        /*border: 2px solid red;*/
    }

    .side-basket-sum-inner {
        position: relative;
        right: 0px;
    }

    .side-basket-content {
        width: 100%;
        padding-top: 0px;
    }

        .side-basket-content .minimized {
            /*display: block;*/
        }

        .side-basket-content .maximized {
            /*display: none;*/
            padding-top: 10px;
            padding-bottom: 10px;
        }
}
@media (min-width: 1890px) {
    .side-basket-outer.floating-right {
        position: absolute;
        right: -360px;
        display: block;
    }

    .side-basket-outer {
        width: 350px;
        height: 100%;
    }

    .side-basket-inner {
        position: sticky;
        top: 0px;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
    }
    .side-basket-collapsed {
        display: none;
    }
    .maximized.hide {
        display: unset !important;
    }
}
#productdetails h1 {
    font-family: Trirong, serif;
}

body.productsnavi-overlay-visible {
    /*margin-top: 135px;*/
}
body.basket-overlay-visible.productsnavi-overlay-visible {
    /*margin-top: 165px;*/
}

a.search-showextra-button {
    color: #fff;
    text-decoration:none;
}

.outer-productsnavi-overlay {
    background-color: #C11015;
    color: #fff;
    height: 56px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
}
.middle-productsnavi-overlay {
    height: 100%;
    padding-top: 10px;
}
.inner-productsnavi-overlay {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
    .inner-productsnavi-overlay a {
        color: white;
    }
    .inner-productsnavi-overlay a:hover {
        color: #ccc;
        text-decoration: none;
    }

.inner-productsnavi-overlay .previous {

}
.inner-productsnavi-overlay .current {

}
.inner-productsnavi-overlay .next {

}
.inner-productsnavi-overlay .search {

}
.productsnavi-prev-outer, 
.productsnavi-next-outer {
    display: flex;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    align-content: space-around;
    flex-flow: column;
}
    .search h1{
        margin-bottom: 0px;
    }
    .productsnavi-search {
        width: 260px;
        max-width: 100%;
        min-height: 34px;
        background-color: #555454;
        border: 1px solid white;
        border-radius: 5px;
        box-shadow: 0px 2px 3px rgba(0,0,0,0.78);
        display: inline-block;
        text-align: center;
        margin-right: 40px;
        font-family: Trirong, serif;
        font-weight: 600;
        color: #EAEAEA;
        line-height: 23px;
        padding: 5px;
        font-size: 12px;
    }
.productsnavi-position {
    width: 200px;
    text-align: center;
    display: inline-block;
}
.productsnavi-prev,
.productsnavi-next {
    font-weight: 900;
}

    .productsnavi-prev a,
    .productsnavi-next a {
        color: white;
        -webkit-text-fill-color: white; /* Will override color (regardless of order) */
        -webkit-text-stroke-width: 5px;
        -webkit-text-stroke-color: white;
    }
    .productsnavi-prev a:hover,
    .productsnavi-next a:hover {
    text-decoration: none;
    }

.productsnavi-prev-label, 
.productsnavi-next-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 15px;
    text-transform:uppercase;
}

.productsnavi-prev-label a,
.productsnavi-next-label a {
    color: white;
}
    .productsnavi-prev-label a:hover,
    .productsnavi-next-label a:hover {
        text-decoration: none;
    }

.main-headline-productprice {
    background: #900224;
    color: white;
    padding: 10px 20px;
    margin-right: 15px;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
    font-size: 14px;
    max-width: 190px;
}
.main-headline-productprice b {
    font-size: 20px;
}
.main-headline-productfinancing {
    background: #ffd800;
    color: #444;
    padding: 5px 15px;
    margin-left: 10px;
    position: relative;
    top: -10px;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
    font-size: 14px;
    max-width: 200px;
}
    .main-headline-productfinancing b {
        font-size: 16px;
    }

section#products .product{
    margin-bottom:30px;
}

    section#products .product .image {
        min-height:initial;
    }

    section#products .product .image img {
        display: block !important;
    }

    section#products .product .red-box {
        background-color: #950C22;
        padding-top: 10px;
        padding-bottom: 10px;
        height:66px;
    }

        section#products .product .red-box .product-price,
        section#products .product .red-box .product-price > span,
        section#products .product .red-box .product-year > span {
            color: #fff;
        }

            section#products .product .red-box .product-price .currency-label {
                padding-right:10px;
            }

section#products ul.sort > li.header{
    padding-right:5px !important;
}

section#products ul.sort > li {
    padding-left: 5px !important;
}

    section#products ul.sort > li > span{
        padding-right:0 !important;
    }

    section#products ul.list > li.header {
        padding-right: 5px !important;
    }

section#products ul.list .grid {
    margin-right: 10px;
}

section#products ul.list > li > span.fa-list::after,
section#products ul.list > li > span.fa-th-large::after {
    display: inline-block;
    margin-left: 5px;
    font-family: 'Trirong', serif;
}

section#products ul.list > li > span.fa-list::after {
    content: "List";  
}

section#products ul.list > li > span.fa-th-large::after {
    content: "Grid";
}

#sticky-tab-sales {
    position: fixed;
    bottom: 20%;
    right: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    z-index:99;
}

    #sticky-tab-sales .sticky-tab {
        width: 65px;
        height: 300px;
        position: relative;
        float: left;
        background-image: url('/Content/images/contact-tab-background.png');
        background-size:cover;
        background-position: center center;
        box-shadow:0 5px 50px 0 rgba(0,0,0,0.53);
    }

    #sticky-tab-sales .sticky-tab .title {
        width: 300px;
        height: 65px;
        position:absolute;
        top:117px;
        left:-118px;
        transform:rotate(-90deg);
        text-align:center;
        line-height:65px;
        font-size:30px;
        font-weight:600;
        text-transform:uppercase; 
    }

    #sticky-tab-sales .sticky-tab::after {
        content: "<<<\00000aklik";
        display: block;
        position: absolute;
        top: 300px;
        left: 10px;
        width:30px;
        line-height:18px;
        font-weight:bold;
        font-size:15px;
        color:#900224;
    }

#sticky-tab-sales .salesarea {
    overflow: hidden;
    width: 0px;
    -webkit-transition: width 1s; /* Safari */
    transition: width 1s;
    float: right;
    font-size:14px;
}

    #sticky-tab-sales:hover .salesarea {
        width: 940px;
    }

    #sticky-tab-sales .salesarea h2{
        color:#fff;
        margin:0;
        padding:0;
        margin-bottom:30px;
    }

    #sticky-tab-sales .salesarea .employee-name {
        font-size:18px;
    }

    #sticky-tab-sales .salesarea .employee-title {
        font-style:italic;
    }

    #sticky-tab-sales .salesarea .salesdepartment {
        width: 940px;
        height: 300px;
        padding: 20px 15px;
        background-image: url('/Content/images/contact-background.png');
        background-size: 100% 100%;
        background-position: center center;
    }

        /*// Extra small devices (portrait phones, less than 576px)*/
        @media (max-width: 575px) {
        }


        @media (max-width: 991px) {

            /*.search {
                overflow: hidden;
                margin: -15px;
            }*/

                /*.search H1.right {
                    margin-left: auto;
                    text-align: right;
                }*/

            .main-headline-productprice,
            .main-headline-productfinancing {
                margin-left: auto;
            }

            .main-headline-productprice {
                margin-right: -30px;
            }

            .main-headline-productfinancing {
                margin-right: -55px;
            }

            .main-headline-navisearch {
                position: absolute;
                left: 15px;
                bottom: -32px;
            }
        }

    /*// Small devices (landscape phones, 576px and up)*/
    @media (max-width: 767px) {

        body.productsnavi-overlay-visible {
            margin-top: 0px;
        }

        .productsnavi-search {
            width: 200px;
            margin-right: 40px;
        }

        .productsnavi-position {
            width: 150px;
        }

        .search {
            overflow: hidden;
            margin: -15px;
        }

            .search H1.right {
                margin-left: auto;
                text-align: right;
            }

        .main-headline-productprice,
        .main-headline-productfinancing {
            margin-left: auto;
        }

        .main-headline-productprice {
            margin-right: -5px;
        }

        .main-headline-productfinancing {
            margin-right: -35px;
        }

        .main-headline-navisearch {
            position: absolute;
            left: -10px;
            bottom: 20px;
        }

        .productsnavi-search {
            width: 110px;
        }
    }

    @media (max-width: 500px) {

        .productsnavi-search {
            width: 150px;
            margin-right: 23px;
        }

        .productsnavi-position {
            width: 100px;
        }
    }
    /*// Medium devices (tablets, 768px and up)*/
    @media (min-width: 768px) and (max-width: 991px) {
    }
    /*// Large devices (desktops, 992px and up)*/
    @media (min-width: 992px) and (max-width: 1199px) {
    }
    /*// Extra large devices (large desktops, 1200px and up)*/
    @media (min-width: 1200px) {
    }


.optionals-item .dd-placeholder-info-link {
    position:absolute;
    top:10px;
    right:10px;
    cursor: pointer;
    color: #A02845;
    font-size: 30px;
}

    .optionals-item .dd-placeholder-info-link i {
        background-color: #fff;
        border-radius: 50%;
        width: 29px;
        height: 30px;
    }

        .optionals-item .dd-placeholder-info-link i::before {
            margin-left: 2px;
        }

.modal .modal-header .close {
    float: right;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 10px;
    margin: -1rem -1rem -1rem auto;
}

.modal .modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
body {
}


/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767px) {
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}
.mt-1 {
    margin-top: 0.25rem
}
.mt-2 {
    margin-top: 0.5rem
}
.mt-3 {
    margin-top: 1rem
}
.mt-4 {
    margin-top: 1.5rem
}
.mt-5 {
    margin-top: 3rem
}
.mb-1 {
    margin-bottom: 0.25rem
}

.mb-2 {
    margin-bottom: 0.5rem
}

.mb-3 {
    margin-bottom: 1rem
}

.mb-4 {
    margin-bottom: 1.5rem
}

.mb-5 {
    margin-bottom: 3rem
}

.ui-widget-header .ui-icon {
    background-image: url('/Content/images/ui-icons_cc0000_256x240.png');
}

.position-relative{
    position:relative;
}

table.openhours {
}
table.openhours .title {
}

table.openhours .day {
    width: 70px;
}
table.openhours .time {
    width: 90px;
}

.top-logo{
    padding-top:5px;
}

.top-logo img {
    max-height: 75px !important;
}

.logo-container {
    margin-left:-130px;
    top:20px !important;
}

    .logo-container .navbar-brand {
        padding:0px;
    }

@media (min-width:1420px) {
    .left-overflow-logo{
        display:block;
    }
    .top-logo{
        display:none;
    }
}
@media (max-width:1419px) {
    .left-overflow-logo {
        display: none;
    }

    .top-logo {
        display: block;
    }

}

    /*******************************************************
                 DYNAMIC MENU START
********************************************************/
    /****  DEFAULT STYLIG ******/
    /* HORIZONTAL MENU */
    #dynamic-menu {
        *zoom: 1;
        clear: both;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 100;
        position: relative;
        width: 100%;
    }

    #dynamic-menu ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        #dynamic-menu ul li {
            position: relative;
            display: block;
        }

    #dynamic-menu a {
        text-decoration: none;
        white-space: nowrap;
        display: block;
    }

    #dynamic-menu .horizontal-menu.init {
        overflow: hidden;
    }

    #dynamic-menu .horizontal-menu > li {
        float: left;
        display: block;
    }

    #dynamic-menu > .horizontal-menu > li > a {
        height: 45px;
        line-height: 45px;
    }

    #dynamic-menu .horizontal-menu .overflow-root > a {
        display: block;
        float: right;
        height: 45px;
    }

        #dynamic-menu .horizontal-menu .overflow-root > a .collapse-menu-toggle {
            width: 20px;
            height: 20px;
            margin-top: 15px;
        }

        #dynamic-menu .horizontal-menu .overflow-root > a .bar {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #fff;
            margin-bottom: 4px;
        }

    /* VERTICAL MENU*/
    #dynamic-menu .horizontal-menu > li .vertical-menu {
        display: none;
    }

    #dynamic-menu .horizontal-menu li.open > .vertical-menu {
        display: block;
    }


/*==========  Non-Mobile First Method  ==========*/
/* Large devices (large desktops, 1200px and up) */
@media only screen and (min-width:1201px) {
}

/* Medium devices (desktops, 992px and up) */
@media only screen and (max-width : 1200px) and (min-width:992px) {
}

/* Small devices (tablets, 768px and up) */
@media only screen and (max-width : 991px) and (min-width:768px) {
}

/* Extra small devices (phones, less than 768px) */
@media only screen and (max-width : 767px) {
    #dynamic-menu .horizontal-menu .overflow-root {
        width: 100%;
        margin-left: 0;
    }

    #dynamic-menu li .fa-caret-down,
    #dynamic-menu li .fa-caret-left,
    #dynamic-menu li .fa-caret-right {
        display: none;
    }
}

/* Not phone */
@media only screen and (min-width:768px) {
    /* */
    #dynamic-menu .horizontal-menu > li > .vertical-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }

    #dynamic-menu .horizontal-menu li > .vertical-menu .vertical-menu {
        /*position: absolute;
        left: 100%;
        top: 0;*/
    }

    #dynamic-menu .horizontal-menu > li.open > a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li.open > a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li.open > a .fa-caret-right {
        display: none;
    }
    #dynamic-menu .horizontal-menu > li.open > a .fa-caret-up {
        display: inline-block;
    }
    #dynamic-menu .horizontal-menu > li .vertical-menu li.open a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li .vertical-menu li.open a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li .vertical-menu li.open a .fa-caret-right {
        display: none;
    }

    #dynamic-menu .horizontal-menu > li .vertical-menu li.open a .fa-caret-up {
        display: inline-block;
    }
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li.open a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li.open a .fa-caret-right,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li.open a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li.open a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li.open a .fa-caret-right,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li.open a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li.open a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li.open a .fa-caret-right,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li.open a .fa-caret-left {
        display: none;
    }

    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li.open a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li.open a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li.open a .fa-caret-up {
        display: inline-block;
    }

    #dynamic-menu .horizontal-menu > li > a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li > a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li > a .fa-caret-right {
        display: none;
    }

    #dynamic-menu .horizontal-menu > li .vertical-menu li a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li .vertical-menu li a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li .vertical-menu li a .fa-caret-right {
        display: none;
    }


    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li a .fa-caret-right,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li a .fa-caret-right,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li a .fa-caret-left,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li a .fa-caret-up,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li a .fa-caret-right,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li a .fa-caret-left {
        display: none;
    }

    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu li a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu li a .fa-caret-down,
    #dynamic-menu .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu .vertical-menu li a .fa-caret-down {
        display: inline-block;
    }

}

/* MOTAS */
#dynamic-menu .horizontal-menu.init {
    height: 45px;
}

    #dynamic-menu .horizontal-menu.init > .menu-item {
        /*visibility: hidden;*/
    }

#dynamic-menu .horizontal-menu > li .vertical-menu {
    background-color: #fff;
}

#dynamic-menu > .horizontal-menu > li {
    margin-left: 35px;
}

    #dynamic-menu > .horizontal-menu > li.overflow-root {
        margin-left: 10px;
    }

        #dynamic-menu > .horizontal-menu > li.overflow-root > a {
            padding-left: 40px;
        }

    #dynamic-menu > .horizontal-menu > li > a {
        /*border-bottom: 8px solid transparent;*/
        color: #fff;
        line-height: 45px;
    }

    #dynamic-menu > .horizontal-menu > li.menu-item.open > a,
    #dynamic-menu > .horizontal-menu > li.menu-item:hover > a {
        /*border-bottom: 8px solid #C6322A;*/
    }

    #dynamic-menu > .horizontal-menu > li.menu-item > .vertical-menu {
        background-color: #fff;
        min-width: 100%;
    }

        #dynamic-menu > .horizontal-menu > li.menu-item > .vertical-menu li {
            padding: 10px 70px 10px 20px;
        }

    #dynamic-menu > .horizontal-menu > li.menu-item .vertical-menu {
        box-shadow: 0px 2px 5px 2px rgba(0,0,0,0.2);
    }
        #dynamic-menu > .horizontal-menu > li.menu-item .vertical-menu .vertical-menu {
            box-shadow: none;
        }

    #dynamic-menu > .horizontal-menu .vertical-menu a {
        color: #444;
        font-size: 15px;
    }

@media only screen and (min-width:768px) {
    #dynamic-menu .horizontal-menu {
        float: right;
    }

        #dynamic-menu .horizontal-menu > li.overflow-root > .vertical-menu {
            left: auto;
            right: 0;
        }


            #dynamic-menu .horizontal-menu > li.overflow-root > .vertical-menu li a {
                padding: 10px 70px 10px 20px;
            }


            #dynamic-menu .horizontal-menu > li.overflow-root > .vertical-menu .vertical-menu {
                left: auto;
                right: 100%;
            }

    #dynamic-menu > .horizontal-menu > li.overflow-root .vertical-menu {
        box-shadow: 0px 2px 5px 2px rgba(0,0,0,0.2);
    }
        #dynamic-menu > .horizontal-menu > li.overflow-root .vertical-menu .vertical-menu {
            box-shadow: none;
        }
}

@media only screen and (max-width:767px) {

    /*.nav-container {
        padding-left: 0px;
        padding-right:0px;
    }*/

    #dynamic-menu {
        margin-left: 0px;
    }

    #dynamic-menu .dropdown .burger-menu {
        margin-top: 15px;
    }

    #dynamic-menu > .horizontal-menu > li.overflow-root {
        margin-left: 0px;
    }

    #dynamic-menu > .horizontal-menu > li:first-of-type {
        margin-left: 0;
    }

    #dynamic-menu .horizontal-menu .overflow-root > a {
        float: none;
        margin-right:20px;
    }

        #dynamic-menu .horizontal-menu .overflow-root > a .collapse-menu-toggle {
            float: right;
        }

        #dynamic-menu .horizontal-menu > li.open > .vertical-menu {
            display: block;
            position: relative;
            left: -15px;
            width: calc(100% + 30px);
        }

    #dynamic-menu .overflow-root ul {
        margin-left: 0px;
    }

    #dynamic-menu .overflow-root {
        margin-bottom: 5px;
    }

    #dynamic-menu .horizontal-menu > li .vertical-menu {
        background-color: #444;
    }

    #dynamic-menu .horizontal-menu li a {
        margin-top: 1px;
        margin-bottom: 1px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left:40px;
    }

    #dynamic-menu > .horizontal-menu .vertical-menu a {
        font-size: 20px;
        font-weight:400;
        background-color: #950C22;
        color: #fff;
    }

    #dynamic-menu > .horizontal-menu .vertical-menu li ul li a {
        padding-left: 70px;
        background-color: #DF9B0A;
    }

    #dynamic-menu .horizontal-menu .overflow-root > a .collapse-menu-toggle {
        margin-top: -10px;
        width: 40px;
    }

        #dynamic-menu .horizontal-menu .overflow-root > a .collapse-menu-toggle .bar {
            height: 5px;
            margin-bottom: 7px;
        }
}

/*******************************************************
                 DYNAMIC MENU END
********************************************************/



/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767px) {
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}


@media (max-width: 767px) {
    .top-container .top-item {
        margin-left:0px !important;
    }
}

/* BOOTSTRAP ADDON */
@media (min-width:1500px){
    .col-xlg-3{
        width:25%;
    }
}


/* PRODUCT RENTAL */
/*#rentalProducts #searchForm {
    margin-bottom:30px;
}

.custom-slider .background {
    height: 50px;
}

    .custom-slider .background .bar {
        margin-top: 5px;
        height: 20px;
        opacity: 0.2;
        background-image: url('/Content/images/slider_background.png');
        background-size: 100% 100%;
    }

    .custom-slider .background .min-value,
    .custom-slider .background .max-value {
        position: absolute;
        top: 0;
        opacity: 0.3;
    }

    .custom-slider .background .min-value {
        left: -25px;
    }

    .custom-slider .background .max-value {
        right: -25px;
    }


.custom-slider.ui-slider .ui-slider-handle {
    background-color: #555454;
    color: #FFF;
    border:1px solid #fff;
    text-align: center;
    padding: 5px 10px;
    width: 70px;
    min-width: 50px;
    height: auto;
    box-shadow: 0px 2px 5px 0 rgba(0,0,0,0.4);
    margin-left: -35px;
    border-radius:5px;
}

.custom-slider.ui-widget.ui-widget-content {
    border: none;
}

.custom-slider.ui-slider-horizontal {
    height: auto;
}


#rentalProducts .rental-products-grid {

}

#rentalProducts .rental-product,
#rentalProducts .rental-product:hover,
#rentalProducts .rental-product:focus,
#rentalProducts .rental-product:active {
    display: block;
    width: 100%;
    text-decoration: none;
    margin-bottom:15px;
    box-shadow:0 0 5px 0 rgba(0,0,0,0.2);
    color:#444;
}

    #rentalProducts .rental-product .rental-product-image-container
    {
        height:250px;
        width:100%;
    }

        #rentalProducts .rental-product .rental-product-image-container .rental-product-image{
            object-fit:cover;
            width:100%;
            height:100%;
        }

    #rentalProducts a.rental-product:hover {
        box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    }

    #rentalProducts .rental-product .rental-product-info {
        padding:10px;
        height:200px;
        font-size:15px;
        overflow:hidden;
    }

        #rentalProducts .rental-product .rental-product-info .name{
            font-size:20px;
        }

        #rentalProducts .rental-product .rental-product-info .field-label{
            margin-top:20px;
            line-height:110%;
        }

        #rentalProducts .rental-product .rental-product-info .field-value,
        #rentalproduct .rental-product-info .field-value {
            font-size: 30px;
            line-height: 110%;
            color: #999;
        }

#rentalProducts .rental-product .alternative-periods-container {
    padding: 10px;
}

#rentalProducts .alternative-periods-products .rental-product .rental-product-info {
    height: auto;
}*/


/* Rental details */
/*#rentalProductCarousel .carousel-inner > .item {
    height: auto;
}

#rentalproduct .price-box {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #0000005A;
    border-radius: 11px;
    padding:20px;
}

    #rentalproduct .price-box .field-label {
        font-weight:bold;
    }
    #rentalproduct .price-box .field-value {
        font-size:24px;
        color:#888888;
    }

#rentalproduct .link-button {
    display: block;
    background-color: #809BA1;
    color:#fff;
    padding:20px;
}
    #rentalproduct .link-button .text-container {
        display: flex;
        align-items: center;
        justify-content: left;
        height:115px;
        font-size:50px;
    }

    #rentalproduct .link-button .chevron-container {
        font-size: 80px;
        font-weight: 100;
        text-align: right;
    }

        #rentalproduct .link-button .chevron-container i {
            margin-right: -10px;
            margin-left: -10px;
        }

#rentalProducts input[type="text"] {}
#rentalProducts input[type="text"]::placeholder{}


    #rentalproduct input[type="text"] {
        background-color: #809BA1;
        color: #fff;
    }

    
    #rentalproduct input[type="text"]::placeholder {
        color: #fff;
    }*/


/* Helpers */
.d-block {
    display: block;
}
.error-text {
    font-weight:bold;
    color:red;
}

a.link-button {
    cursor:pointer!important;
}
/* CSS SPINNER */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #950C22;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #950C22 transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/************************************************
************* RENTAL PRODUCT PAGE ***************
************************************************/
.rentalPage-container {
    padding: 0 100px;
}

@media (max-width: 1400px) {
    .rentalPage-container {
        padding: 0 50px;
    }
}

@media (max-width: 1200px) {
    .rentalPage-container {
        padding: 0 30px;
    }
}

@media (max-width: 575px) {
    .rentalPage-container {
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    .rentalPage-container {
        padding: 0;
    }
}

/* search form */
#rentalProducts #searchForm {
    margin-bottom: 30px;
}

    #rentalProducts #searchForm .rental-title-large {
        font-weight: 600;
        font-size: 19px;
        margin-right: 30px;
        line-height: 20px;
    }

    #rentalProducts #searchForm .rental-title-small {
        font-weight: 600;
        font-size: 17px;
        line-height: 20px;
        display: none;
    }

    #rentalProducts #searchForm .rentalPeriod-wrapper {
        display: flex;
        align-items: center;
    }

        #rentalProducts #searchForm .rentalPeriod-wrapper .startDate-wrapper {
            margin-right: 30px;
        }

    #rentalProducts #searchForm .datepicker {
        background-color: #a20404;
        color: #fff;
        border-radius: 0;
        border: none;
        box-shadow: 0px 2px 5px 0 rgba(0,0,0,0.4);
        width: 135px;
    }

        #rentalProducts #searchForm .datepicker::placeholder {
            color: #fff;
        }

    #rentalProducts #searchForm .date-label {
        font-weight: 400;
        font-size: 16px;
        margin: 0;
    }

@media (max-width: 1200px) {
    #rentalProducts #searchForm .rental-title-large {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    #rentalProducts #searchForm .rentalPeriod-wrapper {
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    #rentalProducts #searchForm .rentalPeriod-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    #rentalProducts #searchForm .rental-title-large {
        display: none;
    }

    #rentalProducts #searchForm .rental-title-small {
        display: block;
        margin-top: 20px;
    }

    #rentalProducts #searchForm .rentalPeriod-wrapper {
        margin-top: 10px;
    }

        #rentalProducts #searchForm .rentalPeriod-wrapper .startDate-wrapper {
            margin-right: 0;
            width: 50%;
        }

        #rentalProducts #searchForm .rentalPeriod-wrapper .endDate-wrapper {
            width: 50%;
        }
}

@media (max-width: 340px) {
    #rentalProducts #searchForm .datepicker {
        width: 125px;
    }

    #rentalProducts #searchForm .date-label {
        font-size: 15px;
    }
}

/* Range slider */
#searchForm .capacitySlider-wrapper {
    display: flex;
    align-items: center;
}

#searchForm .slider-wrapper {
    width: 250px;
    margin-left: 40px;
}

#searchForm .custom-slider .background {
    height: 50px;
    padding: 0 15px;
}

    #searchForm .custom-slider .background .bar {
        margin-top: 5px;
        height: 20px;
        opacity: 0.2;
        background-image: url('/Content/images/slider_background.png');
        background-size: 100% 100%;
    }

    #searchForm .custom-slider .background .min-value,
    #searchForm .custom-slider .background .max-value {
        position: absolute;
        top: 0;
        color: #777;
    }

    #searchForm .custom-slider .background .min-value {
        left: 0;
    }

    #searchForm .custom-slider .background .max-value {
        right: 0;
    }

#searchForm .custom-slider.ui-slider .ui-slider-handle {
    background-color: #a20404;
    color: #FFF;
    border: none;
    text-align: center;
    padding: 5px 10px;
    width: 70px;
    min-width: 50px;
    height: auto;
    box-shadow: 0px 2px 5px 0 rgba(0,0,0,0.4);
    margin-left: -30px;
    border-radius: 0;
}

    #searchForm .custom-slider.ui-slider .ui-slider-handle:focus {
        outline: none;
        border: none;
    }

#searchForm .custom-slider.ui-widget.ui-widget-content {
    border: none;
}

#searchForm .custom-slider.ui-slider-horizontal {
    height: auto;
}

@media (max-width: 992px) {
    #searchForm .capacitySlider-wrapper {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    #searchForm .capacitySlider-wrapper {
        display: block;
        margin-top: 15px;
    }

    #searchForm .slider-wrapper {
        margin-left: 30px;
    }
}

@media (max-width: 340px) {
    #searchForm .slider-wrapper {
        width: 230px;
    }
}

/* Rental product */
/*#rentalProducts .rental-products-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

    #rentalProducts .rental-products-grid .rental-product-col {
        display: flex;
        flex-direction: column;
    }*/

#rentalProducts .rental-product {
    margin-bottom: 50px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}

/* Carousel/image */
    #rentalProducts .rental-product .carousel-inner .item {
        height: 250px;
        width: 100%;
    }

        #rentalProducts .rental-product .rental-product-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

    #rentalProducts .rental-product .image-placement {
        height: 250px;
    }

    #rentalProducts .rental-product .carousel .left.carousel-control,
    #rentalProducts .rental-product .carousel .right.carousel-control {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #rentalProducts .rental-product .carousel .left.carousel-control img,
    #rentalProducts .rental-product .carousel .right.carousel-control img {
        height: 35px;
        width: 32px;
    }

/* Info */
    #rentalProducts .rental-product .rental-product-info {
        padding: 15px;
        height: 210px;
        font-size: 14px;
        overflow: hidden;
    }

        #rentalProducts .rental-product .rental-product-info .name {
            font-size: 20px;
            font-weight: 600;
            height: 58px;
        }

    #rentalProducts .rental-product .rental-product-info .field-label {
        color: #999;
    }

        #rentalProducts .rental-product .rental-product-info .field-value,
        #rentalproduct .rental-product-info .field-value {
            font-size: 26px;
            color: #777;
            font-weight: 600;
        }

        #rentalProducts .rental-product .rental-product-info .description {
            margin-top: 10px;
            font-size: 18px;
            font-weight: 600;
            line-height: 22px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            max-height: 44px;
        }

    #rentalProducts .rental-product .product-link {
        display: block;
        background-color: #900224;
        color: #fff;
        padding: 10px;
        text-align: center;
        font-size: 20px;
        text-decoration: none;
    }

@media (max-width: 768px) {
    #rentalProducts .rental-product .rental-product-info {
        height: auto;
    }

        #rentalProducts .rental-product .rental-product-info .field-label {
            margin-top: 15px;
        }

        #rentalProducts .rental-product .rental-product-info .name {
            height: auto;
        }
}

/* Rental conditions */
#rentalConditions {
    margin-bottom: 50px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}

    #rentalConditions .focusText {
        padding: 30px;
    }

        #rentalConditions .focusText strong {
            font-size: 24px;
        }

    #rentalConditions .conditionsLinks {
        background-color: #900224;   
        text-align: center;    
    }

        #rentalConditions .conditionsLinks button {
            color: #fff;
            display: block;
            text-decoration: none;
            padding: 10px;
            font-size: 20px;
            border: none;
            border-radius: 0;
            width: 100%;
            background-color: transparent;
        }

/* Condition modal */
    #conditions-modal .close {
        color: #fff;
        font-size: 55px;
        padding: 10px 20px;
        font-weight: 400;
    }

        #conditions-modal .close:hover {
            opacity: 1;
        }

    #conditions-modal .modal-content {
        background-color: transparent;
        color: #fff;
        font-size: 18px;
        box-shadow: none;
        border: none;
    }

    #conditions-modal .modal-dialog {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        margin-top: 60px;
    }

@media (min-width: 768px) {
    #conditions-modal .modal-dialog {
        width: 750px;
    }
}

@media (min-width: 992px) {
    #conditions-modal .modal-dialog {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    #conditions-modal .modal-dialog {
        width: 1170px;
    }
}
body.basket-overlay-visible {
    margin-top: 110px;
}

banner.small h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin: 0px;
    padding: 0px 0px 10px 0px;
}

/* MOVE TO website.css? */

.custom-dropdown {
  border:1px solid #fff;
  box-sizing:border-box;
  position:relative;
}
    .custom-dropdown .custom-dropdown-label{
        padding:10px;
    }

        .custom-dropdown .custom-dropdown-label .fa-caret-down {
            float: right;
            margin-top:5px;
        }

        .custom-dropdown .custom-dropdown-list {
            display:none;
            position:absolute;
            top:45px;
            left:0px;
            width:100%;
            background-color:rgba(0,0,0,0.8);
        }

        .custom-dropdown:hover .custom-dropdown-list {
            display: block;
            z-index:1000;
        }

        .custom-dropdown .custom-dropdown-list a{
            display: block;
            padding:5px 10px;
            color:#fff;
            text-decoration:none;
        }

/* GLOBAL */
.outer-basket-overlay {
    background-color:rgba(0,0,0,0.8);
    color:#fff;
    height: 30px;
}

    .outer-basket-overlay a {
        color:#fff;
    }
.middle-basket-overlay {
    height: 100%;
    padding-top: 5px;
}
.inner-basket-overlay {
}

#catalog {
    min-height: 600px;
}

/* CATEGORY */
    #catalog .category .category-menu-item {
        position: relative;
        color: #fff;
        display:block;
        margin-bottom:20px;
    }

        #catalog .category .category-menu-item .campaign {
            position:absolute;
            top:0px;
            left:0px;
            width:100%;
            background-color:rgba(255, 234, 0, 0.9);
            color:#000;
            padding:10px;
            opacity:0.7;
        }

#catalog .category .category-menu-item .name {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(68,68,68,0.70);
    font-size: 18px;
    padding: 10px 25px;
    display: block;
}

    #catalog .items .item-menu-item {
        box-shadow: 0 6px 8px 0px rgba(0,0,0,0.55);
        margin-bottom: 30px;
    }

        #catalog .items .item-menu-item .item-data-container {
            position: relative;
            text-align: center;
            height: 120px;
            font-family: 'Open Sans Condensed', sans-serif;
            font-size: 18px;
            font-weight: bold;
            padding: 10px 15px;
        }
            /*.items .item-menu-item .item-data-container*/
    #catalog .item-count-in-basket {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #DB1419;
        color: #fff;
        top: 45px;
        right: 25px;
        text-align: center;
        line-height: 40px;
        font-size: 20px;
        font-weight: bold;
        z-index: 25;
    } 

            #catalog .items .item-menu-item .item-data-container .name {
                font-family: 'Source Sans Pro', sans-serif;
                font-size: 14px;
                font-weight: 400;
                color: #444;

                /*height:60px;*/
                overflow:hidden;
                padding-bottom:5px;
            }
            #catalog .items .item-menu-item .item-data-container .partno {
                font-family: 'Roboto Condensed';
                font-size: 14px;
                font-weight: 400;
                color: #aaa;

                overflow: hidden;
                padding-bottom: 5px;
            }

            #catalog .items .item-menu-item .item-data-container .price {
                font-family: 'Encode Sans Expanded', sans-serif;
                font-size:18px;
                font-weight:400;
                margin-top:10px;
            }

            #catalog .items .item-menu-item .item-data-container .recommended-retail-price {
                text-decoration: line-through;
                color:#DEDEDE;
            }

			/*#catalog .items .item-menu-item .item-data-container .item-link-icon,
			#catalog .items .item-menu-item .item-data-container .add-to-basket-icon {
				position: absolute;
				bottom: 0px;
				display: block;
				width: 40px;
				height: 40px;
				background-color: rgba(255,0,0,0.9);
				color: #fff;
				font-size: 26px;
				text-align:center;
                cursor:pointer;
			}*/

            #catalog .items .item-menu-item .item-data-container .item-link-icon {
                position: absolute;
                bottom: -4px;
                display: block;
                color: #DB1419;
                font-size: 30px;
                font-weight: 400;
                cursor: pointer;
                left: 10px;
            }

            #catalog .items .item-menu-item .item-data-container .add-to-basket-icon {
                position: absolute;
                bottom: 0px;
                display: block;
                width: 40px;
                height: 40px;
                color: #DB1419;
                text-indent: -2px;
                font-size: 30px;
                text-align: center;
                cursor: pointer;
                right: 0px;
            }
                #catalog .items .item-menu-item .item-data-container .add-to-basket-icon:hover, #catalog .items .item-menu-item .item-data-container .has-variants-icon:hover {
                    text-decoration: none;
                }
            #catalog .items .item-menu-item .item-data-container .has-variants-icon {
                position: absolute;
                bottom: 0px;
                display: block;
                width: 40px;
                height: 40px;
                background-color: rgba(200,200,200,0.9);
                color: #fff;
                padding-top: 5px;
                font-size: 16px;
                text-align: center;
                cursor: pointer;
                right: 0px;
            }
            #catalog .items .item-menu-item .item-data-container .has-variants-icon span {
                font-size: 20px;
            }
            #catalog .items .item-menu-item .item-data-container .price-label {
                font-family: 'Lato';
                font-size: 16px;
                font-weight: 400;
                color: #8F2727;
            }
            #catalog .items .item-menu-item .item-data-container .price-value {
                font-family: 'Russo One';
                font-size: 20px;
                font-weight: 400;
                color: #8F2727;
            }

/* ITEM */
#catalog .item .item-description{
    background-color:#444;
    color:#fff;
    min-height:416px;
    position:relative;
    padding:0 15px;
    font-family: 'Roboto', sans-serif;
}

    #catalog .item .item-description h2,
    #catalog .item .item-description h3,
    #catalog .item .item-description h4 {
        font-size: 18px;
    }

    #catalog .item .item-description p{
        margin:0px;
        padding:0px;
    }

    #catalog .item .item-description p b {
        display:block;
    }
    
    #catalog .item .item-description .name {
        font-family: 'Open Sans Condensed', sans-serif;
        font-size: 40px;
        font-weight: bold;
        text-shadow: 0px 3px 6px rgba(0,0,0,1.0);
        line-height: 40px;
    }
    #catalog .item .item-description .description {
        font-size:16px;
        font-weight:300;
        padding-top:15px;
        padding-bottom:15px;
    }

#catalog .item .item-description .price .price-label {
    font-weight: 400;
    text-shadow: 0 3px 6px rgba(0,0,0,1.0);
    font-size: 18px;
    line-height: 20px;
}
    #catalog .item .item-description .price .price-value {
        font-weight: 400;
        font-size: 24px;
        line-height:26px;
        color: #f00;
    }

    #catalog .dock-bottom {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
    }

    #catalog .item .item-description .item-description-row {
        margin-bottom:65px;
    }

    #catalog .item .item-description::after{
        content:" ";
        display:table;
        clear:both;
    }
    
    #catalog .item .item-description .links a {
        color: #fff;
        display: block;
        position: relative;
        text-align: center;
        padding: 10px;
        background-color: rgba(0,0,0,0.34);
        float: left;
        text-decoration: none;
    }

            #catalog .item .item-description .links a .fa{
                margin-right:5px;
            } 
            
            #catalog .item .item-description .links a:hover {
                text-decoration: none;
            }
            
            #catalog .item .item-description .links .print-link {
                width: 45%;
            }

        #catalog .item .item-description .links .print-link::after {
            width: 1px;
            height: 80%;
            display: block;
            background-color: #fff;
            position: absolute;
            right: 0px;
            top:10%;
            content: "";
        }

    #catalog .item .item-description .links .add-to-basket {
        width:55%;
    }

    #catalog .catalog-rootcat-name {
        position:absolute;
        bottom:0px;
        left:0px;
        width:100%;
        font-weight: 400;
        font-size: 18px;
        color: #fff;
        background-color: rgba(0,0,0,0.79);
        padding: 15px;
        margin: 5px 0px 10px 0px;
    }

    #catalog .tree .catalogtree-level1 {
        font-family: 'Lato', sans-serif;
        font-weight: 300;
        font-size: 18px;
    }

        #catalog .tree .catalogtree-level1 .tree-bullet{
            padding: 0px 10px 0px 0px;
            margin: 0px;
            position: relative;
            top: -3px;
        } 
        
        #catalog .tree a {
            color: #444;
        }
        #catalog .tree a:hover {
            color: #f00;
        }
    #catalog .tree a.active {
        color: #444;
        font-weight: 400;
    }

    #catalog h2 {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        font-size: 40px;
        margin: 0px;
        padding: 0px 0px 10px 0px;
    }


    /*** ITEM DETAILS BEGIN ***/
    #catalog .itemdetails-image-primary {
        box-shadow: 0 3px 6px 0px rgba(0,0,0,0.16);
    }
    #catalog .itemdetails-variants {
        width: 100%;
        height: 70px;
    }
        #catalog .itemdetails-variants .custom-dropdown {
            padding: 10px;
            text-align: center;
            border: 1px solid #444444;
            width: 100%;
            font-size: 18px;
            color: #444444;
        }
        #catalog .itemdetails-variants .custom-dropdown-list {
            top: 68px;
        }
    #catalog .custom-dropdown .custom-dropdown-list a:hover {
        background-color: #aaa;
    }
    #catalog .item-details-rowspacer{
        height: 20px;
    }
    #catalog .item a.add-to-basket {
        width: 100%;
        color: white;
        font-size: 18px;
        text-align: center;
        padding: 20px 15px;
        z-index: 20;
        display: block;
        background-color: #FF0000;
        cursor: pointer;
        background: rgb(147,53,55);
        background: -moz-linear-gradient(top, rgba(147,53,55,1) 0%, rgba(219,20,25,1) 100%);
        background: -webkit-linear-gradient(top, rgba(147,53,55,1) 0%,rgba(219,20,25,1) 100%);
        background: linear-gradient(to bottom, rgba(147,53,55,1) 0%,rgba(219,20,25,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#933537', endColorstr='#db1419',GradientType=0 );
        box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
    }
    #catalog .item a.add-to-basket:hover {
        text-decoration: none;
    }

    #catalog .item a.print-link {
        width: 100%;
        color: white;
        font-size: 18px;
        text-align: center;
        padding: 20px 15px;
        z-index: 20;
        display: block;
        background-color: #8D8D8D;
        cursor: pointer;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
    } 
    
    #catalog .item .item-description {
        min-height: unset;
        background-color: white;
    }
        #catalog .item .item-description .item-description-row {
            font-family: 'Lato';
            font-size: 14px;
            color: #444444;
            margin-bottom: 10px;
        }

        #catalog .item .item-description .name {
            font-family: 'Open Sans Condensed', sans-serif;
            font-size: 32px;
            color: #444444;
            font-weight: 600;
            text-shadow: none;
            line-height: normal;
        }
        #catalog .item .item-description .stockno {
            font-family: 'Roboto Condensed' font-family: 'Open Sans Condensed';
            font-size: 14px;
            color: #AAAAAA;
            text-shadow: none;
            line-height: normal;
        }

    #catalog .item .itemdetails-price {
        margin-top: 20px;
        padding: 20px 15px;
        height: 80px;
        width: 100%;
    }
        #catalog .item .itemdetails-price .price-label {
            font-family: 'Lato' font-family: 'Open Sans Condensed';
            font-size: 16px;
            font-weight: normal;
        }
        #catalog .item .itemdetails-price .price-value {
            font-size: 30px;
            font-weight: 500;
            color: #DB1419;
        }
    #catalog .item .item-video-headline {
        font-family: 'Encode Sans', sans-serif;
        font-size: 22px;
        font-weight: 400;
        color: #444444;
        padding: 20px 0 10px 0;
    }
    #catalog .item .item-video-embed {
        min-height: 300px;
    }
    /*** ITEM DETAILS END ***/

@media (max-width: 767px) {
    body.basket-overlay-visible {
        margin-top: 0px;
    }
}
.dd-productsearch,
.dd-template,
.dd-data {
    display: none;
}
/* IE 11 fix */
a.dd-data.showempty,
a.dd-data.value,
span.dd-data.showempty,
span.dd-data.value {
    display: inline !important;
}
/* IE 11 fix */
div.dd-data.showempty,
div.dd-data.value {
    display: block !important;
}
.dd-data.showempty,
.dd-data.value {
    display: initial !important;
}
    .dd-productsearch .show{
        display:block;
    }
.dd-productsearch-labels {
    font-size: 11px;
    color: #888;
}
    .dd-productsearch-labels:first-child {
        position: absolute;
        left: 5px;
        bottom: -40px;
        z-index: 1001;
    }
    .dd-productsearch-labels:last-child {
        position: absolute;
        right: 5px;
        bottom: -40px;
        z-index: 1001;
    }
    .dropdown-slider {
        min-height: 40px;
    }

    .dropdown-select.disabled input {
        background-color:#eee;
        cursor: not-allowed;
    }
.dropdown-container,
.dropdown-list,
.dropdown-list ul,
.dropdown-list li,
.dropdown-list input,
.dropdown-list span,
.dropdown-slider {
    position: relative;
    z-index: 1001;
}

.carousel-control {
    z-index: 10;
}

.dropdown-list, .dropdown-slider {
    padding: 8px 12px 0px 15px !important;
}

@media only screen and (max-width : 767px) {
    .dropdown-slider {
        height: 60px !important;
    }
    .dropdown-slider .ui-slider .ui-slider-handle {
        position: absolute;
        top: -10px;
        z-index: 1002;
        width: 30px;
        height: 30px;
        cursor: default;
        -ms-touch-action: none;
        touch-action: none;
    }
    .dropdown-slider {
        padding: 15px 30px 0px 15px !important;
    }
    .dd-productsearch-labels:first-child {
        bottom: -55px;
    }

    .dd-productsearch-labels:last-child {
        bottom: -55px;
    }

    .dropdown-list li {
        line-height: 30px;
    }
    .dropdown-list span {
        font-size: 20px;
    }
    .dropdown-list span .fa{
        font-size: 20px;
        padding: 0px 10px;
    }
}


.nav-up {
    top: -40px;
}
.nav-down {
    top: 0px !important;
}

body{
    overflow-x:hidden;
}

.show-caravan,
.show-tent,
.show-boat,
.show-mc,
.show-car,
.is-caravan .hide-caravan,
.is-tent .hide-tent,
.is-boat .hide-boat,
.is-mc .hide-mc,
.is-car .hide-car {
    display: none;
}

.is-caravan .show-caravan,
.is-tent .show-tent,
.is-boat .show-boat,
.is-mc .show-mc,
.is-car .show-car {
    display: block;
}

@media (min-width: 768px) {
    #dd-form-search .collapse {
        display: block;
    }
}

.img-responsive-full {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.white-space-pre-line {
    white-space: pre-line;
}
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Open+Sans+Condensed:300,700|Roboto|Roboto+Condensed|Lato:300,400,700|Russo+One:400');

body {
	font-family: 'Roboto', sans-serif;
}

body > div.container-fluid {
		padding: 0;
	}

.float-left{
	float:left;
}

.width-33 {
	width:33.33%;
	display:block;
}

.dock-bottom {
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
}

#itemdetails .description-outer {
	background-color: rgba(0,0,0,0.8);
	color: #fff;
	min-height: 315px;
	padding: 15px;
	position: relative;
}

	#itemdetails .description-outer  .description {
		padding-bottom:50px;
	}
	
	#itemdetails .description-outer .title {
		font-family: 'Open Sans Condensed', sans-serif;
		font-size: 40px;
		font-weight: bold;
		text-shadow: 0px 3px 6px rgba(0,0,0,1.0);
		line-height: 40px;
		display: block;
		margin-bottom: 10px;
	}

	#itemdetails .description-outer .dock-bottom {
		padding:5px 15px;
	}
	
	#itemdetails .description-outer .price-label {
		font-weight: bold;
		font-size: 20px;
	}
    #itemdetails .description-outer .price-value {
        color: #8F2727;
        font-size: 25px;
    }



/* Product details */
#productdetails h1 {
    font-family: 'Russo One', sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: black;
    padding: 0px;
    margin: 0px 0px 10px 0px;
}
#productdetails h3 {
    font-size: 16px;
}

#productdetails img.finance {
    max-width: 200px;
}

#productdetails .product-info {
    font-size: 14px;
}
#productdetails .product-pricetext {
    font-size: 14px;
}
#productdetails .product-pricevalue {
    font-weight: bold;
    font-size: 20px;
    color: #8F2727;
}
#productdetails .finance-info {
    font-size: 12px;
}
#productdetails .product-attributegroup {
    padding-top: 5px;
    font-size: 14px;
}
#productdetails .product-optionalgroup {
    font-weight: bold;
    font-size: 14px;
}
#productdetails .product-optionalitemsum {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0px;
}
#productdetails .product-optionalitemsum td{
    padding: 10px;
}
#productdetails .product-optionalitem {
    font-size: 13px;
}
    #productdetails .product-optionalitem td {
        padding: 4px 10px;
    }
#productdetails tr.product-optionalitem td:first-of-type{
    padding-left:10px;
}


#productdetails .top-spacing {
    margin-top: 20px;
}
#productdetails_footer img.logo {
    /*max-width: 280px;*/
    max-height: 120px;
    height: auto;
    width: auto;
}
#productdetails_footer .footer-text {
    font-size: 12px;
    line-height: 20px;
}
/*product-finance-details*/
/* SECTION #PRODUCT */
section#products a, section#product a:hover {
    color: inherit;
    text-decoration: none;
}

section#product {
    padding: 0px 0px 20px 0px;
}

section#product .lup {
    position:absolute;
    top:0px;
    right:0px;
    color:#fff;
    font-size:30px;
    padding:15px 25px;
    background-color:rgba(0, 0, 0, 0.34);
    z-index:1000;
}

section#product .lup a{
    color:#fff;
    text-decoration:none;
}

/*
    -----------------------------
    region begin: productdetails
*/
.productdetails-outer{
    padding: 15px 0px;
}
.productdetails-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9B9B9B;
    display:block;
}
.productdetails-value {
    font-family: Trirong, serif;
    font-size: 24px;
    font-weight: 600;
    color: #444444;
}

.productdetails-price-before {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9B9B9B;
    display: block;
}

.productdetails-description {
    font-family: Trirong, serif;
    font-size: 16px;
    font-weight: 400;
    color: #444444;
}
.productdetails-spacer {
    height: 15px;
}
.productdetails-functions {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #707070;
}
    .productdetails-functions i.fa{
        font-size: 36px;
        padding-top: 5px;
    }
    /* 
    region end: productdetails 
    -----------------------------
*/
    /*
    Old styling...
*/
    section#product .product-info {
        padding: 0px 15px 10px 15px;
        border: 1px solid #999;
        height: 491px;
        z-index: 10;
        position: relative;
    }

section#product .product-info .headline{
    height:110px;
}

section #product .key-data {
    margin-top:60px;
}

section#product .mileage{
    margin-top: 20px;
}


section#product .product-info .horsepower, section#product .product-info .cubic {
    font-size: 14px;
    color: #fff;
    font-family: 'Russo One', sans-serif;
}

section#product .model-description {
    background-color: #242424;
    color: #9A9A9A;
    padding: 35px 30px;
    margin-top: -15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

section#product .link-left {
    padding-right: 5px;
}

section#product .link-right {
    padding-left: 5px;
} 


section#product .link-box {
    background-color: #B4B4B4;
    color: #fff;
    margin-top: 5px;
    padding:20px;
    font-size: 18px;
    font-weight: 300;
}

    section#product .link-box .fa {
        color: #fff;
        font-size: 17px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.71);
        margin-right: 5px;
    }
    
section#product h1 {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.71);
    padding: 0px;
    margin: 20px 0px 10px 0px;
}

section#product h2 {
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: 34px;
    padding: 0px;
    margin: 15px 0px 10px 0px;
}
    
    
.product-info-footer {
    position: absolute;
    bottom: 0px;
    min-height: 70px;
    width: 100%;
    padding-right: 30px;
}

.product-info-footer-content {
    background-color: black;
    padding: 25px 15px 25px 0px;
    line-height: 20px;
    height: 70px;
}

.product-info-footer .link {
    color: white;
    text-transform: uppercase;
    font-size: 18px;
}

    .product-info-footer .link a {
        color: white;
    }

        .product-info-footer .link a:hover {
            color: #999999;
            text-decoration: none;
        }

    .product-info-footer .link span {
        padding-right: 10px;
    }

.product-info .product-info-specs {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.product-info-spacer {
    display: block;
    height: 20px;
}

.product-price {
    margin-top: 0px;
}

.product-finance {
    margin-top: 15px;
}


.product-finance-price .finance-price {
    font-size:24px;
    font-weight:700;
}

.product-finance-price > span {
    display:block;
}

.product-price-text, .product-finance-text {
    margin-top:20px;
}

.product-price-value, .product-finance-value {
    font-size: 36px;
    font-weight:700;
}

.product-finance-details {
    font-size: 14px;
    font-style: italic;
    font-weight: 200;
    margin-top:20px;
}

.product-details {
    padding-top: 30px;
}



.product-attribute-grounps {
    padding-left: 0px;
    padding-right: 0px;
}

.product-attribute-group {
    margin-top: 20px;
}

.product-attribute-group-inner {
    min-height: 265px;
}

.product-attribute-description {
    min-height: unset;
}

.product-attribute-group-inner .headline {
    font-family: Trirong, serif;
    font-size: 18px;
    font-weight: 600;
    color: #444444;
    /*background-color: #444;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.50);*/
}

.product-attribute-group-inner .content {
    font-size:15px;
}

.product-attribute-group-inner hr {
    border: 1px solid #666;
}

.dd-product-attributes-outer {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.product-attribute-group-innerbox {
    min-height: 340px;
    padding: 15px;
}

    .product-attribute-group-innerbox .footer {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 24px;
        background-color: rgba(144,2,36,0.85);
    }

.product-attribute-group-innerbox-salesinfo {
    min-height: 290px;
    padding: 15px;
    background-color: rgba(144,2,36,0.85);
    color: #fff;
}
    .product-attribute-group-innerbox-salesinfo .headline {
        color: #fff;
    }
    .product-attribute-group-innerbox-salesinfo .footer {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 24px;
        background-color: #fff;
    }

.salesinfo-outer {
    padding: 15px 0px;
    font-family: Trirong, serif;
    font-size: 14px;
    font-weight: 600;
}
    .salesinfo-outer .name {
        font-size: 18px;
    }
.salesinfo-outer .title {
    padding-top: 10px;
}
    .salesinfo-outer .phone {
        padding-top: 10px;
    }
    .salesinfo-outer .email {
        padding-top: 10px;
    }

.salesinfo-image{
    float: right;
}
.salesinfo-image img {
    width: auto;
    height: 200px;
}

.nav-tabs {
    /*display: inline-flex;*/
    display: inline-flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li {
        display: flex;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid #ddd;
            border-radius: 4px 4px 0 0;
            background-color: #F5F5F5;
            color: #444444;
            font-family: 'Roboto Condensed','Helvetica Neue',Helvetica,Arial,sans-serif;
            font-size: 16px;
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd;
            }

.tab-content {
    border: 1px solid #ddd;
    border-top-color: transparent;
    margin-top: -2px;
    padding: 30px 20px 20px 20px;
    background-color: #363636;
}


#product .product-details #product-details-box {
    border: 1px solid #f00;
    padding: 15px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #9A9A9A;
    background-color: rgba(36,36,36,0.6);
}

/*SECTION #productoptionals */
.optionals-content-name-description {
    height: 45px;
    overflow: hidden;
}


 /*SECTION #productoptionals 
section#productoptionals {
    min-height: 520px;
    
}

section#productoptionals .optionals-basketcontainer {
    height:100%;
}

section#productoptionals h2 {
    font-family: 'Open Sans Condensed';
    font-weight: bold;
    font-size: 40px;
    color: #444444;
}
section#productoptionals h3 {
    font-family: 'Roboto Condensed';
    font-weight: 300;
    font-size: 30px;
    color: #444444;
}

.optionals-item {
    margin-bottom:30px;
}

.optionals-item img{
    width: 100%;
}

.optionals-item .optionals-item-image img {
    width: 100%;
}

.optionals-item .optionals-content {
    font-family: 'Encode Sans', sans-serif;
    padding:10px 15px;
    color:#444;
    font-size:14px;
}

.optionals-item .optionals-content h4{
    font-size:18px;
    font-weight:400;
}

.optionals-item .optionals-content .description {
    min-height:120px;
}

    .optionals-item .optionals-content-name-description {
        height:45px;
        overflow:hidden;
    }

    .optionals-item .optionals-content .optionals-content-name-description,
    .optionals-item .optionals-content .optionals-content-name-description h4 {
        font-size: 14px;
        font-family: 'Lato';
        display: inline-block;
        margin: 0px;
    }

    .optionals-item .optionals-price {
        margin-top: 10px;
        font-size: 20px;
        font-weight: 600;
        color: #888;
        display:inline-block;
    }

    .optionals-item .space {
        margin-top: 10px;
        font-size: 20px;
        font-weight: 600;
        color: #888;
        display: inline-block;
        padding: 0px 15px;
    } 
    
    .optionals-item .optionals-price::after {
        content: " ";
        border-right: 1px solid #fff;
        display: table;
        position: absolute;
        right: -15px;
        top: 0px;
        height:100%;
    }

    .optionals-item .optionals-price-month {
        text-align:center;
    }

    

    .optionals-item .optional-price-row {
        margin-bottom:10px;
    }

.switch .text {
    position: absolute;
    top: 3px;
    left: 47px;
    color: #888;
    text-transform: lowercase;
    font-size: 12px;
}

input:checked + .slider + .text {
    display:none;
}

.optionals-basket {
    position:fixed;
    position: sticky;
    top: 0px;
}

.optionals-basket-summaryarea {
    height:100%;
    position:relative;
}

    .optionals-basket-summaryarea .optionals-basket-summary{
        
        background-color:#444;
        color:#fff;
        padding:15px;
    }

@media Screen and (min-width:769px) {
    .optionals-basket-summaryarea .optionals-basket-summary {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
    }
}

@media Screen and (max-width:768px){
    .optionals-basket .row-eq-height {
        display:block;
    }

    section#product .link-box {
        font-size: 16px;
    }
}





section#productoptionals .optionals-basket-intro {
    background-color: #444444;
    color: white;
    padding: 15px 10px;
    font-size:14px;
}

section#productoptionals .optionals-basket-options {
    font-size: 11px;
    padding-top: 2px;
    background-color: #444;
    padding-right:5px;
}

section#productoptionals .optionals-basket-selecteditems {
    background-color: #444;
    color: #fff;
    padding: 10px;
    font-size:12px;
}

section#productoptionals .btn-default {
    color: #fff;
    background-color: #444;
    border-color: #ccc;
}




.panel-group {
    margin:15px;
}




.optionals-basket-summaryprice {
position:relative;
}
.optionals-basket-summaryprice::after {
    content: " ";
    display: table;
    border-right:1px solid #fff;
    height:100%;
    position:absolute;
    right:0px;
    top:0px;
}

    .optionals-basket-summaryprice:last-child::after{
        display:none;
    }

.optionals-basket-sendarea{
    padding:15px 30px;
    box-shadow:0 3px 6px 0 rgba(0,0,0,0.16);
    background-color:#fff;
}

    .optionals-basket-sendarea > .row{
        margin-bottom:10px;
    }


    .optionals-basket-sendarea input {
        width: 100%;
        margin-bottom: 3px;
        margin-top: 3px;
        background: #ffffff;
        background: -moz-linear-gradient(top, #ffffff 0%, #e8e8e8 100%);
        background: -webkit-linear-gradient(top, #ffffff 0%,#e8e8e8 100%);
        background: linear-gradient(to bottom, #ffffff 0%,#e8e8e8 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=0 );
        box-shadow: 0 2px 10px 0px rgba(0,0,0,0.2);
        border: none;
        padding: 3px 5px;
        font-size: 14px;
    }

    .optionals-basket-sendarea button {
        background: #db1419;
        background: -moz-linear-gradient(top, #db1419 0%, #933537 100%);
        background: -webkit-linear-gradient(top, #db1419 0%,#933537 100%);
        background: linear-gradient(to bottom, #db1419 0%,#933537 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db1419', endColorstr='#933537',GradientType=0 );
        width: 100%;
        color: #fff;
        border: none;
        padding: 3px 5px;
        margin-bottom: 3px;
        margin-top: 3px;
    }*/

/* SECTION #productoptionals */
.optionals-item-image {
    position: relative;
}

.optionals-item-select {
    position: absolute;
}

section#productoptionals h2 {
    font-family: 'Open Sans Condensed';
    font-weight: bold;
    font-size: 40px;
    color: #444444;
}

section#productoptionals h3 {
    font-family: 'Roboto Condensed';
    font-weight: 300;
    font-size: 30px;
    color: #444444;
}

section#productoptionals img {
    width: 100%;
}

section#productoptionals .optionals-name {
    font-family: Montserrat, sans-serif;
    font-weight: normal;
    font-size: 14px;
    color: #fff;
}

section#productoptionals .optionals-item {
    margin-bottom: 10px;
    border: 1px solid #95989A;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.5);
}

    section#productoptionals .optionals-item input[type="checkbox"] {
        width: 24px;
        height: 24px;
        border: 1px solid black;
    }

section#productoptionals .optionals-item-frames {
    padding: 10px;
}

    section#productoptionals .optionals-item-frames:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

section#productoptionals .optionals-item-relitem {
    padding: 10px;
}

    section#productoptionals .optionals-item-relitem:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

section#productoptionals .optionals-item-select {
    /*position: absolute;
    bottom: 10px;
    left: 30px;*/
    margin-top: 10px;
}
    section#productoptionals .optionals-item-select .text {
        margin-left: 70px;
        font-family: Montserrat,sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #888888;
    }

    section#productoptionals .optionals-item-select .switch {
        margin-top: 0px;
    }

section#productoptionals .optionals-description {
    font-family: 'Roboto';
    font-weight: lighter;
    font-size: 14px;
    color: #888888;
}

section#productoptionals .optionals-content {
    border: 1px solid #FF0000;
    background-color: #A02845;
    padding: 0px 15px 45px 15px;
}

section#productoptionals .optionals-imageselect {
}

section#productoptionals .optionals-description h3 {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 16px;
    color: #888888;
}

section#productoptionals .optionals-frames {
    font-family: 'Roboto';
    font-weight: lighter;
    font-size: 14px;
    color: #888888;
    border: 1px solid #ddd;
    margin: 10px 0px;
}

    section#productoptionals .optionals-frames h3 {
        font-family: 'Roboto';
        font-weight: normal;
        font-size: 16px;
        color: #888888;
    }

section#productoptionals .optionals-related {
    font-family: 'Roboto';
    font-weight: lighter;
    font-size: 14px;
    color: #888888;
    border: 1px solid #ddd;
}

    section#productoptionals .optionals-related h3 {
        font-family: 'Roboto';
        font-weight: normal;
        font-size: 16px;
        color: #888888;
    }

section#productoptionals .optionals-price-month,
section#productoptionals .optionals-price {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

section#productoptionals .optionals-basket-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
}

section#productoptionals .optionals-basket-sendarea {
    margin-top: 10px;
    padding: 15px;
    background-color: white;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}

    section#productoptionals .optionals-basket-sendarea input[type="text"] {
        width: 100%;
        height: 34px;
        margin: 5px;
        padding: 5px 15px;
        border: 1px solid #95989A;
        border-radius: 2px;
    }

        section#productoptionals .optionals-basket-sendarea input[type="text"]::placeholder {
            font-size: 11px;
            padding: 2px 2px 2px 15px;
            color: #888888;
        }

        section#productoptionals .optionals-basket-sendarea input[type="text"].validation-error {
            border: 1px solid #95989A;
            border-radius: 2px;
            border-bottom: 2px solid #a40707;
            background-color: #faeeee;
        }
    /*section#productoptionals .optionals-basket-sendarea input[type="text"].validation-error::placeholder {
            color: white;
        }*/
    section#productoptionals .optionals-basket-sendarea button {
        width: 100%;
        height: 34px;
        margin: 5px;
        padding: 5px 15px;
        border: 0px;
        border-radius: 2px;
        text-align: left;
        box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
        color: white;
        font-family: Montserrat, sans-serif;
        font-weight:bold;
        font-size: 14px;
        line-height: 18px;
        background: rgb(219,20,25);
        background: -moz-linear-gradient(left, rgba(219,20,25,1) 0%, rgba(147,53,55,1) 100%);
        background: -webkit-linear-gradient(left, rgba(219,20,25,1) 0%,rgba(147,53,55,1) 100%);
        background: linear-gradient(to right, rgba(219,20,25,1) 0%,rgba(147,53,55,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db1419', endColorstr='#933537',GradientType=1 );
    }

section#productoptionals .optionals-basket-intro {
    height: 50px;
    background-color: #444444;
    color: white;
    padding: 10px;
}

section#productoptionals .optionals-basket-options {
    font-size: 11px;
    padding-top: 2px;
    background-color: white;
}

section#productoptionals .optionals-basket-selecteditems {
    background-color: white;
    color: #444444;
    padding: 10px;
}

section#productoptionals .optionals-basket-summaryarea {
    /*height: 50px;*/
    color: white;
    font-size: 16px;
    font-weight: 400;
    width: 50%;
    padding-left: 15px;
}

section#productoptionals .optionals-basket-summary {
    font-family: Montserrat, sans-serif;
    background-color: #444444;
    padding: 10px;
}

section#productoptionals .optionals-basket-summaryprice {
    font-size: 18px;
    font-weight: 700;
}

    section#productoptionals .optionals-basket-summaryprice:not(last) {
        border-right: 2px solid white;
    }

.basket-request-sendinfo {
    padding: 20px;
    font-size: 16px;
    background-color: #edffe8;
}

.basket-request-sendinfo-error {
    padding: 20px;
    font-size: 16px;
    background-color: #fadcdc;
}

input.validation-error {
    background: rgba(255,0,0,0.1);
}

#product .product-images .carousel-bg {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: auto;
    background-color: rgba(0,0,0,0.6);
    display: block;
    z-index: 16;
    padding: 15px 20px 5px 20px;
    text-align: left;
}
/*#product .product-images .carousel-indicators {
    position: relative;
    bottom: 5px;
    text-align: left;
    width: 100%;
    left: 0px;
    margin: 0px;
    padding: 0px;
}

    #product .product-images .carousel-indicators li {
        width: 50px;
        height: 18px;
        border: 0px;
        border-radius: 0px;
        border-top: 1px solid #fff;
        margin: 0px 10px;
        padding: 0px;
        padding-top: 6px;
        color: #eee;
        text-indent: 0px;
        text-align: center;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
    }
    #product .product-images .carousel-indicators li:not(:first-of-type) {
        margin-left: 40px;
    }
#product .product-images .carousel-indicators li.active {
    width: 50px;
    height: 18px;
    border: 0px;
    border-radius: 0px;
    border-top: 1px solid #f00;
    background-color: transparent;
    color: #f00;
}*/



@media only screen and (max-width : 767px) {
    section#product h1 {
        font-size: 24px;
        padding-bottom: 10px;
        text-align: center;
    }

    #product .product-price {
        background: #900224;
        color: white;
        padding: 10px 20px;
        border-radius: 4px;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
    }

    .product-price .productdetails-label {
        color:#fff;
    }

    #product .product-images .carousel-bg {
    }

    #product .product-images .carousel-indicators {
    }

        #product .product-images .carousel-indicators li {
            padding-top: 6px;
            font-size: 14px;
        }

            #product .product-images .carousel-indicators li:not(:first-of-type) {
                margin-left: 10px;
            }

    #product .financing{
        font-size: 14px;
    }

    section#productoptionals .optionals-basket-summaryarea {
        width: 100%;
        padding-left:0px;
    }

    .productdetails-functions {
        text-align: center;
        display: block;
        margin-bottom: 20px;
    }

}

@media only screen and (min-width : 768px) and (max-width : 1024px){
    .product-price-value {
        font-size: 20px;
    }
    section#product .product-info{
        padding-top: 30px;
    }
    section#product .mileage{
        margin-top: 0px;
    }
    section#product .key-data{
        margin-top: 20px;
    }
    #product .product-modelyear{
        font-size: 14px;
    }
}

@media only screen and (max-width : 991px) {

    .product-attribute-group-innerbox {
        min-height: unset;
    }

    section#product .product-info {
        border: 0px;
        height: unset;
    }

    .product-attribute-group-inner {
        min-height: unset;
    }
}

@media only screen and (max-width : 768px) {

    #product .product-images {
        margin-top: 20px;
    }
}


    @media only screen and (min-device-width : 1200px) {
        section#product .product-info {
            /*padding-top: 30px;*/
        }
    }

/****************************** Finance elements ********************************/
section#product .finance-element {
    font-family: Montserrat, sans-serif;
}

    section#product .finance-element .title {
        font-size: 25px;
        font-weight: 600;
        text-shadow: 0 0 #000;
    }

    section#product .finance-element .desc {
        font-size: 14px;
        font-weight: 600;
        color: #000;
        margin-bottom: 10px;
    }

    section#product .finance-element .link-image {
        display: flex;
        align-items: center;
    }

    section#product .finance-element img {
        max-height: 32px;
        margin: 0 20px;
    }

    section#product .finance-element a {
        color: #fff;
        padding: 2px 15px;
        font-size: 20px;
    }

@media (max-width: 991px) {
    section#product .finance-element a {
        padding: 2px 10px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    section#product .finance-element .title {
        text-align: center;
    }

    section#product .finance-element .desc {
        text-align: center;
    }

    section#product .finance-element .link-image {
        justify-content: center;
    }

    section#product .finance-element {
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    section#product .finance-element .title {
        font-size: 20px;
    }

    section#product .finance-element .desc {
        font-size: 14px;
    }

    section#product .finance-element a {
        padding: 2px 10px;
        font-size: 16px;
    }

    section#product .finance-element img {
        max-height: 28px;
    }
}
.inner-basket-overlay .count {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    right: 5px;
    bottom: 5px;
}

#invoice h2, #shipping h2, #parceldroppoint h2, #delivery h2, #method_of_payment h2, #summary h2 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

#invoice input[type=text], #delivery input[type=text], #invoice input[type=email], #delivery input[type=email] {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eee;
    height: 34px;
    padding: 4px 15px;
    margin-top:10px;
    box-shadow: 0 2px 10px 0px rgba(0,0,0,0.20);
}

#parceldroppoint ul, #shipping ul, #method_of_payment ul {
    list-style-type: none;
    padding: 0px;
    padding-left: 30px;
    margin: 0px;
}

    #parceldroppoint ul li input[type=radio], #shipping ul li input[type=radio], #method_of_payment ul li input[type=radio] {
        margin-right: 10px;
        transform: scale(1.5);
    }
#invoice input[type=radio], #delivery input[type=radio] {
    margin: 5px 15px;
    transform: scale(1.5);
}

#summary input.quantity {
    width: 30px;
    border: 1px solid #e0e0e0;
    text-align: right;
    padding: 0px;
    margin: 0px;
}

.red-link-button {
    border: 2px solid #ff0000;
    border-radius: 4px;
    padding: 8px;
    margin: 0px;
    background-color: #ff0000;
    color: white;
}

    .red-link-button:hover {
        color: #ff0000;
        background-color: white;
    }

.white-link-button {
    border: 2px solid white;
    border-radius: 4px;
    padding: 8px;
    color: #ff0000;
    background-color: white;
    margin: 0px;
}

    .white-link-button:hover {
        border: 2px solid #ff0000;
        color: red;
    }

.required-fields-information {
    font-size: 12px;
    padding: 5px;
    color: #444;
}



section#invoice select, section#delivery select, section#shipping select {
    background: none;
    margin-top: 10px;
    box-shadow: 0 2px 10px 0px rgba(0,0,0,0.20);
    font-size:16px;
}

section#parceldroppoint, section#delivery, section#shipping, section#method_of_payment, section#summary {
    padding-top: 0px;
}

    section#parceldroppoint row {
        padding: 4px 0px;
    }

.parcelshop-info {
    margin: 0px 10px;
    padding: 2px;
    color: #444;
}

input.validate.error {
    border: 2px solid #ff0000;
}

#invoice input[type=text].validate.error, #delivery input[type=text].validate.error, #invoice input[type=email].validate.error, #delivery input[type=email].validate.error {
    border: 2px solid #ff0000;
}
#summary textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 80px;
    min-height: 34px;
    border-radius: 4px;
    border: 1px solid #eee;
    padding: 5px 15px;
}
/*#summary .basket {
    background-color: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 15px 15px;
}*/
    #summary .basket hr {
        border: 1px solid #ddd;
    }
#summary .basket .header {
    font-size: 18px;
    padding-bottom: 15px;
}
#summary input[type=number] {
    background-color: #f0f0f0;
    border: 0px;
}

/*** BASKET BEGIN ***/

#basket input[type="number"].quantity {
    width: 50px;
    /*height: 30px;*/
    text-align: center;
    margin: 0px;
    padding: 0px;
    border-radius: 4px;
    border: 1px solid #ddd;
}
#basket span.quantity-change{
    width: 40px;
    display: inline-block;
}
    #basket span.quantity-change.quantity-change-down {
        text-align: right;
        padding-right: 5px;
    }
    #basket span.quantity-change.quantity-change-up {
        text-align: left;
        padding-left: 5px;
    }
#basket .total-row{
    font-weight: bold;
}
#basket .header-row {
    font-weight: bold;
}
#basket .white-link-button {
    font-size: 14px;
    cursor: pointer;
}
/*** BASKET END ***/

@media only screen and (max-device-width : 767px) {
    ul#GLSParcelShop {
        padding-top:20px;
    }
        ul#GLSParcelShop li {
            padding-left: 22px;
            text-indent: -22px;
        } ul#GLSParcelShop li input {
            position: relative;
            left: -5px;
            top: 2px;
        }
}
body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Trirong', serif;
    font-size: 16px;
    margin-top: 50px;
}

h1 {
    font-family: 'Trirong', serif;
    font-size: 26px;
    color: #C6322A;
    margin-top: 0px;
}

/*h2 {
    font-family: 'Trirong', serif;
    font-size: 26px;
    color: #444;
}*/
h2, h2 strong,
#workshop .bottom-article h2 strong {
    /*font-family: 'Trirong', serif;
    font-size: 26px;
    color: #444;*/
    color: #707070;
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0px;
    line-height: 55px;
}

h3, h3 strong,
#workshop .bottom-article h3 strong {
    color: #222;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0px;
    line-height: 55px;
}    
a {
    color: #FF0000;
}

.strong {
    font-weight:600;
}

.align-bottom {
    height: 100%;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

section {
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom:20px;
}

/* Site navigation container */

.site-navigation {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
}

    .site-navigation .site {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-top: 3px;
        height: 100%;
    }

        .site-navigation .site.active {
            background-color: #900224;
            box-shadow: 0px 3px 6px rgba(0,0,0,1);
        }

        .site-navigation .site .description {
            color: #C69CA6;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Open Sans', sans-serif;
        }

        .site-navigation .site .link {
            font-family: Trirong, sans-serif;
            color: #C1C1C1;
            font-size: 20px;
            font-weight: 600;
        }

        .site-navigation .site.active .link {
            color: white;
        }

        .site-navigation .site .link:hover {
            text-decoration: none;
        }

/* Top container */

.top-fluid-container .top-right {
    height: 130px;
    background-color: #DB1419;
    background-image: url('../Content/top-grafik-bg.png');
    background-repeat: repeat-x;
}

.top-container {
    color:#444;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
}

    .top-container a,
    .top-container a:hover,
    .top-container a:active,
    .top-container a:focus {
        color: #444;
        text-decoration:none;
    }

.top-container .top-item {
    margin-left: 70px;
    text-transform: uppercase;
}

.top-container .fa{
    font-size: 30px;
    margin-left: 15px;
}

.top-container .logo {
    display:block;
    max-height:107px;
    width:auto;
}

.top-container .top-container-start {
    height:130px;
}

.top-container .top-container-break {
    background-color: #fff;
    text-align: right;
    padding-right:0px;
}

/* Bootstrap carousel */
.carousel-control .fa-angle-right, .carousel-control .icon-next {
    right: 20%;
    margin-right: -10px;
}

.carousel-control .fa-angle-left, .carousel-control .icon-prev {
    left: 20%;
    margin-left: -10px;
}

.carousel-control .fa-angle-left, .carousel-control .fa-angle-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}
.carousel-indicators {
    bottom: 60px;
}

/******** Toggle Switch ***********/
/* The switch - the box around the slider */
.optionals-item-select .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-top: 10px;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #E30613;
}

input:focus + .slider {
    box-shadow: 0 0 1px #E30613;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    } 

/******************************************************************* BANNER *******************************************************************************/

.carousel-inner .item {
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
    width: 100vw;
    max-width: 100%;
    height: calc(100vh - 50px);
    /*max-height: 660px;*/
    background-position: center center;
    background-size: cover;
}

#carouselBrands .carousel-inner .item {
    height: unset;
}

section#product .carousel-inner .item, .imageviewer .carousel-inner .item {
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    height: unset;
    width: unset;
    max-width: none;
}

.front-banner-container {
    position: relative;
}

.front-shadow {
    margin-top: -1px;
}

.carousel-indicators {
    bottom: 0px;
}

.carousel-control {
    z-index: 20;
    width: 60px;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .thumbnail a > img, .thumbnail > img {
    width: 100%;
}

.front-banner-container .box-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    top: unset;
}

    .front-banner-container .box-wrapper .box {
        position: relative;
        display: unset;
        margin-bottom: 0;
        z-index: 500;
        width: 20%;
        float: left;
    }

        .front-banner-container .box-wrapper .box .box-header {
            background-color: rgba(0,0,0,0.66);
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            width: unset;
            height: 85px;
            padding-top: 5px;
            padding-bottom: 10px;
        }

        .front-banner-container .box-wrapper .box .box-header-top {
            background-color: transparent; /*rgba(0,0,0,0.2);*/
            font-size: 56px;
            font-weight: 600;
            color: #fff;
            text-align: left;
            width: unset;
            height: 245px;
            padding-top: 10px;
            padding-bottom: 10px;
            text-shadow: 0px 3px 6px rgba(0,0,0,0.69);
            line-height: 54px;
        }

        .front-banner-container .box-wrapper .box .box-header span {
            font-size: 24px;
            font-weight: 500;
            display: block;
            text-align: center;
            line-height: 20px;
        }

        .front-banner-container .box-wrapper .box .box-counter {
            background-color: rgba(255,255,255,0.66);
            font-size: 21px;
            font-weight: 600;
            color: #444;
            text-align: center;
            width: unset;
            height: unset;
            padding-top: unset;
            padding-bottom: unset;
            display: flex;
            flex-flow: unset;
            justify-content: center;
        }

            .front-banner-container .box-wrapper .box .box-counter span {
                display: unset;
                text-align: center;
                line-height: 30px;
                margin-left: 5px;
            }

                .front-banner-container .box-wrapper .box .box-counter span a,
                .front-banner-container .box-wrapper .box .box-counter span a:hover,
                .front-banner-container .box-wrapper .box .box-counter span a:focus,
                .front-banner-container .box-wrapper .box .box-counter span a:active {
                    color: #333;
                    text-decoration: none;
                }

@media screen AND (max-width:1399px) {
    .front-banner-container .box-wrapper .box .box-header {
        font-size: 26px;
        height: 75px;
    }

    .front-banner-container .box-wrapper .box .box-header span {
        font-size: 20px;
        line-height: 18px;
    }
}

@media screen AND (max-width:1199px) {
    .front-banner-container .box-wrapper .box .box-header {
        font-size: 22px;
        height: 65px;
    }

        .front-banner-container .box-wrapper .box .box-header span {
            font-size: 18px;
            line-height: 16px;
        }

    .front-banner-container .box-wrapper .box .box-counter {
        font-size: 18px;
    }
}

@media screen AND (max-width:991px) {
    .front-banner-container .box-wrapper .box .box-header {
        font-size: 18px;
    }

    .front-banner-container .box-wrapper .box .box-counter {
        font-size: 16px;
    }

        .front-banner-container .box-wrapper .box .box-counter span {
            margin-left: 3px;
        }

    .carousel-inner .item {
        height: 100vh;
    }
}

@media screen AND (max-width:767px) {
    .carousel-inner .item {
        height: calc(100vh - 50px);
    }

    .front-banner-container .box-wrapper {
        position: absolute;
        bottom: unset;
        left: 0;
        width: 100%;
        top: 100%;
    }

        .front-banner-container .box-wrapper .box {
            width: 100%;
            display: flex;
            margin-top: 10px;
        }

            .front-banner-container .box-wrapper .box .box-header {
                width: 70%;
                align-items: center;
                display: flex;
                padding: 5px 10px 10px 15px;
                background-color: rgba(0,0,0,0.80);
            }

                .front-banner-container .box-wrapper .box .box-header span {
                    margin-left: 5px;
                    font-size: 20px;
                    font-weight: 600;
                }

            .front-banner-container .box-wrapper .box .box-counter {
                width: 30%;
                align-items: center;
            }
}

@media screen AND (max-width:499px) {
    .front-banner-container .box-wrapper .box .box-header {
        font-size: 18px;
    }

        .front-banner-container .box-wrapper .box .box-header span {
            font-size: 18px;
        }

    .front-banner-container .box-wrapper .box .box-counter span {
        line-height: 18px;
    }
}

@media screen AND (max-width:359px) {
    .front-banner-container .box-wrapper .box .box-header {
        width: 65%;
        padding: 10px;
        font-size: 16px;
        display: grid;
    }

    .front-banner-container .box-wrapper .box .box-counter {
        width: 35%;
    }

    .front-banner-container .box-wrapper .box .box-header span {
        font-size: 16px;
    }
}

.front-banner-container .textbox {
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 535px;
    height: 125px;
    background-color: #444;
    color: #fff;
}

.front-text-container {
    color: #D9D9D9;
    background-color: #444;
    padding-top: 95px;
    padding-bottom: 135px;
}

    .front-text-container H1 {
        color: #D9D9D9;
        font-size: 28px;
        font-weight: 500;
    }

.front-banner-container .remember {
    font-family: 'Amatic SC', cursive;
    height: 387px;
    width: 363px;
    color: #454545;
    position: absolute;
    top: 175px;
    left: 60px;
    padding: 10px 20px 10px 10px;
    background-image: url('../Content/post-it.png');
    z-index: 2;
}

    .front-banner-container .remember .headline {
        font-size: 60px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(17,17,17,0.42);
        -ms-transform: rotate(3deg); /* IE 9 */
        -webkit-transform: rotate(3deg); /* Chrome, Safari, Opera */
        transform: rotate(3deg);
    }

    .front-banner-container .remember .subline {
        font-size: 36px;
        font-weight: 700;
        color: #E00000;
        text-shadow: 0 2px 4px rgba(17,17,17,0.42);
        -ms-transform: rotate(3deg); /* IE 9 */
        -webkit-transform: rotate(3deg); /* Chrome, Safari, Opera */
        transform: rotate(3deg);
    }

    .front-banner-container .remember .content {
        font-size: 26px;
        font-weight: 700;
        -ms-transform: rotate(3deg); /* IE 9 */
        -webkit-transform: rotate(3deg); /* Chrome, Safari, Opera */
        transform: rotate(3deg);
    }

/*.front-banner-container .banner-infobox-outer {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 580px;
        padding: 30px;
    }

        .front-banner-container .banner-infobox-outer a,
        .front-banner-container .banner-infobox-outer a:hover {
            text-decoration: none;
        }

    .front-banner-container .banner-infobox {
        background-color: rgba(0,0,0,0.66);
        padding: 15px 30px;
    }

    .front-banner-container .banner-infobox-header {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        text-align: left;
        min-width: 300px;
        padding-bottom: 15px;*/
/*padding-top: 10px;*/
/*padding-bottom: 10px;*/
/*}

    .front-banner-container .banner-infobox-text {
        font-size: 16px;
        font-weight: 600;
        color: #FFFFFF;
        text-align: left;*/
/*padding-top: 10px;*/
/*padding-bottom: 10px;*/
/*display: flex;
        flex-flow: column;
        justify-content: flex-start;
        white-space: pre-line;
        overflow-y: hidden;
        max-height: 240px;
    }

    .front-banner-container .banner-infobox-button {
        background-color: rgba(0,0,0,0.9);
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        min-width: 300px;
        padding-top: 10px;
        padding-bottom: 10px;
    }*/

.front-banner-container #bannerText-container {
    height: 100%;
}

    .front-banner-container #bannerText-container .banner-textbox {
        position: absolute;
        width: 420px;
        padding: 30px;
    }

        .front-banner-container #bannerText-container .banner-textbox a {
            text-decoration: none;
        }

        .front-banner-container #bannerText-container .banner-textbox.Top-venstre {
            top: 140px;
            left: 50px;
        }

        .front-banner-container #bannerText-container .banner-textbox.Bund-venstre {
            bottom: 160px;
            left: 50px;
        }

        .front-banner-container #bannerText-container .banner-textbox.Top-hoejre {
            top: 140px;
            right: 50px;
        }

        .front-banner-container #bannerText-container .banner-textbox.Bund-hoejre {
            bottom: 160px;
            right: 50px;
        }

        .front-banner-container #bannerText-container .banner-textbox .title {
            font-size: 22px;
            font-weight: 700;
            line-height: 27px;
            padding-bottom: 10px;
            margin-bottom: 0;
        }

        .front-banner-container #bannerText-container .banner-textbox hr {
            margin-top: 0;
            margin-bottom: 10px;
            border: 1px solid #c3c3c3;
            opacity: 0.6;
        }

        .front-banner-container #bannerText-container .banner-textbox .text {
            font-size: 18px;
            font-weight: 500;
            line-height: 24px;
        }

        .front-banner-container #bannerText-container .banner-textbox .textBoxImage {
            width: 360px;
            max-width: 100%;
            max-height: 200px;
            object-fit: cover;
            object-position: center center;
            margin-top: 10px;
        }

@media screen AND (max-width:1419px) {
    .front-banner-container #bannerText-container .banner-textbox.Top-venstre {
        top: 160px;
        left: 35px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Bund-venstre {
        bottom: 160px;
        left: 35px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Top-hoejre {
        top: 160px;
        right: 35px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Bund-hoejre {
        bottom: 160px;
        right: 35px;
    }
}

@media screen AND (max-width:991px) {
    .front-banner-container #bannerText-container .banner-textbox.Top-venstre {
        top: 210px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Bund-venstre {
        bottom: 130px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Top-hoejre {
        top: 210px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Bund-hoejre {
        bottom: 130px;
    }
}

@media screen AND (max-width:767px) {
    .front-banner-container #bannerText-container .banner-textbox.Top-venstre,
    .front-banner-container #bannerText-container .banner-textbox.Bund-venstre,
    .front-banner-container #bannerText-container .banner-textbox.Top-hoejre,
    .front-banner-container #bannerText-container .banner-textbox.Bund-hoejre {
        bottom: 20px;
        top: auto;
        right: auto;
        left: 10%;
        width: 80%;
        padding: 20px
    }

    .front-banner-container #bannerText-container .banner-textbox .text {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }
}

@media screen AND (max-width:767px) {
    .front-banner-container {
        margin-bottom: 385px;
    }

    .front-banner-container #bannerText-container .banner-textbox.Top-venstre,
    .front-banner-container #bannerText-container .banner-textbox.Bund-venstre,
    .front-banner-container #bannerText-container .banner-textbox.Top-hoejre,
    .front-banner-container #bannerText-container .banner-textbox.Bund-hoejre {
        bottom: 0px;
        left: 0;
        width: 100%;
    }

    .front-banner-container #bannerText-container .banner-textbox .text {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
    }

    .front-banner-container .carousel-control-next,
    .front-banner-container .carousel-control-prev {
        width: 10%;
    }
}

@media screen AND (max-width:575px) {
    .front-banner-container #bannerText-container .banner-textbox.Top-venstre,
    .front-banner-container #bannerText-container .banner-textbox.Bund-venstre,
    .front-banner-container #bannerText-container .banner-textbox.Top-hoejre,
    .front-banner-container #bannerText-container .banner-textbox.Bund-hoejre {
        padding: 20px 30px;
    }

    .front-banner-container #bannerText-container .banner-textbox .textBoxImage {
        width: 360px;
        max-width: 100%;
        max-height: 150px;
    }

    .front-banner-container #bannerText-container .banner-textbox {
        text-align: center;
    }

    .front-banner-container #bannerText-container .banner-textbox hr {
        display: none;
    }

    .front-banner-container #bannerText-container .banner-textbox .text {
        height: 39px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-align: center;
    }

    .front-banner-container .carousel-control-next,
    .front-banner-container .carousel-control-prev {
        width: 20%;
    }
}

/*.carousel-inner .item {
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    background-position: bottom center;
    background-size: cover;
}

#carouselBrands .carousel-inner .item {
    height:unset;
}

section#product .carousel-inner .item, .imageviewer .carousel-inner .item {
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    height: unset;
     width: unset; 
     max-width: none; 
}

.front-banner-container {
    position: relative;
}

.front-shadow {
    margin-top:-1px;
}

.carousel-indicators {
    bottom: 0px;
}

.carousel-control {
    z-index: 20;
    width: 60px;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .thumbnail a > img, .thumbnail > img {
    width: 100%;
}

.front-banner-container .box-wrapper {
    position: absolute;
    top: 275px;
    left: 0%;
    width: 100%;
}

    .front-banner-container .box-wrapper .box {
        position: relative;
        display: inline-flex;
        margin-bottom: 40px;
        z-index: 500;
    }

.front-banner-container .box-wrapper .box .box-header {
    background-color: rgba(0,0,0,0.66);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    width: 388px;
    height:85px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.front-banner-container .box-wrapper .box .box-header span {
    font-size: 24px;
    font-weight: 500;
    display: block;
    text-align: center;
    line-height: 20px;
}


    .front-banner-container .box-wrapper .box .box-counter {
        background-color: rgba(255,255,255,0.66);
        font-size: 30px;
        font-weight: 600;
        color: #444;
        text-align: center;
        width: 217px;
        height: 85px;
        padding-top: 10px;
        padding-bottom: 10px;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

.front-banner-container .box-wrapper .box .box-counter span {
    display:block;
    text-align:center;
    line-height:30px;
}

    .front-banner-container .box-wrapper .box .box-counter span a,
    .front-banner-container .box-wrapper .box .box-counter span a:hover,
    .front-banner-container .box-wrapper .box .box-counter span a:focus, 
    .front-banner-container .box-wrapper .box .box-counter span a:active {
        color: #444;
        text-decoration:none;
    }

    .front-banner-container .textbox {
        position: absolute;
        bottom: 20px;
        left: 0px;
        width: 535px;
        height: 125px;
        background-color: #444;
        color: #fff;
    }


.front-text-container {
    color: #D9D9D9;
    background-color: #444;
    padding-top: 95px;
    padding-bottom: 135px;
}

    .front-text-container H1 {
        color: #D9D9D9;
        font-size: 28px;
        font-weight: 500;
    }

.front-banner-container .remember {
    font-family: 'Amatic SC', cursive;
    height: 387px;
    width: 363px;
    color: #454545;
    position: absolute;
    top: 175px;
    left: 60px;
    padding: 10px 20px 10px 10px;
    background-image: url('../Content/post-it.png');
    z-index: 2;
}

    .front-banner-container .remember .headline {
        font-size: 60px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(17,17,17,0.42);
        -ms-transform: rotate(3deg);*/ /* IE 9 */
        /*-webkit-transform: rotate(3deg);*/ /* Chrome, Safari, Opera */
        /*transform: rotate(3deg);
    }

    .front-banner-container .remember .subline {
        font-size: 36px;
        font-weight: 700;
        color: #E00000;
        text-shadow: 0 2px 4px rgba(17,17,17,0.42);
        -ms-transform: rotate(3deg);*/ /* IE 9 */
        /*-webkit-transform: rotate(3deg);*/ /* Chrome, Safari, Opera */
        /*transform: rotate(3deg);
    }

    .front-banner-container .remember .content {
        font-size: 26px;
        font-weight: 700;
        -ms-transform: rotate(3deg);*/ /* IE 9 */
        /*-webkit-transform: rotate(3deg);*/ /* Chrome, Safari, Opera */
        /*transform: rotate(3deg);
    }

.front-banner-container .banner-infobox-outer {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .front-banner-container .banner-infobox-outer a, 
    .front-banner-container .banner-infobox-outer a:hover {
        text-decoration: none;
    }
.front-banner-container .banner-infobox {
}
.front-banner-container .banner-infobox-header {
    background-color: rgba(0,0,0,0.9);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    min-width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.front-banner-container .banner-infobox-text {
    background-color: rgba(255,255,255,0.9);
    font-size: 24px;
    font-weight: 600;
    color: #444;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    white-space: pre-line;
}
.front-banner-container .banner-infobox-button {
    background-color: rgba(0,0,0,0.9);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    min-width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
}*/


banner.small {
    position:relative;
}


banner.small img {
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.75)
}


banner .overlay {
    position: absolute;
    bottom: 35px;
    background-color: rgba(0, 0, 0, 0.79);
    color: #fff;
    padding: 25px;
    font-size: 16px;
}

    banner .overlay .red-box {
        color: #fff;
        background-color: #DB1419;
        width: 420px;
        padding: 20px;
        font-size: 24px;
        font-weight: 600;
        margin-top: -45px;
    }

.main-headline-container {
    background-image: url('../Content/images/page-headline-bg.png');
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
    display: block;
    color: #000;
    font-size: 24px;
}

.main-headline-container .teaser {
    margin-top: 20px;
}

.main-headline-container H1 {
    font-family: Trirong, serif;
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin-top:30px;
}

.main-content-container {
    background-image: url('../Content/images/main-content-bg.png');
    background-size: cover;
    padding-bottom:200px;
}

.main-content-container H1{
    font-size: 80px;
    color:#fff;
    font-weight:600;
    margin-top:65px;
}

.main-content-container span {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.main-content-container img {
    margin-top: 170px;
}


table.openhours {
    min-width: 170px;
}


section#workshop table.openhours {
    width: 100%;
}

    table.openhours tr {

    }

    table.openhours tr td:first-of-type{
        text-align: left;
    }
        table.openhours tr td:last-of-type {
            text-align: right;
        }



nav .brandimage {
    position: relative;
    margin-top:-15px;
}

nav .payoff {
    color:#FF0000;
    display: block;
    padding-top: 58px;
}

nav .mail {
    display:block;
    font-size:18px;
    padding-top:25px;
    text-align:right;
}
nav .mail a{
    color: #fff;
}
    nav .mail a:hover {
        text-decoration:none;
    }

nav .phone {
    display:inline-block;
    font-size:28px;
    padding-left:25px;
}
nav .phonenumber {
    font-family: "hwt-artz",sans-serif;
    font-size: 28px;
    font-weight: 600;
    padding-left: 12px;
}

/* IMAGE BANNER */
.image-banner-wrappper {
    width: 100%;
    overflow:hidden;
}

.image-banner-wrappper .image-banner {
    white-space:nowrap;
}
/* FOOTER */

.pre-footer {
    margin-top: 50px;
    display:flex;
}

.pre-footer span{
    font-size: 60px;
    color:#707070;
}

    .pre-footer a {
        display:block;
        float:left;
        cursor:pointer;
    }
    
    .pre-footer .home-image, 
    .pre-footer .home-text {
        display: inline-block;
        background-color: #444444;
        color: #fff;
        float:left;
    }

.pre-footer .home-image {
    font-size: 24px;
    height: 35px;
    width: 46px;
    text-align:center;
    padding:3px;
    margin-right:1px;
}

.pre-footer .home-text {
    font-size: 16px;
    height: 35px;
    width: 124px;
    text-align: center;
    padding:8px;
}

footer {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    background-color: #950C22;
    display: block;
    padding-top: 0px;
    padding-bottom: 50px;
    color: white;
    font-size: 15px;
}

footer .footer-top {
    height:6px;
    background-color:#D8524B;
    box-shadow: 0 3px 6px rgba(17,17,17,0.85);
}


footer hr {
    border-color: #BAB8B6;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer:first-of-type .container:first-of-type {
    padding-top: 10px;
}

footer a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

footer a:hover {
    color: #f00;
}

footer .title {
    font-weight:600;
    margin-top: 10px;
}

footer .brandimage {
    margin-top:5px;
}

footer .address {
    margin-top:5px;
    font-size:14px;
}

    footer .sub-headline {
        display: block;
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 10px;
    }

    footer .headline {
        font-family: "hwt-artz",sans-serif;
        font-size: 28px;
        font-weight: 700;
    }

    footer .comment {
        margin-top: 10px;
    }

footer .so-me {
    margin-top:110px;
}

footer .fa {
    color:#E30613;
    font-size:40px;
}

a.sociallink>span {
    padding: 2px 3px 2px 3px;
}

a.sociallink {
    color: white;
}

    a.sociallink:hover {
        color: #F00;
    }

footer .address {
    white-space: pre-wrap;
}
footer .openinghours {
    padding-top: 4px;
}
footer .vatnumber {
    padding-top: 4px;
    font-size: 14px;
}
footer .companyname {
    font-size:14px;
}

footer .contact-container {
    position:relative;
}

footer .map-container {
    position:absolute;
    top:-97px;
    left:50px;
    z-index:1;
}

section#news {
    font-size: 14px;
    color: #444;
}

section#news h4 {
    font-family: 'Raleway', sans-serif;
    color: #8F2727;
    padding: 0px;
    margin-top: 0px;
    font-size: 20px;
}

section#news .news-date {
    font-family: 'Montserrat', sans-serif;
    color: #9A9A9A;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
}

section#news .headline {
    color: #4B6683;
    font-size: 16px;
}

.newsletter-signup {
}


    .newsletter-signup .headline {
        margin-top: 30px;
        display: block;
    }

    .newsletter-signup input {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #eee;
        height: 34px;
        padding: 4px 15px;
        margin-top: 10px;
        box-shadow: 0 2px 10px 0px rgba(0,0,0,0.20);
    }
        .newsletter-signup input[type=submit] {
            width: 145px;
            color: white;
            border: 0px;
            font-size: 14px;
            font-weight: bold;
            vertical-align: middle;
            border-radius: 4px;
            padding: 8px;
            margin: 0px;
            background-color: #1992DC;
        }

.newsletter-signup input::moz-placeholder {
    color: #fff;
    padding-left: 10px;
    font-size: 14px;
}

.newsletter-signup input::-webkit-input-placeholder {
    color: white;
    opacity:1;
}
.newsletter-signup input:-moz-placeholder {
    /* FF 4-18 */
    color: white;
    opacity:1;
}
.newsletter-signup input::-moz-placeholder {
    /* FF 19+ */
    color: white;
    opacity:1;
}
.newsletter-signup input:-ms-input-placeholder {
    /* IE 10+ */
    color: white;
    opacity:1;
}

.newsletter-signup .success-info {
    font-size: 14px;
    opacity:1;
}

.news-latest {
}
    .news-latest a, .nextevent-latest a {
        color: #9A9A9A;
    }
        .news-latest a:hover, .nextevent-latest a:hover {
            text-decoration: none;
        }





/* NAV */

.logo-container {
    position: absolute;
    top: 0px;
}

.nav-top-bg {
    background-color: rgba(255,255,255,0.85);
    position: absolute;
    width: 100%;
    /*height:80px;*/
    height: 52px;
    z-index: 1;
}

nav {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    display: block;
    color: white;
    font-size: 15px;
    z-index: 1000;
    position: absolute;
    top: 0px;
    font-weight: 600;
}
    nav.nav-top {
        top: 50px;
    }
.menu-container {
    background-color:#000;
}

    .navbar-brand {
        height:unset;
        z-index:1;
    }

nav .menu {
    background-image: url('../Content/images/menu-bg.png');
    background-size:cover;
    /*padding-bottom:48px;*/
}

        nav .menu .logo-outer{
            display: inline-flex;
            background-color:#fff;
        } 
        
        .not-homepage nav .menu {
            background: transparent;
        }

    nav .submenu {
    }
        nav .submenu ul {
            list-style-type: none;
            overflow: hidden;
            float: right;
        }
        nav .submenu li {
            padding: 0px 15px 0px 15px;
            position: relative;
            display: block;
            float: right;
        }
        nav .submenu li > a {
            color: #444;
        }

            nav .submenu li > a:focus, nav .submenu li > a:hover {
                text-decoration: none;
                color: #444;
            }

        nav .submenu .navsubmenu {
            background: rgba(255,255,255,0.95);
            padding-top: 10px;
            padding-bottom: 5px;
        }
    nav .navsubmenu_blank {
        background-color: transparent;
        height:20px;
        display:block;
    }
    
    nav .split {
        padding: 0px 15px 0px 15px;
    }

    nav .menu .navbar-nav {
        /*float:right;*/
    }

    nav .menu .navbar-nav a {
        color: white;
    }



    .nav.navbar-nav > li:not(:first-child)::before {
        padding: 0px;
        color: #fff;
        position:absolute;
        top:15px;
        left:0px;
    }

    .nav.navbar-nav > li > a {
        padding:15px 30px 15px 30px;
    }

    .nav.navbar-nav > li:last-of-type > a) {
        padding-right:0px;
    }

.nav.navbar-nav > li > a:focus, .nav.navbar-nav > li > a:hover {
    text-decoration: none;
    background-color: #0E0E0E;
    color: #999999;
}



/******************************************************************* SECTION #FOKUSVOGNE *******************************************************************************/

section#focusvogne H2 {
    font-family: 'Raleway', sans-serif;
    color: #C6322A;
    font-size: 26px;
}

section#focusvogne .focusvogn {
    /*margin-top:5px;*/
}

section#focusvogne .focusvogn .modelname{
    height:100px;
}


/******************************************************************* SECTION #SUPPLIERS *******************************************************************************/

.supplier-container{
    position:relative;
    /*padding-right:0px;
    padding-left:0px;*/
    margin-bottom: 30px;
}

    .supplier-container .supplier-image {
        height: 254px;
        object-fit: cover;
        object-position: center center;
    }

.supplier-container .title {
    position: absolute;
    bottom: 0px;
    background-color: rgba(255,255,255,0.91);
    display: block;
    width:75px;
    height:200px;
    line-height: 75px;
}

.supplier-container .brand {
    position: absolute;
    bottom: 0px;
    right:15px;
    background-color: #fff;
    display: block;
    width: 78px;
    height: 39px;
    line-height: 39px;
    text-align:center;
}

    .supplier-container .brand img {
        max-width: 100%;
        object-fit: cover;
        object-position: center center;
        max-height: 100%;
    }

.supplier-container .title span{
    font-size: 20px;
    font-weight: 600;
    color: #707070;
    transform: rotate(-90deg);
    transform-origin: left top 0;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 200px;
    height: 0px;
    text-align: center;
}

/******************************************************************* SECTION #IMAGELINK *******************************************************************************/
section#imagelink {
    padding: 150px 0 10px 0;
    position: relative;
    background-image: url('../Content/images/main-content-bg.png');
    background-size: 100% 100%;
    height: 738px;
    margin-bottom: 0px;
}

section#imagelink a{
    text-decoration:none;
}

section#imagelink h2 {
    color: #000;
    font-size:28px;
    font-weight:600;
    margin-bottom:0px;
}

section#imagelink img{
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 1)
}


section#imagelink .text {
    color: #000;
    font-weight: 500;
    font-size: 18px;
}




/******************************************************************* SECTION #FRONTLINK *******************************************************************************/
section#frontlink {
    margin-top: 30px;
    font-family: 'Source Sans Pro', sans-serif;
}

section#frontlink .overlay-container{
    position: relative;
}

section#frontlink img{
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.75)
}


section#frontlink .overlay {
    position: absolute;
    bottom: 35px;
    background-color: rgba(0, 0, 0, 0.79);
    color: #fff;
    padding:25px;
    font-size:16px;
}

section#frontlink .overlay .red-box {
    color:#fff;
    background-color: #DB1419;
    width:477px;
    padding:20px;
    font-size:24px;
    font-weight:600;
    margin-top: -45px;
}

/******************************************************************* SECTION #PROMOTE *******************************************************************************/

section#promote {
    margin-top: 30px;
}

section#promote .video-box{
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.76);
    height:262px;
}

section#promote .video-box > div {
    padding-top:65px;
}

/******************************************************************* SECTION #WORKSHOP *******************************************************************************/

section#workshop .item-container {
    background-image: url('../Content/images/page-headline-bg.png');
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}


/******************************************************************* SECTION #SEARCH *******************************************************************************/

section#search {
    padding-top: 130px;
    background-image: url('../Content/images/page-headline-bg.png');
    background-size: cover;
    margin-bottom:0px;
}

section#search H1 {
    font-family: Trirong, serif;
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
}

    section#search input, select {
        color: #888888;
        font-size: 13px;
        text-align: left;
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
        height: 34px;
        border-radius: 3px;
        border: 0px;
        padding-left: 15px;
        background: rgba(255,255,255,1);
        background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(232,232,232,1)));
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8', GradientType=0 );
    }


        section#search input::placeholder {
            color: #888888;
            padding-left: 0px;
            font-size: 12px;
        }
    section#search button.btn-searchbutton {
        background-color: #555454;
        color: white;
        padding: 5px 20px;
        border: 1px solid #fff;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        vertical-align: middle;
        width: 25%;
        height: 46px;
        /*z-index: 20;*/
    }
    section#search button.btn-searchreset {
        background-color: #555454;
        color: white;
        border: 1px solid #fff;
        font-size: 16px;
        font-weight: normal;
        text-align: center;
        vertical-align: middle;
        padding: 5px 10px;
        width: 23%;
        height: 46px;
        border-radius:5px;
        margin-right:5px;
    }
section#search:not(.quicksearch) .search-btn-group {
    width: 100%;
    max-width: none;
    margin-bottom: 15px;
}
    section#search.quicksearch .search-btn-group {
        width: 100%;
        max-width: none;
        margin-bottom: 15px;
        padding-right: 38px;
        margin-left: 0px;
    }
    section#search .search-btn-group button.btn-searchresult {
        color: white;
        border: 1px solid #fff;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        font-size: 14px;
        text-align: center;
        vertical-align: middle;
        padding: 5px 20px;
        height: 46px;
        width: 50%;
        background-color: #555454;
    }

    section#search .search-btn-group .clear-result {
        text-align:center;
        vertical-align:middle;
    }

    section#search .search-btn-group .result {
        padding-right:0px;
    }

    section#search .search-btn-group .search {
        padding-left:0px;
    }

    section#search div.input-select-group {
        z-index:2;
        position:absolute;
        display:inline-block;
    }
    section#search .input-select-group span.input-select.fa-caret-up {
        color: #999999;
        position: absolute;
        top: 4px;
        left: -25px;
    }
    section#search .input-select-group span.input-select.fa-caret-down {
        color: #999999;
        position: absolute;
        top: 12px;
        left: -25px;
    }
    section#search h3 {
        padding: 0px;
        margin-top: 0px;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }
    section#search.quicksearch {
        padding: 15px 15px 15px 15px;
        background: rgba(0,0,0,0.70);
        margin: 40px 10px 0px 10px;
    }

    .frontsearch{
        position: absolute;
        width: 100%;
        bottom: 200px;
    }

.dropdown-container {
    z-index: 20;
    position: relative;
    top: -10px;
    padding-right: 30px;
    width: 100%;
    display:none;
}
.dropdown-select {
    cursor:pointer;
}
.dropdown-select>input {
    cursor: pointer;
}
.dropdown-list, .dropdown-slider {
    position: absolute;
    width: inherit;
    background-color: #ddd;
    border: 0px solid #444444;
    border-radius: 0px 0px 4px 4px;
    padding: 8px 10px 0px 15px;
    overflow: auto;
    box-shadow: 0 4px 6px 0 rgba(17,17,17,0.30);
    /*display: none;*/
}
    .dropdown-slider {
        height: 30px;
    }

    .dropdown-list ul {
        list-style: none;
        padding: 0px;
    }

.dropdown-list li {
    display: block;
}
    .dropdown-list ul>li>input[type="checkbox"] {
        position: relative;
        top: 4px;
        margin: 0px 5px -2px 0px;
        padding: 0px 0px 0px 0px;
        height: 18px !important;
        width: 18px !important;

    }
    .dropdown-list li.header {
        font-weight: bold;
        font-size: 14px;
        color: #444444;
    }

    /* SECTION #ARTICLE */
    section#article {
        background-color: white;
        padding: 20px 0px 60px 0px;
    }

    section#article .twoColumns {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }


/* BREADCRUMBS */


section#breadcrumbroot {
    padding-top: 0px;
    padding-bottom: 10px;
    margin-top:-20px;
}

#breadcrumblist {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

#breadcrumblist li {
    float: left;
}

#breadcrumblist li::after {
    font-family: FontAwesome;
    display: table;
    content: "\f105";
    margin-left: 10px;
    margin-right: 10px;
    float: right;
}

#breadcrumblist li:last-child::after {
    display: none;
}

#breadcrumblist li a,
#breadcrumblist li a:focus,
#breadcrumblist li a:active,
#breadcrumblist li a:hover {
    color: #444;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Roboto','Helvetica Neue',sans-serif;
}


/******************************************************************* SECTION #PRODUCTS *******************************************************************************/

section#products {
    background-color: white;
    padding: 0px 0px 20px 0px;
    background-size: cover;
    padding-top: 0px;
    padding-bottom: 30px;
    font-size: 14px;
}

section#products .top {
    background-color:#242424;
    height:23px;
}

    section#products div.productlistbox {
        padding-right:0px;
        padding-left:0px;
    }

    section#products div.product {
        color: #444444;
        border: 1px solid #E6E6E6;
        transition: all 0.8s;
        -moz-transition: all 0.8s;
        -webkit-transition: all 0.8s;
        -o-transition: all 0.8s;
        cursor: pointer;
    }

    section#products div.product:hover {
        box-shadow: 0 8px 12px 0 rgba(17,17,17,0.40);
    }

section#products .productlistlist div.product {
    background-color: unset;
    padding: 0px;
    color: #444444;
    border: 0px;
    border-bottom: 3px solid #900224;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    cursor: pointer;
    margin-bottom: 0px;
}


section#products .productlistlist {
    padding-top: 10px;
    padding-bottom: 10px;
}

section#products .productlistlist .attributes-outer {
    padding-top: 15px;
    padding-bottom: 10px;
}

section#products .productlistlist .description-outer {
    padding-top: 10px;
    padding-bottom: 10px;
    max-height: 110px;
    overflow: hidden;
}

section#products .productlistbox .product .key-data-line div:first-child {
    padding-left:0px;
}

section#products .product .textarea {
    padding: 0px 15px 0px 15px;
    overflow-y: hidden;
}

section#products .product .product-specs-value {
    padding-right: 20px;
    text-align: right;
}
section#products .bottomtext {
    min-height: 25px;
    background-color: #f00;
    display: block;
    font-weight: normal;
    text-align: left;
    font-size: 16px;
    color: white;
    padding: 2px 10px 2px 20px;
}
section#products .productlistbox .modelname, section#products .product .modelname {
    font-weight: 600;
    font-size: 18px;
    color:#767676;
}
section#products .productlistlist .modelname {
    font-weight: 700;
    font-size: 18px;
    color: #444;
    padding: 15px 0px 10px 0px;
    height:62px;
}

section#products .productlistlist .modelyear {
    font-size: 18px;
    font-weight: 700;
}

section#products .productlistlist .image-outer {
    /*padding-left: 0px;*/
    padding-right: 0px;
}

section#products .productlistbox .price, section#products .product .price {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    background-color: #900224;
    width: 152px;
    position: absolute;
    bottom: -28px;
    right: 10px;
    text-align: right;
    padding: 10px;
    box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
}

    section#products .productlistlist .price-before,
    section#products .productlistbox .price-before {
        font-size: 12px;
        font-style: italic;
        color: #ccc;
    }


section#products .productlistbox .promotion, section#products .product .promotion {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    background-color: rgba(207,23,28,0.85);
    min-width: 160px;
    position: absolute;
    bottom: 160px;
    right: -20px;
    padding: 12px;
    box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
}

section#product .promotion {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    background-color: rgba(207,23,28,0.85);
    min-width: 240px;
    position: absolute;
    bottom: 70px;
    right: 15px;
    padding: 12px;
    box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
}

section#products .productlistlist .price {
    font-weight: 400;
    font-size: 25px;
    color: #fff;
    top:15px;
    bottom:unset;
}

section#products .productlistlist .btn-green {
    width: 120px;
    height: 34px;
    color: white;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    background-color: #f00;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.78);
    border-radius: 5px;
    padding: 6px;
    margin-bottom: 10px;
    margin-right: 20px;
    position: absolute;
    bottom: 10px;
    right: 15px;
}
section#products .productlistlist .align-bottom {
    display: flex;
    align-items: flex-end;
    height: 100%;
}
section#products .productlistlist .btn-red {
}
section#products .productlistlist .btn-red a {
    color: white;
    font-family: 'Russo One';
    font-size: 25px;
    text-align: center;
    padding: 20px;
    display: block;
    cursor: pointer;
}
    section#products .productlistlist .btn-green > a{
        color: white;
        text-decoration: none;
    }
    

section#products ul.sort {
    list-style-type: none;
    margin: 0;
    padding: 10px 0px 0px 0px;
    overflow: hidden;
}
    section#products ul.sort > li {
        float: left;
        padding: 0px 30px;
        cursor: pointer;
    }
    section#products ul.sort > li > span {
        padding-right: 10px;
    }
        section#products ul.sort > li:hover:not(.header) {
            color: #950C22;
        }
        section#products ul.sort > li.header {
            font-weight: bold;
            float: left;
            padding: 0px 30px 0px 0px;
            cursor: auto;
        }

section#products .sort-underline {
    height: 3px;
    background: rgba(144,2,35,1);
    background: -moz-linear-gradient(top, rgba(144,2,35,1) 0%, rgba(255,217,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(144,2,35,1)), color-stop(100%, rgba(255,217,0,1)));
    background: -webkit-linear-gradient(top, rgba(144,2,35,1) 0%, rgba(255,217,0,1) 100%);
    background: -o-linear-gradient(top, rgba(144,2,35,1) 0%, rgba(255,217,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(144,2,35,1) 0%, rgba(255,217,0,1) 100%);
    background: linear-gradient(to bottom, rgba(144,2,35,1) 0%, rgba(255,217,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#900223', endColorstr='#ffd900', GradientType=0 );
    margin-top: 5px;
    margin-bottom: 40px;
}


section#products ul.list {
    list-style-type: none;
    margin: 0;
    padding: 10px 0px 0px 0px;
    overflow: hidden;
    float: right;
}

    section#products ul.list > li {
        float: left;
        padding: 0px 5px;
        cursor: pointer;
    }
        section#products ul.list > li.active, section#products ul.sort > li.active {
            color: #950C22;
            font-weight: 500;
        }

        section#products ul.list > li > span {
            padding-right: 0px;
        }

        section#products ul.list > li:hover:not(.header) {
            color: #950C22;
        }

        section#products ul.list > li.header {
            font-weight: bold;
            float: left;
            padding: 0px 30px 0px 0px;
            cursor: auto;
        }

.search-shadow {
    width: 100%;
    background-image: url('../Content/skygge-search.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.search-shadow section#breadcrumbroot {
    padding-top: 10px;
    padding-bottom: 25px;
}

/******************************************************************* PRODUCTDETAILS *******************************************************************************/

.productdetails {
    height: 100%;
    border: 0px; /*1px solid #f2f2f2;*/
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    cursor: pointer;
}

.product .image img {
    display: block;
    margin: auto;
}

.product .image {
    position: relative;
    min-height:213px;
}

.product .image .price-box {
    position:absolute;
    bottom:-20px;
    right:20px;
    width:152px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size:20px;
    padding:10px;
    background-color: #CF171C;
    text-align:right;
    color:#fff;
    box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
}

.product .modelname {
    padding: 5px 30px;
    height: 60px;
}

.product .product-price{
    padding-left:30px;
    font-size:18px;
    font-weight:600;
    color:#444;
}



.product .product-year {
    padding-right: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.product .tent-specs-box {
    height: 60px;
}



/* SECTION#brandlinks*/

section#brandlinks{
    background-color: white;
    margin-top:-90px;
}
section#brandlinks .brandlink-group {
    display: inline-block;
    text-align: center;
    padding: 40px 0px 40px 0px;
}
    section#brandlinks .brandlink-group .brandlink {
        display: inline-block;
        width: 19%;
        padding: 0px;
        margin: 0px;
    }





/************ BRAND SLIDER *************/
.owl-stage-outer .item img{
    max-height: 98px;
    max-width: 182px;
    object-fit: contain;
}

.owl-stage-outer .owl-stage {
    display: flex;
    align-items:center;
    justify-content:center;
}

    .owl-stage-outer .owl-stage .owl-item{
        display:flex;
        justify-content:center;
    }

    .carousel-showsixmoveone .carousel-control {
        width: 4%;
        background-image: none;
    }

.carousel-showsixmoveone .carousel-inner {
    text-align:center;
}

    .carousel-showsixmoveone .carousel-inner .brand {
        margin-bottom: 30px;
    }

    .carousel-showsixmoveone .carousel-inner .brandlink-image {
        max-height: 98px;
        max-width: 182px;
        object-fit: contain;
    }

.carousel-showsixmoveone .carousel-control.left {
  margin-left: 15px;
}

.carousel-showsixmoveone .carousel-control.right {
  margin-right: 15px;
}

.carousel-showsixmoveone .cloneditem-1,
.carousel-showsixmoveone .cloneditem-2,
.carousel-showsixmoveone .cloneditem-3,
.carousel-showsixmoveone .cloneditem-4,
.carousel-showsixmoveone .cloneditem-5 {
  display: none;
}

@media all and (min-width: 768px) {
  .carousel-showsixmoveone .carousel-inner > .active.left,
  .carousel-showsixmoveone .carousel-inner > .prev {
    left: -33.333%;
  }
  .carousel-showsixmoveone .carousel-inner > .active.right,
  .carousel-showsixmoveone .carousel-inner > .next {
    left: 33.333%;
  }
  .carousel-showsixmoveone .carousel-inner > .left,
  .carousel-showsixmoveone .carousel-inner > .prev.right,
  .carousel-showsixmoveone .carousel-inner > .active {
    left: 0;
  }
  .carousel-showsixmoveone .carousel-inner .cloneditem-1,
  .carousel-showsixmoveone .carousel-inner .cloneditem-2 {
    display: block;
  }
}
@media all and (min-width: 768px) and (transform-3d), all and (min-width: 768px) and (-webkit-transform-3d) {
  .carousel-showsixmoveone .carousel-inner > .item.active.right,
  .carousel-showsixmoveone .carousel-inner > .item.next {
    transform: translate3d(33.333%, 0, 0);
    left: 0;
  }
  .carousel-showsixmoveone .carousel-inner > .item.active.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev {
    transform: translate3d(-33.333%, 0, 0);
    left: 0;
  }
  .carousel-showsixmoveone .carousel-inner > .item.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev.right,
  .carousel-showsixmoveone .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
@media all and (min-width: 992px) {
  .carousel-showsixmoveone .carousel-inner > .active.left,
  .carousel-showsixmoveone .carousel-inner > .prev {
    left: -16.666%;
  }
  .carousel-showsixmoveone .carousel-inner > .active.right,
  .carousel-showsixmoveone .carousel-inner > .next {
    left: 16.666%;
  }
  .carousel-showsixmoveone .carousel-inner > .left,
  .carousel-showsixmoveone .carousel-inner > .prev.right,
  .carousel-showsixmoveone .carousel-inner > .active {
    left: 0;
  }
  .carousel-showsixmoveone .carousel-inner .cloneditem-3,
  .carousel-showsixmoveone .carousel-inner .cloneditem-4,
  .carousel-showsixmoveone .carousel-inner .cloneditem-5 {
    display: block;
  }
}
@media all and (min-width: 992px) and (transform-3d), all and (min-width: 992px) and (-webkit-transform-3d) {
  .carousel-showsixmoveone .carousel-inner > .item.active.right,
  .carousel-showsixmoveone .carousel-inner > .item.next {
    transform: translate3d(16.666%, 0, 0);
    left: 0;
  }
  .carousel-showsixmoveone .carousel-inner > .item.active.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev {
    transform: translate3d(-16.666%, 0, 0);
    left: 0;
  }
  .carousel-showsixmoveone .carousel-inner > .item.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev.right,
  .carousel-showsixmoveone .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}






    /* SECTION#Sales */
    section#sales {
        background-color: white;
        padding-bottom: 30px;
    }
        section#sales .salesarea h2 {
            font-weight: bold;
            font-size: 36px;
            padding: 0px;
            margin: 0px 0px 30px 0px;
        }
        section#sales .salesdepartment h2 {
            font-weight: bold;
            font-size: 32px;
            text-transform: uppercase;
            color: white;
            text-shadow: 0px 3px 6px rgba(0, 0, 0, 1);
            padding: 0px;
            margin: 0px 0px 30px 0px;
        }
        section#sales .salesdepartment {
            background-color: #444;
            padding: 20px;
            color: white;
            font-size: 22px;
            height: 100%;
        }

        section#sales a {
            color:#444;
            text-decoration:none;
        }

        section#sales .finance-link {
            font-family: 'Roboto','Helvetica Neue',sans-serif;
            font-size:16px;
            font-weight:600;
            margin-top: 20px;
            border: 1px solid #444;
            padding: 20px;
        }

        section#sales .finance-link span{
            padding-top:10px;
            display:block;
        }

        section#sales .finance-link h3{
            font-size:32px;
            font-weight:600;
            color:#fff;
            margin-top:0px;
            text-shadow: 0px 3px 6px rgba(0, 0, 0, 1);
        }

section#sales .employee-title{
    text-transform:uppercase;
    font-weight:lighter;
    font-style:italic;
    font-size: 18px;
}
        section#sales .employee-name, section#sales .employee-phone {
            font-family: 'Roboto','Helvetica Neue',sans-serif;
            font-size: 13px;
            font-style: italic;
        }
        section#sales .employee-info {
            padding-bottom: 20px;
        }

        /* FINEX - Financieringsforslag */

        .finex h2{
            padding: 10px 0px 0px 0px;
            margin: 0px 0px 10px 0px;
            font-weight: bold;
            font-size: 20px;
        }
.finex h3 {
    padding: 0px;
    margin: 0px 0px 10px 0px;
    font-weight: bold;
    font-size: 18px;
}
.finex-table > .row {
    border-bottom: 1px solid #ddd;
}
.finex-table>.row:active{
    background-color:#ddd;
}
    .finex-table .row:first-child {
        font-weight: bold;
    }
    .finex-table .row:not(:first-child) {
        padding-left: 15px;
    }
.finex-table .row:hover:not(:first-child) {
    background-color: #f5f5f5;
}
.finex-example:not(:first-child) {
    padding-top: 30px;
}

/*.finex-table .row + .row {
    border-top: 0;
}*/
        /*.finex-header{
            font-weight: bold;
        }*/


        /* SECTION#NEWS */

section#news .newslistbox {
    border: 1px solid #ddd;
    padding: 15px;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
}
    section#news .newslistbox:hover {
        box-shadow: 0 8px 12px 0 rgba(17,17,17,0.40);
    }
section#news .newslistbox:not(:first-child) {
    margin-top: 20px;
}
    section #news .newscounter {
    color: #999999;
    font-size: 12px;
    padding-bottom: 10px;
}

section#news .newsdate {
    color: #999999;
    font-size: 14px;
    padding-bottom: 10px;
    font-style: italic;
}
section#news .newslink {
 width: 100%;
 line-height: 40px;
}

section#news .newsimage {
    padding: 2px 2px 5px 2px;
}

section#news h3{
    padding: 0px 0px 5px 0px;
    margin: 0px;
    font-size: 18px;
    font-weight: bold;
}

/* SECTION#EMPLOYEES */
section#employees .department {
    margin-bottom:60px;
}
section#employees h1 {
    margin: 0px;
}

section#employees h2 {
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    color: #444;
    padding: 0px;
    margin: 0px 0px 10px 0px;
}


section#employees .department .phone {
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 1);
}

section#employees a {
    color: #fff;
    font-size: 12px;
}

section#employees hr {
    border-color: #999999;
}
section#employees .employee-title {
    font-size: 16px;
}

section#employees .employee-name {
    font-weight: bold;
    font-size:22px;
    margin-top:15px;
}

section#employees .employee-phone {
    font-weight: bold;
    font-size: 18px;
    color: #DB1419;
}

section#employees .employee-email a {
    color: #DB1419;
    font-size: 16px;
}

section#employees .employees {
    margin-top: 15px;
}

section#employees .employees .employee {
    border: 5px solid orange;
    margin-bottom:15px;
}

    section#employees .employees .employee img{
        width:100%;
    }

    .carousel-control {
        background-image: none !important;
    }
.carousel-control:hover {
    color: #fff;
    text-decoration: none;
    filter: unset;
    outline: 0;
    opacity: unset;
    background-image: none !important;
}

.infobox-textarea {
    padding:20px;
    font-size: 18px;
    font-weight: bold;
}
.infobox-row-top {
    position: relative;
}
.infobox-row-bottom {
    padding-top: 20px;
    position: relative;
}
.infobox-fullheight {
    height: 100%
}
.infobox-halfheight {
    height: 50%
}
.infobox-image {
    position:relative;
    bottom:0px;
}

/* Catalog */
.catalogtree-level1 > div, .catalogtree-level2 > div, .catalogtree-level3 > div, .catalogtree-level4 > div, .catalogtree-level5 > div {
    /*display:inline-block;*/
}
.catalogtree-level1 {
    padding-left: 0px;
}
.catalogtree-level2 {
    padding-left: 10px;
}
.catalogtree-level3 {
    padding-left: 20px;
}
.catalogtree-level4 {
    padding-left: 30px;
}
.catalogtree-level5 {
    padding-left: 40px;
}

/* SPECIFIC VIEWPORTS */
/* Xtra small screens */
@media (max-width: 767px) {
    body {
        margin-top: 50px;
    }

    nav .phonenumber {
        padding-left: 5px;
        font-size: 24px;
    }

    .front-banner-container {
        margin-top: 0px;
        /*height:630px;*/
    }

    banner h2 {
        margin: 0px;
        font-size: 24px;
    }
    banner .carousel .carousel-inner .item {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100%;
        max-height: 100%;
        width: 100%;
    }
    banner.small {
        margin-top: -20px;
        min-height: 200px;
        top:0px;
    }
    banner.small .banner-content {
    }

    nav {
        /*position: relative;*/
    }


    .top-contact-box-outer {
        display: flex;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .top-contact-box {
        padding-left:15px;
        background-color: #DB191B;
        background-image: url('../Content/top-grafik-small-bg.png');
        background-repeat: repeat-x;
        margin-bottom: 2px;
    }

    .top-contact-box-end {
        display:block;
        content: '';
        background-image: url('../Content/top-grafik-small-end.png');
        width:35px;
        height:88px;
    }


    .navbar-brand {
        max-width: 180px;
        /*max-height: 28px;*/
        height:unset;
    }
    *.brandimage {
        width: auto;
        padding-top: 5px;
    }
    .hero-text {
        margin: 90px 10px 0px 10px;
    }
    .hero-left-border {
        border-left: none;
        padding: 10px 5px 0px 15px;
    }

    .menu-container {
        position:relative;
        border-top: 0px;
        width:100%;
        max-height: 70px;
    }
    nav .menu {
        /*max-height: 75px;*/
    }
        nav .menu .navbar-nav{
            float:unset;
        } 
        .top-nav-collapse {
            padding: 0px;
        }
    .navbar-collapse {
        background-color: #0E0E0E;
        z-index:1000;
        position:relative;
        top:-10px;
    }
    nav .submenu ul {
        float: none !important;
    }
    nav .submenu li {
        padding: 10px 15px 10px 15px;
        display: block;
        float: none !important;
    }

    .navsubbararea {
        text-align: left !important;
    }

    .navbar-toggle {
        display: block;
        float: right;
        top: -5px;
        right: -10px;
    }

    .navbar-phone-area {
        display: block;
        position: absolute;
        top: 50px;
        left: 36px;
    }

    .dd-type-phone a {
        text-decoration: none;
        color: white;
    }
        .dd-type-phone a:hover {
            color: #999999;
        }





    section#imagelink .link-list > li {
        margin: 0px;
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }

    section#imagelink .link-list > li a{
        display: block;
    }

        section#imagelink .link-list > li img {
            display: block;
            width:100%;
        }

    section, section#article, section#news, section#search {
        padding-top: 0px;
        margin-top: 0px;
    }
        section#product {
            margin-top: -10px;
            padding-top: 10px;
        }




    section#catalog {
        padding-top: 10px;
    }
        section#products .productlistlist .model-outer {
            margin-left: 15px;
        }
        section#products .productlistlist .image-outer {
            padding-right: 15px;
        }
        section#products .productlistlist .attributes-outer {
            padding-right: 0px;
        }
    section#products .product .textarea {
        padding: 0px 15px 40px 15px;
        overflow-y: visible;
    }
    section#products .productlistbox .modelname, section#products .product .modelname {
        /*padding: 30px 0px;*/
    }

    section#products ul.sort > li {
        float: left;
        padding: 0px 5px;
        cursor: pointer;
        font-size: 14px;
    }

        section#products ul.sort > li > span {
            padding-right: 1px;
        }

        section#products ul.sort > li:hover:not(.header) {
            color: #f00;
        }

        section#products ul.sort > li.header {
            font-weight: bold;
            float: left;
            padding: 0px 5px 0px 0px;
            cursor: auto;
        }
    section#breadcrumbroot {
        padding-top: 0px;
    }

    ul.nav.navbar-nav {
        -webkit-padding-start: 0px;
    }
    div.navbar-collapse.collapse{
        width: 100%;
    }
    .collapsing {
        -webkit-transition: none;
        transition: none;
        display: none;
        transition-duration: 0.01s;
    }
    .outer-basket-overlay {
        z-index: 100;
        position: fixed;
        top: 69px;
        width: 100%;
    }
    .info-basket-overlay{

    }
}

@media (max-width: 767px) {
    .main-content-container H1 {
        font-size: 60px;
        margin-top: 40px;
    }
    section#search {
        padding-top: 25px;
    }

    .top-container .logo {
        max-height: 90px;
    }

    .carousel-inner {
        overflow: hidden;
    }

    /*.front-banner-container .box-wrapper {
        bottom: -80px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 345px;
        font-size:16px;
    }

        .front-banner-container .box-wrapper .box-header {
            padding: 20px 50px;
            margin-left: -50px;
            margin-bottom: 25px;
            font-size: 20px;
        }*/

    .main-content-container {
        background-image: url('../Content/images/main-content-bg-iphone.png');
    }

    section#imagelink {
        margin-top: 70px;
        
    }


    .dropdown-list li.header {
        font-size: 16px;
    }

    section#search input, select {
        font-size: 16px;
        line-height:16px;
    }

    footer {
        font-size: 14px;
    }

    footer .map-wrapper {
        position:relative;
    }

    footer .map-wrapper .splitter{
        display:block;
        width:93%;
        position: absolute;
        bottom: 77px;
    }

    footer .map-container {
        position:unset;
        left: 20px;
    }

    footer .map-container img{
        z-index:1000;
        position:relative;
        padding-left:20px;
    }

    footer .title {
        font-size: 12px;
        font-weight:500;
    }

    footer table.openhours {
        font-size: 12px;
    }
}
    /* Small screens (iPad vertical)*/
    @media (min-width: 768px) and (max-width: 991px) {
        body {
            margin-top: 0px;
        }

        .menu-container{
            border-top: 0px;
        }

/*        .front-banner-container .box-wrapper {
            transform: unset;
            top: 145px;
            right: 25px;
            left: 0;
            width: 347px;
            font-size: 16px;
            padding: 25px;
        }*/

            /*.front-banner-container .box-wrapper .box-header {
                padding: 20px 50px;
                margin-left: -40px;
                margin-bottom: 25px;
                font-size: 21px;
            }*/

/*            .front-banner-container .box-wrapper .box .box-header {
                font-size: 22px;
                width: 345px;
                height: 70px;
                padding-top: 8px;
                padding-bottom: 8px;
            }

            .front-banner-container .box-wrapper .box .box-counter {
                font-size: 22px;
                font-weight: 600;
                width: 217px;
                height: 70px;
                padding-top: 8px;
                padding-bottom: 8px;
            }*/

/*        .front-banner-container .banner-infobox-outer {
            align-items: flex-end;
            padding-bottom: 50px;
        }*/

        section#imagelink .link-list > li {
            margin: 10px;
        }

        section#products .productlistlist .modelname {
            font-size: 16px;
        }

        section#products .productlistlist .price {
            font-size: 20px;
        }

        section#products .productlistlist .model {
            padding-left: 0px;
            padding-right: 0px;
        }

        section#products .productlistlist .btn-green {
        }

        .navbar-phone-area {
            display: none;
        }
        .navbar-toggle {
            display: block;
        }
        .navbar-collapse {
        }
            .navbar-collapse.collapse {
                display: none !important;
            }
                .navbar-collapse.collapse.in {
                    display: block !important;
                    float: left;
                    z-index: 100;
                    overflow-y: auto;
                    width: 100% !important;
                }
        nav .menu .navbar-nav {
            float:left;
        }
    }

/* Small screens (iPad horizontally)*/
@media (min-width: 992px) and (max-width: 1199px) {
    nav .phone {
        font-size: 18px;
    }
    nav .phonenumber {
        font-size: 24px;
    }

    section#products .productlistlist .btn-red a {
        font-size: 18px;
    }

/*    .front-banner-container .box-wrapper {
        position: absolute;
        top: 145px;
    }

        .front-banner-container .box-wrapper .box .box-header {
            font-size: 22px;
            width: 345px;
            height: 70px;
            padding-top: 8px;
            padding-bottom: 8px;
        }
        .front-banner-container .box-wrapper .box .box-counter {
            font-size: 22px;
            font-weight: 600;
            width: 217px;
            height: 70px;
            padding-top: 8px;
            padding-bottom: 8px;
        }*/

}

    /* Medium and Large screens */
    @media (min-width: 992px) {

        .row-md-eq-height {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .navbar-phone-area {
            display: none;
        }
    }

    /* NAVBAR */
    @media (max-width: 991px) {

        body {
            font-size: 16px;
        }

        .top-container .logo {
            max-height: 90px;
        }

        .main-headline-container {
            font-size: 22px;
        }

        .main-headline-container .teaser {
            margin-top: 32px;
        }

        .main-headline-container H1 {
            font-size: 40px;
            margin-top: 32px;
        }


        .main-content-container {
            background-image: url('../Content/images/main-content-bg-ipad.png');
            padding-bottom: 50px;
        }

        .main-content-container img {
            margin-top: 20px;
            width:100%;
        }

        .navbar-nav .open .dropdown-menu {
            position: static;
            float: none;
            width: auto;
            margin-top: 0;
            background-color: black;
            border: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .navbar-nav .open .dropdown-menu > li > a,
            .navbar-nav .open .dropdown-menu .dropdown-header {
                padding: 5px 15px 5px 25px;
            }

            .navbar-nav .open .dropdown-menu > li > a {
                line-height: 20px;
            }

                .navbar-nav .open .dropdown-menu > li > a:hover,
                .navbar-nav .open .dropdown-menu > li > a:focus {
                    background-image: none;
                }

                nav .payoff {
                    padding-top: 38px;
                }

                .navbar-toggle {
                    font-size:12px;
                    margin-top:0px;
                    margin-bottom:0px;
                }

        section#search {
            padding-top: 215px;
        }

        section#imagelink {
            padding-top: 50px;
            margin-bottom: 0px;
            height: auto;
            background-image: url('../Content/images/main-content-bg-ipad.png');
        }

        section#imagelink h2 {
            font-size: 20px;
        }

        section#imagelink .text {
            font-size: 14px;
        }

        section#promote .video-box {
            height: 168px;
            margin-bottom:20px;
        }

        .newsletter-signup, .nextevent-latest {
            margin-top: 30px;
        }

        section#breadcrumbroot {
            /*padding-top: 195px;*/
        }


        section#products ul.sort > li {
            padding: 0px 7px;
        }

        section#employees .employee .employee-info{
            padding:0px 15px;
        }

        section#employees .employee-name {
            font-size: 20px;
        }

        footer {
            font-size: 16px;
        }

            footer .footer-top {
                margin-bottom: 0px;
            }

            footer .title {
                font-weight: 600;
                margin-top: 15px;
            }

            footer .brandimage {
                width:245px;
            }

            footer .so-me {
                margin-top: 70px;
            }

            a.sociallink > span {
                padding: 2px 25px 2px 3px;
            }

            footer .map-container {
                top: -97px;
            }
    }

    @media (min-width: 992px) {
        .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
            background-color: transparent;
            border-color: transparent;
        }

    }


    @media (min-width: 1200px) {
        section#imagelink .col-lg-2 {
            padding-left: 10px;
            padding-right: 10px;
        }
    }

    @media (max-width: 1199px) {

        .product .image {
            position: relative;
            min-height: 191px;
        }

        section#frontlink .overlay .red-box {
            width: 415px;
        }
    }

@media (max-width: 991px) {

    section#frontlink .overlay .red-box {
        width: 325px;
    }

    section#promote .video-box > div {
        padding-top: 35px;
    }
}

@media (max-width: 767px) {

    section#search {
        padding-top: 130px;
    }
}


section#imagelink a{
    display:block;
}

/* Ipad & phone*/
@media (max-width:768px) {

    section#imagelink h2 {
        font-size: 22px;
        padding-bottom: 5px;
    }
}

/* Ipad */
@media (min-width:767px) AND (max-width:768px) {
/*    .front-banner-container .box-wrapper .box{
        margin-bottom:30px;
    }*/

    section#imagelink {
        padding-top: 60px;
        padding-bottom: 75px;
    }

    .main-content-container {
        padding-bottom: 60px;
    }

    #dynamic-menu .horizontal-menu {
        width:100%;
    }

    #dynamic-menu > .horizontal-menu > li.overflow-root {
        float:right;
        margin-right:0px;
    }
}

/* Phone */
@media (max-width:767px) {
    .site-navigation {
        background-color: #900224;
    }

        .site-navigation .site-second .site,
        .site-navigation .site-third .site,
        .site-navigation .site-fourth .site {
            height: 60px;
        }

        .site-navigation .site-second {
            background-color: #1992DC;
        }

        .site-navigation .site-third {
            background-color: #638D61;
        }

        .site-navigation .site-fourth {
            background-color: #50a0d0;
        }

        .site-navigation .site {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-left: 20px;
            padding-top: 3px;
            height: 100%;
        }

            .site-navigation .site.active {
                background-color: transparent;
                box-shadow: none;
            }

            .site-navigation .site:not(.active) {
                justify-content: flex-end;
            }

            .site-navigation .site .description {
                color: #C69CA6;
                font-size: 14px;
                line-height: 14px;
                font-weight: 600;
                font-family: 'Open Sans', sans-serif;
            }

            .site-navigation .site.active .description {
                color: #C69CA6;
                font-size: 16px;
                line-height: 18px;
                font-weight: 600;
                font-family: 'Open Sans', sans-serif;
            }

            .site-navigation .site .link {
                font-family: Trirong, sans-serif;
                color: white;
                font-size: 20px;
                font-weight: 600;
            }

            .site-navigation .site.active .link {
                color: white;
            }

            .site-navigation .site .dots {
                color: white;
                font-size: 30px;
                line-height: 14px;
            }

            .site-navigation .site .arrow {
                color: white;
                font-size: 30px;
                padding-left: 30px;
            }

    .top-logo.small-logo-container a {
        position: absolute;
        top: 20px;
        left: 10px;
        z-index: 1000;
    }

    .top-container .logo {
        max-height:90px !important;
        height:90px;
    }

/*    .front-banner-container .box-wrapper {
        top: 120px;
        width: 100%;
        padding: 0px 15px;
        z-index:500;
    }

    .front-banner-container .box-wrapper .box {
        margin-bottom: 8px;
        width: 100%;
        left: auto;
        transform:none;
    }

        .front-banner-container .box-wrapper .box .box-header{
            padding-bottom:10px;
            height:auto;
            margin-bottom:0;
            width:70%;
            font-size:18px;
            height: auto;
        }
        .front-banner-container .box-wrapper .box .box-header span {
            display: none;
        }

        .front-banner-container .box-wrapper .box .box-counter {
            width: 30%;
            font-size: 16px;
            height: auto;
            padding-top: 0px;
            padding-bottom: 0px;
        }
            .front-banner-container .box-wrapper .box .box-counter span {
                line-height: 20px;
            }

    .front-banner-container .banner-infobox-outer {
        align-items: flex-end;
        padding-bottom: 40px;
    }

    .front-banner-container .banner-infobox-header {
        font-size: 22px;
    }

    .front-banner-container .banner-infobox-text {
        font-size: 18px;
    }

    .front-banner-container .banner-infobox-button {
        font-size: 18px;
    }*/
    .main-content-container {
        padding-bottom: 0px;
    }

    .main-content-container .content-image-container {
        padding-right:0px;
        padding-left:0px;
    }

        .main-content-container .col-md-6 > img {
            display:block;
        }

    .outer-supplier-container{
        padding-right:0px;
        padding-left:0px;
    }

    .supplier-container img{
        width:100%;
    }

    .supplier-container .title {
        height:100%;
    }

    section#imagelink {
        padding-top: 30px;
        padding-bottom: 100px;
        margin-top: 0px;
    }

    section#imagelink img{
        width: 100%;
    }
        section#imagelink a {
            margin-bottom:30px;
        }

        footer .sub-headline{
            margin-top:30px;
        }

        .pre-footer {
            display: block;
        }

    .pre-footer .brandimage {
        width: 100%;
        margin-bottom:10px;
    }
}

/*@media only screen and (max-width: 370px) {
    .front-banner-container .banner-infobox-outer .banner-infobox-text {
        display: none;
    }
}*/


@media only screen and (max-width:767px) and (orientation : landscape) {
    banner .carousel .carousel-inner .item {
        min-height: 700px;
    }
}

/* iPhone X */
@media only screen and (min-width:768px) and (max-width:830px) and (orientation : landscape) {
    banner .carousel .carousel-inner .item {
        min-height: 1000px;
    }
}




/*Article with grid page*/
.articleWithGrid h1,
.articleWithGrid h1 strong {
    font-size: 40px;
    line-height: 42px;
    margin: 0;
}
    .articleWithGrid h1 strong {
        font-weight: 600;
    }

.articleWithGrid h2,
.articleWithGrid h2 strong {
    font-size: 36px;
    line-height: 38px;
    margin: 0;
}
    .articleWithGrid h2 strong {
        font-weight: 600;
    }

.articleWithGrid h3,
.articleWithGrid h3 strong {
    font-size: 32px;
    line-height: 34px;
    margin: 0;
}
    .articleWithGrid h3 strong {
        font-weight: 600;
    }

.articleWithGrid h4,
.articleWithGrid h4 strong {
    font-size: 28px;
    line-height: 30px;
    margin: 0;
}
    .articleWithGrid h4 strong {
        font-weight: 600;
    }

.articleWithGrid h5,
.articleWithGrid h5 strong {
    font-size: 24px;
    line-height: 26px;
    margin: 0;
}

    .articleWithGrid h5 strong {
        font-weight: 600;
    }

/****************************** Article with blocks ********************************/
#blockList {
    margin-top: 20px;
}

    #blockList .articleBlock {
        display: block;
        background-image: linear-gradient(to bottom, #dcdcdc, #999);
        overflow: hidden;
        position: relative;
        color: #fff;
    }

        #blockList .articleBlock img {
            height: 230px;
            object-fit: contain;
            object-position: center center;
            transition: all .3s ease;
            width: 100%;
        }

        #blockList .articleBlock .title {
            font-weight: 600;
            position: absolute;
            padding: 10px;
            left: 0;
            bottom: 0;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
        }

@media only screen and (min-width : 992px) {
    #blockList .articleBlock:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 767px) {
    #blockList {
        padding-bottom: 0;
    }
}

@media (max-width: 574px) {
    .col-xxs-12 {
        width: 100%;
    }

    #blockList .articleBlock {
        margin-bottom: 20px;
    }

    #blockList .articleBlock img {
        height: 280px;
    }
}

@media (max-width: 410px) {
    #blockList .articleBlock img {
        height: 240px;
    }
}
.workshop-contactform-outer {
}
.workshop-contactform-outer h2 {
    margin-left: 0px;
}

.workshop-contactform {
    padding: 0px 5px;
}

    .workshop-contactform .label {
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: #333;
        text-align: left;
        text-transform: uppercase;
    }

    .workshop-contactform input, .workshop-contactform textarea {
        background: rgba(255,255,255,1);
        background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(232,232,232,1)));
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(232,232,232,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8', GradientType=0 );
        width: 100%;
        border: 0px;
        border-radius: 2px;
        height: 30px;
        padding-left: 10px;
        font-size: 16px;
        box-shadow: 0px 2px 10px rgba(0,0,0,0.20);
    }
    .workshop-contactform input[type=submit] {
        background-color: #000;
        color: #fff;
        border: 0px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: bold;
        vertical-align: middle;
        box-shadow: 0px 2px 3px #000;
        min-height: 30px;
    }

    .workshop-contactform textarea {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 65px;
    }

    .workshop-contactform .row {
        padding-top: 10px;
    }

    .workshop-contactform .date-selection-label.label {
        font-weight: bold;
    }
    .workshop-contactform .date-selection-input {
    }

    .workshop-contactform .dropdown-container {
        z-index: 20;
        position: relative;
        top: 0px;
        padding-right: 30px;
        width: 100%;
        display: none;
    }

.ui-datepicker {
    z-index: 99 !important
}

.workshop-contactform-send {
    padding: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #c8efc4;
    font-size: 16px;
    text-align: center;
    margin: 10px 0px;
}
.workshop-contactform-failed {
    padding: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #f29d9d;
    font-size: 16px;
    text-align: center;
    margin: 10px 0px;
}



/** JONAS **/
#workshop h4,
#workshop .main-article string,
#workshop .bottom-article strong {
    font-size: 18px;
    font-weight: bold;
}

#workshop .employee img{
    margin-bottom:15px;
    width:100%;
}

#workshop .bottom-article {
    margin-top: 30px;
}

.service {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #cdcdcd;
    min-height: 500px;
    margin-bottom: 50px;
    padding-bottom: 100px;
    position: relative;
}

.service .name {
    font-weight:bold;
    margin-bottom:10px;
}

    .service .price-box {
        position: absolute;
        bottom: 15px;
        left: 15%;
        width: 70%;
        z-index: 1;
        padding: 10px 25px 25px 25px;
        color: #fff;
        background-color: #900224;
        border-radius:5px;
        box-shadow:1px 0px 5px 0px rgba(0,0,0,0.3);
        font-size:20px;
    }

        .service .price-box .price-label{
            font-size:0.8em;
        }

    .service .name-box {
        background-color: #FFD800;
        position: absolute;
        bottom: -25px;
        left: 20%;
        width: 70%;
        z-index: 2;
        border-radius: 5px;
        box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.3);
        padding: 5px 15px;
        min-height:60px;
        font-weight:bold;
    }

.service-description-text {
    color: #000;
    padding: 30px;
    background-color: #fff;
    min-height: 500px;
}

#workshop #dd-workshop-contact-submit{
    background-color:#444;
    background-image:none;
}

@media  (max-width:768px) {

    .main-headline-container {
        padding-top: 115px;
    }

    .service {
        min-height: unset;
        padding-bottom: 125px;
    }

    .service .price-box{
        bottom:28px;
    }

    .workshop-contactform .row {
        padding-top: 0px;
    }

    .workshop-contactform .row > div {
        padding-top: 10px;
    }
}


/**umb_name:h1*/
h1{}

/**umb_name:h2*/
h2{}

/**umb_name:h3*/
h3{}

/**umb_name:h4*/
h4{}

/**umb_name:h5*/
h5{}
/**umb_name:Heading - H2*/
h2 {
    color: #707070;
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0px;
    line-height: 55px;
}

/**umb_name:Heading - H3*/
h3 {
    color: #222;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0px;
    line-height: 55px;
}

