/* ==========================================================================
   Globale Element Selektoren (h1, a, button)
   Sie werden hier am Anfang definiert, da sie das Layout der kompletten Seite
   beeinflussen.
   ========================================================================== */

/*
 * Basic
 */

::-moz-selection {
    background-color: #CA97A5;
    text-shadow: 1px 1px 1px #ffffff;
}
::selection {
    background-color: #CA97A5;
    text-shadow: 1px 1px 1px #ffffff;
}
:focus {
    outline: 0;
}
html {
    overflow-x: hidden;
}
html,
body {
    width: 100%;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
th,
td {
    padding: 0;
}
ul {
    list-style-type: square;
}
hr {
    border-color: #72512c;
}
iframe {
    width: 100%;
}
.ma_center {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 20px 0 20px;
}

/*
 * Typography
 */

body {
    color: #7E7B7F;
    font-family: 'Open Sans', sans-serif;
    font-size: 62.5%;
    font-weight: 400;
    line-height: 1.5;
    transition: font-size 0.5s;
    -webkit-transition: font-size 0.5s;
    -moz-transition: font-size 0.5s;
    -ms-transition: font-size 0.5s;
}
a {
    color: #594b3f;
    text-decoration: underline;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -ms-transition: color 0.5s;
}
a:visited {
    color: #594b3f;
}
a:hover {
    color: #979697;
}
h1 {
    color: #7E7B7F;
    font-size: 5.0em;
    font-weight: 700;
    margin: 0;
}
h2 {
    color: #7E7B7F;
    font-size: 3.0em;
    font-weight: 400;
    margin: 0 0 45px 0;
}
h3 {
    color: #7E7B7F;
    font-size: 4.0em;
    font-weight: 400;
    margin: 0;
}
h4 {
    color: #7E7B7F;
    font-size: 2.0em;
    font-weight: 400;
    margin: 0;
}
p {
    color: #7E7B7F;
    font-size: 1.6em;
    margin: 0;
    padding: 0 0 30px 0;
}
b,
strong,
th {
    font-weight: 700;
}
.icon {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Layout
   Hier das Layout der Seite programmieren. So gut es geht, wiederverwendbaren Code
   in mixins.css separieren.

   #id selector nicht im CSS benutzen, da es schwierig wird ids zu �berschreiben
   (es braucht 255 Klassen um eine id zu �berschreiben). ids sind dennoch sinnvoll
   um performant mit JS aufs DOM zuzugreifen.

   Lesen:
   http://csswizardry.com/2011/09/when-using-ids-can-be-a-pain-in-the-class/
   http://csswizardry.com/2013/05/scope-in-css/

   ========================================================================== */

/*
 * Backbone
 */

.content_push {
    height: 100%;
    width: 100%;
}
    .content_push .header {
        height: 100%;
        position: relative;
        width: 100%;
        z-index: 100;
    }
        .content_push .header .h_top {
            /*background-image: url('../img/layout/BG-h_top-50x50.png');*/
            background-color: #fff;
            background-repeat: repeat;
            /*border-bottom: 1px dashed #72512c;*/
            height: 80px;
            left: 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 10;
            -webkit-box-shadow: 0 0 16px 0 #d0d0d0;
            box-shadow: 0 0 16px 0 #d0d0d0;
        }
        /*.content_push .header .h_top:after {*/
            /*background-image: url('../img/layout/BG-h_top-50x50.png');*/
            /*background-color: #dfd3bf;*/
            /*background-repeat: repeat;*/
            /*bottom: -5px;*/
            /*content: '';*/
            /*height: 4px;*/
            /*left: 0;*/
            /*position: absolute;*/
            /*width: 100%;*/
        /*}*/
        .content_push .header .h_bottom {
            height: 100%;
            left: 0;
            margin: 80px 0 0 0;
            overflow: hidden;
            position: relative;
            top: 0;
            width: 100%;
        }
    .content_push .main {
        padding: 70px 0 35px 0;
    }
        .content_push .main .row {
            margin: 25px 0 25px 0;
        }
        .content_push .main .row.image_holder {
            background-color: #ffffff;
            background-position-x: center!important;
            background-repeat: no-repeat;
            background-size: 100%;
            margin: 50px 0 50px 0;
            padding: 170px 0 170px 0;
        }
            .content_push .main .row.box_set_slider .ma_center {
                max-height: 0;
                overflow: hidden;
                visibility: hidden;
            }
            .content_push .main .row.box_set_slider .ma_center.visible {
                max-height: 100%;
                overflow: visible;
                visibility: visible;
            }
            .content_push .main .row.box_set_slider .ma_center .slider .owl-controls {
                height: 0;
                left: 0;
                margin-top: -30px;
                position: absolute;
                top: 50%;
                width: 100%;
                z-index: 5;
            }
                .content_push .main .row.box_set_slider .ma_center .slider .owl-controls .owl-nav .owl-prev,
                .content_push .main .row.box_set_slider .ma_center .slider .owl-controls .owl-nav .owl-next {
                    background-color: #ddd3b5;
                    color: #725120;
                    font-size: 30px;
                    display: inline-block;
                    height: 60px;
                    line-height: 60px;
                    width: 45px;
                    transition: background-color 0.5s, color 0.5s;
                    -webkit-transition: background-color 0.5s, color 0.5s;
                    -moz-transition: background-color 0.5s, color 0.5s;
                    -ms-transition: background-color 0.5s, color 0.5s;
                }
                .content_push .main .row.box_set_slider .ma_center .slider .owl-controls .owl-nav .owl-prev {
                    float: left;
                    margin-left: -15px;
                }
                .content_push .main .row.box_set_slider .ma_center .slider .owl-controls .owl-nav .owl-next {
                    float: right;
                    margin-right: -15px;
                }
                .content_push .main .row.box_set_slider .ma_center .slider .owl-controls .owl-nav .owl-prev:hover,
                .content_push .main .row.box_set_slider .ma_center .slider .owl-controls .owl-nav .owl-next:hover {
                    background-color: #755214;
                    color: #ffffff;
                }
    .content_push .footer {
        padding: 25px 0 90px 0;
        position: relative;
        z-index: 50;
    }
        .content_push .footer .f_bottom {
            background-color: #7e7b7f;
            bottom: -95px;
            height: 90px;
            left: 0;
            position: fixed;
            width: 100%;
            z-index: 10;
            transition: bottom 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
            -webkit-transition: bottom 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
            -moz-transition: bottom 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
            -ms-transition: bottom 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
        }
        .content_push .footer .f_bottom.open {
            bottom: 0;
            /*-webkit-box-shadow: 0 5px 10px 8px #d0d0d0;*/
            /*box-shadow: 0 5px 10px 8px #d0d0d0;*/
        }

/*
* Dynamic Button
*/
.dynamic_button a:hover {
    color: #979697;
}
.dynamic_button .item {
    position: absolute;
    background: #fff;
    height: 190px;
    width: 255px;
    top: 18%;
    left: 8%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    text-align: center;
}
.dynamic_button .item.alternative {
    bottom: 18%;
    right: 8%;
    top: auto;
    left: auto;
}

.dynamic_button .item:before {
    content: '';
    width: 45%;
    height: 2px;
    display: block;
    background: #7E7B7F;
    margin-bottom: 8px;
}

.dynamic_button .item:after {
    content: '';
    width: 45%;
    height: 2px;
    display: block;
    background: #7E7B7F;
    margin-top: 8px;
}

.dynamic_button .item .header_text {
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 15px;
}

.dynamic_button .item .subheader_text {
    padding: 0 15px;
}

/*
 * Header
 */

.conversions {
    position: absolute;
    top: 9px;
    right: 115px;
}
    .conversions .tel {
        margin-right: 20px;
    }

    .conversions a {
        font-size: 1.3em;
        text-decoration: none;
    }

.lang_nav {
    right: 15px;
    position: absolute;
    top: 10px;
}
    .lang_nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
        .lang_nav ul li {
            border-left: 1px solid #555555;
            float: left;
            font-size: 1.3em;
            height: 15px;
            line-height: 15px;
        }
        .lang_nav ul li:first-child {
            border-left: 0;
        }
            .lang_nav ul li a {
                color: #555555;
                padding: 0 5px 0 5px;
                text-decoration: none;
                text-transform: uppercase;
            }
            .lang_nav ul li a:visited {
                color: #555555;
            }
            .lang_nav ul li a:hover {
                color: #e80022;
            }
            .lang_nav ul li.act a {
            	font-weight: 700;
            }
.main_nav {
    padding-top: 10px;
}
    .main_nav .nav_logo {
        background-position: 0 -58px;
        float: left;
        height: 53px;
        text-decoration: none;
        width: 72px;
        transition: background-position 0.5s;
        -webkit-transition: background-position 0.5s;
        -moz-transition: background-position 0.5s;
        -ms-transition: background-position 0.5s;
    }
    .main_nav .nav_logo.transform {
        background-position: 0 0;
    }
    .main_nav > ul {
        float: right;
        list-style-type: none;
        margin: 28px 0 0 0;
        padding: 0;
    }
        .main_nav > ul > li {
            float: right;
            position: relative;
            text-align: right;
            width: auto;
        }
        .main_nav > ul > li:after {
            background: #ffffff;
            bottom: -50px;
            content: '';
            display: none;
            height: 40px;
            left: 0;
            position: absolute;
            width: 40px;
            z-index: 5;
            -moz-transform: rotate(-135deg);
            -ms-transform: rotate(-135deg);
            -o-transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
        }
        .main_nav > ul > li:hover:after {
            display: block;
        }
            .main_nav > ul > li > a {
                color: #7E7B7F;
                font-size: 1.8em;
                height: 25px;
                line-height: 25px;
                margin: 0 40px 0 0;
                text-decoration: none;
            }
            .main_nav > ul > li:first-child > a {
                margin-right: 0;
            }
            .main_nav > ul > li > a:visited {
                color: #7E7B7F;
            }
            .main_nav > ul > li > a:hover {
                color: #979697;
            }
            .main_nav > ul > li.act > a {
                font-weight: bold;
            }
            .main_nav > ul > li .sub_nav {
                display: none;
                position: absolute;
                right: -20px;
                top: 25px;
                z-index: 10;
            }
            .main_nav > ul > li.item_1 .sub_nav,
            .main_nav > ul > li.item_2 .sub_nav {
                left: -20px;
                right: auto;
            }
            .main_nav > ul > li.item_3 .sub_nav {
                right: -150px;
            }
            .main_nav > ul > li:hover .sub_nav {
                display: block;
                padding: 17px 0 0 0;
            }
                .main_nav > ul > li .sub_nav > div {
                    background: #ffffff;
                    height: 370px;
                    overflow: hidden;
                    padding: 40px 30px 40px 30px;
                    width: 790px;
                    -webkit-box-shadow: 0 5px 10px -5px #d0d0d0;
                    box-shadow: 0 5px 10px -5px #d0d0d0;
                }
                    .main_nav > ul > li .sub_nav > div .list {
                        float: left;
                        text-align: left;
                        width: 100%;
                    }
                        .main_nav > ul > li .sub_nav > div .list ul {
                            list-style-type: none;
                            margin: 0;
                            padding: 0;
                        }
                        .main_nav > ul > li .sub_nav > div .list > ul {
                            -webkit-column-count: 2;
                            -moz-column-count: 2;
                            column-count: 2;
                            -webkit-column-gap: 11.1%;
                            -moz-column-gap: 11.1%;
                            column-gap: 11.1%;
                        }
                            .main_nav > ul > li .sub_nav > div .list ul li {
                                line-height: 25px;
                            }
                            .main_nav > ul > li .sub_nav > div .list > ul > li  {
                                -webkit-column-break-inside: avoid;
                                -moz-column-break-inside:avoid;
                                -moz-page-break-inside:avoid;
                                page-break-inside: avoid;
                            }
                                .main_nav > ul > li .sub_nav > div .list ul li a {
                                    color: #525252;
                                    text-decoration: none;
                                }
                                .main_nav > ul > li .sub_nav > div .list ul li a:visited {
                                    color: #525252;
                                }
                                .main_nav > ul > li .sub_nav > div .list ul li a:hover {
                                    color: #979697;
                                }
                                .main_nav > ul > li .sub_nav > div .list ul li.act > a {
                                	color: #CA97A5;
                                }
                                .main_nav > ul > li .sub_nav > div .list > ul > li > a {
                                    font-size: 1.8em;
                                    font-weight: 700;
                                }
                                .main_nav > ul > li .sub_nav > div .list > ul > li > ul {
                                    margin: 0 0 10px 0;
                                }
                                	.main_nav > ul > li .sub_nav > div .list > ul > li > ul > li .icon {
                                        color: #E80022;
                                        font-size: 1.6em;
                                        margin: 0 5px 0 0;
                                        display: none;
                                    }
                                    .main_nav > ul > li .sub_nav > div .list > ul > li > ul > li > a {
                                        font-size: 1.5em;
                                        margin-left: 15px;
                                    }
                    .main_nav > ul > li .sub_nav > div .image {
                        float: right;
                        width: 34.2%;
                    }
                        .main_nav > ul > li .sub_nav > div .image img {
                            height: auto;
                            width: 100%;
                        }
    .main_nav .mobile_nav_trigger {
        display: none;
    }
.main_logo {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}
    .main_logo a {
        background-color: #ffffff;
        display: block;
        height: 145px;
        margin: 0 auto;
        text-align: center;
        width: 250px;
        pointer-events: all;
    }
        .main_logo a img {
            display: inline;
            height: auto;
            margin: 25px 0 0 0;
            max-width: 195px;
            width: 100%;
        }
.vista {
    overflow: hidden;
    position: relative;
    width: 100%;
}
    .vista .slider {
        position: relative;
        width: 100%;
    }
        .vista .slider .item {
            width: 100%;
        }
            .vista .slider .item img {
                height: auto;
                width: 100%;
            }
    .vista .bar {
        margin: -205px 0 0 0;
        position: absolute;
        right: 0;
        top: 50%;
        z-index: 8;
    }
        .vista .bar > div {
            background-color: #7E7B7F;
            clear: both;
            color: #ffffff;
            display: block;
            float: right;
            height: 192px;
            margin: 10px 0 0 0;
            max-width: 42px;
            overflow: hidden;
            padding: 4px 0 4px 4px;
            text-align: center;
            width: 292px;
            transition: background-color 0.5s, color 0.5s, max-width 0.5s;
            -webkit-transition: background-color 0.5s, color 0.5s, max-width 0.5s;
            -moz-transition: background-color 0.5s, color 0.5s, max-width 0.5s;
            -ms-transition: background-color 0.5s, color 0.5s, max-width 0.5s;
        }
        .vista .bar > div:first-child {
            margin: 0;
        }
        .vista .bar > div:hover {
            background-color: #979697;
            color: #ffffff;
            max-width: 292px;
        }
            .vista .bar > div > a {
                /*border: 1px dashed #ffffff;*/
                /*border-right: 0;*/
                color: #ffffff;
                cursor: auto;
                display: block;
                float: left;
                height: 180px;
                padding: 10px 0 0 0;
                position: relative;
                text-decoration: none;
                width: 41px;
            }
            .vista .bar > div > a:visited {
                color: #ffffff;
            }
            .vista .bar > div:hover > a,
            .vista .bar > div > a:hover {
                color: #ffffff;
            }
                .vista .bar > div > a .icon {
                    font-size: 22px;
                }
                .vista .bar > div > a > span {
                    bottom: 10px;
                    display: inline-block;
                    font-size: 20px;
                    line-height: 40px;
                    position: absolute;
                    right: 0;
                    width: 40px;
                    -moz-transform: rotate(-90deg);
                    -ms-transform: rotate(-90deg);
                    -o-transform: rotate(-90deg);
                    -webkit-transform: rotate(-90deg);
                }
            .vista .bar > div .image {
                float: right;
                margin: -4px 0 0 0;
                max-height: 200px;
                max-width: 0;
                overflow: hidden;
                position: relative;
                transition: max-width 0.5s;
                -webkit-transition: max-width 0.5s;
                -moz-transition: max-width 0.5s;
                -ms-transition: max-width 0.5s;
            }
            .vista .bar > div:hover .image {
                max-width: 250px;
            }
                .vista .bar > div .image img {
                    height: auto;
                    width: 250px;
                }
                .vista .bar > div .image .btn {
                    background-color: rgba(255,255,255, 0.8);
                    color: #7E7B7F;
                    bottom: 20px;
                    left: 50%;
                    margin: 0 0 0 -75px;
                    min-width: 0;
                    padding: 0;
                    position: absolute;
                    width: 150px;
                    /*-webkit-box-shadow: 0 0 4px 2px #d0d0d0;*/
                    /*box-shadow: 0 0 4px 2px #d0d0d0;*/
                }
                    .vista .bar > div .image .btn:hover {
                        background-color: rgba(126, 123, 127, 0.8);
                        color: #fff;
                    }
.contact {
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 5;
    font-size: 24px;
}
    .contact .content {
        display: none;
    }

    .contact.open .content {
        display: block;
        font-size: 13px;
        text-align: left;
        line-height: 14px;
        margin-top: 50px;
    }

    .contact.open > div {
        width: 380px;
        padding: 50px 88px;
        transition: width 1s;
    }
    .contact > div {
        background-color: #fff;
        display: block;
        margin: 0 auto;
        padding: 5px 5px 0 5px;
        width: 240px;
        position: relative;
        transition: width 1s;
    }
        .contact.open > div > div {
            height: 405px;
            justify-content: flex-start;
            transition: height 1s;
        }

        .contact > div > div {
            /*border: 1px dashed #ffffff;*/
            border-bottom: 0;
            height: 145px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transition: height 1s;
        }
        .contact > div > div a {
            text-decoration: none;
        }

        .contact.open > div > div .close {
            position: absolute;
            right: 32px;
            top: 32px;
            width: 32px;
            height: 32px;
            opacity: 0.3;
        }

        .contact.open  > div > div .close:before,
        .contact.open  > div > div .close:after {
            position: absolute;
            left: 15px;
            content: ' ';
            height: 33px;
            width: 2px;
            background-color: #333;
        }

        .contact.open > div > div .close:hover {
            opacity: 1;
            cursor: pointer;
        }

        .contact.open > div > div .close:before {
            transform: rotate(45deg);
        }

        .contact.open > div > div .close:after {
            transform: rotate(-45deg);
        }

        .contact > div > div .label {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #CC6962;
        }
            .contact > div > div .label:hover {
                cursor: pointer;
            }

            .contact > div > div .label:before {
                content: '';
                width: 45%;
                height: 2px;
                display: block;
                background: #CC6962;
                margin-bottom: 8px;
            }
            .contact > div > div .label:after {
                content: '';
                width: 45%;
                height: 2px;
                display: block;
                background: #CC6962;
                margin-top: 8px;
            }
            .contact > div > div .break {
                display: none;
            }
            .contact > div > div a.tel,
            .contact > div > div a.mail {
                color: #ffffff;
                display: inline-block;
                font-size: 1.8em;
                line-height: 1.0;
                margin: 10px 0 0 0;
                text-decoration: none;
            }
            .contact > div > div a.tel:visited,
            .contact > div > div a.mail:visited {
                color: #ffffff;
            }
            .contact > div > div a.tel:hover,
            .contact > div > div a.mail:hover {
                color: #ffffff;
            }
            .contact > div > div a.tel {
            	cursor: auto;
            }
                .contact > div > div a .icon {
                    color: #e0d5bf;
                    margin: 0 5px 0 0;
                    transition: color 0.5s;
                    -webkit-transition: color 0.5s;
                    -moz-transition: color 0.5s;
                    -ms-transition: color 0.5s;
                }
                .contact > div > div a:hover .icon {
                    color: #e80022;
                }
                .contact > div > div a.tel:hover .icon {
                    color: #e0d5bf;
                }
            .contact > div > div .scroll_down {
                color: #e0d5bf;
                cursor: pointer;
                font-size: 25px;
                line-height: 25px;
                margin: 5px 0 0 0;
                transition: color 0.5s;
                -webkit-transition: color 0.5s;
                -moz-transition: color 0.5s;
                -ms-transition: color 0.5s;
            }
            .contact > div > div .scroll_down:hover {
                color: #e80022;
            }

/*
 * Content
 */

.bc {
    color: #999999;
    font-size: 1.4em;
    margin: 0 auto;
    max-width: 1260px;
    text-align: center;
}
    .bc a {
        color: #999999;
        text-decoration: none;
    }
    .bc a:visited {
        color: #999999;
    }
    .bc a:hover {
        color: #e80022;
    }
.content {
    text-align: center;
}
    .content table,
    .content ul,
    .content ol {
        color: #594b3f;
        margin: 0 0 30px 0;
    }
    .content ul,
    .content ol {
        font-size: 1.6em;
        padding: 0;
    }
    	.content ul li,
	    .content ol li {
	        list-style-position: inside;
	    }
        .content table {
            text-align: left;
        }
        	.content table tr {
    			transition: background 0.5s;
                -webkit-transition: background 0.5s;
                -moz-transition: background 0.5s;
                -ms-transition: background 0.5s;
        	}
        	.content table tr:hover {
        		background: #746c6e;
        	}
    	    	.content table tr th,
    	    	.content table tr td {
    	    		padding: 5px 10px 5px 10px;
    	    	}
    	    	.content table tr th {
    	    		background: #7E7B7F;
                    color: #ffffff;
    	    		font-size: 1.6em;
    	    	}
                .content table tr td {
                    border-bottom: 1px solid #E2D5C1;
                    font-size: 1.6em;
                }
                .content table.pricetable tr th,
    	    	.content table.pricetable tr td {
                    text-align: center;
    	    	}
                .content table.pricetable tr th:first-child,
                .content table.pricetable tr td:first-child {
                    text-align: left;
                }
    .content .box:first-child {
        margin-left: 0;
    }

/*
 * Footer
 */

.address {
    font-style: normal;
    text-align: center;
}
    .address .a_top {
        font-size: 2.0em;
    }
        .address .a_top b {
            color: #7E7B7F;
        }
    .address .a_bottom {
        font-size: 1.6em;
        margin: 10px 0 0 0;
    }
    	.address .a_bottom a.tel {
    		color: #594b3f;
    		cursor: auto;
    		text-decoration: none;
    	}
    	.address .a_bottom a.tel:visited {
    		color: #594b3f;
    	}
    	.address .a_bottom a.tel:hover {
    		color: #594b3f;
    	}
        .address .a_bottom .break {
            display: none;
        }
.legal_nav {
    font-size: 1.4em;
    padding: 40px 0 0 0;
    text-align: center;
    text-transform: uppercase;
}
    .legal_nav a {
        margin: 0 0 0 10px;
        text-decoration: none;
    }
    .legal_nav a.act {
    	color: #e80022;
    }
    .legal_nav a:first-child {
        margin: 0;
    }
    .legal_nav a.brandnamic {
        display: block;
        margin: 10px;
    }
.legal_nav a.brandnamic img {
    height: 16px;
    margin: 0 auto;
    transition: 0.2s;
}
.social {
    padding: 20px 0 0 0;
    text-align: center;
}
    .social > a {
        color: #ffffff;
        display: inline-block;
        font-size: 20px;
        height: 85px;
        line-height: 60px;
        text-decoration: none;
        margin: 10px 5px 0 5px;
        position: relative;
        width: 85px;
    }
    .social > a:visited {
        color: #ffffff;
    }
    .social > a:hover {
        color: #ffffff;
    }
        .social > a .icon {
            position: relative;
            z-index: 5;
        }
        .social > a > div {
            background-color: #72512c;
            display: block;
            height: 60px;
            left: 11px;
            position: absolute;
            top: 0;
            width: 60px;
            transition: background-color 0.5s;
            -webkit-transition: background-color 0.5s;
            -moz-transition: background-color 0.5s;
            -ms-transition: background-color 0.5s;
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
        }
        .social > a:hover > div {
            background-color: #7E7B7F!important;
        }
.map {
    /*border-bottom: 1px solid #d0d0d0;*/
    padding: 70px 0 0 0;
    -webkit-box-shadow: 0px 10px 15px -5px #d0d0d0;
    box-shadow: 0px 10px 15px -5px #d0d0d0;
}
    .map .map_trigger {
        background-color: #7E7B7F;
        border: 1px solid #7E7B7F;
        cursor: pointer;
        display: block;
        margin: 0 auto;
        padding: 5px 5px 0 5px;
        text-align: center;
        text-transform: uppercase;
        width: 230px;
        transition: background-color 0.5s;
        -webkit-transition: background-color 0.5s;
        -moz-transition: background-color 0.5s;
        -ms-transition: background-color 0.5s;
    }
    .map .map_trigger:hover {
        background-color: transparent;
        color: #7E7B7F;
    }
        .map .map_trigger > div {
            /*border: 1px dashed #72512c;*/
            border-bottom: 0;
            height: 54px;
            padding: 10px 0 10px 0;
            transition: border-color 0.5s;
            -webkit-transition: border-color 0.5s;
            -moz-transition: border-color 0.5s;
            -ms-transition: border-color 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .map .map_trigger:hover > div {
            border-color: #ffffff;
        }
            .map .map_trigger > div .icon,
            .map .map_trigger > div span {
                transition: color 0.5s;
                -webkit-transition: color 0.5s;
                -moz-transition: color 0.5s;
                -ms-transition: color 0.5s;
            }
            .map .map_trigger > div .icon {
                color: #fff;
                font-size: 25px;
                line-height: 25px;
            }
            .map .map_trigger > div .icon.icon-icon_pfeil2 {
                display: none;
            }
            .map .map_trigger > div span {
                color: #fff;
                display: block;
                font-size: 2.2em;
                font-weight: 700;
            }
            .map .map_trigger:hover > div .icon,
            .map .map_trigger:hover > div span {
                color: #7E7B7F;
            }
            .map .map_trigger.open > div .icon.icon-icon_pfeil2 {
                display: inline-block;
            }
            .map .map_trigger.open > div .icon.icon-icon_pfeil3 {
                display: none;
            }
    .map .map_canvas {
        height: 380px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s;
        -webkit-transition: max-height 0.5s;
        -moz-transition: max-height 0.5s;
        -ms-transition: max-height 0.5s;
    }
    .map .map_canvas.open {
        max-height: 380px;
    }
.quick_request .title {
    color: #ffffff;
    float: left;
    padding: 20px 0 0 0;
    width: 12.7%;
}
    .quick_request .title > div {
        font-size: 2.0em;
        line-height: 25px;
    }
    .quick_request .title .btn {
        display: none;
    }
.quick_request .form {
    float: right;
    padding: 20px 0 0 0;
    width: 84.1%;
}
    .quick_request .form > a.btn {
        display: none;
        float: right;
        font-size: 1.6em;
        min-width: 0;
        padding: 0 10px 0 10px;
    }
    .quick_request .form > a.btn.visible {
        display: inline-block;
    }

/*
 * Mobile Nav
 */

.mobile_nav {
    display: none;
}
.mobile_nav_overlay {
    display: none;
}

/*
 * Changes after Typo3 Installation
 */

/* Magnific Popup */
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer;
}
.mfp-zoom-out-cur .mfp-title {
    font-size: 1.4em;
}
.mfp-bottom-bar {
    display: none !important;
}
/* Simple Weather */
#simple_weather {
	color: #ffffff;
	font-weight: 300;
	line-height: 80px;
	text-shadow: 1px 1px 1px #d0d0d0;
}
	#simple_weather .weather {
		display: inline-block;
	}
		#simple_weather .weather .icon {
			font-size: 6.0em;
			margin: 0 20px 0 0;
		}
		#simple_weather .weather .temp {
			font-size: 8.0em;
		}
.weather_city {
    background: #ffffff;
    border-radius: 5px;
    color: #594b3f;
    display: inline-block;
    font-size: 1.6em;
    line-height: 1.0;
    opacity: 0.9;
    padding: 10px 10px 10px 10px;
}
/* Sitemap */
.sitemap .csc-sitemap ul {
	font-size: 1.0em;
	list-style-type: none;
	margin: 0;
}
	.sitemap .csc-sitemap ul li a {
		text-decoration: none;
	}
		.sitemap .csc-sitemap > ul > li > a {
			font-size: 2.8em;
		}
			.sitemap .csc-sitemap > ul > li > ul > li {
				border-top: 1px dashed #72512c;
				margin: 15px 0 0 0;
				padding: 10px 0 0 0;
			}
				.sitemap .csc-sitemap > ul > li > ul > li > a {
					font-size: 2.4em;
					font-weight: 700;
				}
					.sitemap .csc-sitemap > ul > li > ul > li > ul > li > a {
						font-size: 2.0em;
					}
						.sitemap .csc-sitemap > ul > li > ul > li > ul > li > ul > li > a {
							font-size: 1.6em;
						}
/* Credits */
.credits ul {
	list-style-type: none;
}
	.credits ul li a {
		text-decoration: none;
	}
/* Catalog-Selection */
.catalog_selection {
    display: none;
    margin: 0 auto;
    max-width: 385px;
}
.catalog_selection.visible {
    display: block;
}
    .catalog_selection > div {
        background: #7E7B7F;
        padding: 10px 10px 10px 10px;
        text-align: left;
    }
        .catalog_selection > div ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }
            .catalog_selection > div ul li {
                padding: 3px 0 3px 0;
                color: #fff;
            }
                .catalog_selection > div ul li input {
                    margin: 0 10px 0 0;
                }
/* Webcams */
.webcams .webcam_selection a {
    display: block;
    float: left;
    margin: 0 0 10px 0.8%;
    padding: 0 0 25.4% 0;
    position: relative;
    overflow: hidden;
    width: 49.6%;
}
.webcams .webcam_selection a:first-child {
    margin-left: 0;
}
.webcams .webcam_selection.webcam_selection_1 a {
    max-height: 300px;
    width: 32.8%;
}
.webcams .webcam_selection.webcam_selection_2 a {
    max-height: 450px;
}
    .webcams .webcam_selection a img {
        height: 100%;
        left: 0;
        /* margin: -3.6% 0 0 0; */
        position: absolute;
        top: 0;
        width: auto;
    }
/* Imprint Brandnamic Logo  */
#uid9 .csc-textpic-imagewrap img {
    width: auto !important;
}
/* Weather Detail */
.weather_detail {
    display: block;
    overflow: hidden;
}
    .weather_detail iframe {
        height: 1000px !important;
        width: 495px !important;
    }
/* Viewswitcher */
.viewswitcher {
    display: block;
    font-size: 1.4em;
    font-style: italic;
    padding-top: 40px;
    text-align: right;
    text-transform: uppercase;
}
    .viewswitcher a.trigger {
        color: #594b3f;
        text-decoration: none;
    }
    .viewswitcher a.trigger:visited {
        color: #594b3f;
    }
    .viewswitcher a.trigger:hover {
        color: #e80022;
    }
    .viewswitcher a.trigger_mobile {
        display: block;
    }
    .viewswitcher a.trigger_web {
        display: none;
    }
    .reso_smartphone .viewswitcher a.trigger_mobile {
      display: none;
    }
    .reso_smartphone .viewswitcher a.trigger_web {
      display: block;
    }


/*
 * Changes after GoLive (marked with Date and Name)
 */

/* Webcams - 23.02.2015 | Robin Oberhollenzer */
.webcams .webcam_selection.webcam_selection_2 a {
    max-height: 300px;
    width: 32.8%;
}
/* Top Offer Slider - 20.07.2015 | Robin Oberhollenzer */
.bn_offer_teaser .slider,
.bn_offer_teaser .slider .owl-stage-outer,
.bn_offer_teaser .slider .owl-stage-outer .owl-stage,
.bn_offer_teaser .slider .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}
.bn_offer_teaser .slider {
    position: relative;
}
    .bn_offer_teaser .slider .owl-controls {
        height: 0;
        left: 0;
        margin: -10px 0 0 0;
        position: absolute;
        top: 50%;
        width: 100%;
    }
        .bn_offer_teaser .slider .owl-controls .owl-nav {
            padding: 0 15px 0 15px;
        }
            .bn_offer_teaser .slider .owl-controls .owl-nav .owl-prev,
            .bn_offer_teaser .slider .owl-controls .owl-nav .owl-next {
                color: #ffffff;
                font-size: 20px;
                height: 20px;
                line-height: 20px;
                transition: color 0.5s;
                -webkit-transition: color 0.5s;
                -moz-transition: color 0.5s;
                -ms-transition: color 0.5s;
            }
            .bn_offer_teaser .slider .owl-controls .owl-nav .owl-prev {
                float: left;
            }
            .bn_offer_teaser .slider .owl-controls .owl-nav .owl-next {
                float: right;
            }
            .bn_offer_teaser .slider .owl-controls .owl-nav .owl-prev:hover,
            .bn_offer_teaser .slider .owl-controls .owl-nav .owl-next:hover {
                color: #CA97A5;
            }
/* Header Button - 23.07.2015 | Robin Oberhollenzer */
.h_buttons {
    bottom: 200px;
    height: 0;
    left: 0;
    position: absolute;
    width: 50%;
    z-index: 7;
}
    .h_buttons > .frame {
        height: 0;
        padding: 0 225px 0 0;
    }
        .h_buttons > .frame .item {
            float: right;
        }
            .h_buttons > .frame .item img {
                height: 150px;
                width: auto;
            }
/* Partner - 01.09.2015 | Robin Oberhollenzer */
.partners {
    padding: 15px 0 0 0;
    text-align: center;
}
    .partners .partner {
        display: inline-block;
        padding: 5px 5px 5px 5px;
    }
        .partners .partner img {
            height: 50px;
            width: auto;
        }
/* Bonus - 21.09.2015 | Lukas Astner */
.bonus {
    max-width: 225px;
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 50%;
    z-index: 1;
    padding: 20px 0;
    color: #594b3f;
    display: flex;
    flex-direction: column;
}
.bonus::before {
    content: "";
    width: 150px;
    display: inline-block;
    height: 2px;
    background-color: #594b3f;
    margin: 0 auto;
}

.bonus::after {
    content: "";
    width: 150px;
    display: inline-block;
    height: 2px;
    background-color: #594b3f;
    margin: 0 auto;
}
    .inner_bonus {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .inner_bonus a{
        text-decoration: none;
    }
.inner_bonus a:hover {
    color: #594b3f;
}
        .inner_bonus p:hover{
            color: #C7C7C7!important;
        }
    .inner_bonus p{
        padding: 8px 16px;
        font-size: 1.8em;
        text-align: center;
        line-height: 1.4;
        font-weight: bold;
        color: inherit;
    }
        .bonus_circle {
            width: 55px;
            height: 55px;
            background-color: #e70121;
            border-radius: 50px;
            position: absolute;
            right: -27px;
            top: -27px;
        }
            .bonus_inner_circle{
                text-align: center;
                font-size: 20px;
                line-height: 55px;
            }
/* Header Button 2 - 18.11.2015 | Robin Oberhollenzer */
.h_buttons_2 {
    height: 0;
    left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    z-index: 7;
}
    .h_buttons_2 > .frame {
        height: 0;
        margin: 0 auto;
        max-width: 1260px;
        padding: 0 20px 0 20px;
    }
        .h_buttons_2 > .frame .item {
            height: 0;
            margin: 0 0 0 55px;
        }
            .h_buttons_2 > .frame .item img {
                height: 150px;
                width: auto;
            }
/* Header Button 3 - 21.09.16 | Lukas Astner */
.h_buttons_3 {
    bottom: 250px;
    height: 0;
    right: 0;
    position: absolute;
    width: 50%;
    z-index: 7;
}
    .h_buttons_3 > .frame {
        height: 0;
        padding-left: 220px;
    }
        .h_buttons_3 > .frame .item {
            float: left;
        }
            .h_buttons_3 > .frame .item img {
                height: 200px;
                width: auto;
            }

/*Panorama 3D - 28.04.2016 | Emanuel Gostner*/
.panorama3D{
    width:100%;
    margin:0 auto;
}
/*
 * Browser specific Hacks
 */

/* Chrome - fixes ".sub_nav" Problem after Map was opened once */
.map .map_canvas {
    transform: none !important;
}
/* Chrome - fixes OwlCarousel fade Problems */
.owl-carousel.owl-carousel .owl-item img {
    -webkit-transform-style: flat;
    transform-style: flat;
}
/* lt-ie9 - hide ".bar" */
.lt-ie9 .vista .bar {
    display: none;
}
/* lt-ie10 - ".sub_nav" Fix */
.lt-ie10 .main_nav > ul > li .sub_nav > div {
    height: auto;
    min-height: 370px;
}
/* lt-ie9 - hide ".main_nav" Arrow */
.lt-ie9 .main_nav > ul > li:hover:after {
    display: none;
}
/* lt-ie9 - ".main_logo" Image Fix */
.main_logo a img {
    width: auto;
}
.vista .h_buttons_3{
    display: none!important;
}
.rabatt_button{
    background: #fff;
    position: absolute;
    top: auto !important;
    bottom: 5%;
    width: 230px;
    z-index: 2;
    color: #CC6962;
    padding: 20px 20px 20px;
    text-align: center;
    display: grid;
}

.rabatt_button::before {
    content: "";
    width: 150px;
    display: inline-block;
    height: 2px;
    background-color: #CC6962;
    margin: 0 auto;
}

.rabatt_button::after {
    content: "";
    width: 150px;
    display: inline-block;
    height: 2px;
    background-color: #CC6962;
    margin: 0 auto;
}

.rabatt_button .sconto{
    font-size: 3.5em;
    background: red;
    padding: 10px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    right: -34px;
    top: -32px;
}
.rabatt_button .text, .rabatt_button .text p{
    color: #CC6962;
    margin-bottom: 5px;
}
.rabatt_button .text p{
    padding-bottom: 3px;
}
.rabatt_button .header {
    font-size: 1.7em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 15px;
}

.rabatt_button_link,.rabatt_button_link:visited{
    color: #fff;
    text-decoration: none;
}

/* GEWINNSPIEL FEB 2017 by JW */

main.main .row.dynform .content {
    color: #594b3f;
    font-size: 1.6em;
    padding: 0 0 30px 0;
    line-height: 1.5;

    text-align: left;
}

@media only screen and (max-width: 767px) {
    main.main .row.dynform .content {
        font-size: 1.4em;
    }

    .contact {
        padding: 20px 0;
    }
}

main.main .row.dynform .content fieldset {
    border: none;
    background-image: url(../img/layout/BG-h_top-50x50.png);
    background-color: #dfd3bf;
    background-repeat: repeat;
    color: #72512c;
}

main.main .row.dynform .content fieldset .accept_legal_label  {
    width: calc(100% - 50px);
}

main.main .row.dynform .content fieldset .bn__form-grid__birthdate  {
    padding: 0;
}

main.main .row.dynform .content fieldset .bn__form-grid__comment  {
    min-height: 1em;
}

main.main .row.dynform .content fieldset label {
    text-align: left;
}

main.main .row.dynform .content input,
main.main .row.dynform .content select {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    color: #333;
}

main.main .row.dynform .content .bn__form-grid__button {
    background-color: #fff;
    color: #e80022;
    border: 1px solid #fff;
    border-radius: 0;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

main.main .row.dynform .content .bn__form-grid__button:hover {
    background-color: #ba8f45;
    color: #fff;
    outline: none;
    border-color: #ba8f45;
}

main.main .row.dynform .content .spinner {
    width: 40px;
    height: 40px;
    background-color: #e80022;

    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    } 50% {
          transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
          -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
      } 100% {
            transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
            -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        }
}

/*DSGVO Formulare RS */

/*CUSTOM-COLOR*/
#dsgvo_request .bn__custom-color__background {
    background-color: #CA97A5;; /*color1*/
                      }
#dsgvo_request .bn__custom-color__font {
    color: #CE9C87; /*color1*/
                      }
#dsgvo_request input:focus, #dsgvo_request select:focus {
    border-bottom: 1px solid #CE9C87; /*color1*/
}
#dsgvo_request textarea:focus {
    border: 1px solid #CE9C87; /*color1*/
                      }

#dsgvo_request .bn__form-grid__button {
    background-color: #CA97A5;
    color: #fff;
    border: 1px solid #CA97A5;
    border-radius: 0;
                      }
    #dsgvo_request .bn__form-grid__button:hover {
        background-color: transparent; /*color2*/
        color: #CA97A5;
    }

.address{
    text-align: left;
}

#dsgvo_newsletter{
    position: relative;
    top: -36px;
    text-align: left;
}

.newsletter .frame .table .tbl_row .tbl_cell h3{
    font-size: 21px;
    margin-top: -10px;
}

.newsletter .frame .table .tbl_row .tbl_cell .please_wait{
    margin-top: 100px;
}

/*CUSTOM-COLOR*/
#dsgvo_newsletter .bn__custom-color__background_button {
    background-color: #CA97A5; /*color1*/
    color: #fff;
    border: 1px solid #CA97A5;
    border-radius: 0 !important;
}

    #dsgvo_newsletter .bn__form-grid__button:hover {
        background-color: transparent; /*color2*/
        color: #CA97A5;
    }

#dsgvo_newsletter .bn__form-grid {
    color: #7E7B7F; /*color2*/
                      }
#dsgvo_newsletter input, #dsgvo_newsletter select {
    border-bottom: 1px solid #7E7B7F; /*color2*/
}

#dsgvo_newsletter .bn__custom-color__background {
    background-color: #fff; /*color3*/
}

@media only screen and (max-width: 1300px){
    #dsgvo_newsletter .bn__form-grid{
        font-size: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    #dsgvo_newsletter .bn__form-grid {
        font-size: 14px;
    }
    .header .conversions {
        top: 10px;
    }
    .dynamic_button .item {
        font-size: 18px;
        height: 140px;
        width: 215px;
        top: 0;
        left: 0;
    }

    .contact.open .content {
        text-align: center;
    }
}

@media only screen and (max-width: 800px) {
    #dsgvo_newsletter .bn__form-grid.bn__form-grid--vertical .bn__form-grid__column .bn__form-grid__column__item{
        width: 50%;
    }
}

@media only screen and (max-width: 767px){
    #dsgvo_newsletter .bn__form-grid{
        font-size: 16px;
        top: 42px;
    }

    #dsgvo_newsletter .bn__form-grid.bn__form-grid--vertical .bn__form-grid__column .bn__form-grid__column__item{
        width: 100%;
    }

    .dynamic_button .item {
        display: none;
    }
}
@media only screen and (max-width: 600px){
    .contact.open > div {
        width: auto;
        padding: 50px 20px;
    }

    .contact.open .content {
        font-size: 11px;
    }
}

@media only screen and (max-width: 430px){
    .conversions {
        position: absolute;
        top: 9px;
        right: 95px;
    }
    .conversions .tel {
        margin-right: 8px;
    }
}

@media only screen and (max-width: 380px){
    .conversions {
        display: none;
    }
}
/*CUSTOM-COLOR*/
#dsgvo_quickrequest .bn__custom-color__background {
    background-color: #7e7b7f; /*color1*/
}

body #dsgvo_quickrequest .bn__custom-color__background_button {
    background-color: #CA97A5 !important; /*color2*/
    color: #fff !important;
    border-radius: 0 !important;
    }

    #dsgvo_quickrequest .bn__custom-color__background_button:hover {
        background-color: #fff !important; /*color2*/
        color: #CA97A5 !important;
    }

#dsgvo_quickrequest  .bn__form-grid {
    color: #fff; /*color3*/
                      }
#dsgvo_quickrequest input, #dsgvo_quickrequest select {
    border-bottom: 1px solid #fff; /*color3*/
}

.quick_request .form{
    padding: 0;
}

.quick_request .form .please_wait{
    margin-top: 20px;
}


/*CUSTOM-COLOR*/
#dsgvo_contact .bn_qr_dynform{
    color: black;
    width: 36%;
}
#dsgvo_contact .bn__form-grid.bn__form-grid--horizontal .bn__form-grid__column .bn__form-grid__column__item{
    border-color: black;
    text-align: left;
}

#dsgvo_contact .bn_qr_dynform.bn__form-grid.bn__form-grid--horizontal .bn__form-grid__column__item.bn__form-grid__button{
    text-align: center;
    background-color: #CA97A5;
    color: white;
    border-radius: 0;
    border: 1px solid #CA97A5;
}

    #dsgvo_contact .bn_qr_dynform.bn__form-grid.bn__form-grid--horizontal .bn__form-grid__column__item.bn__form-grid__button:hover{
        background-color: transparent;
        color: #CA97A5;
        border: 1px solid #CA97A5;
    }

#dsgvo_contact .bn__custom-color__background{
    background-color: white;
}

#dsgvo_contact .bn__form-grid .bn__form-grid__column--sm-6{
    widtH: 100%;
}

#dsgvo_contact .consent_wrapper .consent_text{
    border: 1px solid black;
    border-radius: 10px;
}

#dsgvo_catalogue_request_comment{
    display: none;
}

/*CUSTOM-COLOR*/
#dsgvo_catalogue_request .bn_qr_dynform{
    color: black;
    width: 36%;
}
#dsgvo_catalogue_request .bn__form-grid.bn__form-grid--horizontal .bn__form-grid__column .bn__form-grid__column__item{
    border-color: black;
    text-align: left;
}

#dsgvo_catalogue_request .bn_qr_dynform.bn__form-grid.bn__form-grid--horizontal .bn__form-grid__column__item.bn__form-grid__button{
    text-align: center;
    background-color: #CA97A5;
    color: white;
    border-radius: 0;
    border: 1px solid #CA97A5;
}

#dsgvo_catalogue_request .bn_qr_dynform.bn__form-grid.bn__form-grid--horizontal .bn__form-grid__column__item.bn__form-grid__button:hover{
    background-color: transparent;
    color: #CA97A5;
    border: 1px solid #CA97A5;
}

#dsgvo_catalogue_request .bn__custom-color__background{
    background-color: white;
}

#dsgvo_catalogue_request .bn__form-grid .bn__form-grid__column--sm-6{
    widtH: 100%;
}

#dsgvo_catalogue_request .consent_wrapper .consent_text{
    border: 1px solid black;
    border-radius: 10px;
}
#cookiebanner {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}