﻿@import url(//fonts.googleapis.com/css?family=Open+Sans:400,600,700);

@font-face {
    font-family: 'icofont';
    src: url('/css/fonts/icofont.eot?v=1.0.0-beta');
    src: url('/css/fonts/icofont.eot?v=1.0.0-beta#iefix') format('embedded-opentype'), url('/css/fonts/icofont.ttf?v=1.0.0-beta') format('truetype'), url('/css/fonts/icofont.woff?v=1.0.0-beta') format('woff'), url('/css/fonts/icofont.svg?v=1.0.0-beta#icofont') format('svg');
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: 'Open Sans',sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    position: relative;
    height: 100%;
}

body {
}

.OuterPageWrapper {
    height: 100%;
}

.InnerPageWrapper {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
}
/* LAYOUT */
.OuterHeaderWrapper {
    float: left;
    width: 100%;
    background: #000;
}

.InnerHeaderWrapper {
    width: 1800px;
    margin: 0px auto;
}

.OuterMenuWrapper {
    float: left;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    background: #232323;
    border-top: 1px solid #333;
}

.InnerMenuWrapper {
    width: 1800px;
    margin: 0px auto;
}

.OuterContentWrapper {
    float: left;
    width: 100%;
}

.InnerContentWrapper {
    width: 1800px;
    margin: 10px auto;
    padding-bottom: 0px;
}

.OuterFooterWrapper {
    float: left;
    clear: both;
    width: 100%;
    margin-top: 20px;
}

    .OuterFooterWrapper.Bottom {
        bottom: 0px;
        position: absolute;
    }

.InnerFooterWrapper {
}

.OuterBottomWrapper {
    float: left;
    width: 100%;
    border-top: 0px solid #000;
}

.InnerBottomWrapper {
}

.OuterBottomWrapper2 {
    float: left;
    width: 100%;
    background-color: #eee;
    color: #888;
    padding-top: 10px;
    padding-bottom: 15px;
    border-top: 1px solid #ddd;
}

.InnerBottomWrapper2 {
    width: 1800px;
    margin: 10px auto;
}

/* GENERAL */
h1 {
    font-size: 2rem;
    color: #c1af7a;
    margin-bottom: 0px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 0px solid #ddd;
    clear: both;
}

h2 {
    font-size: 1.2rem;
    color: #232323;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #aaa;
    clear: both;
}

h3 {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

h4 {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ccc;
}

h5 {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 10px;
    padding-bottom: 2px;
    font-weight: 700;
}

p {
    font-size: 14px;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #000;
}

    a:hover {
        text-decoration: underline;
        color: #666;
    }

select {
    height: 34px;
    border-radius: 3px;
}

strong, b {
    font-weight: 700;
}

i {
    font-style: italic;
}

/* GLOBAL CLASSES */
.Button {
    background: none;
    border: 0px;
    font-size: 1rem;
    color: #fff;
    height: 34px;
    line-height: 34px;
    background-color: #E59025;
    font-family: 'Open Sans',sans-serif;
    display: inline-block;
    margin-top: 0px;
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: background-color 200ms linear;
}

    .Button:hover {
        background-color: #FF9E28;
        text-decoration: none;
        color: #fff;
    }

    .Button:disabled {
        background-color: #ddd;
        color: #888;
        cursor: default;
    }

.Hidden {
    display: none;
}

.Grey {
    color: #aaa !important;
}

.Fullsize {
    width: 100%;
}

.ClearLeft {
    clear: left;
}

.ClearRight {
    clear: right;
}

.ClearNone {
    clear: none !important;
}

.FloatLeft {
    float: left;
}

.FloatRight {
    float: right;
}

.FloatNone {
    float: none !important;
}

.Error {
    color: #C00000;
    background-color: #F7DDDD;
    padding: 10px;
    display: block;
    padding-left: 40px;
}

    .Error:before {
        content: '\f06a';
        font-family: 'FontAwesome';
        float: left;
        font-size: 24px;
        margin-left: -30px;
        margin-right: 0px;
        color: #C00000;
    }

.Success {
    color: #3c763d;
    background-color: #dff0d8;
    padding: 10px;
    display: block;
    padding-left: 40px;
}

    .Success:before {
        content: '\f058';
        font-family: 'FontAwesome';
        float: left;
        font-size: 24px;
        margin-left: -30px;
        margin-right: 0px;
        color: #3c763d;
    }

.Info {
    color: #31708f;
    background-color: #d9edf7;
    padding: 10px;
    display: block;
    padding-left: 40px;
}

    .Info:before {
        content: '\f058';
        font-family: 'FontAwesome';
        float: left;
        font-size: 24px;
        margin-left: -30px;
        margin-right: 0px;
        color: #31708f;
    }

.AirRight {
    margin-right: 5px;
}

.Airleft {
    margin-left: 5px;
}

.AirBottom {
    margin-bottom: 5px;
}

.AirTop {
    margin-top: 5px;
}

.AirEvereywhere {
    margin: 5px;
}
/* FORM */
.Form {
    float: left;
    margin-bottom: 10px;
    margin-right: 20px;
}

    .Form label {
        float: left;
        width: 150px;
        clear: left;
        padding-top: 10px;
        padding-bottom: 0px;
        margin-bottom: 5px;
        position: relative;
    }

    .Form p {
        float: left;
        clear: both;
    }

    .Form span {
        float: left;
        margin-right: 10px;
        line-height: 34px;
    }

    .Form input[type=text], .Form input[type=number], .Form input[type=email], .Form input[type=password], .Form textarea {
        float: left;
        width: 250px;
        border: 1px solid #ddd;
        padding: 0px;
        font-family: 'Open Sans',sans-serif;
        font-size: 14px;
        line-height: 36px;
        height: 36px;
        border-radius: 3px;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 10px;
    }

    .Form input:focus {
        border: 1px solid #aaa;
    }

    .Form input:disabled {
        border: 1px solid #aaa;
    }

    .Form textarea {
        line-height: normal;
        padding-top: 5px;
        padding-bottom: 5px;
        height: unset;
    }

    .Form input[type=text].Short, .Form input[type=number].Short {
        width: 60px;
        margin-right: 10px;
    }

    .Form input[type=text].Large {
        width: 180px;
    }

    .Form input[type=text].MaxSize, .Form textarea.MaxSize {
        width: 100%;
    }

    .Form select {
        float: left;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 3px;
    }

        .Form select:focus {
            border: 1px solid #aaa;
        }

    .Form .CheckboxWrapper {
        float: left;
        clear: left;
    }

        .Form .CheckboxWrapper input[type=checkbox] {
            float: left;
            font-size: 30px;
            display: none;
        }

        .Form .CheckboxWrapper label {
            clear: none;
            width: auto;
        }

            .Form .CheckboxWrapper label:before {
                content: '\f096';
                font-family: FontAwesome;
                font-size: 1.4rem;
                margin-right: 8px;
                float: left;
            }

            .Form .CheckboxWrapper label.Selected:before {
                content: '\f046';
                font-family: FontAwesome;
                margin-right: 5px;
            }

    .Form .ActionButtons {
        float: left;
        clear: both;
        position: relative;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .Form.LargeLabels label {
        width: 200px;
    }

    .Form.LargeLabels input[type=number] {
        text-align: right;
    }

    .Form .Text {
        float: left;
        width: 250px;
        border: 1px solid #ddd;
        padding: 0px;
        font-family: 'Open Sans',sans-serif;
        font-size: 14px;
        line-height: 24px;
        min-height: 40px;
        border-radius: 3px;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 7px;
        background-color: #fff;
        margin-bottom: 10px;
    }

        .Form .Text.Large {
            width: 100%;
        }

        .Form .Text.Area {
            width: 100%;
            min-height: 80px;
            height: auto;
        }

        .Form .Text.Short {
            width: 60px;
            margin-right: 10px;
        }

        .Form .Text.Large {
            width: 180px;
        }

        .Form .Text.MaxSize {
            width: 100%;
        }

    .Form .Helper {
        position: absolute;
        top: -5px;
        right: -10px;
    }

        .Form .Helper:hover:after {
            color: #E59025;
        }

.FormOneLine {
    margin-bottom: 20px;
    float: left;
}

    .FormOneLine label {
        line-height: 36px;
        margin-right: 10px;
        float: left;
    }

    .FormOneLine input[type=text], .FormOneLine input[type=number], .FormOneLine input[type=email], .FormOneLine input[type=password], .FormOneLine textarea {
        width: 250px;
        border: 1px solid #ddd;
        padding: 0px;
        font-family: 'Open Sans',sans-serif;
        font-size: 14px;
        line-height: 36px;
        height: 38px;
        border-radius: 3px;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        float: left;
    }

    .FormOneLine select {
        display: inline-block;
        float: none;
        float: left;
        margin-right: 10px;
    }

    .FormOneLine .Button {
        float: left;
        margin-right: 10px;
    }

    .FormOneLine .ButtonWrapper {
        float: left;
        clear: left;
        margin-top: 10px;
        margin-bottom: 20px;
    }

.Form.MarketBonus {
    margin-top: 20px;
}

    .Form.MarketBonus label {
        width: 100%;
    }

    .Form.MarketBonus textarea {
        width: 100%;
    }

.Form.Custom {
    background: #eee;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-bottom: 5px;
    margin-left: 0px;
}

.Form.Comment {
    float: left;
    width: 100%;
}

.Form .FileUploadWrapper label {
    padding: 0px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.Form .DatePicker {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding-left: 5px;
    border-radius: 3px;
}

    .Form .DatePicker input {
        padding: 0px;
        height: unset;
        line-height: 30px;
        width: 220px;
        margin-bottom: 0;
    }

.Form .dxeCalendarHeader span {
    line-height: unset !important;
    float: unset !important;
    margin-right: unset !important;
    text-transform: uppercase;
    font-weight: bold;
}

/* DIVTABLE */
.DivTable {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.DivRow {
    display: table-row;
}

.DivCell {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 10px;
}

    .DivCell .Text {
        margin: 0;
    }

    .DivCell:nth-child(1) {
        width: 100px;
    }


/* ICONS */
.Dashboard:before {
    /*content: '\efcf';*/
    content: '\f01f';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.Reports:before {
    content: '\ea77';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.Message:before {
    content: '\ed46';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.KeyFigures:before {
    content: '\ea78';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.Accounting:before {
    content: '\ecc4';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.Gift:before {
    content: '\f010';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.Keyfigures:before {
    content: '\ea8c';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.Totals:before {
    content: '\ea73';
    font-family: icofont;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    font-weight: normal;
}

.MesssageIcon:before {
    content: '\ed64';
    font-family: icofont;
    font-size: 24px;
    margin-top: 2px;
}

.DeleteIcon:before {
    content: '\f014';
    font-family: FontAwesome;
    font-size: 24px;
    margin-left: 10px;
}

.aAttachment:before {
    content: '\ec06';
    font-family: icofont;
    font-size: 24px;
    float: left;
    padding-right: 5px;
}

.Notify:before {
    content: '\f025';
    font-family: icofont;
    font-size: 20px;
    float: left;
    padding-right: 5px;
}

.Close:before {
    content: '\ed2b';
    font-family: icofont;
    font-size: 16px;
}

.pdf:before {
    content: '\ec12';
}

.jpg:before {
    content: '\ec0e';
}

/* TABLE */
.CustomTable {
    float: left;
    width: 100%;
}

    .CustomTable .header th {
        background-color: #232323;
        border: 1px solid #ccc;
        padding: 5px;
        padding-top: 10px;
        padding-bottom: 10px;
        color: #c1af7a;
        text-align: left;
        font-weight: normal;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .CustomTable .header th:last-child {
            text-align: center;
        }

    .CustomTable tr.Selected td {
        background: #ddd;
    }

    .CustomTable tr td {
        padding: 5px;
        border: 1px solid #ccc;
    }

        .CustomTable tr td .Button {
            float: none;
            margin-top: 0px;
            margin-right: 0px;
        }

    .CustomTable th {
        padding: 5px;
        border: 1px solid #232323;
        background: #232323;
        color: #c1af7a;
    }

        .CustomTable th:nth-child(1) {
            text-align: left;
        }

        .CustomTable th:nth-child(2) {
            text-align: left;
        }

        .CustomTable th:nth-child(3) {
            min-width: 60px;
        }

    .CustomTable tbody tr:hover {
        background-color: #fafafa;
    }

    .CustomTable tbody td {
        padding-bottom: 10px;
    }

    .CustomTable td:nth-child(3) {
        text-align: center;
        padding-top: 10px;
    }

        .CustomTable td:nth-child(3) a {
            text-decoration: none;
        }

/* HEADER */
.InnerHeaderWrapper {
}

    .InnerHeaderWrapper .LogoWrapper {
        float: left;
        margin-top: 20px;
        margin-bottom: 20px;
    }

        .InnerHeaderWrapper .LogoWrapper img {
            max-width: 100%;
        }

    .InnerHeaderWrapper a {
        color: #999;
    }

        .InnerHeaderWrapper a:hover {
            color: #fff;
            text-decoration: none;
        }

/* USER INFO */
.UserInfoWrapper {
    float: left;
    padding: 10px;
    float: right;
    color: #999;
    line-height: 1.3rem;
    padding-right: 0px;
}

    .UserInfoWrapper .UserInfoLogout {
        float: right;
        margin-left: 20px;
    }

        .UserInfoWrapper .UserInfoLogout a.Button {
            color: #fff;
        }

    .UserInfoWrapper .UserInfoCustomer {
        float: left;
        margin-bottom: 5px;
        position: relative;
        padding-left: 32px;
    }

        .UserInfoWrapper .UserInfoCustomer:before {
            content: '\edd4';
            font-family: icofont;
            position: absolute;
            left: 0px;
            font-size: 24px;
            color: #fff;
            padding-right: 5px;
            margin-top: 9px;
        }

        .UserInfoWrapper .UserInfoCustomer label {
            float: left;
        }

        .UserInfoWrapper .UserInfoCustomer span {
            float: left;
            clear: left;
        }

        .UserInfoWrapper .UserInfoCustomer a.Button {
            float: right;
            color: #fff;
        }

    .UserInfoWrapper .UserInfoPeriod {
        float: left;
        clear: left;
        margin-bottom: 5px;
        display: none;
    }

        .UserInfoWrapper .UserInfoPeriod label {
            margin-right: 10px;
        }

    .UserInfoWrapper .UserInfoSelectPeriod {
        float: right;
        clear: both;
        display: block;
    }

        .UserInfoWrapper .UserInfoSelectPeriod label {
            float: left;
            margin-top: 10px;
            margin-right: 10px;
        }

        .UserInfoWrapper .UserInfoSelectPeriod select {
            float: left;
            margin-right: 20px;
        }

        .UserInfoWrapper .UserInfoSelectPeriod .Button {
            margin-top: 0px;
        }

    .UserInfoWrapper .UserInfoChangeCustomer {
        float: right;
        margin-left: 20px;
    }

        .UserInfoWrapper .UserInfoChangeCustomer a.Button {
            color: #fff;
            float: right;
            margin-bottom: 10px;
        }

    .UserInfoWrapper .UserNotifyWrapper {
        float: right;
        position: relative;
    }

        .UserInfoWrapper .UserNotifyWrapper .UserNotify {
            margin-left: 20px;
        }

    .UserInfoWrapper .UserNotifyContentWrapper {
        display: none;
        background: #444;
        padding: 0px;
        position: absolute;
        min-width: 600px;
        right: 0px;
        border: 1px solid #E59025;
        padding-bottom: 0px;
        top: 30px;
        z-index: 99;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
        border-radius: 10px;
        border-top-right-radius: 0;
    }

        .UserInfoWrapper .UserNotifyContentWrapper h4 {
            float: left;
            width: 100%;
            padding: 10px;
            color: #ddd;
            font-weight: 400;
            margin: 0;
            box-sizing: border-box;
            border-bottom: 1px solid #E59025;
        }

        .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyClose {
            position: absolute;
            right: 10px;
            top: 10px;
            cursor: pointer;
        }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyClose:hover {
                color: #fff;
            }

        .UserInfoWrapper .UserNotifyContentWrapper p.Empty {
            float: left;
            width: 100%;
            padding: 10px;
            color: #ddd;
            font-weight: 400;
            margin: 0;
            box-sizing: border-box;
        }

        .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem {
            position: relative;
            padding: 10px;
            min-height: 55px;
            padding-left: 50px;
            float: left;
            border-bottom: 1px solid #E59025;
            padding-bottom: 10px;
            width: 100%;
            box-sizing: border-box;
        }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem:last-child {
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
                border: 0px;
            }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem:hover {
                color: #fff;
                background: #aaa;
            }

                .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem:hover a {
                    color: #fff;
                }

                    .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem:hover a:hover {
                        text-decoration: underline;
                    }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem.INFO:before {
                content: '\f05a';
                font-family: FontAwesome;
                font-size: 40px;
                position: absolute;
                top: 20px;
                left: 10px;
            }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem.WARNING:before {
                content: '\f06a';
                font-family: FontAwesome;
                font-size: 40px;
                position: absolute;
                top: 20px;
                left: 10px;
            }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem.SUCESS:before {
                content: '\f058';
                font-family: FontAwesome;
                font-size: 40px;
                position: absolute;
                top: 20px;
                left: 10px;
            }

            .UserInfoWrapper .UserNotifyContentWrapper .UserNotifyContentItem p {
                float: left;
                margin: 0;
            }


.AddToCartPopup.SUCCESS:before {
    content: '\f058';
    font-family: FontAwesome;
    float: left;
    padding-right: 6px;
    color: #3c763d;
    font-size: 16px;
    margin-left: -20px;
    margin-top: -1px;
}

.AddToCartPopup.ERROR:before {
    content: '\f056';
    font-family: FontAwesome;
    float: left;
    padding-right: 6px;
    color: #a94442;
    font-size: 16px;
    margin-left: -20px;
    margin-top: -1px;
}

.AddToCartPopup.INFO:before {
    content: '\f05a';
    font-family: FontAwesome;
    float: left;
    padding-right: 6px;
    color: #31708f;
    font-size: 16px;
    margin-left: -20px;
    margin-top: -1px;
}

.AddToCartPopup.WARNING:before {
    content: '\f06a';
    font-family: FontAwesome;
    float: left;
    padding-right: 6px;
    color: #8a6d3b;
    font-size: 16px;
    margin-left: -20px;
    margin-top: -1px;
}

/* TOP MENU */
.InnerMenuWrapper a {
    color: #999;
}

    .InnerMenuWrapper a:hover {
        color: #fff;
        text-decoration: none;
    }

.TopMenu {
    float: left;
}

    .TopMenu ul {
    }

        .TopMenu ul li {
            float: left;
        }

            .TopMenu ul li a {
                display: inline-block;
                padding: 10px;
                padding-left: 0px;
                margin-right: 20px;
                background-color: #232323;
                height: 30px;
                line-height: 30px;
                font-family: 'Open Sans';
                font-weight: 600;
            }

                .TopMenu ul li a.Selected {
                    color: #E59025;
                }

/* ADMIN MENU */
.AdminMenuWrapper {
    float: right;
    position: relative;
}

    .AdminMenuWrapper .NavIcon:before {
        content: '\f080';
        font-family: icofont;
        color: #fff;
        font-size: 32px;
        font-weight: normal;
        float: right;
        margin-top: 8px;
        margin-right: 10px;
        cursor: pointer;
    }

    .AdminMenuWrapper ul {
        display: none;
        position: absolute;
        top: 50px;
        right: 0;
        width: 240px;
        background: #232323;
        box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
        z-index: 999;
    }

        .AdminMenuWrapper ul.Selected {
        }

        .AdminMenuWrapper ul li {
            padding: 10px;
            padding-top: 0px;
            padding-bottom: 10px;
        }

            .AdminMenuWrapper ul li a {
                line-height: 18px;
            }

/* LOGIN */
.LoginOuterWrapper {
    position: absolute;
    float: left;
    width: 100%;
    height: 100%;
    background: #fafafa;
}

.LoginInnerWrapper {
    margin: 100px auto;
    width: 480px;
    color: #050505;
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #ddd;
    overflow: auto;
}

.LoginHeader {
    background: #000;
    padding: 20px;
    text-align: center;
}

.LoginContent {
    padding: 40px;
    font-size: 14px;
    width: 400px;
    float: left;
    background: #fff;
    margin: 0px;
}

    .LoginContent h1 {
        margin-bottom: 20px;
    }

    .LoginContent label {
        width: 80px;
    }

    .LoginContent input[type=text], .LoginContent input[type=password], .LoginContent input[type=email] {
        float: left;
        width: 200px;
    }

    .LoginContent .ForgotPasswordButton {
        background: none;
        border: 0px;
        cursor: pointer;
        padding: 0px;
        margin-top: 10px;
        float: left;
        clear: left;
    }

        .LoginContent .ForgotPasswordButton:hover {
            text-decoration: underline;
        }

/* REPORTS */

.Formidlingsaktivitet {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.ReportExportMenu {
}

    .ReportExportMenu ul {
        float: right;
    }

        .ReportExportMenu ul li {
            float: left;
            margin-bottom: 10px;
            margin-left: 10px;
        }

            .ReportExportMenu ul li a, .ReportExportMenu ul li span {
                float: left;
                padding-top: 6px;
            }


.SelectPeriod {
    float: left;
    clear: left;
    background: #eee;
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

    .SelectPeriod label {
        float: left;
        margin-top: 10px;
        margin-right: 10px;
    }

    .SelectPeriod select {
        float: left;
        margin-right: 20px;
    }

    .SelectPeriod .Button {
    }

table.PeriodChooser {
    border: 1px solid #ddd;
}

    table.PeriodChooser td {
        padding: 5px;
        vertical-align: middle;
    }

table.MFBonusRapportVelger td {
    padding: 5px;
}

.ReportListWrapper {
    float: left;
    width: 300px;
    margin-top: 10px;
}

    .ReportListWrapper ol {
        list-style: decimal;
        padding-left: 15px;
    }

        .ReportListWrapper ol li {
            padding-bottom: 8px;
        }

.ReportWrapper {
    float: left;
    width: 1500px;
    margin-top: 10px;
}

/* KEY FIGURES */
.OwnKeyfiguresTable {
    width: 640px;
    border: 1px solid #ddd;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .OwnKeyfiguresTable th {
        padding: 5px;
        border: 1px solid #232323;
        background: #232323;
        color: #c1af7a;
    }

        .OwnKeyfiguresTable th:nth-child(1) {
            text-align: left;
            width: 40px;
        }

    .OwnKeyfiguresTable td {
        padding: 5px;
        border: 1px solid #ddd;
    }

        .OwnKeyfiguresTable td:nth-child(3) {
            text-align: right;
            width: 100px;
        }

.KeyfiguresTable {
    width: 640px;
    border: 1px solid #ddd;
    border-collapse: collapse;
}

    .KeyfiguresTable th {
        padding: 5px;
        border: 1px solid #232323;
        background: #232323;
        color: #c1af7a;
    }

        .KeyfiguresTable th:nth-child(1) {
            text-align: left;
        }

    .KeyfiguresTable td {
        padding: 5px;
        border: 1px solid #ddd;
    }

        .KeyfiguresTable td:nth-child(3) {
            text-align: right;
            width: 105px;
        }

        .KeyfiguresTable td:nth-child(4) {
            text-align: right;
            width: 105px;
        }

        .KeyfiguresTable td:nth-child(5) {
            text-align: right;
            width: 105px;
        }

        .KeyfiguresTable td:nth-child(6) {
            text-align: right;
            width: 105px;
        }

/* DASHBOARD */
.GridWrapper {
    float: left;
    width: 100%;
}

    .GridWrapper .GridCell {
        float: left;
        width: 225px;
        height: 200px;
        box-sizing: border-box;
        border: 1px solid red;
    }

.SingelValue {
    position: relative;
    float: left;
    width: 225px;
    height: 140px;
    border: 1px solid #232323;
    text-align: center;
    padding: 0px;
    border-radius: 2px;
    box-sizing: border-box;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    transition: background 200ms linear;
}

    .SingelValue:last-child {
        margin-right: 0;
    }

    .SingelValue.Link {
        cursor: pointer;
    }

        .SingelValue.Link:hover {
            background: #fafafa;
        }

    .SingelValue .Title {
        height: 40px;
        vertical-align: middle;
        display: table-cell;
        width: 225px;
        font-size: 1rem;
        font-weight: 700;
        padding-bottom: 0px;
        margin-bottom: 0px;
        color: #666;
        padding-top: 0px;
        text-transform: uppercase;
        background-color: #232323;
        color: #c1af7a;
    }

    .SingelValue .Number {
        float: left;
        height: 40px;
        margin-top: 35px;
        width: 225px;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .SingelValue .InfoText {
        position: absolute;
        bottom: 8px;
        font-size: 11px;
        left: 0;
        right: 0;
        text-align: center;
    }

.ChartWrapper {
    float: left;
    margin-right: 20px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

.SingelValueWrapper {
    float: left;
    width: 1205px;
}

.PageLinkWrapper {
    float: right;
    width: 570px;
    margin-bottom: 20px;
}

.GridFigures {
    float: left;
    width: 800px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    margin-right: 0px;
}

.GridViewStatusBar {
    font-weight: bold;
}

.GridFigures .GridViewHeader {
    background-color: #232323;
    color: #c1af7a;
    text-transform: uppercase;
    cursor: default;
}

    .GridFigures .GridViewHeader:last-child table tr td {
        text-align: right;
    }

    .GridFigures .GridViewHeader:nth-child(3) table tr td {
        text-align: right;
    }

    .GridFigures .GridViewHeader:nth-child(4) table tr td {
        text-align: right;
    }

.GridFigures .GridViewRow td:last-child {
    width: 35px;
}

.PageLink {
    float: left;
    border: 1px solid #333;
    box-sizing: border-box;
    padding: 17px;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 275px;
}

    .PageLink a {
        float: left;
        padding-top: 5px;
    }

    .PageLink:nth-child(2n) {
        margin-right: 0;
    }

.EditButton {
    text-decoration: none !important;
    color: #333 !important;
}

    .EditButton span {
        color: #333;
    }

        .EditButton span:hover {
            color: #ff8800;
        }

        .EditButton span:before {
            content: '\f08e' !important;
            font-family: FontAwesome;
            font-size: 16px;
            font-weight: normal;
            position: relative;
            top: 2px;
            left: 1px;
        }

.Blink {
    animation: blink-animation 1s infinite;
    -webkit-animation: blink-animation 1s infinite;
    /*background:#c1af7a;
  transition:background-color 1s;*/
}

@keyframes blink-animation {

    50.0% {
        background: #c1af7a;
    }
}

@-webkit-keyframes blink-animation {
    to {
        background: #c1af7a;
    }
}

/* ACCOUNTING */
.AccountingMenu {
}

    .AccountingMenu ul {
    }

        .AccountingMenu ul li {
            float: left;
            margin-bottom: 10px;
            clear: left;
        }

            .AccountingMenu ul li a, .AccountingMenu ul li span {
                float: left;
                padding-top: 6px;
            }

.PDFIcon:before {
    float: left;
    content: '\f1c1';
    font-family: FontAwesome;
    padding-right: 10px;
    font-size: 24px;
}

.PayPalIcon:before {
    float: left;
    content: '\f1ed';
    font-family: FontAwesome;
    padding-right: 12px;
    font-size: 24px;
}

.PayCardIcon:before {
    float: left;
    content: '\f09d ';
    font-family: FontAwesome;
    padding-right: 7px;
    font-size: 24px;
}

.WebIcon:before {
    float: left;
    content: '\f07a';
    font-family: FontAwesome;
    padding-right: 10px;
    font-size: 24px;
}

.BookIcon:before {
    float: left;
    content: '\f02d';
    font-family: FontAwesome;
    padding-right: 10px;
    font-size: 24px;
}


.excelIcon:before {
    float: left;
    content: '\f1c3';
    font-family: FontAwesome;
    padding-right: 10px;
    font-size: 24px;
}

/* GRID */
.ReportGrid .GridViewRow:hover {
    background-color: #fafafa;
}

/* UPLOAD FILE */
.FileUploadWrapper {
    padding-top: 10px;
    float: left;
    margin-bottom: 20px;
}

.FileUpload {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
/*.FileUploadButton, .Button {  float:left; margin-right:20px; margin-top:0px; }*/
.FileUploadButton {
    float: left;
    margin-right: 20px;
    margin-top: 0px;
}

    .FileUploadButton:before {
        content: '\f0ff';
        font-family: icofont;
        margin-right: 5px;
    }

.FileSelected {
    background-color: #666;
}

    .FileSelected:hover {
        background-color: #666;
    }




.HeleGrid, .DetaljGrid {
    display: none;
}

/* FILEUPLOAD LOADER */
.FileUploadLoader {
    position: fixed;
    background-color: rgba(255,255,255,0.7);
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 99;
}

    .FileUploadLoader.Hidden {
        display: none;
    }

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.FileUploadLoader .Loader:before {
    min-width: 24px;
    min-height: 24px;
}

.FileUploadLoader .Loader:before {
    content: 'Loading...';
    position: absolute;
    top: 300px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -10px;
    margin-left: -10px;
}

.FileUploadLoader .Loader:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .3);
    border-top-color: rgba(0, 0, 0, .6);
    animation: spinner .6s linear infinite;
    -webkit-animation: spinner .6s linear infinite;
}

/* SELECT USER */
.txtSearch {
    margin-right: 10px;
}

.Table {
    float: left;
    width: 100%;
}

    .Table .header th {
        background-color: #232323;
        border: 1px solid #ccc;
        padding: 5px;
        padding-top: 10px;
        padding-bottom: 10px;
        color: #c1af7a;
        text-align: left;
        font-weight: normal;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .Table .header th:last-child {
            text-align: center;
        }

    .Table tr.Selected td {
        background: #ddd;
    }

    .Table tr td {
        padding: 5px;
        border: 1px solid #ccc;
    }

        .Table tr td .Button {
            float: none;
            margin-top: 0px;
            margin-right: 0px;
        }

/* MESSAGES / NOTIFICATIONS */
.NotificationsWrapper {
    float: left;
    width: 37%;
    margin-right: 3%;
    margin-top: 20px;
}

.NotificationContentWrapper {
    float: left;
    width: 60%;
    margin-top: 20px;
}

.NotificationWrapper {
    width: 100%;
}

.NotificationCreateWrapper {
    width: 100%;
}

    .NotificationCreateWrapper .NotificationContent2 .TextWrapper {
        padding-bottom: 0;
    }

    .NotificationCreateWrapper .NotificationContent2 input {
        margin-bottom: 0;
    }

    .NotificationCreateWrapper .NotificationContent2 .FileUploadWrapper {
        margin-bottom: 10px;
    }

.NotificationContent {
}

    .NotificationContent .aAttachment {
        line-height: 24px;
        float: left;
        margin-top: 7px;
    }

.NotificationsWrapper .Table th {
    padding: 5px;
    border: 1px solid #232323;
    background: #232323;
    color: #c1af7a;
}

    .NotificationsWrapper .Table th:nth-child(1) {
        text-align: left;
    }

    .NotificationsWrapper .Table th:nth-child(2) {
        text-align: left;
    }

    .NotificationsWrapper .Table th:nth-child(3) {
        min-width: 60px;
    }

.NotificationsWrapper .Table tbody tr:hover {
    background-color: #fafafa;
}

.NotificationsWrapper .Table tbody td {
    padding-bottom: 10px;
}

.NotificationsWrapper .Table td:nth-child(3) {
    text-align: center;
    padding-top: 10px;
}

    .NotificationsWrapper .Table td:nth-child(3) a {
        text-decoration: none;
    }
/*.NotificationContent.Form label:before{content:''; display:table; table-layout: fixed; width:100%;}
.NotificationContent.Form label {float:none; display:table-cell;}
.NotificationContent.Form .TextWrapper:after {content:''; display:table; }
.NotificationContent.Form .TextWrapper {float:none; display:table-cell;}*/

/* INVOICE */
.InvoiceGrid {
    width: 100%;
    margin-top: 20px;
}

    .InvoiceGrid .dxgvGroupRow {
        display: none;
    }

    .InvoiceGrid .GridViewHeader {
        background-color: #232323;
        color: #c1af7a;
        text-transform: uppercase;
        padding: 2px;
        padding-left: 5px;
        cursor: default;
    }

    .InvoiceGrid .dxgvHeader table {
        color: #c1af7a;
    }

    .InvoiceGrid .dxgvIndentCell {
        display: none;
    }

    .InvoiceGrid .dxgvGroupFooter .dxgvIndentCell.dxgvDIC {
        display: inline;
    }

    .InvoiceGrid .dxgvFooter .dxgvDIC.dxgvIndentCell.dxgv {
        display: inline;
    }

    .InvoiceGrid .GridViewHeader:nth-child(1) {
        display: none;
    }

    .InvoiceGrid .GridViewHeader:nth-child(3) {
        width: 130px;
    }

    .InvoiceGrid .GridViewHeader:nth-child(5) {
        text-align: right;
    }

    .InvoiceGrid .GridViewHeader:nth-child(6) {
        text-align: right;
    }

    .InvoiceGrid .GridViewHeader:nth-child(7) {
        text-align: right;
    }

    .InvoiceGrid .GridViewHeader:nth-child(8) {
        text-align: right;
        width: 165px;
    }

    .InvoiceGrid .GridViewRow td:nth-child(6) {
        text-align: right;
    }

    .InvoiceGrid .GridViewRow td:nth-child(7) {
        text-align: right;
    }

.GridInvoiceDetailsWrapper {
    float: left;
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
}

.InvoiceGridDetails {
    float: left;
    width: 100%;
}

    .InvoiceGridDetails .GridViewHeader:nth-child(1) {
        display: block;
    }

    .InvoiceGridDetails .GridViewHeader.Price {
        text-align: right;
    }

.MvaWrapper {
    float: right;
}

    .MvaWrapper span {
        float: left;
        width: 100px;
        text-align: right;
    }

        .MvaWrapper span:nth-child(4) {
            margin-bottom: 5px;
        }

        .MvaWrapper span:nth-child(4n+1) {
            clear: left;
        }

.InvoiceGrid .InvoiceTotal {
    font-size: 16px;
}

.InvoiceGrid .dxgvFooter td {
    vertical-align: top;
}

.GridInvoiceSummary {
    float: left;
    width: 100%;
    padding: 10px;
    background: red;
}

/* SYSTEM */
.SystemLinks {
    float: left;
    width: 31%;
    margin-right: 3.5%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    min-height: 250px;
    background: #fafafa;
}

    .SystemLinks:last-child {
        margin-right: 0;
    }

    .SystemLinks ul {
    }

        .SystemLinks ul li {
            padding-top: 5px;
            padding-bottom: 5px;
        }

.AddHumanFondWrapper {
    background: #eee;
    border: 1px solid #ddd;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
}

.btnExportToExcel {
    margin-top: 0px;
}

.GridTableWrapper {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    margin-top: 20px;
}

.LoyaltyGrid .GridViewHeader {
    background-color: #232323;
    color: #c1af7a;
    text-transform: uppercase;
    padding: 2px;
    padding-left: 5px;
}

    .LoyaltyGrid .GridViewHeader table tr td {
        white-space: normal;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(4) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(5) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(6) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(7) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(8) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(9) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(10) {
        text-align: right;
    }

    .LoyaltyGrid .GridViewHeader:nth-child(11) {
        text-align: right;
    }

.LoyaltyGrid .dxgvArm td:nth-child(1) {
    width: 80px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(2) {
    width: 320px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(3) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(4) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(5) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(6) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(7) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(8) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(9) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(10) {
    width: 120px !important;
}

.LoyaltyGrid .dxgvArm td:nth-child(13) {
    width: 220px !important;
}

/*.LoyaltyGrid .dxgvArm td:nth-child(1) { width: 65px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(2) { width: 200px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(3) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(4) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(5) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(6) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(7) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(8) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(9) { width: 120px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(10) { width: 90px !important;} 
.LoyaltyGrid .dxgvArm td:nth-child(12) { width: 200px !important;}*/


.LoyaltyGrid .GridViewRow td:nth-child(10) {
    text-align: right;
}

.KeyFiguresGrid {
}

    .KeyFiguresGrid .GridViewHeader table tr td {
        white-space: normal;
    }

    .KeyFiguresGrid .GridViewHeader {
        background-color: #232323;
        color: #c1af7a;
        text-transform: uppercase;
        padding: 2px;
        padding-left: 5px;
    }

    .KeyFiguresGrid .dxgvArm td {
        width: 140px !important;
    }

        .KeyFiguresGrid .dxgvArm td:nth-child(1) {
            width: 60px !important;
        }

        .KeyFiguresGrid .dxgvArm td:nth-child(3) {
            width: 200px !important;
        }

        .KeyFiguresGrid .dxgvArm td:last-child {
            width: 0px !important;
        }

    .KeyFiguresGrid .GridViewHeader:nth-child(5) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(6) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(7) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(11) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(14) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(15) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(16) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(17) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(18) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(19) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(20) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(21) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(22) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(23) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewHeader:nth-child(24) {
        text-align: right;
    }

    .KeyFiguresGrid .GridViewRow td:nth-child(1) {
        text-align: left;
    }

/* POPUP HELPER TEXT */
.Helper:after {
    content: '\f059';
    font-family: FontAwesome;
    font-size: 24px;
    color: #8a8a8a;
    cursor: pointer;
}

.Helper:hover:after {
    color: #fff;
}

span.Helper {
    position: relative;
    font-size: 24px;
    color: #8a8a8a;
    cursor: pointer;
    float: right;
    margin-right: 15px;
    margin-top: 12px;
}

.HelpPopupWrapper {
    position: absolute;
    margin-top: 20px;
    opacity: 0;
    padding: 0px;
    background-color: #fff;
    border: 1px solid #ddd;
    max-width: 400px;
    min-width: 600px;
    color: #444;
    z-index: 1;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    padding-right: 0px;
    padding-top: 0px;
    transition: opacity linear 200ms;
}

span.Helper.Active .HelpPopupWrapper {
    opacity: 1;
}

.HelpPopupWrapper.Left {
    left: 0;
}

.HelpPopupWrapper.Right {
    right: 0;
}

.Right {
    text-align: right;
}

.HelpPopupContent {
    /*max-height: 250px;*/
    overflow: auto;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1.3rem;
}

.HelpPopupBottom {
    padding-right: 10px;
    background: #fafafa;
    float: left;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 10px;
    padding-top: 10px;
}

    .HelpPopupBottom a {
        font-size: 1rem;
    }

    .HelpPopupBottom .Button {
        float: right;
        margin-left: 10px;
        color: #fff;
    }

/* FOOTER */
.InnerFooterWrapper span {
    display: inline;
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
}

/* MISC */
.btnAddNewKeyFigures {
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
}

.VismaProcessStatus {
    float: left;
    width: 300px;
    clear: right;
    padding-bottom: 10px;
}

    .VismaProcessStatus span {
        clear: right;
        float: left;
        padding-top: 5px;
    }

    .VismaProcessStatus progress {
        float: left;
        width: 300px;
    }

.exportGridViewMenu input {
    margin-left: 5px;
}

.box {
    float: left;
    border: 1px solid #333;
    border-radius: 10px;
    box-sizing: content-box;
    padding: 17px;
    padding-left: 70px;
    margin-right: 20px;
    margin-bottom: 10px;
    background-image: url('/images/alert-icon-23.png');
    background-position-x: 10px;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: 50px;
    clear: both;
}

    .box ul {
        /*list-style-type: decimal;*/
    }

table.markedsforingsrapport td {
    font: 12px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
    overflow: hidden;
    border-bottom: 1px Solid #c0c0c0;
    border-right: 1px Solid #c0c0c0;
    border-top-width: 0;
    border-left-width: 0;
    padding: 3px 6px 4px;
}

tr.markedsforingsrapport td {
    border-bottom: 1px Solid #c0c0c0;
}

table.infotable td {
    font: 12px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
    overflow: hidden;
    border: 1px Solid #c0c0c0;
    padding: 3px 6px 4px;
}

table.infotable tr th {
    border: 1px Solid #c0c0c0;
    padding: 3px 6px 4px;
}


tr.markedsforingsrapportheader td, tr.markedsforingsrapportheader td a {
    color: #c1af7a;
    background: black;
    text-transform: uppercase;
}

td.DriftresultatOn, td.DekningsbidragOn {
    background-color: lightyellow;
    color: black;
}

td.DriftresultatMainOn, td.DekningsbidragMainOn {
    background-color: gold;
}

.exportGridViewMenu {
    float: left;
    padding-right: 10px;
}


.UploadWrapper {
    display: flex;
    gap: 10px;
    flex-direction: column;
    column-count: 2;
}

    .UploadWrapper .FileUploadWrapper {
        padding-top: 0px;
        margin-bottom: 0px;
    }
.UploadOrderFile{
    display:flex;
    flex-direction:column;
}
.UploadOrderFile > p {
    
}

.UploadWrapper > * {
    border: 1px solid #E59025;
    padding: 5px;
}

.UploadWrapper . > * {
    border: 1px solid #E59025;
    padding: 5px;
}

.FileUploadContainer {
    display: flex;
    gap: 50px;
    justify-content: space-between
}

.InfoWrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.GridActionWrapper {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
}

    .GridActionWrapper > * {
    }

.InnerButtonMessageWrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.orderHeadOptions, .orderLineOptions {
    display: flex;
}

.orderHeadOptions {
}

.ButtonWrapper {
}

.UploadWrapper .orderhead {
    border:none;
}

.UploadWrapper .orderline {
    border: none;
}
}

.UserInput td {
    padding-right: 5px;
}

.UserInput span {
    font-size: 10px;
}

input.UserInput {
    font-size: 10px;
}

.UserInput input[type=submit] {
    line-height: 20px;
    height: 20px;
}

.newUserlink {
    margin-bottom: 10px;
    border: 1px solid #aaa;
    padding: 5px;
}

    .newUserlink legend {
        font-size: 12px;
    }

.UserInfo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 400px;
    font-size: 14px;
    gap: 5px;
    border: 1px solid #c1af7a;
    padding: 10px;
}

.settpassword p {
    font-size: 10px;
    margin-bottom: 0px;
}

.settpassword label {
    font-size: 10px;
    padding-top: 5px;
}
body {
    height: 100%;
}

.anonym {
    display: grid;
    position: relative;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
}

    /* .anonym .OuterHeaderWrapper {
        grid-area: logo;
    }   
    .anonym .OuterMenuWrapper{
        grid-area: menu;
    }*/
    .anonym .OuterContentWrapper {
        height: 100%;
    }
/*                                
    .anonym .OuterFooterWrapper {
        grid-area: bottom;
    }
*/
