/* Minification failed. Returning unminified contents.
(4672,40): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(5113,39): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(5131,39): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(5218,28): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(5460,32): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(6073,32): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(6890,28): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(6905,28): run-time error CSS1039: Token not allowed after unary operator: '-damsgaard-red'
(7018,5): run-time error CSS1062: Expected semicolon or closing curly-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;
    }

        #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: #BA5D5D;
                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: #E30613;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 20px;
}

#promote .videoReplacement {
    padding: 20px 20px;
    height: 262px;
}

#product .videoReplacement {
    padding: 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;
    }

    #promote .videoReplacement {
        padding: 20px 20px;
        height: auto;
    }
}

@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;
    }

    #promote .videoReplacement {
        margin-bottom: 20px;
    }
}

@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;
}

.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;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.side-basket-outer.floating-right {
    position: static;
    right: 10px;
    display: block;
}
.side-basket-outer {
    width: 100%;
    min-height: 100px;
    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-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
}
.side-basket-headline {
    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-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;
        padding-top: 0;
    }

        .item-relateditem .name a {
            color: #444;
        }

            .item-relateditem .name a:hover {
                color: red;
            }

    .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;
}

.item-relateditem #stockInfo {
    font-size: 12px;
    color: #666;
}

    .item-relateditem #stockInfo .dot {
        height: 10px;
        width: 10px;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        top: 2px;
        margin-right: 5px;
        background-color: #aaa;
    }

    .item-relateditem #stockInfo .instock .dot {
        background-color: #4b9b14;
    }

    .item-relateditem #stockInfo .outofstock .dot {
        background-color: #f89306;
    }

    .item-relateditem #stockInfo .insupplierstock .dot {
        background-color: #4b9b14;
    }

.item-relateditem .price-outer #stockInfo {
    margin-top: 5px;
    padding-left: 1.4em;
    text-indent: -1.4em;
}

/*// 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;
    }
}

#catalog .trustpilot-widget {
    margin-top: 8px;
}

@media (max-width: 991px) {
    #catalog .trustpilot-widget {
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    #catalog .trustpilot-widget {
        margin: 0 0 15px 0;
    }
}
body {
}

.ad-sell-caravan {
    background-color: #B4B4B4;
    background-image: url('/Content/images/ad-sell-caravan_bg.png');
    background-size: cover;
    margin: 30px 0px;
    padding: 15px;
}
.ad-sell-caravan-headline{
    font-size: 34px;
    line-height: 36px;
}

.ad-sell-caravan-button button {
    background: transparent;
    border: 0px;
}

body.productsnavi-overlay-visible {
    margin-top: 135px;
}
body.basket-overlay-visible.productsnavi-overlay-visible {
    margin-top: 165px;
}

.search-showextra-button,
.search-showextra-button:active, 
.search-showextra-button:focus, 
.search-showextra-button:hover {
    color: #fff;
}

.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-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-search {
    width: 300px;
    height: 34px;
    background-color: #656464;
    border: 1px solid white;
    border-radius: 30px;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.72);
    display: inline-block;
    text-align: center;
    margin-right: 40px;
}
.productsnavi-position {
    width: 200px;
    text-align: center;
    display: inline-block;
}
.productsnavi-prev {

}
.productsnavi-next {
}


/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
}

/*// 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;
    }

}

@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) {
}
/*Search agent page*/
#searchAgent .umb-grid .container {
	max-width: 100%;
}

#searchAgent #searchAgent-form {
	background-color: #EEEEEE;
	color: #444444;
	font-size: 15px;
	padding: 20px 15px;
}

	#searchAgent #searchAgent-form .title {
		color: #000000;
		font-size: 20px;
		margin-bottom: 30px;
	}

	#searchAgent #searchAgent-form .text {
	}

    #searchAgent #searchAgent-form .text-required {
        color: #ff0000;
    }

    #searchAgent #searchAgent-form #required-decs {
        margin: 10px 0;
    }
    
	#searchAgent #searchAgent-form input {
		margin-bottom: 15px;
	}

    #searchAgent #searchAgent-form button {
        width: 100%;
        height: 46px;
        background-color: #555454;
        border: 1px solid #fff;
        border-radius: 25px;
        color: #fff;
        margin: 10px 0;
        font-size: 16px;
    }

	#searchAgent #searchAgent-form button:focus {
		outline: none;
	}

/*goto searchagent element on product lists*/
#goto-searchAgent {
    background-color: #B4B4B4;
    background-image: url(/Content/images/ad-sell-caravan_bg.png);
    background-size: cover;
    margin: 30px 0px;
    padding: 15px;
}

    #goto-searchAgent .title {
        font-size: 34px;
        line-height: 36px;
    }

    #goto-searchAgent .link {
        margin-top: 8px;
    }

    #goto-searchAgent .link a:hover {
        color: #FF0000;
        text-decoration: none;
    }
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) {
}
table.openhours {

}
table.openhours .title {
}

table.openhours .day {
    width: 70px;
}
table.openhours .time {
    width: 90px;
}

.w-100
{
    width:100%;
}
/*******************************************************
                 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: 55px;
        line-height: 55px;
        font-weight:600;
    }

    #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: 20px;
        }

        #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: 10px;
    }

    #dynamic-menu .horizontal-menu > li .vertical-menu li.open li {
        margin-left: 20px;
    }

    #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;
    }
}

/* 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: 55px;
}

    #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: 30px;
}

    #dynamic-menu > .horizontal-menu > li:first-child {
        margin-left: 15px;
    }

    #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;
    }

    #dynamic-menu > .horizontal-menu > li.menu-item.open > a,
    #dynamic-menu > .horizontal-menu > li.menu-item:hover > a {
        border-bottom: 8px solid #535456;
    }

    #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;
            background-color: rgba(0,0,0,0.07);
        }

    #dynamic-menu > .horizontal-menu .vertical-menu a {
        color: #444;
        font-size: 15px;
    }

@media only screen and (min-width:768px) {
    #dynamic-menu .horizontal-menu {
        float: left;
    }

        #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;
            background-color: rgba(0,0,0,0.07);
        }
}

@media only screen and (max-width:767px) {

    .nav-container {
        padding-left: 0px;
        padding-right:0px;
    }

    #dynamic-menu {
        margin-top: 15px;
    }

    #dynamic-menu .dropdown .burger-menu {
        margin-top: 30px;
    }

    #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;
    }

    #dynamic-menu .overflow-root ul {
        margin-left: 0px;
    }

    #dynamic-menu .overflow-root {
        margin-bottom: 15px;
    }

    #dynamic-menu .horizontal-menu > li .vertical-menu {
        /*background-color: transparent;*/
    }

    #dynamic-menu .horizontal-menu li a {
        margin-top: 2px;
        margin-bottom: 2px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left:15px;
    }

    #dynamic-menu > .horizontal-menu .vertical-menu a {
        font-size: 16px;
    }

    #dynamic-menu .horizontal-menu .overflow-root > a .collapse-menu-toggle {
        margin-top: 0px;
        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) {
}

/*******************************************************
                 FRONTPAGE
********************************************************/
.brand-container
{
    display:flex;
    justify-content:center;
    flex-direction:row;
}

    .brand-container .brand{
        width:300px;
        margin-left:20px;
        margin-right:20px;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    /*******************************************************
                 ARTICLE LIST
********************************************************/
    section#articleList #article-container {
        margin-top: 20px;
    }

section#articleList .article {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

    section#articleList .article img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center;
    }

    section#articleList .article .title {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: rgba(0,0,0,.79);
        color: #fff;
        padding: 15px;
        font-weight: 400;
        font-size: 18px;
    }

@media (max-width: 574px) {
    section#articleList #article-container .col-xxs-12 {
        width: 100%;
    }

    section#articleList .article {
        margin-bottom: 20px;
    }

        section#articleList .article img {
            height: auto;
        }
}


/* GRID - shift column in md and lg */

@media (min-width: 992px) {
    .col-swap-md:nth-child(even) {
    }

    .col-swap-md:nth-child(odd) .container .row.clearfix .col-md-6.column:nth-child(odd) {
        left: 50%;
    }

    .col-swap-md:nth-child(odd) .container .row.clearfix .col-md-6.column:nth-child(even) {
        right: 50%;
        text-align:right;
    }
}


/* UTILLITIES */
.p-0{
    padding:0;
}

.outer-contents{
    overflow:hidden;
}
/*html {
    scroll-behavior: smooth;
}*/

body.basket-overlay-visible {
    margin-top: 110px;
}

banner.small h2 {
    font-weight: 700;
    font-size: 40px;
    margin: 0px;
    padding: 0px 0px 10px 0px;
}

/* Webshop search */
#catalog .menu-search .input-group {
    width: 100%;
}

#catalog .menu-search input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 2px;
    height: 30px;
    padding-left: 10px;
    font-size: 16px;
}

    #catalog .menu-search input:focus {
        box-shadow: none;
    }

#catalog .menu-search .input-group-btn {
    position: absolute;
    right: -12px;
    top: 0;
    width: 50px;
    z-index: 10;
}

    #catalog .menu-search .input-group-btn button {
        height: 30px;
        background-color: transparent;
        display: flex;
        align-items: center;
    }

        #catalog .menu-search .input-group-btn button:focus {
            outline: none;
            box-shadow: none;
        }

@media (max-width: 767px) {
    #catalog .menu-search {
        margin-bottom: 20px;
    }
}

/* MOVE TO website.css? */
.custom-dropdown {
    border: 1px solid #fff;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
    .custom-dropdown .custom-dropdown-label{
        padding:10px;
    }

        .custom-dropdown .custom-dropdown-label .fa-caret-down {
            float: right;
            margin-top:5px;
        }

    .custom-dropdown.closed .custom-dropdown-list {
        display: none;
    }

    .custom-dropdown.open .custom-dropdown-list {
        display: block;
    }

    .custom-dropdown .custom-dropdown-list {
        position: absolute;
        z-index: 1;
        top: 45px;
        left: 0px;
        width: 100%;
        background-color: rgba(0,0,0,0.8);
        max-height: 300px;
        overflow: auto;
    }

        .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);*/
        border: 1px solid rgba(235, 235, 235, 0.8);
        margin-bottom: 30px;
        transition: all 0.8s;
        -moz-transition: all 0.8s;
        -webkit-transition: all 0.8s;
        -o-transition: all 0.8s;
    }

        #catalog .items .item-menu-item:hover {
            box-shadow: 0 8px 12px 0 rgba(17,17,17,0.40);
        }

        #catalog .items .item-menu-item .item-data-container {
            position: relative;
            text-align: center;
            height: 130px;
            font-size: 18px;
            font-weight: bold;
            padding: 10px 15px;
        }

@media (max-width: 991px) {
    #catalog .items .item-menu-item .item-data-container {
        font-size: 16px;
        padding: 10px 10px;
    }
}

        #catalog .items .item-menu-item .dd-placeholder-link {
            display: block;
            overflow: hidden;
            position: relative;
        }

        #catalog .items .item-menu-item .dd-placeholder-saleText {
            padding: 5px 100px;
            position: absolute;
            transform: rotate(40deg);
            right: -132px;
            top: 28px;
            background-color: red;
            color: #fff;
            text-align: center;
            width: 360px;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

    #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-size: 14px;
                font-weight: 400;
                color: #444;
                overflow:hidden;
                padding-bottom:5px;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }
            #catalog .items .item-menu-item .item-data-container .partno {
                font-size: 14px;
                font-weight: 400;
                color: #aaa;

                overflow: hidden;
                padding-bottom: 5px;
            }

            #catalog .items .item-menu-item .item-data-container .price {
                font-size:18px;
                font-weight:400;
                margin-top:10px;
                width: 50%;
                float: left;
                white-space:nowrap;
            }

@media (max-width: 991px) {
    #catalog .items .item-menu-item .item-data-container .price {
        font-size: 16px;
    }
}

    #catalog .items .item-menu-item .item-data-container a {
        color: #333333;
        text-decoration: none;
        height: 100%;
        width: 100%;
        display: block;
    }

            #catalog .items .item-menu-item .item-data-container .recommended-retail-price {
                text-decoration: line-through;
                color:#DEDEDE;

                width: 50%;
                float: left;
                margin-top: 10px;
            }

            #catalog .items .item-menu-item .onsaleImage {
                position: absolute;
                top: 0;
                left: 15px;
                width: 110px;
                object-fit: contain;
            }

			/*#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-size: 16px;
                font-weight: 400;
                color: #8F2727;
            }
            #catalog .items .item-menu-item .item-data-container .price-value {
                font-size: 20px;
                font-weight: 400;
                color: #8F2727;
            }

    #catalog .items #cat-stockInfo {
        position: absolute;
        bottom: 4px;
        left: 0;
        font-size: 14px;
        font-weight: 400;
    }

@media (max-width: 991px) {
    #catalog .items #cat-stockInfo {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    #catalog .items #cat-stockInfo {
        font-size: 14px;
    }
}

    #catalog .items #cat-stockInfo .dot {
        height: 16px;
        width: 16px;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        top: 2px;
        margin-right: 5px;
        background-color: #aaa;
    }

    #catalog .items #cat-stockInfo .instock .dot {
        background-color: #4b9b14;
    }

        #catalog .items #cat-stockInfo .outofstock .dot {
            /*background-color: rgba(219,20,25,1);*/
            background-color: #f89306;
        }

        #catalog .items #cat-stockInfo .insupplierstock .dot {            
            background-color: #4b9b14;
        }

/* ITEM */
    #catalog .item h1 {
        color: #777;
        font-size: 35px;
        font-weight: 600;
        margin: 20px 0;
    }

    #catalog .item .itemdetails-image-primary {
        margin-bottom: 20px;
    }

    #catalog .item #item-images {
        overflow: hidden;
    }

    #catalog .item #image-wrapper {
        display: flex;
    }

        #catalog .item #image-wrapper .dd-placeholder-saleText {
            padding: 5px 100px;
            position: absolute;
            transform: rotate(40deg);
            right: -126px;
            top: 34px;
            background-color: red;
            color: #fff;
            text-align: center;
            width: 360px;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 600;
        }

    #catalog .item #key-wrapper {
        position: relative;
    }

        #catalog .item #key-wrapper .itemdetails-price {
            margin: 0;
            padding: 20px 0;
        }

            #catalog .item #key-wrapper .itemdetails-price .price-label {
                color: #444;
            }

        #catalog .item #key-wrapper .itemdetails-variants {
            height: auto;
        }

            #catalog .item #key-wrapper .itemdetails-variants .custom-dropdown-label {
                padding: 0;
            }

        #catalog .item #key-wrapper #stockInfo {
            margin-top: 20px;
        }

        #catalog .item #key-wrapper #btn-wrapper {
            position: absolute;
            bottom: 20px;
            left: 15px;
            width: 100%;
        }

            #catalog .item #key-wrapper #btn-wrapper .print-link,
            #catalog .item #key-wrapper #btn-wrapper .add-to-basket {
                padding: 15px;
            }

    #catalog .item .item-video-outer {
        margin: 20px 0;
    }

.side-basket-outer {
    padding: 10px 0 30px 0;
}

#catalog .tree a {
    line-height: 28px;
}

@media (max-width: 1199px) {
    #catalog .item h1 {
        font-size: 30px;
    }

    #catalog .item #key-wrapper #btn-wrapper .print-link,
    #catalog .item #key-wrapper #btn-wrapper .add-to-basket {
        padding: 10px;
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    #catalog .item #image-wrapper {
        display: block;
    }

    #catalog .item .itemdetails-image-primary {
        margin-bottom: 0;
    }

    #catalog .item h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    #catalog .item #key-wrapper #btn-wrapper {
        position: unset;
        bottom: unset;
        left: unset;
        width: unset;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .side-basket-outer {
        padding: 0 0 30px 0;
    }
}

@media (max-width: 575px) {
    #catalog .item h1 {
        font-size: 30px;
    }
}

#catalog .item .item-description{
    background-color:#444;
    min-height:416px;
    position:relative;
    padding: 0; 
    color: #444;
}

    #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-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:400;
        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 #stockInfo {
        margin-bottom: 20px;
        margin-top: 10px;
    }

        #catalog .item #stockInfo .dot {
            height: 16px;
            width: 16px;
            display: inline-block;
            border-radius: 50%;
            position: relative;
            top: 2px;
            margin-right: 5px;
            background-color: #aaa;
        }
        #catalog .item #stockInfo .instock .dot {
            background-color: #4b9b14;
        }
        #catalog .item #stockInfo .outofstock .dot {
            /*   background-color: rgba(219,20,25,1);*/
            background-color: #f89306;
        }
        #catalog .item #stockInfo .insupplierstock .dot {          
            background-color: #4b9b14;
        }

    #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 0px 0px;
    }

    #catalog .tree .catalogtree-level1 {
        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-weight: 700;
    font-size: 40px;
    margin: 0px;
    padding: 0px 0px 10px 0px;
    color: #444;
}

.catalog-rootcat-box {
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
}

    .catalog-rootcat-box:hover {
        box-shadow: 0 8px 12px 0 rgba(17,17,17,0.40);
    }

    .catalog-rootcat-box .optionals-content {
        padding: 0px 15px !important;
        color: #444;
        font-size: 14px;
    }


    /*** ITEM DETAILS BEGIN ***/
    #catalog .itemdetails-image-primary {
        box-shadow: 0 3px 6px 0px rgba(0,0,0,0.16);
    }

    #catalog .item .onsaleImage {
        position: absolute;
        left: 0;
        top: 0;
        object-fit: contain;
        object-position: center center;
        width: 120px;
    }

    #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: 47px;
        }
    #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-size: 14px;
            color: #444444;
            margin-bottom: 10px;
        }

        #catalog .item .item-description .name {
            font-size: 32px;
            color: #444444;
            font-weight: 600;
            text-shadow: none;
            line-height: normal;
        }
        #catalog .item .item-description .stockno {
            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-size: 16px;
            font-weight: normal;
        }
        #catalog .item .itemdetails-price .price-value {
            font-size: 30px;
            font-weight: 500;
            color: #DB1419;
        }

        #catalog .item .itemdetails-price .recommended-retail-price {
            text-decoration: line-through;
            color: #dedede;
            font-size: 20px;
        }

    #catalog .item .item-video-headline {
        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;
    }
}

section#catalog .lup {
    position: absolute;
    top: 0px;
    right: 14px;
    color: #fff;
    font-size: 19px;
    padding: 10px 8px;
    background-color: rgba(0, 0, 0, .4);
    z-index: 900;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .6);
}

section#catalog .lup a {

    color: #fff;
    text-decoration:none;
}
/*position: absolute;
top: 0px;
right: 14px;
color: #fff;
font-size: 19px;
padding: 10px 8px;
background-color: rgba(0, 0, 0, .4);
z-index: 900;
box-shadow: 0 2px 6px rgba(0, 0, 0, .6);*/
.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;
    }
}
/*@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");*/



/* NEW VERSION */
body {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.bold {
    font-weight: 900;
}

.page {
    position: relative;
}

.a4-page {
    width: 745px;
    height: 1074px;
    overflow: hidden;
}

.a4-doublePage {
    width: 745px;
    height: 2140px;
    overflow: hidden;
}

.page .page-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* PRODUCT */
#product .bold {
    font-weight: 700;
}

#product .section {
    margin-bottom: 15px;
}

#product h1 {
    font-weight: bold;
    font-size: 30px;
    color: black;
    padding: 0px;
    margin: 0px 0px 10px 0px;
}

#product h2 {
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    padding-bottom: 5px;
}

#product #top-section .label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
    text-align: left;
    font-size: 14px;
}

#product .financing-row .value,
#product .price-row .value {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    color: #8F2727;
}

#product .financing-row .label,
#product .price-row .label {
    line-height: 24px;
}

#product .financing-description {
    font-style: italic;
    font-size: 0.9em;
    padding-left: 10px;
}

#product .attribute-group {
    margin-bottom: 5px;
}

#product .financing-table .label {
    color: #000;
    font-size: 14px;
}

#product .financing-company-logo {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px;
}

#product table th,
#product table td {
    padding: 5px;
    border-color: #000;
}

#product table td {
    white-space: nowrap;
}

#product img {
    width: 100%;
    height: auto;
}

#product .text-right {
    text-align: right;
}

#product .text-center {
    text-align: center;
}
/* SECTION #PRODUCT */
section#products a, section#product a:hover {
    color: inherit;
    text-decoration: none;
}

section#product {
    padding: 125px 0px 20px 0px;
}

    section#product .lup {
        position: absolute;
        top: 0px;
        right: 0px;
        color: #fff;
        font-size: 24px;
        padding: 15px 25px;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 900;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.6);
    }
        section#product .lup:hover {
            color: #fff;
            background-color: rgba(227, 6, 19, 0.80);
            box-shadow: 0px 2px 6px rgba(0,0,0,0.8);
        }

section#product .lup a{
    color:#fff;
    text-decoration:none;
}

.modal-lg{
    width:1136px;
    max-width:100%;
}

.close-imageviewer-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    font-size: 30px;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 20;
    opacity: 0.6;
}

    .close-imageviewer-overlay:hover {
        color: #fff;
        text-decoration: none;
        opacity: 1;
    }

.modal .close-imageviewer-overlay {
    z-index: 1121;
}

section#product .product-info {
    padding: 0px 15px 10px 15px;
    border:1px solid #999;
    /*height: 491px;*/
    z-index:10;
    position:relative;
}

    section#product .product-info .sold {
        padding-top: 20px;
        font-size: 36px;
        font-weight: 700;
    }

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;
}

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-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-weight: 500;
    font-size: 34px;
    padding: 0px;
    margin: 15px 0px 10px 0px;
    line-height: 34px;
}
    
    
.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-size: 20px;
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.product-info-spacer {
    display: block;
    height: 20px;
}

@media only screen and (min-width : 767px) {
    .price-row {
        display: flex;
        flex-wrap: wrap;
    }
}

.product-price {
    margin-top: 0px;
}

.product-beforePrice {
    display: flex;
    align-items: flex-end;
    padding-bottom: 5px;
    color: rgb(207,23,28);
}

    .product-beforePrice .price-before {
        text-decoration: line-through;
    }

.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-size: 18px;
    font-weight: 400;
    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-size: 14px;
    font-weight: 400;
    color: #666;
}

#productVideo-wrapper .dd-product-video {
    padding-top: 30px;
}

#santander-calculater {
    display: flex;
    justify-content: end;
}
/* Customized iframe start */
    #santander-calculater #scbdkdealerexternalcalc.calculator {
        width: 100% !important;
        min-height: unset !important;
    }
        #santander-calculater #scbdkdealerexternalcalc.calculator .calcInput {
            width: 100% !important;
        }
            #santander-calculater #scbdkdealerexternalcalc.calculator .calcInput input {
                width: 75% !important;
            }
        #santander-calculater #scbdkdealerexternalcalc.calculator .santander_brand {
            width: 100%;
        }
        #santander-calculater #scbdkdealerexternalcalc.calculator .santander_footer {
            width: 100% !important;
            display: flex !important;
            justify-content: center !important;
        }
            #santander-calculater #scbdkdealerexternalcalc.calculator .santander_footer #btnApply {
                margin-left: 0 !important;
                margin-bottom: 5px !important;
            }
/* Customized iframe end */

#santander-calculater #calc-wrap {
    padding-top: 30px;
}
@media only screen and (max-width : 991px) {
    #santander-calculater {
        display: flex;
        justify-content: center;
    }

    #productVideo-wrapper .dd-product-video {
        padding-top: 15px;
    }
}

@media only screen and (max-width : 767px) {
    #productVideo-wrapper .dd-product-video {
        padding: 30px;
    }

    #santander-calculater #calc-wrap {
        padding: 0 15px;
    }
}

.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-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-size: 14px;
    color: #9A9A9A;
    background-color: rgba(36,36,36,0.6);
}


/* SECTION #productoptionals */
section#productoptionals {
    min-height: 520px;
    
}

section#productoptionals .optionals-basketcontainer {
    height:100%;
}

section#productoptionals h2 {
    font-weight: bold;
    font-size: 40px;
    color: #444444;
}
section#productoptionals h3 {
    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 {
    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;
        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;
    }

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;
}


@media only screen and (max-device-width : 767px) {
    section#product h1 {
        font-size: 24px;
        padding-bottom: 10px;
        text-align: center;
    }


    #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;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-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) {
    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;*/
        }
    }
.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-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);
}

#method_of_payment .paymentInfo {
    font-size: 12px;
    padding-bottom: 10px;
}

#parceldroppoint ul, #shipping ul, #method_of_payment ul {
    list-style-type: none;
    padding: 0px;
    padding-left: 30px;
    margin: 0px;
}

    #parceldroppoint ul, #shipping ul, #method_of_payment ul li img {
        max-width: 306px;
    }

@media only screen and (max-device-width : 569px) {
    #parceldroppoint ul, #shipping ul, #method_of_payment ul li img {
        margin-top: 5px;
        padding-right: 10px;
    }
}

    #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 #e30613;
    border-radius: 4px;
    padding: 8px;
    margin: 0px;
    background-color: #e30613;
    color: white;
}

    .red-link-button:hover {
        color: #e30613;
        background-color: white;
    }

.white-link-button {
    border: 2px solid white;
    border-radius: 4px;
    padding: 8px;
    color: #e30613;
    background-color: white;
    margin: 0px;
}

    .white-link-button:hover {
        border: 2px solid #e30613;
        color: #e30613;
    }

.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;
}

#DeliveryLocation {
    margin-top: 20px;
}

    #DeliveryLocation .delivery-desc {
        font-size: 14px;
        font-weight: 500;
        padding-left: 5px;
    }

    #DeliveryLocation textarea {
        width: 100%;
        margin-top: 10px;
        padding: 10px;
        font-size: 16px;
        border-radius: 4px;
        border: 1px solid #eee;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.20);
    }

    #DeliveryLocation textarea[name=acceptDeliveryLocation].error {
        border: 2px solid red;
    }

    #DeliveryLocation input[name=acceptDeliveryWithoutSignature].error {
        border: 2px solid red;
        box-shadow: 0 0 2px 1px red;
    }

input.validate.error {
    border: 2px solid #ff0000;
    box-shadow: 0px 0px 2px 1px rgb(255, 0, 0);
}

#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: 'Source Sans 3', sans-serif;
    color:#444;
    font-size: 16px;
    margin-top: 80px;
}
footer {
    font-weight:400;
}

h1 {
    font-size: 26px;
    color: #C6322A;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

a,
a:hover,
a:active,
a:focus {
    color: #2B2E34;
}

.strong {
    font-weight: 600;
}

.align-bottom {
    height: 100%;
}

.margin-top-15 {
    margin-top: 15px;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

section {
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Top container */

.top-fluid-container .top-right {
    height: 130px;
    float: right;
    width: 25% !important;
    background-color: #706F6F;
    background-image: url(../Content/top-grafik-bg.png);
    background-repeat: repeat-x;
    justify-content: center;
    align-items: center;
    display: flex;
}

.top-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

    .top-container .logo {
        display: block;
        max-height: 87px;
        width: auto;
        z-index: 50;
    }

    .top-container .top-container-start {
        height: 130px;
    }

.top-right-image {
    position: absolute;
    right: 25%;
    z-index: 100;
    height:130px;
    overflow:hidden;
}

    .top-right-image img{
        margin-right:-30px;
    }

    .top-right-info {
        position: absolute;
        right: 0;
        height: 130px;
        width: 25%;
        z-index: 100;
        background-color: #706F6F;
        align-content: center;
    }

        .top-right-info .contact-info-container {
            max-width:290px;
            text-align:right;
        }

            .top-right-info .contact-info-container .dd-placeholder-companyemail a{
                font-size:30px;
                line-height:38px;
            }

            .top-right-info .contact-info-container .dd-placeholder-companyphone a {
                font-size:49px;
                line-height:55px;
            }

            @media (max-width:1200px) {
                .top-right-info {
                    padding-right:30px;
                }

                .top-right-info .contact-info-container .dd-placeholder-companyemail a {
                    font-size: 25px;
                    line-height: 28px;
                }

                .top-right-info .contact-info-container .dd-placeholder-companyphone a {
                    font-size: 24px;
                    line-height: 35px;
                }
            }


            /* 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 */
.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: 22px;
        width: 22px;
        left: 6px;
        bottom: 5px;
        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(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
}

/* 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;
}

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;
}

    section#product .carousel-inner .item.video {
        height: 563px;
    }

#ImageModal .product-images-large .item.video {
    height: 852px;
}

#ImageModal .product-images-large .carousel-indicators {
    top: 100%;
}

#ImageModal .product-images-large .left.carousel-control,
#ImageModal .product-images-large .right.carousel-control {
    width: 20%;
    height: 75%;
    top: 12%;
}

@media (max-width: 1130px) {
    #ImageModal .product-images-large .item.video {
        max-height: 852px;
    }
}

@media (min-width: 1770px) {
    #navOpenHours {
        float: right;
        padding-top: 24px;
        display: block;
    }
}

@media (max-width: 1770px) {
    #navOpenHours {
        display: none;
    }
}

@media (max-width: 992px) {
    #ImageModal .product-images-large .item.video {
        max-height: 745px;
    }
}

@media (max-width: 768px) {
    #ImageModal .product-images-large .item.video {
        max-height: 587px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    section#product .carousel-inner .item.video {
        height: 402px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    section#product .carousel-inner .item.video {
        height: 540px;
    }
}

@media (min-width: 1200px) {
    nav .phonenumber a {
        font-size: 42px !important;
    }

    nav .phone {
        font-size: 34px !important;
    }
}

@media (max-width: 767px) {
    section#product .carousel-inner .item.video {
        height: 480px;
    }

    section#product .product-images .carousel-indicators {
        display: none;
    }
}

@media (max-width: 580px) {
    section#product .carousel-inner .item.video {
        height: 412px;
    }
}

@media (max-width: 420px) {
    section#product .carousel-inner .item.video {
        height: 288px;
    }
}

section#product .product-images .left.carousel-control,
section#product .product-images .right.carousel-control {
    width: 20%;
    height: 75%;
    top: 12%;
}

section#product .product-images .left span {
    left: 50%;
}

section#product .product-images .right span {
    right: 50%;
}

.front-banner-container {
    position: relative;
    margin-top: 180px;
}

.front-shadow {
    margin-top: -1px;
}

    .front-shadow img{
        height:50px;
        width:100%;
        opacity:0.5;
    }

    .carousel-indicators {
        bottom: 0px;
        z-index: 30;
    }

section#product .product-images .carousel-indicators {
    top: 100%;
}

    section#product .product-images .carousel-indicators li {
        border: 1px solid #444;
    }

        section#product .product-images .carousel-indicators li.active {
            background-color: #444;
        }

.modal .carousel-indicators {
    bottom: 0px;
    z-index: 1130;
}

.carousel-control {
    z-index: 20;
    width: 49%;
}

.modal .carousel-control {
    bottom: 0px;
    z-index: 1120;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .thumbnail a > img, .thumbnail > img {
    width: 100%;
}

.front-banner-container .box-wrapper {
    font-size: 18px;
    line-height: 22px;
    position: absolute;
    bottom: 37px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 449px;
    padding: 40px;
    background-color: #2E2E2E;
    opacity: 0.89;
    color: #ffffff;
}

    .front-banner-container .box-wrapper .box-header {
        background-color: #DB1419;
        padding: 20px 75px;
        margin-bottom: 25px;
        margin-left: -50px;
        margin-right: -50px;
        font-size: 24px;
        font-weight: bold;
        box-shadow: 0 15px 20px rgba(17,17,17,1);
    }

.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 {
    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);
    }




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;
    }

@media (max-width: 575px) {
    banner .overlay .red-box {
        width: 100%;
        font-size: 20px;
    }
}

table.openhours {
    min-width: 150px;
}

    table.openhours tr {
    }

        table.openhours tr td {
            padding-right: 20px;
        }

            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: 28px;
    text-align: right;
}

    nav .mail a {
        color: #fff;
    }

        nav .mail a:hover {
            text-decoration: none;
        }

nav .phone {
    display: inline-block;
    font-size: 18px;
    padding-left: 25px;
}

nav .phonenumber {
    font-size: 24px;
    font-weight: 600;
    padding-left: 12px;
}

    nav .phonenumber a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
    }

        nav .phonenumber a:hover {
            color: #fff;
        }

/* IMAGE BANNER */
.image-banner-wrappper {
    width: 100%;
    overflow: hidden;
}

    .image-banner-wrappper .image-banner {
        white-space: nowrap;
    }
/* FOOTER */

.pre-footer {
    margin-top: 50px;
}

    .pre-footer #functions 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;
    }

    .pre-footer #pre-footer-row {
        display: flex;
        align-items: end;
    }

@media (max-width: 991px) {
    .pre-footer .webshopInfoText-wrapper .webshopInfoText {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .pre-footer #pre-footer-row {
        display: block;
    }

    .pre-footer .webshopInfoText-wrapper .webshopInfoText {
        margin-bottom: 20px;
    }
}

.pre-footer .webshopInfoText-wrapper {
    display: none;
    text-align: center;
}

.is-webshop .pre-footer .webshopInfoText-wrapper {
    display: block;
}

footer {
    width: 100%;
    background-color: #FFF;
    display: block;
    padding-top: 0px;
    padding-bottom: 50px;
    color: #2B2E34;

    font-size: 16px;
}

@media (min-width: 992px) 
{
    footer{
        font-size: 18px;
    }
}

.footer-right-opening-hours-box .department-title {
    clear: both;
    padding-top: 30px;
}

.footer-right-infobox {
    margin-top: 180px;
}

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: #000;
}

    footer a:hover {
        color: #f00;
    }

footer .title {
    font-weight: 600;
    margin-top: 10px;
}

footer .brandimage {
    margin-top: 5px;
}

footer .address {
    margin-top: 5px;
}

footer .companyphone {
    font-size: 26px;
}

    footer .companyphone a {
        font-size: 26px;
        color: #fff;
        text-decoration: none;
    }

        footer .companyphone a:hover {
            color: #fff;
        }

footer #card-logos {
    max-width: 400px;
    display: block;
    clear: both;
}

footer .footer-left-infobox {
    margin-top: 15px;
}

footer .so-me {
    margin-top: 15px;
}

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;
}

footer .companyname {
}

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 {
        color: #8F2727;
        padding: 0px;
        margin-top: 0px;
        font-size: 20px;
    }

    section#news .news-date {
        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 {
        font-size: 14px;
        width: 100%;
        max-width: none;
        margin-bottom: 5px;
        height: 32px;
        background-color: #444;
        color: #fff;
        border: 0px;
        border-radius: 1px;
        padding-left: 15px;
    }

        .newsletter-signup input[type=submit] {
            width: 145px;
            background-color: #FF0000;
            color: white;
            border: 0px;
            font-size: 14px;
            font-weight: bold;
            vertical-align: middle;
        }


        .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 */
nav {
    width: 100%;
    display: block;
    color: white;
    font-size: 16px;
    z-index: 1000;
    position: absolute;
    top: 0px;
}

@media (min-width:1500px){
    nav{
        font-size:20px;
    }
}

.menu-container {
    background: #706F6F;
    width: 100%;
    padding: 0;
}

.navbar-brand {
    height: unset;
    z-index: 1;
}

nav .menu {
}

    nav .menu .logo-outer {
        display: inline-flex;
        background-color: #fff;
    }

.not-homepage nav .menu {
    background: #fff;
}

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 a {
        color: white;
    }


.webshop-link .menu-item {
    height: 55px;
}

    .webshop-link a {
        color: white;
        width: 100%;
        display: block;
        height: 100%;
        align-content: center;
        text-decoration: none;
    }


.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;
}

/******************************************************************* MESSAGEBOX FRONTPAGE ******************************************************************************/
#messageBox-container {
    margin-bottom: 70px;
}

    #messageBox-container .messageBox {
        padding: 20px;
        box-shadow: 0 3px 6px rgba(17,17,17,0.7);
    }

        #messageBox-container .messageBox h2 {
            margin-top: 0;
            font-size: 24px;
            font-weight: bold;
        }

/******************************************************************* SECTION #FOKUSVOGNE *******************************************************************************/
section#focusvogne H2 {
    font-size: 42px;
    text-align: center;
}

section#focusvogne .focusvogn .dd-placeholder-prodimg{
    border-radius:15px;
}

    section#focusvogne .focusvogn .modelname {
        font-size:30px;
        padding:20px 0 0 0;
    }

section#focusvogne .focusvogn .price{
    font-size:42px;
    text-align:left;
    font-weight:600;
}

section#focusvogne .focusvogn .price-box {
    border-radius:15px;
    box-shadow:none;
    min-width:230px;
    padding-left:30px;
    padding-right:30px;
}


@media (max-width: 767px) {
    section #focusvogne .carousel-control {
        width: 20%;
    }
}

/******************************************************************* SECTION #IMAGELINK *******************************************************************************/
section#imagelink {
    padding: 0 0 10px 0;
    position: relative;
    top: -10px;
    margin-bottom: 40px;
    background-color: transparent;
}

    section#imagelink h2 {
        color: #C6322A;
        font-size: 26px;
    }

    section#imagelink .link-list {
        list-style: none;
        float: left;
        padding: 0;
    }

        section#imagelink .link-list > li {
            position: relative;
            float: left;
            margin: 4px;
        }

            section#imagelink .link-list > li img {
                box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.75);
                height: 269px;
            }


            section#imagelink .link-list > li .text {
                position: absolute;
                bottom: 0px;
                width: 100%;
                height: 67px;
                color: #fff;
                background-color: rgba(0, 0, 0, 0.79);
                padding: 5px 35px;
                text-align: center;
                font-weight: 400;
                font-size: 16px;
            }
/******************************************************************* SECTION #LINKBOX *******************************************************************************/

section#linkbox {
    padding: 0 0 10px 0;
    position: relative;
    top: -10px;
    margin-bottom: 20px;
    background-color: transparent;
}

    section#linkbox .link-list {
        margin-top:30px;
        list-style: none;
        padding: 0;
    }

        section#linkbox .link-list > li {
            position: relative;
            float: left;
            margin: 0;
        }

            section#linkbox .link-list > li .link {
                border-radius: 15px;
                display:block;
                overflow:hidden;
            }

            section#linkbox .link-list > li .text {
                color: #fff;
                background-color: var(--damsgaard-red);
                align-content: center;
                text-align: center;
                font-weight: 600;
                font-size: 27px;
                padding: 5px 5px;
            }

            section#linkbox .link-list > li a {
                text-decoration: none;
            }

@media (min-width: 992px) {
    section#linkbox .link-list > li .text {
        min-height: 130px;
    }
}

@media (min-width: 500px) and (max-width:991px) {
    section#linkbox .link-list > li .text {
        height: 67px;
        color: #fff;
        padding: 5px 18px;
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        min-height: 124px;
    }
}

@media (max-width: 777px) {
    section#linkbox .link-list > li {
        width: 50%;
        padding: 10px 5px 0 0;
    }
}

@media (max-width: 500px) {
    section#linkbox .link-list > li {
        position: relative;
        float: left;
        margin: 0;
    }

        section#linkbox .link-list > li .text {
            height: 67px;
            color: #fff;
            padding: 5px 10px;
            align-content: center;
            text-align: center;
            font-weight: 400;
            font-size: 16px;
        }
}

@media (max-width: 767px) {
    section#imagelink .link-list > li img {
        height: auto;
    }
}



/******************************************************************* SECTION #FRONTLINK *******************************************************************************/
section#frontlink {
    margin-top: 30px;
}

    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 GRID *******************************************************************************/
section#frontpageGrid img {
    width: 100%;
}

section#frontpageGrid .column-container {
    /*margin: 0 -15px 0 -15px;*/
}

    section#frontpageGrid .column-container .Rte-box {
        padding: 45px 30px 45px 45px;
    }

        section#frontpageGrid .column-container .Rte-box h2{
            font-size:41px;
            font-weight:bold;
        }

        section#frontpageGrid .column-container .Rte-box p {
            font-size: 26px;
            line-height: 33px;
            color: #2B2E34;
        }

            section#frontpageGrid .column-container .Rte-box p a{
                font-weight:bold;
                font-style:italic;
            }

@media (max-width:1200px){
    section#frontpageGrid .column-container .Rte-box h2 {
        font-size: 35px;
    }

    section#frontpageGrid .column-container .Rte-box p {
        font-size: 20px;
        line-height: 30px;
    }
}

            /******************************************************************* SECTION #PROMOTE *******************************************************************************/
            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 #SEARCH *******************************************************************************/

section#search {
    padding-top: 130px;
    background-color: #C6322A;
}

    section#search input, select {
        text-align: left;
        color: #888888;
        font-size: 14px;
        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: 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:-moz-placeholder, section#search input::-webkit-input-placeholder {
            color: #888888;
            padding-left: 0px;
            font-size: 14px;
        }

        section#search input:focus,
        section#search select:focus {
            outline: 0;
        }

        section#search input[type=checkbox] {
            border: 0px;
            box-shadow: none;
        }

    section#search button.btn-searchbutton {
        background-color: #555454;
        color: white;
        padding: 5px 20px;
        border: 1px solid #fff;
        border-bottom-right-radius: 30px;
        border-top-right-radius: 30px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        vertical-align: middle;
        width: 25%;
        height: 46px;
    }

    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: 30px;
        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: 30px;
        border-top-left-radius: 30px;
        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);
}

.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 20px 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#product section#breadcrumbroot {
    padding-top: 10px;
    padding-bottom: 10px;
}

section#breadcrumbroot {
    padding-top: 110px;
    padding-bottom: 10px;
}

#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;
        }


/******************************************************************* 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.product {
        background-color: #FAF7F7;
        padding: 20px;
        color: #444444;
        border: 0px;
        border-bottom: 3px solid var(--damsgaard-red);
        transition: all 0.8s;
        -moz-transition: all 0.8s;
        -webkit-transition: all 0.8s;
        -o-transition: all 0.8s;
        cursor: pointer;
        margin-bottom: 30px;
    }

        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 var(--damsgaard-red);
        transition: all 0.8s;
        -moz-transition: all 0.8s;
        -webkit-transition: all 0.8s;
        -o-transition: all 0.8s;
        cursor: pointer;
        margin-bottom: 0px;
        height: 240px;
    }

@media (max-width: 991px) {
    section#products .productlistlist div.product {
        background-color: #FAF7F7;
        height: unset;
    }
}

section#products .productlistlist {
    padding-top: 10px;
    padding-bottom: 10px;
}

    section#products .productlistlist .attributes-outer {
        padding-top: 15px;
        padding-bottom: 10px;
        font-size: 13px;
    }

    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: 400;
    font-size: 16px;
    height: 90px;
}

section#products .productlistlist .modelname {
    font-weight: 500;
    font-size: 16px;
    color: #444;
    padding: 15px 0px 10px 0px;
    height: 62px;
}

section#products .productlistbox .modelname {
    padding-bottom: 0;
}

section#products .productlistlist .modelyear {
    font-size: 16px;
    font-weight: 500;
}

section#products .productlistbox .price, section#products .product .price {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    background-color: var(--damsgaard-red);
    max-width: 152px;
    text-align: right;
    padding: 10px;
    box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
}

section#products .product {
    height: 532px;
}

section#products .productlistbox .manufacturerLogo-row {
    display: flex;
    flex-wrap: wrap;
}

section#products .productlistlist .manufacturerLogo-col {
    padding: 0;
}

section#products .productlistbox .manufacturerLogo,
section#products .productlistlist .manufacturerLogo {
    display: flex;
    align-items: center;
    height: 100%;
}

section#products .productlistlist .manufacturerLogo {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

    section#products .productlistbox .manufacturerLogo img,
    section#products .productlistlist .manufacturerLogo img {
        max-width: 100%;
    }

@media (max-width: 991px) {
    section#products .productlistbox .price, section#products .product .price {
        position: unset;
    }
}

@media (max-width: 767px) {
    section#products .product {
        height: auto;
    }
}

section#products .productlistbox .price, section#products .product .is-sold {
    text-align: center;
}

section#products .productlistlist .price-before,
section#products .productlistbox .price-before {
    font-size: 16px;
    font-style: italic;
    color: #ccc;
}

section#products .productlistbox .promotion, section#products .product .promotion {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    background-color: rgba(207,23,28,0.85);
    min-width: 160px;
    position: absolute;
    top: -20px;
    right: -20px;
    padding: 12px;
    box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
    left: -20px;
}

section#product .promotion {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    background-color: rgba(207,23,28,0.85);
    min-width: 240px;
    position: absolute;
    bottom: 95px;
    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-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: #FF0000;
        }

        section#products ul.sort > li.header {
            font-weight: bold;
            float: left;
            padding: 0px 30px 0px 0px;
            cursor: auto;
        }

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: #FF0000;
            font-weight: 500;
        }

        section#products ul.list > li > span {
            padding-right: 0px;
        }

        section#products ul.list > li:hover:not(.header) {
            color: #FF0000;
        }

        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: 241px;
}

    .product .image .price-box {
        position: absolute;
        bottom: -20px;
        right: 20px;
        width: 152px;
        font-size: 20px;
        padding: 10px;
        background-color: var(--damsgaard-red);
        text-align: right;
        color: #fff;
        box-shadow: -3px 0px 4px 0 rgba(0,0,0,0.94);
    }

.product .modelname {
    font-size: 16px;
    font-weight: 600;
    padding: 30px 0px 20px 0;
}

.product .tent-specs-box {
    height: 70px;
}

.product .caravan-specs-box {
    min-height: 80px;
}



/* SECTION#brandlinks*/

section#brandlinks {
    background-color: white;
}

    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;
        }

@media screen AND (max-width:767px) {
    section#brandlinks .brand img {
        display: unset;
    }
}




/************ BRAND SLIDER *************/

.carousel-showsixmoveone .carousel-control {
    width: 4%;
    background-image: none;
}

.carousel-showsixmoveone .carousel-inner {
    text-align: center;
}

.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: #fff;
        text-decoration: none;
    }

    section#sales .finance-link {
        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, section#sales .employee-email {
        font-size: 13px;
        font-style: italic;
    }

    section#sales .employee-name {
        font-size: 16px;
        font-weight: 500;
        margin-top: 5px;
    }

    section#sales .employee-info {
        padding-bottom: 20px;
    }

    section#sales .employee-email {
        color: #fff;
    }

    section#sales .employee-phone {
        color: #fff;
        display: block;
    }

        section#sales .employee-phone:hover {
            color: #fff;
        }

    section#sales .salesdepartment .employee-video {
        width: 180px;
        max-width: 100%;
        height: auto;
    }

@media screen AND (max-width:1199px) AND (min-width: 992px) {
    section#sales .employee-name, section#sales .employee-phone, section#sales .employee-email {
        font-size: 11px;
    }
}

@media screen AND (max-width:991px) AND (min-width: 768px) {
    section#sales .employee-name, section#sales .employee-phone, section#sales .employee-email {
        font-size: 12px;
    }
}

/* 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;
}



/* 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 {
    background-color: #444;
    margin-top: 15px;
    color: white;
    font-size: 14px;
    padding: 30px 80px 30px 80px;
}

section#employees h1 {
    margin: 0px;
}

section#employees h2 {
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 1);
    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);
    color: #e30613;
}

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;
}

section#employees .employee-phone {
    font-weight: bold;
    font-size: 18px;
    color: #DB1419;
}

    section#employees .employee-phone a {
        font-weight: bold;
        font-size: 18px;
        color: #DB1419;
        text-decoration: none;
    }

        section#employees .employee-phone a:hover {
            font-weight: bold;
            font-size: 18px;
            color: #DB1419;
            text-decoration: none;
        }

section#employees .employee-email {
    font-size: 16px;
}

section#employees .employees .employee {
    padding: 20px 10px 10px 0px;
}

    section#employees .employees .employee video {
        width: 180px;
        max-width: 100%;
        height: auto;
    }

.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 {

}

.catalogtree-level1 {
    padding-left: 0px;
}

.catalogtree-level2 {
    padding-left: 10px;
    font-size: 15px;
}

.catalogtree-level3 {
    padding-left: 20px;
    font-size: 15px;
}

.catalogtree-level4 {
    padding-left: 30px;
    font-size: 15px;
}

.catalogtree-level5 {
    padding-left: 40px;
    font-size: 15px;
}

.catalogtree-level2 .dot {
    margin-right: 10px;
}

/* SPECIFIC VIEWPORTS */
/* Xtra small screens */
@media (max-width: 767px) {
    body {
        margin-top: 0px;
    }

    nav .phonenumber {
        padding-left: 0px;
    }

    .front-banner-container {
        margin-top: 0px;
    }

    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-container {
        position: relative;
    }

    .top-contact-box-outer {
        display: flex;
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 69px;
        width: 66.66%;
    }

    .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;
        width: 100%;
        text-align: left;
        height: 69px;
    }

        .top-contact-box .mail {
            padding-top: 8px;
            text-align: left;
            font-size: 18px;
        }

        .top-contact-box .phonenumber {
            font-size: 22px;
        }

            .top-contact-box .phonenumber a {
                font-size: 22px;
            }

    .webshop-link {
        position: absolute;
        right: 0;
        top: -54px;
        text-align: center;
        list-style-type: none;
        background-color: var(--damsgaard-red);
        height: 69px;
        width: 40%;
        padding: 0;
        font-size: 20px;
    }

        .webshop-link a {
            padding: 23px;
        }

    .top-contact-box-end {
        display: block;
        content: '';
        background-image: url('../Content/top-grafik-small-end.png');
        background-size: cover;
        width: 35px;
        height: 69px;
    }

    #dynamic-menu .horizontal-menu .top-burger-menu {
        position: absolute;
        top: -140px;
        width: 14%;
        right: -344px;
    }


    #dynamic-menu .dropdown .burger-menu {
        margin-top: 24px;
        width: 100vw;
        position: absolute;
        left: -344px;
        top: 47px;
    }

    .small-menu {
        width: 0 !important;
    }

    #dynamic-menu .horizontal-menu .overflow-root > a .collapse-menu-toggle .bar {
        height: 5px;
        margin-bottom: 7px;
        background-color: darkslategrey;
    }

    .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 .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#product .promotion {
            position: static;
            box-shadow: none;
        }

        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:391px) {
    #dynamic-menu .horizontal-menu .top-burger-menu {
        position: absolute;
        top: -140px;
        width: 14%;
        right: -310px;
    }

        #dynamic-menu .horizontal-menu .top-burger-menu .burger-menu {
            width: 100vw;
            position: absolute;
            top: 47px;
            left: -300px;
        }
}

@media (max-width:376px) {
    #dynamic-menu .horizontal-menu .top-burger-menu {
        position: absolute;
        top: -140px;
        width: 14%;
        right: -300px;
    }

        #dynamic-menu .horizontal-menu .top-burger-menu .burger-menu {
            width: 100vw;
            position: absolute;
            top: 47px;
            left: -300px;
        }
}



@media (max-width: 991px) {
    .top-container .logo {
        max-height: 76px;
    }
}

@media (max-width: 767px) {

    section#search {
        padding-top: 25px;
    }

    #brandlinks .col-sm-3 {
        width: 25%;
        float: left;
    }

    .carousel-inner {
        overflow: hidden;
    }

    .front-banner-container .box-wrapper {
        bottom: 0px;
        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-right: -50px;
            margin-bottom: 25px;
            font-size: 20px;
        }

    section#imagelink {
        margin-top: 70px;
    }


    .dropdown-list li.header {
        font-size: 16px;
    }

    section#search input, select {
        font-size: 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) {

    .menu-container {
        border-top: 0px;
    }

    .front-banner-container .box-wrapper {
        transform: unset;
        right: 25px;
        left: unset;
        width: 347px;
        font-size: 16px;
        padding: 25px;
    }

        .front-banner-container .box-wrapper .box-header {
            padding: 20px 50px;
            margin-left: -40px;
            margin-right: -40px;
            margin-bottom: 25px;
            font-size: 21px;
        }


    section#imagelink .link-list > li {
        margin: 10px;
    }

    section#products .productlistlist .modelname {
        font-size: 16px;
    }

    section#products .productlistlist .price {
        font-size: 20px;
    }


    section#products .productlistlist div.product {
        height: 300px;
    }

    section#products .productlistlist .btn-green {
    }

    section#employees .department {
        background-color: #444444;
        margin-top: 30px;
        color: white;
        padding: 30px 30px 30px 30px;
    }

    .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: 20px;
    }

    section#products .productlistlist .btn-red a {
        font-size: 18px;
    }
}

/* 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;
    }



    .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 {
        margin-bottom: 0px;
    }

        section#imagelink .text {
            font-size: 28px;
        }

    section#promote .video-box {
        height: 168px;
        margin-bottom: 20px;
    }

    .newsletter-signup, .nextevent-latest {
        margin-top: 30px;
    }

    section#products ul.sort > li {
        padding: 0px 7px;
    }

    section#employees .employee-name {
        font-size: 20px;
    }

    footer {
        font-size: 14px;
    }

        footer .footer-top {
            margin-bottom: 0px;
        }

        footer .title {
            font-weight: 600;
            margin-top: 15px;
        }

        footer .brandimage {
            width: 245px;
        }

        footer .so-me {
            margin-top: 30px;
            margin-bottom: 30px;
        }


    footer .map-container {
        top: -97px;
        margin-bottom: 20px;
    }
}

@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;
    }

    .container {
        width: 85%;
        max-width: 1630px;
    }
}


@media (max-width: 1199px) {

    .product .image {
        position: relative;
        min-height: 191px;
    }

    section#frontlink .overlay .red-box {
        width: 415px;
    }

    footer .brandimage {
        margin-top: 5px;
        max-width: 300px;
    }
}

@media (max-width: 991px) {

    section#frontlink .overlay .red-box {
        width: 325px;
    }

    section#promote .video-box > div {
        padding-top: 35px;
    }

    .footer-right-infobox {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    section#search {
        padding-top: 25px;
    }

    footer {
        padding-bottom: 70px;
    }

        footer .brandimage {
            width: 200px;
        }
}

footer .gazelle-logo {
    width: 210px;
    max-height: 110px;
}

.footer-images {
    margin-top: 15px;
}

@media (max-width: 575px) {
    footer .brandimage {
        width: 180px;
    }
}

@media (min-width: 767px) {
    .nav-container {
        width: 67.5%;
        margin: 0 0 0 7.5%;
        float: left;
    }
}

@media (min-width: 500px) and (max-width: 769px) {

    .menu .col-sm-3 {
        width: 34.33%;
    }

    .menu .col-sm-9 {
        width: 65.66666667%;
    }

    .menu .trustpilot-widget {
        display: none;
    }
}

@media (min-width:770px) and (max-width:821px) {

    nav .phonenumber a {
        font-size: 21px;
    }

    nav .phone {
        font-size: 21px;
    }

    .menu .trustpilot-widget {
        position: absolute !important;
        width: 140px;
        top: 12px;
        right: 270px;
    }

    #promote .trustpilot-widget {
        display: none;
    }
}

@media (min-width: 821px) and (max-width:1025px) {

    .menu .col-sm-3 {
        width: 36.33%;
    }

    .menu .col-sm-9 {
        width: 63.66666667%;
    }

    .menu .trustpilot-widget {
        width: 190px;
        top: 20px;
    }
}

@media (max-width: 980px) {
    .menu .trustpilot-widget {
        display: none;
    }
}

@media (min-width: 1026px) {
    .menu .trustpilot-widget {
        width: 210px;
        top: 10px;
    }
}

.h2-center {
    text-align: center;
    font-weight:600;
    margin-bottom:20px;
    font-size:42px;
}

.gray {
    position: absolute;
    background-color: #706F6F;
    height: 35px;
    padding: 0;
    bottom: 0;
    left: 0;
    color: white;
    font-size: 16px;
    align-content: center;
    text-align: center;
}

@media (max-width: 992px) {
    nav .phonenumber a {
        font-size: 15px;
        font-weight: 600;
    }

    nav .phone {
        font-size: 15px;
    }

    nav .phonenumber {
        font-size: 20px;
    }

    nav .mail {
        font-size: 15px;
    }
}

.banner-container {
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .banner-container .col-sm-12 {
        align-content:center;
    }

    .banner-container .banner-box-wrapper {
        height:fit-content;
    }
        .banner-container .banner-box-wrapper .above-header-text, .banner-container .banner-box-wrapper .banner-box-text {
            font-size: 28px;
            color: white;
        }
        .banner-container .banner-box-wrapper .banner-box-header {
            font-size: 60px;
            color: white;
            margin: -17px 0 -10px 0;
        }

banner a:hover {
    text-decoration:none;
}

.black-background {
    background-color: black;
    opacity: 0.81;
    width: fit-content;
    padding: 25px;
}

.white-background {
    background-color: white;
    opacity: 0.81;
    width: fit-content;
    padding: 25px;
    color:black;
}

.white-background div {
    color: black !important;
}



.webshop-link {
    text-align: center;
    text-decoration: none;
    background-color: var(--damsgaard-red);
    height: 55px;
    list-style-type: none;
    width: 25%;
    padding: 0;
    float: left;
    font-size: 24px;
}

.highlight-menu-item,
.highlight-menu-item:hover,
.highlight-menu-item:active,
.highlight-menu-item:focus {
    text-align: center;
    list-style-type: none;
    background-color: var(--damsgaard-red);
    color: #fff;
    height: 69px;
    line-height: 69px;
    display: block;
    position: relative;
    z-index: 1;
}

.grey-box {
    background-color: #706F6F;
    height: 69px;
    padding: 8px 15px;
    position: relative;
    z-index: 2;
    height: 69px;
}

    .grey-box .grey-box-tail {
        display: block;
        position: absolute;
        left: 96%;
        top: 0;
        background-image: url('../Content/top-grafik-small-end.png');
        background-size: cover;
        width: 35px;
        height: 69px;
        z-index: 1;
    }

    .grey-box .mail-address {
        display: block;
        font-size: 18px;
        color: #fff;
    }

    .grey-box .phone-number {
        display: block;
        font-size: 22px;
        color: #fff;
        font-weight: 600;
    }

.banner-box-wrapper {
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    display: inline-block;
}

.banner-box-text {
    line-height: 120%;
}

.banner-box-header {
    margin: auto !important;
    ;
    line-height: 130%;
}

#card-logos {
    max-width: 100% !important;
}

@media (max-width: 767px) {
    #dynamic-menu {
        margin-top: 0;
    }

    .navbar-brand {
        height: 96px;
        width: 234px;
        max-width: 234px;
        padding-bottom: 5px;
    }

        .navbar-brand img {
            width: 100% !important;
        }

    .menu-container.loading {
        display: none;
    }

    .banner-box-wrapper {
        padding: 10px;
    }

    .nav-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #dynamic-menu .horizontal-menu .top-burger-menu {
        right: -329px;
    }
}


.menu .trustpilot-widget {
    max-height: 130px;
    overflow: hidden;
}

.grid-section .column-container > img{
    border-radius:15px;
}

.grid-section .column-container > Rte-box{

}


:root {
    --damsgaard-red: #B03028;
}
section#workshop .Trustpilot .tp-widget-wrapper {
    text-align: left !important;
    margin: 0 !important;
}

@media only screen and (max-width: 575px) {
    section#workshop .trustpilot-widget {
        margin-top: 20px !important;
    }
}

section#workshop .container .container {
    width: 100% !important;
}

section#workshop div.input-select-group {
    z-index: 2;
    position: absolute;
    display: inline-block;
}

section#workshop .input-select-group span.input-select.fa-caret-up {
    color: #999999;
    position: absolute;
    top: 2px;
    left: -25px;
}
section#workshop .input-select-group span.input-select.fa-caret-down {
    color: #999999;
    position: absolute;
    top: 12px;
    left: -25px;
}

.workshop-contactform-outer {
    margin: 15px;
    padding: 0px 15px 15px 15px;
    background-color: #eee;
}

.workshop-contactform-outer h2 {
    margin-left: 0px;
}

.workshop-contactform {
    padding: 0px 5px;
}

    .workshop-contactform .label {
        font-size: 15px;
        font-weight: 400;
        color: #333;
        text-align: left;
        padding:0px;
    }
    .workshop-contactform .label-required {
        color: #ff0000;
    }

    .workshop-contactform-outer input:not([type=radio]):not([type=checkbox]), 
    #searchAgent #searchAgent-form input {
        width: 100%;
        border: 1px solid #CCCCCC;
        border-radius: 2px;
        height: 30px;
        padding-left: 10px;
        font-size: 16px;
    }
.workshop-contactform-outer input[type=radio] {
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    margin-left: 5px;
    margin-right: 10px;
}
.workshop-contactform-outer input.validate.error {
    border: 2px solid #ff0000;
}
.workshop-contactform-outer button[type=submit],
.workshop-contactform-outer input[type=submit],
.workshop-contactform-outer button[type=button] {
    background-color: #555454;
    color: white;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    padding: 5px 10px;
    /* z-index: 20; */
    height: 46px;
    border-radius: 30px;
    margin-right: 5px;
    width: 100%;
}

.workshop-contactform-outer button.fileselect {
    background-color: #8f8f8f;
    color: white;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    padding: 5px 10px;
    /* z-index: 20; */
    height: 46px;
    border-radius: 30px;
    margin-right: 5px;
    width: 100%;
}

.workshop-contactform .extras-list {
    width: 100%;
    border: 0px solid #444444;
    border-radius: 0px 0px 4px 4px;
    overflow: auto;
    
}
    .workshop-contactform .extras-list ul {
        list-style: none;
        padding: 0px;
    }
    .workshop-contactform .extras-list li {
        line-height: 42px;
        display: flex;
        -ms-flex-flow: row;
        -webkit-flex-flow: row;
        flex-flow: row;
        align-items: center;
    }
        .workshop-contactform .extras-list li input[type="checkbox"] {
            border: 1px solid #CCCCCC;
            border-radius: 2px;
            height: 20px;
            width: 20px;
            margin-right: 15px;
        }

.workshop-contactform .error-message {
    font-weight: bold;
    color: red;
    text-align: right;
    padding-top: 10px;
}

.queryPlate {
    display: inline;
    text-align: left;
}
#queryPlateNoDK {
    width: 19px;
    background-color: #403eff;
    color: #fff;
    position: absolute;
    left: 15px;
    height: calc(100% - 8px);
    font-size: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 4px;
}
#queryPlateNo {
    border: 1px solid #555454;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    padding: 8px 5px 5px 24px;
    height: 46px;
    border-radius: 3px;
    margin-right: 5px;
    outline: 1px solid #a70000;
    outline-offset: -4px;
    width: 180px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    #queryPlateNo.yes {
        border: 1px solid #e51111;
    }
    #queryPlateNo.no {
        border: 1px solid #5be511;
    }

    .workshop-contactform textarea {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        border: 1px solid #CCCCCC;
        border-radius: 2px;
        height: 180px;
        padding-left: 10px;
        font-size: 16px;
    }
.workshop-contactform .row {
    padding-top: 10px;
}
    .workshop-contactform .date-selection {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .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-info,
.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;
}
.workshop-contactform-warning {
    padding: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #f3c455;
    font-size: 16px;
    text-align: center;
    margin: 10px 0px;
}
.workshop-contactform-search {
    padding: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #bbbbbb;
    font-size: 16px;
    /*text-align: center;*/
    margin: 10px 0px;
}

.workshop-contactform #customerTypes .label {
    white-space: pre-wrap;
}

.workshop-contactform #customerTypes ul {
    list-style: none;
    padding: 0;
}

    .workshop-contactform #customerTypes ul li {
        /*line-height: 42px;*/
        padding-bottom: 15px;
        display: flex;
        -ms-flex-flow: row;
        -webkit-flex-flow: row;
        flex-flow: row;
        align-items: center;
    }

        .workshop-contactform #customerTypes ul li:first-child {
            padding-top: 10px;
        }

        .workshop-contactform #customerTypes ul li input[type="checkbox"] {
            border: 1px solid #ccc;
            border-radius: 2px;
            height: 20px;
            width: 20px;
            margin-right: 15px;
        }

            .workshop-contactform #customerTypes ul li input[type="checkbox"].error {
                -webkit-box-shadow: 0px 0px 2px 1px rgba(255,0,0,1);
                -moz-box-shadow: 0px 0px 2px 1px rgba(255,0,0,1);
                box-shadow: 0px 0px 2px 1px rgba(255,0,0,1);
            }

@media only screen and (max-width : 1024px) {
    .workshop-contactform .extras-list li input {
        height: 30px;
        width: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #queryPlateNoSubmit {
        margin-top: 10px;
    }
}

/* Image upload */
.workshop-contactform .dropzone {
    padding: 15px 15px 45px 15px;
    min-height: 100px;
    border: 1px solid #ccc;
}

    .workshop-contactform .dropzone .dz-preview {
        margin: 10px;
    }

    .workshop-contactform .dropzone .dz-remove {
        color: #E30613;
    }

.workshop-contactform #dropzone-plus {
    position: absolute;
    bottom: 15px;
    left: 50%;
    pointer-events: none;
    font-size: 25px;
    color: #555454;
}

/* Form Validation reCaptcha */
#rc-imageselect {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-bottom: -20px;
}

.workshop-contactform .g-recaptcha {
    float: right;
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-bottom: -20px;
    margin-right: -70px;
}

@media (max-width:767px) {
    .workshop-contactform .g-recaptcha {
        float: left;
    }
}














/**umb_name:normal*/
.normal{font-size: 16px;
font-weight: 400;}

/**umb_name:h1*/
h1{}

/**umb_name:h2*/
h2{}

/**umb_name:h3*/
h3{}

/**umb_name:h4*/
h4{}

/**umb_name:h5*/
h5{}
