﻿

:root {
    --inner-width:                      1228px;
    --inner-margin:                     2rem;
    --linne-color:                      #D08A00;
    --divider-color:                    #E5E5E5;

    --header-background-color:          white;
    --header-color:                     black;
    --header-default-height:            180px;
    --header-mobile-height:             50px;
    --header-menu-font-size:            18px;
    --header-toprow-font-size:          18px;
    --header-search-icon-height:        42px;

    --distance-between-content-header:  2rem;
    --content-background-color:         white;
    --content-color:                    black;
    --content-text-font-size:           14px;

    --footer-background-color:          #99A9A6;
    --footer-color:                     white;
    --footer-color-HEX:                 255, 255, 255; /* Should be the same as --footer-color */
    --footer-text-font-size:            16px;
    --footer-heading-font-size:         20px;
    --footer-default-height:            200px;
    --footer-offset:                    100px; /* Only use footer-default-height */



    --newscard-height:                  393px;
    --newscard-image-height:            276px;
    --newscard-width:                   396px;
    --newscard-space-between:           10px; /* The result is this value times 2 */
    --newscard-title-size:              18px;
    --newscard-text-size:               16px;
    --newscard-border-color:            #E5E5E5;
    --newscard-textarea-height:         117px;
    --newscard-text-x-margin:           10px;
    --break-point-1:                    1024px;
    --break-point-2:                    860px;
    --break-point-3:                    600px;
    --break-point-4:                    480px;
    
    
    
}

/***** FONTS *********************************************************************************************************************************************************************************************************/

.regular-font {
    font-family: Arial;
    font-weight: 400;
}

.bold-font {
    font-family: Arial;
    font-weight: bold;
}


/***** GENERAL ********************************************************************************************************************************************************************************************************/

.inner {
    /*width: var(--inner-width);*/
    max-width: var(--inner-width);
    margin-left: auto;
    margin-right: auto;
    /*padding: 0 var(--inner-margin);*/
    height: 100%;
    width:100%;
    min-width: unset;
}

#wrapper {
    background-color: var(--content-background-color);
}

.on {
    color: var(--linne-color);
}

.display-none, .mm-listview > li > a.display-none {
    display: none;
}



/***** TOoLTiP *******************************************************************************************************************************************************************************************************/

.uses-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .uses-tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        pointer-events: none;
        top: 55px;
        right: 0px;
        font-size:12px;
    }

    .uses-tooltip:hover .tooltiptext {
        visibility: visible;
    }



/***** LANGUAGE *******************************************************************************************************************************************************************************************************/
.languageFlagContainer {
    margin-left: 0px;
}

.currentLanguageFlag {
    position: relative;
    top: 2px;
    right: 10px;
    transform: scale(1.5);
    margin-left: 12px;
}

#selectLanguageForm {
    display: flex;
    flex-direction: column;
    height: max-content;
}


#selectLanguageForm .language-heading {
    font-family:Arial, Verdana, Sans-Serif; 
    text-align:center; 
    padding:30px 0 10px 0;
    font-size: 20px;
}


#selectLanguageForm .languageList {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
}


#selectLanguageForm .languageList a {
    text-align:center;
    margin: 10px;
}

.pp_description {
    visibility:hidden;
}

#selectLanguageForm img {
    width: 28px;
    height: 24px;
    display: block;
    margin:auto;
}

#selectLanguageForm div:last-child {
 
    flex-grow: 0;
}


#languageChoice {
    /*display: none;*/
    position: absolute;
    top: calc(50vh - 150px);
    left: calc(50% - 200px);
    border-radius: 15px;
    width: 400px;
    height: 300px;
    background-color: var(--content-background-color);
    color: var(--content-color);
    z-index: 2;
}



/***** MENUS *********************************************************************************************************************************************************************************************************/

.logo-in-menu {
    visibility:hidden;
}

.pre-menu-item {
}

.closed-submenu {
    background-image: url('/gfx/Group 2891.png');
    background-repeat: no-repeat;
    background-position: top 11px left;
    /*background-size: contain;*/
}

.open-submenu {
    background-image: url('/gfx/Subgroup  2891.png');
    background-repeat: no-repeat;
    background-position: top 11px left;
    /*background-size: contain;*/
}

.no-submenu {
    /*background: yellow;*/
}


.leftmenu ul li {
    
    border-bottom: 1px solid var(--divider-color);
    /*display: inline;*/
    padding-left: 30px;
    /*  background-image: url('/gfx/Group 2891.png');
    background-repeat: no-repeat;
    background-size: contain;*/
}

.leftmenu ul li a {    
    width: auto;
}





#my-menu {
    border-right: 1px solid var(--linne-color);
}

#my-menu > div > ul li:last-child {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mm-menu .mm-listview > li .mm-next:after, .mm-menu .mm-listview > li .mm-arrow:after {
    border-color: rgba(0, 0, 0, 1);
}

.mm-prev:before, .mm-next:after, .mm-arrow:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mm-vertical .mm-listview > li.mm-opened > .mm-next:after, .mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

.mm-listview .mm-next:before {
    display:none;
}

.mm-menu-header {
    border: 1px solid var(--divider-color);
}


a.wide-menu-button, a.narrow-menu-button {
    border: 1px solid var(--divider-color);
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    line-height: 34px;
    font-size: 13px;
    height: 32px;
    width: 45%;
    text-align: center;
    cursor: pointer;
    overflow: clip;
}

a.narrow-menu-button {
    width: 32px;
    box-sizing: border-box;
    position: absolute;
    top: 10px;    
    font-size: 28px;
    line-height: 30px;
    font-weight: 100;
    
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-top: 1px;
    border: none;
    
    top: 50%;
    margin-top: -15px;
}

    a.wide-menu-button:hover, a.narrow-menu-button:hover {
        text-align: center;
    }

    a .narrow-menu-button img {
        margin: 3px 4px 4px 0;
        height: 22px;
        width: 22px;
    }

.right-1 {
    right: 17px;
}

.right-2 {
    right: 52px;
}

.mm-menu-header > img {
    width: clamp(150px,100px + 35vw,250px);
    width: 60%;
}

/*.mm-listview > li:not(.mm-divider):after {
    right: 20px;
}
*/
#my-menu .mm-listview > li:not(.mm-divider):first-child:after {
    right: 0px;
    left: 0;
}

#my-menu2 .mm-next:after, #my-menu2 .mm-arrow:after {
    /*right: 2px;*/
}


.extend-menu {
    
    height: auto;
    width: 100%;
    background: lightblue;
}

/***** HEADER *********************************************************************************************************************************************************************************************************/
.header-shadow {
    /*box-shadow: rgba(0, 0,0,0.04) 0px 10px 17px;*/
    border-bottom: 2px solid var(--divider-color);
}

.header-stripe {
    border-bottom: 2px solid var(--divider-color);
}

.header {
    overflow: visible;
    background-color: var(--header-background-color, white);
    
}

    .header .inner {
        display: flex;
        flex-direction:column;
        justify-content: end;
        align-items: center;
        /*min-width: var(--inner-width);*/
        
/*        min-height: var(--header-default-height, 100px);*/
        height: var(--header-default-height, 100px);
    }

    

    .header .topRow {
        
        width:100%;
        flex-grow:1;
        display: flex;
        /*justify-content:center;*/
        align-items: center;
        font-size: var(--header-toprow-font-size);
    }
        .header .header-collection {
            /*border: 2px solid lightblue;*/
            margin-left: auto;
            display: inline-flex;
            align-items: center;
        }

            .header .header-collection a {
                display: inline-block;
                text-decoration: none;
            }

            .header .header-collection li a::after {
                display: inline-block;
                color: var(--divider-color);
                content: "|";
                margin: 0 0.5rem;
                
            }

            .header .header-collection li.last a::after {
                content: "";
            }
            
                        
            .header ul#quick-nav {
                display:inline-block;
                list-style-type: none;
                padding:0;
            }
            
            .header #quick-nav li {
                display:inline-block;
            }
            
            .header #quick-nav li.last {
                padding-left: 5px;
            }
                
            .header #quick-nav li.mobileLanguageChoise {
                display:none;
            }

    .header #logo {
        left: unset;
        top: unset;
        height: unset;
    }
    .header #logo img {
        height: unset;
    }

    .header .header-text {
        font-size: 23px;
        margin-right: 136px;
        display: inline-block;
        /*font-weight: 700;*/
    }

    .header #responsive-menu-btn {
        /*background-color: var(--footer-bg-color, #FDD523);*/
        color: var(--header-color, black);
        text-transform: unset;
        /*position: absolute;
        right: 28px;*/
     /*   top: calc(50% - calc(--default-menu-btn-height / 2));
        
       width: var(--default-menu-btn-width, 72px);
        height: var(--default-menu-btn-height, 52px);
        padding: 0 12px 0 12px;
     */   
        text-decoration: none;
        cursor: pointer;
        box-sizing: border-box;
        margin: 0;
        display: none; /*flex;*/
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        font-weight:100;
        margin-left:16px;
    }

    .header #responsive-menu-btn span {

        display: block;
        width: 25px;
        height: 2px;
        margin-bottom: 4px;
        margin-top: 3px;
        background: black;
        border-radius: 1px;
    }

    .header #responsive-menu-btn::after {
        content: none;
    }

    #ctl00_ShoppingCart1_upCart {
        display: flex;
        align-items: center;        
        box-sizing: border-box;
    }

    .header .topmenu {
        flex-grow: 0;
        justify-self: start;
        align-self: start;
    }

    .header .topmenu ul li {
        border-left: 2px solid var(--divider-color);
    }

    .header .topmenu ul li:last-child {
        border-right:  2px solid var(--divider-color);
    }

    .header .topmenu ul li a {
        color: var(--header-color);
        font-size: var(--header-menu-font-size);
    }
/*
.searchIcon {
    display: inline-flex;
    justify-content:center;
    align-items:center;
    
    background-color: var(--linne-color);
    color: var(--header-background-color);
    line-height: 40px;
    height: 42px;
    width: 42px;
   cursor: pointer;
}

    .searchIcon img {
        transform: scale(1.4) translate(1px, 1px);
    }
*/
#overlay-search {
    display: none;
}

#ctl00_tbxtopsearch {
    border: 1px solid #cccbcb;
    height: calc(var( --header-search-icon-height ) - 2px);
    margin: 0;
    font-size: var(--header-toprow-font-size);
    padding: 0 7px 0 7px;
}

.searchIcon {
    border:     none;
    height:     var( --header-search-icon-height );
    width:      var( --header-search-icon-height );
    margin:     0;
    padding:    0;

    cursor: pointer;
    background-image:       url("../gfx/SearchIcon.png");
    background-repeat:      no-repeat;
    background-position:    center;
    background-size:        47%; /*calc(var( --header-search-icon-height ) / 2);*/
    background-color:       var(--linne-color);
    flex: 0 0 var( --header-search-icon-height );
}

input,
textarea,
[contenteditable] {
    caret-color: red;
}

#shoppingcart {
    margin-left: 1rem;
    border: 1px solid #cccbcb;
    cursor: pointer;
    box-sizing: border-box;
    /*position: relative;*/
}
    #shoppingcart a {
        box-sizing: border-box;
        
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        text-decoration: none;
    }

.amount-background {
    background-color: var(--linne-color);
    display: block;
    text-align: center;
    position: relative;
    top: -4px;
    left: 27px;
    color: #fff;
    pointer-events: none;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    /*padding: 10px;*/
    text-align: center;
}

.basket-amount {
    height: 14px;
    width: 14px;
    display: block;
    text-align: center;
    position: absolute;
    top: -10px;
    right: -9px;
    pointer-events: none;
    width: 15px;
    height: 15px;
    padding: 10px;
    font-size: 12px;
    
}

/***** FOOTER *********************************************************************************************************************************************************************************************************/
#footer {
    position: sticky;
    top: 100vh;
    background: var(--footer-background-color);
    color: var(--footer-color, white);
    min-height: var(--footer-default-height, 258px);
    /*max-height: var(--default-footer-height, 258px);*/
    margin: 0;
    margin-top: 1rem;
    padding: 0;
    line-height: 1.5rem;
}

    #footerMenu {
        position: relative;
        width: auto;
        min-height: 244px;
        height: auto;
        /*overflow: hidden;*/
    }

                
        #my-menu2.mm-menu {
            background-color: transparent;
            overflow: hidden;
            width: auto;
        }

        #my-menu2.mm-menu, #my-menu2.mm-menu > .mm-panel {
            overflow: hidden;
        }

        #my-menu2 .mm-listview .mm-next:before {
            border-left: none;
        }

        .mm-menu .mm-listview > li .mm-next:after, 
        .mm-menu .mm-listview > li .mm-arrow:after {
            /*border-color: rgba(255, 255, 255, 0.8);*/
        }

        #my-menu2.mm-menu .mm-listview > li .mm-next:after,
        #my-menu2.mm-menu .mm-listview > li .mm-arrow:after {
            border-color: rgba(255, 255, 255, 0.8);
        }

        #my-menu2 .mm-prev:before, #my-menu2 .mm-next:after, .mm-arrow:after {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        #my-menu2 .mm-vertical .mm-listview > li.mm-opened > .mm-next:after, #my-menu2 .mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
            -webkit-transform: rotate(225deg);
            -moz-transform: rotate(225deg);
            -ms-transform: rotate(225deg);
            -o-transform: rotate(225deg);
            transform: rotate(225deg);
        }

        #my-menu2 .mm-vertical .mm-listview > li > .mm-next, #my-menu2 .mm-listview > li.mm-vertical > .mm-next {
            height: 20px; 
            
            bottom: auto;
        }

        #my-menu2 > div > ul > li {
            border-color: transparent;
        }

        #my-menu2 > div > ul > li > a.mm-next {
            display: none;
        }

        #my-menu2 .mm-listview > li > a, #my-menu2 .mm-listview > li > span {
            /*padding-top: 0px;
            padding-bottom: 0.4rem;
            */padding: 0 0 0.4rem 0;
        }

        #my-menu2 li.mm-vertical.mm-selected a {
            background-color: transparent;
        }
        

    #footer .footer-item .last {
        font-family: 'Helvetica Neue LT Pro 45 Light';
        font-size: 14px;
    }

    #footer .inner {
        /*box-sizing: border-box;*/
        min-height: var(--footer-default-height, 258px);
        padding: 32px 0 0 0;
        /*margin-bottom: 3rem;*/
        display: flex;
        flex-wrap: wrap;
        /*max-width: unset;*/
    }

        #footer .inner > div { /* One level deep */
            flex: 0 0 300px;
            min-width: 240px;
            flex-basis: 300px;
            /*margin-bottom: 2rem;*/
            /*max-width: 240px;*/
            /*max-width: 386px;*/
            /*flex-basis: calc(50vw / 3);*/
            /*border: 1px solid gray;*/
        }

        #footer .inner > div:last-child { /*One leve deep*/
            /*justify-self: end;*/
            /*align-self:end;*/ /* Put children at the bottom of the cell */
            margin-left: auto; /* Move me to the right */
            flex-basis: content; /* Wide enough for its content */
            /*display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: end; */
            min-width: unset;
            align-self: start;
            flex: 0 1 content;
            text-align: center;
        }

        #footer .inner div:last-child p:not(:first-child) {
            display: inline-block;
        }

        #footer .inner p {
            font-size: var(--footer-text-font-size);
        }

        #footer .inner p, #footer .inner .topmenu li {
            margin: 0;
            padding: 0;
            margin-bottom: 0.4rem;
            display: block;
        }

        #footer .topmenu ul li a {
            margin: 0;
            padding: 0;
        }

        #footer .inner p:first-child {
            font-size: var(--footer-heading-font-size);
            margin-bottom: 1.3rem;
        }

        #footer .inner a {
            color: var( --footer-color, black );
            /*display: flex;*/
            /*flex-wrap: wrap;*/
        }

        .mobile-adjust-invert {
            display: none;
        }


/***** Page layout - Content *****************************************************************************************************************************************************************************************************/

#wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.header { flex: 0 0; }
#ctl00_content { flex: 1 1 auto; display: flex; justify-content: stretch; }
#ctl00_divContentInner { display: flex; height: auto; }
.content .inner { height: 100%; min-height: unset; }
.breadcrumbs { margin-bottom: 2rem; }
.inner .contentLeft { flex: 0 0 25%; box-shadow: inset -45px 0em 40px -40px rgb(0 0 0 / 4%); }
.inner .contentright { flex: 1 1 75%; }
#footer { flex: 0 0 100%; top: unset; position: unset; margin-top: auto; }
#ctl00_divContentRight {
    flex: 1 1 75%;
}


#weather2 {
    text-align: center;
    margin-bottom: 1rem;
}

    #weather2 .widget {
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 5px;
        text-align: center;
        display: flex;
        border: 1px solid var(--divider-color);
        /*border-radius: 15px;*/
    }

#c_457e67ffdafe46ce2ca02db78f1ef8e0 {
    
    flex: 0 0 200px;    
}

    #c_457e67ffdafe46ce2ca02db78f1ef8e0 iframe {
        
    }

#weather2 .widget .text h4 { margin: 1.0rem 0 0.5rem 0; }
#weather2 .widget .text p {
    text-align: left;
    margin-left: 2rem;
}

/***** ContentLeft *********************************************************************************************************************************************************************************************************************/
#weather {
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 3rem;
}

    #weather div.widget {
        width: 168px;
        margin: 15px 0 0 0;
        padding: 12px 13px 15px 13px;
        border: 1px solid #99a9a6;
        margin-left: auto;
        margin-right: auto;
        background-color: white;
    }

        #weather div.widget p {
            font-size: 10px;
        }

    



/***** INJECT *********************************************************************************************************************************************************************************************************************/
.facebook i {
    font-size: 18px;
}


.facebook-circle, .instagram-circle {
    height: 45px;
    width: 45px;
    background-color: rgba(var(--footer-color-HEX), 0.2);
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--footer-color);
    font-size: 20px;
}

.facebook-circle:hover, .instagram-circle:hover {
    background-color: rgba(var(--footer-color-HEX), 0.3);
}


    .facebook-circle i {
        position: relative;
        top: calc(50% - 10px);
        left: calc(50% - 23px);
        text-decoration: none;
    }

    .instagram-circle i {
        position: relative;
        top: calc(50% - 10px);
        left: calc(50% - 22px);
        font-size: 24px;
        line-height: 18px;
        text-decoration: none;
    }

    #footer a.facebook-circle, #footer a.instagram-circle  {
        text-decoration: none;
    }

    #footer a.instagram-circle { margin-left:1rem; }


.inject-logo-normal, .inject-logo-gfx {
    display: block;
    margin: 2rem auto 1rem auto;
    width: clamp( 200px, 100px + 35vw, 242px);
    /*filter: brightness(0) invert(1);*/
}

#footer p.production {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

    #footer p.production a {
        font-size: 12px;
        color: rgba(255,255,255,0.6);
    }


/***** Start-page ***************************************************************************************************************************************************************************************************************/
#start-content {
    margin-top: var(--distance-between-content-header);
}    


.content {
    max-width: var(--inner-width);
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: auto;
    width: 100%;
}


#start-puffs {
    display: flex;
    /*flex-wrap: wrap;*/
    /*padding: 0 var(--newscard-space-between);*/
    margin: 0 0 0 -10px;
    width: auto;
    /*justify-content: space-between;*/
    overflow:visible;
}



    #start-puffs .puffitem {
        height: 351px; /*var(--newscard-height);*/
        flex: 1 1 auto;
        max-width: var(--newscard-width );
        margin: 0 var(--newscard-space-between);
        margin-bottom: 15px;
        -webkit-box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.15);
        -moz-box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.15);
        box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.15);
        clip-path: inset(0px -15px -22px -15px);
    }

        #start-puffs .puffitem .image, #start-puffs .puffitem a .image {
            height: var(--newscard-image-height);
            display: block;
            margin: 0; 
        }

            #start-puffs .puffitem .image img, 
            #start-puffs .puffitem a .image img {
                transition-duration: 0.2s;
                -webkit-transition-duration: 0.2s;
                width: 100%;
                height: 100%;
                display: block;
                opacity: 1.0;
                object-fit: cover;
                margin-left: auto;
                margin-right: auto;
                /*filter: alpha(opacity=100);*/
            }

            #start-puffs .puffitem .rub, #start-puffs .puffitem a .rub {
                font-size: 18px;
            }

            .puffitem .puffContent {
                display: flex;
                height: 75px;/*var(--newscard-textarea-height);*/
                margin: 0 var(--newscard-text-x-margin);
                justify-content: space-between;
                align-items: center;
                
                
            }

                .puffitem .puffContent h2 {
                    font-size: 20px;
                    display: inline-block;
                }

                .puffitem .puffContent .puffContentIcon {
                    background-image: url('../gfx/arrow-right.png');
                    width: 34px;
                    height: 34px;
                    background-repeat: no-repeat;
                    display: inline-block;
                    flex: 0 0 auto;
                }






#start-content .newsList {
    display: flex;
    /*flex-wrap: wrap;*/
    /*padding: 0 var(--newscard-space-between);*/
    margin: 0 -10px 0 0;
    width: auto;
    /*justify-content: space-between;*/
    margin-top: 2rem;
    flex-wrap: wrap;
    margin-bottom:2rem;
}


.newsCard-heading {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--newscard-text-x-margin) 0 0;
}

.newsCard-heading-left {
    font-size: 24px;
}

.newsCard-heading-right {
    text-align: right;
}

.newsCard-heading-right a {
    text-decoration: none;
    font-size: 17px;
    color: var(--linne-color);
    cursor: pointer;
}


.newsCard-content {
    display: flex;
    justify-content: space-between;
    /*flex-wrap: wrap;*/
    width: auto;
    margin-bottom: 3rem;
    margin: 0 0 0 -10px; /*var(--newscard-space-between);*/
    overflow: visible;
    flex:1;
}


.newsList .newsCard {
    padding: 0;
    float: left;
    text-align: left;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--divider-color);
    height: var(--newscard-height);
    flex: 1 1 auto;
    max-width: var(--newscard-width );
    margin: 0 var(--newscard-space-between);
    margin-bottom: 15px;
    flex-basis: 0;
    
    -webkit-box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.15);
    box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.15);
    clip-path: inset(0px -15px -22px -15px);
}


.newsCard a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}



.newsCard img {
    height: var(--newscard-image-height);
    object-fit: cover;
    /*max-width: 396px;
    height: var(--newscard-image-height);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin: auto;
*/
    width: 100%;
    
    display: block;
    opacity: 1.0;
    margin-left: auto;
    margin-right: auto;
}

.newsCard .textArea {
    padding: 0.5rem var(--newscard-text-x-margin);
    border-top: 1px solid var(--newscard-border-color);
    height: var(--newscard-textarea-height);
    margin: 0;
    
}

.newsCard .textArea .title {
    display: block;
    font-size: var(--newscard-title-size);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.newsCard .textArea .text {
    display: block;
    font-size: var(--newscard-text-size);   
}

/***** ImageRight-sidan ***************************************************************************************************************************************************************************************************************/

#image-right, #content-right-side {
    margin-top: var(--distance-between-content-header);
    margin-left: var(--distance-between-content-header);
    margin-bottom: 2rem;
}

    #image-right p, #content-right-side p {
        font-size: var(--content-text-font-size);
    }

    #image-right p, #content-right-side p {
        font-size: var(--content-text-font-size);
    }

    #image-right-left-column img {
        margin-left: 0;
        margin-right: auto;
        display: block;
    }
    
    #image-right-left-column {
        box-sizing:border-box;
        padding-right: 1rem;
    }

    #image-right-right-column img {
        width: 100%;
    }


/***** MapAll-page ***************************************************************************************************************************************************************************************************************/


#mapAll {
    display: flex;
}

#mapAll .fargtabell {
    flex: 1 1 40%;
}

#mapAll #google-map {
    /*float: right;
    width: 200px;*/
    flex: 1 1 60%;
    height: auto;
    border: none;
    padding-right: 0;
}

#mapAll tbody a {
    font-size: 14px;
}

#mapAll tbody tr {
    height: 25px;
}

/***** MapSingle-page ***************************************************************************************************************************************************************************************************************/

#mapSingle #googleMapCanvas {
    height: 50vh;
}
#mapSingel .mapBorder {
    
}

#mapSingle h1 {
    font-size: 1.7rem;
}

#mapSingle .previous, 
#mapSingle .next {
    font-size: 1rem;
    color: darkgrey;
}
#mapSingle .previous {
    float: left;
}

#mapSingle .next {
    float: right;
}

#topinnernav {
    margin-bottom: 1rem;
    padding:0 0 2rem 0;
}

@media screen and (max-width: 400px) {
    #mapSingle h1 { font-size: 1.4rem; }

    #mapSingle .previous,
    #mapSingle .next {
        font-size: 0.8rem;
    }   
}

/***** ContactFormAdvanced-page **************************************************************************************************************************************************************************************************/

.contact-form {

}

#content-right-side .contact-form p {
    /*display: inline-block;*/
    margin: 1rem 0 0 0;
    padding: 0;

}


/***** Editor-page ***************************************************************************************************************************************************************************************************************/


/***** BookRoom-page ***************************************************************************************************************************************************************************************************************/
.bookOnline {
    border: 1px solid var(--divider-color);
    min-height: 640px;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    overflow: auto;
}

/***** Contact-page ***************************************************************************************************************************************************************************************************************/
.contact-container {
    height: 100%;
}


    .content .inner {
        /*max-width: unset;*/        
        /*min-height: 400px;
        height: calc( 100vh - var(--footer-offset, 267px) );*/
        /*height: 60vh;
        height: calc( 100vh - var(--header-default-height) - var(--footer-default-height) );
        height: auto;
        min-height: 61vh;
        */padding: 0;

    }

    .content iframe {
        width: 100%;
        height: 100%;
    }

    .content .contact-container {
        display: flex;
        flex-wrap: wrap-reverse;
        float: unset;
    }

    .content .contentright .left-pane {
        flex: 1 1 50%;
    }

    .content .contentright .right-pane {
        background: lightblue;
        height: 100%;
        flex: 1 1 50%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
    }

    .content .contentright h1 {
        margin-bottom: 30px;
    }

    .content .contentright p {
        margin-bottom: 40px;
    }

    div#contacts {
        display: block;
        flex: 0 1 auto;
        text-align: center;
        padding: 0 1rem;
    }

    div#contacts .contact, div#contacts .contact.alt {
        float: unset;
        clear: unset;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0.5rem;
        border: var(--contact-border-widht,2px) var(--contact-border-style, dashed) var(--contact-border-color);
        border-radius: var(--contact-border-radius);
        display: flex;
        flex-wrap: wrap;
        /*justify-content:end;*/ /* Horizontal */
        align-items: center;
        margin-bottom: var( --contact-bottom-margin, 20px);
        /*width: var(--contact-max-width);*/
        max-width: var(--contact-max-width);
    }

        div#contacts .contact .contact-image {
        }

            div#contacts .contact .contact-image img {
                /*max-width: 130px;*/
                height: 190px;
                display: block;
            }

        div#contacts .contact .contact-info {
            margin-left: 1.5rem;
        }

            div#contacts .contact .contact-info h3 {
                margin: 0;
            }

            div#contacts .contact .contact-info p {
                margin: 0;
            }



/***** MEDIA ********************************************************************************************************************************************************************************************************/


@media screen and (max-width: 1310px) { /* max-width Should be the same as --inner-width */

    .header .inner, #ctl00_content.content, #footer .inner {
        /*padding: 0 var(--inner-margin);*/
        /*height: 100%;*/
        width: auto;
        min-width: 93%;
        padding-left: 2rem;
        padding-right: 2rem;
        justify-content: space-around;
        
        box-sizing:border-box;
        min-width:100%;
        width:100%;
    }

    #start-puffs .puffitem {
        /*width: 3vw;*/        
        flex-basis: 25%;
    }
    #start-puffs {
        width: auto;
    }

    #start-puffs .puffitem .image, #start-puffs .puffitem a .image,
    #start-puffs .puffitem .rub, #start-puffs .puffitem a .rub ,
    .puffitem .puffContent,
    .puffitem .puffContent h2 {
            width: auto;
            min-width:0;
    }

        /*.puffitem .puffContent .puffContentIcon {
            width: auto;
        }*/

    #footer .inner > div:last-child {
        min-width: unset;
        /*width: unset;
        max-width: unset;*/
        flex-shrink: 2;
    }
}


@media screen and (max-width: 1150px) {

    .header .topmenu ul li a {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    

    .header #quick-nav li.mobileLanguageChoise {
        /*display: inline-block;*/
    }

}


@media screen and (max-width: 1024px) {

    
    .header #quick-nav {
        font-size: 16px;
    }

    .header #responsive-menu-btn {
        /*height: var(--default-menu-btn-height, 72px);*/
        display: flex;
        /*    font-size: 40px;
        line-height: 40px;*/
    }

    .header #logo img {
        width: 180px;
    }

    #start-puffs, .newsList .newsCard-content {
        flex-wrap: wrap;
    }

        #start-puffs .puffitem, .newsList .newsCard-content .newsCard {
            max-width: unset;
            flex: 1 1 46%; /* Just something near 50% */
        }

            #start-puffs .puffitem:nth-child(2) {
                margin-right: 0px;
            }

    .contentLeft {
        display: none;
    }

    #weather2.mobile-adjust-invert {
        display: block;
    }
}

@media screen and (max-width: 865px) {


    #image-right, #content-right-side {
        margin-left: 0;
    }

    .currentLanguageFlag {
        top: 4px;
    }

    .header #quick-nav {
        width: auto;
    }

    .header #quick-nav li {
        display: none;
    }

/*    .header #quick-nav li:last-child {
        display: inline-block;
        width: auto;
        height: auto;
    }
*/
        .header {
            height: 100px;
        }

        .header .inner {
            height: 100%;
        }

        

    

    #start-puffs .puffitem {
        flex: 1 1 100%;
        /*margin-left: 0;*/
        margin-right: 0;
        border: 1px solid var(--divider-color);
        height: unset;
    }

    #start-puffs .puffitem .image, 
    #start-puffs .puffitem a .image, 
    .newsCard img {
        height: auto;
    }

    #start-puffs .puffitem .puffContent {
        border-top: 1px solid var(--divider-color);
        /*height: 60px;*/
    }

    .newsList .newsCard-content .newsCard {
        flex: 1 1 100%;
        height: auto;
    }
    
    .newsCard-heading-left {
        font-size: 20px;
    }
    
    #my-menu2 .mm-listview > li:not(.mm-divider):after {
        left: 0;
    }

    #my-menu2 > div > ul > li > a.mm-next {
        display: block;
    }

    #my-menu2 > div > ul > li {
        border-color: rgba(255,255,255, 0.3);
        
    }
    .newsCard .textArea {
        height: auto;
    }


    

    #footer .inner > div { /* One level deep */
        min-width: 225px;
        flex-basis: 225px;
        margin-right: 0.5rem;
        margin-bottom: 1rem;
    }

    #footerMenu .mm-listview > li > a, .mm-listview > li > span {
        padding-top: 10px;
        padding-bottom: 10px;
    }
        
    #footer .inner .footer-item,
    #footer .inner .footer-item.last {
        min-width: unset;
        width: unset;
        max-width: unset;
        flex: 1 1 49%;
    }

    

    #logo {
        left: 40px;
        top: 10px;
    }

        #logo img {
            height: unset;
            max-height: unset;
        }

    #footer .inner {
        padding-top: 1.5rem;
    }

    #footerMenu {
        top: -11px;
    }

    .more-news {
        
        box-sizing: border-box;
        color: black;
        width: auto;
        flex: 0 0 100%;        
        margin: 2.0rem 0;
    }

        .more-news a {
            border: 1px solid var(--linne-color);
            font-size: 18px;
            /*text-align: center;*/
            text-decoration: none;
            width: auto;
            height: 100%;
            display: inline-block;
            margin-right:10px;
            margin-top: 10px;
            margin-bottom: 10px;
            position: relative;
            top: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            /*padding-top: 1rem;
            padding-bottom: 1rem;*/
        }
    
    #content-right-side img {
        margin-left: auto;
        margin-right: auto;
        height: auto;
        width: 100%;
    }


    .mobile-adjust-invert {
        display: block;
    }
}


@media screen and (max-width: 810px) {

    #footer .inner > div:last-child {
        margin-left: 0;
    }

    #footer .inner > div#footerMenu {
        box-sizing: border-box;
        /*margin: 0 1rem;*/
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        order: -1;
    }

    /*#footer .inner .footer-item, #footer .inner .footer-item.last {*/
    #footer .inner > div, #footer .inner > div:last-child {
        min-width: unset;
        width: unset;
        max-width: unset;
        flex: 0 0 100%;
        text-align: center;
    }

        #footer .inner > div:last-child {
            margin-top: 14px;
        }

        #my-menu2 {
            margin-left: auto;
            margin-right:auto;
        }
}


@media screen and (max-width: 700px) {
    #ctl00_tbxtopsearch {
        display: none;
    }

    .searchIcon {
        background-image: url('../gfx/searchicon-black.png');
        background-color: transparent;
    }
}


@media screen and (max-width: 600px) {

   
    #mapAll {
        flex-wrap: wrap;
        
    }

    #mapAll .fargtabell {
        flex: 1 1 100%;
        order: 1;
        width: 100% !important;
    }

        #mapAll #google-map {
            flex: 1 1 100%;
            order: 0;
            /*border: 1px solid var(--divider-color);
            padding-right: 5px;*/
            padding-left: 0px;
        }

    
    
    #my-menu2.mm-menu {
        width:auto;
    }

    #my-menu2 {
        margin-left: auto;
        margin-right: auto;
    }

    .header .inner, #ctl00_content.content, #footer .inner {
        padding-left: 5px;
        padding-right: 5px;
    }

         #footer a.webbpartner {
            color: rgba(255,255,255,0.3);
            font-size: 14px;
        }
        
         
        
        #footer a.webbpartner {
            display: inline-block;
        }
            
        #footer .inner .mobile-adjust, #weather2 .mobile-adjust {
            display: none;
        }

        div#image-right-right-column img {
            margin-left: auto;
            margin-right: auto;
        }

    #content-right-side img {
        height: auto;
        width: 100%;
    }

    #weather2 {
        padding-left: 5px;
        padding-right: 5px;
    }

        #weather2 .widget {
            flex-wrap: wrap;
            margin-right: 0;
            margin-left: 0;
            padding:0.5rem;
            justify-content: center;
        }

                #weather2 .widget .text p {
                margin-left: 0;
            }
}

@media screen and (max-width: 520px) {

    #weather2 {
        padding-left: 5px;
        padding-right: 5px;
    }

    #weather2 .widget {
        flex-wrap: wrap;
        margin-right: 0;
        margin-left: 0;
        justify-content:center;
    }
    
    #c_457e67ffdafe46ce2ca02db78f1ef8e0 {
        flex: 0 1 200px;
        /*margin-left: 30%;
        margin-right: 30%;*/
    }

    #weather2 .widget .text {
        
        flex: 0 0 100%;
    }
        

}
@media screen and (max-width: 480px) {

    .narrow-menu-button {
        top: 7px;
    }

    /*.header .topRow {
        margin-top: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        height: 100%;
    }

        .header .topRow #logo,
        .header .topRow .header-collection {
            flex: 1 1 100%;
            justify-content: center;
        }
*/
        .header .topRow #logo {
            position: unset;
        }

    #ctl00_btnTopSearch {
        flex: 0 0 var( --header-search-icon-height );
    }

    #logo img {
        margin-left: auto;
        margin-right: auto;
        width: clamp( 200px, 100px + 35vw, 242px);
    }

    .content .contentright .left-pane {
        min-height: 60vh;
    }

    div#contacts {
        display: block;
    }

        div#contacts .contact, div#contacts .contact.alt {
            flex: 0 1 100%;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
        }

            div#contacts .contact .contact-image img {
                max-height: 230px;
                height: 78vw;
                display: inline-block;
                margin-left: auto;
                margin-right: auto;
            }

            div#contacts .contact .contact-image {
                display: block;
                margin-left: auto;
                margin-right: auto;
            }

            div#contacts .contact .contact-info {
                display: block;
                margin-left: auto;
                margin-right: auto;
            }

                div#contacts .contact .contact-info p, div#contacts .contact .contact-info h3 {
                    display: block;
                    margin-left: auto;
                    margin-right: auto;
                }

    #image-right-left-column {
        box-sizing: border-box;
        padding-right: 0;
    }
}

@media screen and (max-width:  345px) {

    .header .topRow {
        margin-top: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        height: 100%;
    }

        .header .topRow #logo,
        .header .topRow .header-collection {
            flex: 1 1 100%;
            justify-content: center;
        }
    #responsive-menu-btn {
        width: var( --header-search-icon-height );
        text-align: center;
    }

    #responsive-menu-btn span {
        margin-left: auto;
        margin-right: auto;
    }

    #my-menu ul li:last-child span {
        display: block;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
    }
    #my-menu ul li span a.wide-menu-button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width:160px;
        margin-top:0.5rem;
    }
}


