/* Minification failed. Returning unminified contents.
(522,1): run-time error CSS1019: Unexpected token, found '}'
(1002,24): run-time error CSS1035: Expected colon, found 'inline-flex'
 */
@import url('https://fonts.googleapis.com/css?family=Roboto');

html, body, form {
    width: 100%;
    height: 100%;
    font-family: 'Roboto',sans-serif;
    font-size: 12px;
    line-height: 16px;
}

body {
    margin: 0;
    padding: 0px;
}

.LayoutLeftSpacer {
    padding-right: 20px;
}

.LayoutRightSpacer {
    padding-left: 20px;
}

/* MASTER LAYOUT */
.LayoutWrapper {
    min-height: 100%;
}

/* HIDE ELEMENTS */
.LeftWrapper, .Row1BackgroundColor,  .MainCategories,  .SearchOuterWrapper, .MiniCartWrapper .MiniCartLink {
    display: none;
}

.LayoutWrapper {
    display: grid;
    grid-template-areas: "header" "banner" "content" "footer";
    grid-template-columns: 1fr;
    grid-template-rows: 190px auto 1fr auto;
    height: 100vh;
}

    .LayoutWrapper .FixedHeaderWrapper {
        grid-area: header;
        display: grid;
        grid-template-columns: auto;
        /*position: fixed;*/
        /*background: #bbb;
        width: 100%;*/
        z-index: 2;
    }

    .LayoutWrapper .BannerWrapper {
        grid-area: banner;
        background-color: #eee;
    }

    .LayoutWrapper .ContentWrapper {
        grid-area: content;
    }

    .LayoutWrapper .FooterWrapper {
        grid-area: footer;
        background-color: #ccc; 
    }

/* HEADER LAYOUT */
.Row1BackgroundColor {
    height: 40px;
    background-color: #eee;
    border-bottom: 1px solid #aaa;
 
}

.Row2BackgroundColor {
    height: 100px;
    background-color: #fff;
}

.Row3BackgroundColor {
    height: 50px;
    background-color: #444;
}

.CustomerMenu2 {
    padding-top: 10px;
    float: right;
}

nav.CustomerMenu2 ul li {
    float: left;
    padding-right: 20px;
}

    nav.CustomerMenu2 ul li a, nav.CustomerMenu2 ul li span {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 200;
        color: #eee;
        display: block;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
        padding-right: 20px;
    }

.HeaderWrapper {
/*    position: absolute;
    top: 0;*/
    display: grid;
    width: 100%;
    grid-template-rows: 41px 100px;
    grid-template-columns:auto ;
}

    .HeaderWrapper div {
    }
    .HeaderWrapper .CustomerMenuWrapper {
        
     /*   background-color: #eee;
        border-bottom: 1px solid #aaa;*/
    }
/*
    .HeaderWrapper .WebpagesMenuWrapper {
        grid-area: webmenu;
        position: relative;
    }

    .HeaderWrapper .CustomerMenuWrapper {
        grid-area: customermenu;
        position: relative;
    }

    .HeaderWrapper .LogoWrapper {
        grid-area: logo;
    }

    .HeaderWrapper .SearchWrapper {
        grid-area: search;
    }

    .HeaderWrapper .PeriodWrapper {
        grid-area: period;
    }


    .HeaderWrapper .MiniCartWrapper {
        grid-area: minicart;
        position: relative;
        display: none !important;
    }

    .HeaderWrapper .CategoryMenuWrapper {
        grid-area: categorymenu;
        position: relative;
    }

*/
/* CONTENT LAYOUT */
.ContentGrid {
    display: grid;
    height: 100%;
    grid-template-areas: "main";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

    .ContentGrid .LeftWrapper {
        padding: 20px;
        padding-right: 0;
        grid-area: left;
        border-right: 2px #eee solid;
    }

    .ContentGrid .MainWrapper {
        grid-area: main;
        padding: 20px;
    }

/* MOBILE ICONS */
.MobileIcon {
    font-size: 32px;
    line-height: 50px;
    box-sizing: border-box;
    text-align: center;
    display: block;
    cursor: pointer;
}

    .MobileIcon:before {
        font-family: 'fontawesome';
    }

    .MobileIcon.CategoryBars:before {
        content: '\f0c9';
    }

    .MobileIcon.Search:before {
        content: '\f002';
    }



    .MobileIcon.WebPages:before {
        content: '\f015';
    }

    .MobileIcon.User:before {
        content: '\f023';
    }

    .MobileIcon.User.LoggedIn:before {
        content: '\f007';
    }

    .MobileIcon.Cart:before {
        content: '\f07a';
    }

    .MobileIcon.Cart .Count {
        font-size: 12px;
        line-height: 18px;
        height: 18px;
        position: absolute;
        left: 50%;
        margin-left: -6px;
        top: 18px;
        right: auto;
        font-weight: 700;
        text-align: center;
        height: 20px;
        min-width: 20px;
        border-radius: 15px;
        padding-left: 5px;
        padding-right: 5px;
        box-sizing: border-box;
        transition: all 200ms linear;
    }

        .MobileIcon.Cart .Count:before {
            content: '';
        }

/* MOBILE ICONS - COLORS AND BACKGROUNDS */
.MobileIcon {
    color: #fff;
}

    .MobileIcon:hover {
        background-color: #ccc;
        color: #fff;
    }

    .MobileIcon.Cart .Count {
        background-color: #fff;
        color: #444;
        border: 1px solid #444;
    }

    .MobileIcon.Cart:hover .Count {
        opacity: 0.4;
    }

/* GLOBAL SEARCH BOX */
.SearchOuterWrapper {
    position: absolute;
    left: 0;
    background: #fff;
    right: 0;
    padding: 10px;
    box-sizing: border-box;
}

    .SearchOuterWrapper .btnHiddenSearch {
        display: none;
    }

.SearchContent {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
}

    .SearchContent .SearchField {
        width: 100%;
        box-sizing: border-box;
        padding-right: 50px;
        font-size: 16px;
        font-family: 'Open Sans',sans-serif;
    }

    .SearchContent .SearchField {
        width: 100%;
        box-sizing: border-box;
        padding-right: 50px;
        border: 0;
    }

    .SearchContent .SearchButton {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
    }

        .SearchContent .SearchButton:before {
            float: left;
            padding-top: 12px;
            padding-right: 10px;
            font-size: 24px;
            content: '\f002';
            font-family: 'fontawesome';
        }

/* COLORS,BACKGROUNDS AND PADDING */
.TopMenuWrapper {
    background-color: #444;
    padding-top: 6px;
    padding-bottom: 6px;
}

.ShopToolsWrapper {
    background-color: #ccc;
}

.CategoriesWrapper {
    background-color: #fff;
}

.ContentWrapper {
    background-color: #fff;
    color: #444;
}

.FooterWrapper {
    background-color: #444;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.info{
    padding-left:10px;
}
@media screen and (min-width:768px) {
    body {
        background-color: gray;
    }

    .LayoutWrapper {
    }

    /* SHOW ELEMENTS */
    .Row1BackgroundColor,  .SearchOuterWrapper, .MiniCartWrapper .MiniCartLink {
        display: block;
    }

    /* HIDE ELEMENTS */
    .MobileIcon.WebPages, .MobileIcon.Search, .MobileIcon.Cart {
        display: none;
    }

    .PageContentWidth {
        max-width: 768px;
        margin: 0 auto;
    }

    .FixedHeaderWrapper {
    }

    /* HEADER LAYOUT */
    .Row1BackgroundColor {
        height: 40px;
    }

    .HeaderWrapper {
 /*       grid-template-rows: 45px 100px;
        grid-template-columns: auto;*/
        /* grid-template-areas:
            "webmenu customermenu customermenu customermenu customermenu customermenu customermenu customermenu customermenu customermenu"
            "logo logo . . search . period period period period"
            "categorymenu categorymenu categorymenu categorymenu categorymenu categorymenu categorymenu categorymenu categorymenu categorymenu";*/
        /*  grid-template-areas: "webmenu webmenu webmenu webmenu webmenu webmenu webmenu webmenu webmenu webmenu " 
            "logo logo . . search . period period period period" 
            "categorymenu categorymenu . . . . . . customermenu customermenu customermenu";*/
    }

    .SearchOuterWrapper {
        position: initial;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media screen and (min-width:980px) {
    html, body, form {
        font-size: 14px;
        line-height: 18px;
    }

    .PageContentWidth {
        max-width: 980px;
        margin: 0 auto;
    }
    /* SHOW ELEMENTS */
    .MainCategories, .CustomerMenu ul {
     
    }
    /* HIDE ELEMENTS */
    .MobileIcon.CategoryBars, .MobileIcon.User {
        display: none;
    }

    .HeaderWrapper {
        
    }
}

@media screen and (min-width:1280px) {
    html, body, form {
        font-size: 16px;
        line-height: 20px;
    }

    .PageContentWidth {
        max-width: 1280px;
        margin: 0 auto;
    }

    .HeaderWrapper {
    }

    .ContentGrid {
        display: grid;
        height: 100%;
        grid-template-areas: "left main";
        grid-template-columns: auto 1fr;
        grid-template-rows: 1fr;
    }

    .LeftWrapper {
        display: block;
        width: 300px;
    }
}

@media screen and (min-width:1640px) {
    html, body, form {
        font-size: 18px;
        line-height: 24px;
    }

    .LayoutWrapper {
        display: grid;
        grid-template-areas: "header" "banner" "content" "footer";
        grid-template-columns: 1fr;
        grid-template-rows: 194px auto 1fr auto;
        height: 100vh;
    }

    .PageContentWidth {
        max-width: 1640px;
        margin: 0 auto;
    }

    .HeaderWrapper {
    }


    .Row3BackgroundColor {
        height: 54px;
        
        position: relative;
    }
      
 
}
  .Row3BackgroundColor .Userinfo {
            float: right;
            padding-right:10px;
            padding-top:15px;
        }
        .Row3BackgroundColor .Userinfo a{
            color:white;
        }




        .CustomerListWrapper {
    display: grid;
    grid-template-columns: repeat(5,auto);
    flex-wrap: wrap;
}

.Header {
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px solid #808080;
}

.kundenavn {
    min-width: 300px;
}

.UserListWrapper {
    display: grid;
    grid-template-columns: repeat(6,auto);
    flex-wrap: wrap;
}

.CopmpanyListWrapper {
    display: grid;
    grid-template-columns: repeat(6,auto);
    flex-wrap: wrap;
}

}

.kundenavn {
    min-width: 300px;
}

.EditUser {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    align-items: start;
}

.EditUserinfo.company {
    align-items: center;
    grid-template-columns: repeat(2,auto);
}

.EditUserinfo {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0px;
}

.Usermessage {
    grid-column-start: span 2;
    color: red;
}

.EditUserCustomerLink {
}

.CustomerUserLink {
    display: flex;
    gap: 5px;
}

.GeneralFlex {
    display: flex;
    gap: 5px;
    flex-direction: column;
}
/*.EditUser .item{
      display: flex;
      flex-direction:row;
}*/

.item {
    /*  border:1px solid red;*/
}

input[type="text"].warning {
    border-color: red;
}

/* LOGO */
.LogoWrapper {
    padding: 10px;
    height: 80px;
}

    .LogoWrapper .Logo {
        max-width: 100%;
        max-height: 100%;
        text-decoration: none;
    }

        .LogoWrapper .Logo img {
            max-width: 100%;
            max-height: 100%;
        }


/* WEBPAGES MENU */
nav.WebPagesMenu ul {
    padding-top: 10px;
    float: left;
}

    nav.WebPagesMenu ul li {
        float: left;
        padding-left: 10px;
        padding-top: 5px;
    }

        nav.WebPagesMenu ul li:last-child {
            border-right: 0px;
            padding-right: 0;
        }

nav.WebPagesMenuv ul li:first-child {
    border-left: 0px;
}

nav.WebPagesMenu ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 200;
    color: #FFF;
}

    nav.WebPagesMenu ul li a:hover {
        text-decoration: underline;
    }



/* MINICART */
.MiniCartWrapper {
}

    .MiniCartWrapper .MiniCartLink {
        float: right;
        padding-left: 60px;
        position: relative;
        margin-top: 20px;
        transition: background linear 200ms;
    }

        .MiniCartWrapper .MiniCartLink:hover {
            background: #eee;
        }

        .MiniCartWrapper .MiniCartLink .MiniCartIcon:before {
            content: '\f07a';
            font-family: 'fontawesome';
            font-size: 36px;
            position: absolute;
            left: 10px;
            top: 50%;
            margin-top: -18px;
            line-height: 36px;
            height: 36px;
        }

.MiniCartLink .MiniCartContent {
    font-size: 1rem;
    line-height: 20px;
    float: right;
    padding: 10px;
}

    .MiniCartLink .MiniCartContent .Title {
        float: right;
        font-weight: 600;
        margin-top: 0px;
        text-transform: uppercase;
        clear: both;
    }

    .MiniCartLink .MiniCartContent .Price {
        float: right;
        clear: both;
        font-size: 0.8rem;
    }

    .MiniCartLink .MiniCartContent .Empty {
        float: right;
        clear: both;
        font-size: 0.8rem;
    }

.MiniCartLink .Count {
    font-size: 0.8rem;
    line-height: 20px;
    position: absolute;
    left: 14px;
    top: 0px;
    float: left;
    background-color: #023144;
    padding: 0px;
    color: #fff;
    font-weight: 400;
    border: 2px solid #e2413e;
    width: 20px;
    text-align: center;
    height: 20px;
    border-radius: 50%;
    display: none;
    font-weight: 700;
}


/* MAIN CATEGORIES */
ul.MainCategories {
    float: left;
    width: 100%;
    font-size: 1rem;
    color: #ddd;
    letter-spacing: 0px;
    font-weight: 500;
}

    ul.MainCategories li.CategoryItem {
        float: left;
        position: relative;
        border-left: 1px solid #aaa;
        text-transform: uppercase;
        transition: background-color 300ms linear;
        box-sizing: border-box;
    }

    ul.MainCategories li:last-child {
        border-right: 1px solid #aaa;
    }

    ul.MainCategories li.CategoryItem a.Root, ul.MainCategories li.CategoryItem span.Root {
        color: #ccc;
        float: left;
        padding: 15px;
        padding-left: 40px;
        padding-right: 40px;
        cursor: pointer;
        text-decoration: none;
    }

        ul.MainCategories li.CategoryItem a.Root:focus, ul.MainCategories li.CategoryItem span.Root:focus {
            color: #fff;
        }

    ul.MainCategories li.CategoryItem a.Focus, ul.MainCategories li.CategoryItem span.Focus {
        color: #fff;
    }

    ul.MainCategories li.CategoryItem .Root:hover {
        color: #fff;
    }

    ul.MainCategories li ul {
        position: absolute;
        display: none;
        top: 54px;
        margin: 0px;
        margin-left: 0px;
        margin-top: 0px;
        float: left;
        min-width: 100%;
        padding: 0px;
        margin-top: 8px;
        z-index: 9999;
        border: 1px solid #ccc;
        background-color: #fff;
        box-shadow: -1px 1px 4px rgba(0,0,0,0.2), 1px 1px 4px rgba(0,0,0,0.2);
    }

        ul.MainCategories li ul li {
            float: left;
            clear: left;
            background: none;
            background: #fff;
            padding: 0px;
            width: 100%;
            text-transform: capitalize;
            font-size: 14px;
            border: 0px;
            border-bottom: 1px solid #ddd;
        }

            ul.MainCategories li ul li:first-child {
                border-top: 0;
            }

        ul.MainCategories li ul:before {
            content: '';
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #444;
            position: absolute;
            top: -8px;
            left: 32px;
        }

        ul.MainCategories li ul li:last-child {
            border: 0px;
        }

        ul.MainCategories li ul li a {
            float: left;
            text-transform: uppercase;
            color: #444;
            padding: 8px;
            white-space: nowrap;
            box-sizing: border-box;
            width: 100%;
            font-weight: 400;
        }

            ul.MainCategories li ul li a:hover {
                text-decoration: none;
                color: #e2413e
            }

            ul.MainCategories li ul li a:focus {
                text-decoration: underline;
            }

.MobileCategoriesWrapper:before {
    content: '\f00d';
    font-family: 'fontawesome';
    color: #fff;
    cursor: pointer;
    text-align: right;
    float: right;
    background: green;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.MobileCategoriesWrapper:after {
    content: '';
    float: left;
    /*position: absolute;
    top: 10px;
    left: 10px;*/
    color: #fff;
}

.MobileCategoriesWrapper {
    display: block;
    position: fixed;
    z-index: 99;
    top: 0;
    background: red;
}

.MobileCategories {
    padding: 20px;
    padding-top: 0;
    clear: both;
    display: none;
}

.MobileMenuOuterWrapper {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 300ms linear;
}

    .MobileMenuOuterWrapper.Visible {
        height: auto;
        opacity: 1;
    }

.MobileMenuWrapper {
    position: absolute;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    transition: left 300ms linear;
}

    .MobileMenuWrapper.Visible {
        left: 0px;
    }

    .MobileMenuWrapper .MobileMenuClose {
        position: absolute;
        cursor: pointer;
        right: 0;
        top: 20px;
        bottom: 0;
    }

        .MobileMenuWrapper .MobileMenuClose:before {
            content: '\f00d';
            font-family: fontawesome;
            font-size: 24px;
            padding: 10px;
            color: #444;
        }

.MobileMenuHeaderWrapper {
    position: relative;
}

    .MobileMenuHeaderWrapper img {
        max-height: 40px;
    }

.MobileMenuWrapper .MobileMenuHeader {
    padding: 10px;
    color: #444;
    border-bottom: 1px solid #444;
    background-color: #ccc;
    display: block;
    position: relative;
}

.MobileMenuItems .Header {
    display: block;
    padding: 10px;
    color: #444;
    border-bottom: 1px solid #444;
    margin: 0;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}

    .MobileMenuItems .Header .Previous {
        position: absolute;
        right: 0;
        top: 0;
        padding: 10px;
        bottom: 0;
    }

        .MobileMenuItems .Header .Previous:hover {
            background-color: #ddd;
        }

        .MobileMenuItems .Header .Previous:before {
            content: '\f053';
            font-family: FontAwesome;
            font-size: 16px;
        }

.MobileMenuItems span.LoggedInUser {
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px;
    color: #444;
    border-bottom: 1px solid #444;
    box-sizing: border-box;
}

.MobileMenuItems ul li {
    position: relative;
}

    .MobileMenuItems ul li a, .MobileMenuItems ul li span {
        display: block;
        padding: 10px;
        color: #444;
        border-bottom: 1px solid #444;
        box-sizing: border-box;
    }

    .MobileMenuItems ul li .Extend {
        top: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        cursor: pointer;
    }

        .MobileMenuItems ul li .Extend:hover {
            background-color: #ddd;
        }

        .MobileMenuItems ul li .Extend:before {
            content: '\f054';
            font-family: FontAwesome;
            font-size: 16px;
        }

/* COLORS AND BACKGROUND */

.FooterWrapper
{
    color:#444;
}

.container {
    display: flex;  or inline-flex 
    align-items:center;
    
}

.item {
    padding-right: 10px;
}

.filter  {
    font-size: 14px;
}
div.filter{padding-bottom:5px;}

.customermeny {
    display: flex; /* or inline-flex */
    align-items: center;
}
.customermeny li a {
    border-radius: 10px;
    background: #555;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}
/*        
.customermeny li::after{ 
  content: "→";
}
*/

