/* Box sizing rules */

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Set core root defaults */

html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */

a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */

img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* End reset*/

:root {
  --elment-bg-color: #0072c6;
  --elment-bg-color-hover: #3488c5;
}
html,
body {
  margin: 0;
  padding: 0;
  list-style: none;
  font: 14px Segoe UI, Helvetica, Sans-Serif;
  color: #261c02;
}
body {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.header-logo,
.header-menu {
  background-color: #0072c6;
  color: #fff;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo a.header-logout {
  color: #fff;
  padding: 10px 20px;
}
.header-logo img {
  margin-left: 20px;
  max-height: 77px;
  padding: 10px 0;
}
.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 40px;
  flex-grow: 1;
}
.header-menu ul {
  display: flex;
}
/* menu */

.menu li {
  list-style: none outside none;
  color: #FFFFFF;
  font-size: 13px;
  display: flex;
  align-items: center;
  height: 35px;
  padding-right: 12px;
  background-color: #73a7dd;
  border-right: 1px solid #92b3dd;
}
.menu li:last-child {
  border-right: none;
}
.menu li span {
  padding-left: 10px;
}
.menu li:link,
.menu li:visited,
.menu li:hover,
.menu li:active,
.menu li:focus {
  cursor: pointer;
  background-color: #3488c5;
}
.selector {
  position: absolute;
  top: 77px;
  box-shadow: 5px 5px 5px #00000026;
  z-index: 10;
}
.selector .item {
  background-color: #0072c6;
  width: 240px;
  padding: 3px;
  border-top: 1px solid #ffffff4d;
}
.selector .item:hover {
  background-color: #3488c5;
  cursor: pointer;
}
.selector .item img {
  float: left;
  width: 64px;
  height: 64px;
}
.selector .item span {
  display: block;
  color: #fff;
  padding-left: 70px;
}
.selector .item span.description {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 3px;
}
.search {
  margin-right: 20px;
  align-self: center;
}
.search input {
  padding: 2px 5px;
  width: 100%;
}
footer {
  margin-top: auto;
  background-color: var(--elment-bg-color);
  display: flex;
  height: 22px;
  color: #fff;
  justify-content: center;
  align-items: center;
}
main {
  padding: 0 20px;
}
textarea {
  font: 14px Segoe UI, Helvetica, Sans-Serif;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2 {
  font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
  margin-top: 0px;
  margin-bottom: 10px;
}
h1.page-header {
  border-bottom: 1px solid #eaeaea5c;
  padding-bottom: 10px;
}
h1 > img {
  display: inline;
}
h2 {
  font-size: medium;
}
img {
  border: 0;
}
#footer {
  color: #FFFFFF;
  background: #42453D;
  padding: 6px 0 5px 0;
  margin-top: 2em;
  font-weight: bold;
  font-size: 0.8em;
}
#footer p {
  text-align: center;
  margin: 0;
  padding: 0;
}
input,
textarea,
select {
  text-align: left;
  border: 1px solid #DDDDDD;
}
input:focus,
textarea:focus {
  border: 1px solid #CBEDFF;
}
/* buttons */

input[type="button"],
input[type="submit"],
.button,
.smallbutton {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #EEEEEE;
  border: solid 1px #DDDDDD;
  text-align: center;
  color: #444444;
  font-weight: normal;
}
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover,
.smallbutton:hover {
  background-color: #DADADA;
  border-color: #BBBBBB;
  text-decoration: none;
}
.button,
.smallbutton,
.smallbuttonAdd,
.smallbuttonRemove {
  height: 30px;
  font-family: Verdana, sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.smallbutton {
  height: 21px;
  font-size: smaller;
  color: #444444;
  padding: 0 7px;
}
a.add,
a.remove {
  padding: 3px 5px 3px 21px;
  background: #EEEEEE url('/Assets/Images/page_white_add.png') no-repeat left;
  background-position: 3px;
}
a.remove {
  padding: 3px 5px 3px 19px;
  background: #EEEEEE url('/Assets/Images/delete.png') no-repeat left;
}
input.Edit,
textarea.Edit {
  overflow: hidden;
  width: 190px;
}
th {
  text-align: left;
}
.red {
  color: Red;
}
.green {
  color: Green;
}
.blue {
  color: #99CCFF;
}
.center {
  text-align: center;
}
.header {
  font-weight: bold;
  background-color: #EEEEEE;
}
/* list table */

table.list {
  border-collapse: collapse;
  border: 1px solid #d0d0d0;
}
#mainholder table.list {
  border: 0px;
}
table.list > tbody > tr > td,
table.list > tbody > tr > th {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  vertical-align: top;
}
table.list > tbody > tr > td > a {
  color: #000000;
  font-weight: normal;
}
table.list > tbody > tr.odd {
  background-color: #e0e0e0;
}
table.list > tbody > tr.even {
  background-color: #ffffff;
}
body.width800 table.list > tbody > tr > td {
  padding-left: 2px;
  padding-right: 2px;
}
/* Lister */

ul.list {
  margin-left: 0;
  padding-left: 0;
}
ul.list li {
  margin-left: 0;
  padding: 3px 15px;
  display: inline;
}
#alphabeth span {
  margin-right: 7px;
  cursor: pointer;
  text-decoration: underline;
  font-size: small;
}
img.ui-datepicker-trigger {
  vertical-align: middle;
  padding-left: 2px;
  cursor: pointer;
  display: inline;
}
.ui-datepicker .ui-datepicker-title select {
  font-weight: normal;
}
input.datepicker {
  width: 85px;
}
.list-filter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 20px;
  margin-top: 10px;
  border: 1px solid #AAAAAA;
  background-color: #F9F9F9;
}
.list-filter .container {
  border-right: 1px solid #DDDDDD;
  padding: 10px 20px;
}
.list-filter .container > span:first-child {
  display: block;
  padding-bottom: 5px;
  font-weight: bold;
}
.list-filter .container textarea {
  height: 65px;
}
.list-filter .container span.longtext {
  font-size: 0.89em;
  color: #444444;
}
.flag_error,
.flag_warning,
.flag_ok {
  display: block;
  background-image: url(/Assets/Images/bullet_delete.png);
  background-position: 0px 2px;
  background-repeat: no-repeat;
  padding-left: 18px;
}
.flag_warning {
  background-image: url(/Assets/Images/bullet_error.png);
}
.flag_ok {
  background-image: url(/Assets/Images/tick-small.png);
}
/* fixes margin for button keypads */

button.keypad-trigger {
  margin-left: 2px;
}
/* breadcrumb */

.breadcrumb {
  font-family: sans-serif;
  font-size: 0.8em;
  font-weight: bold;
  color: #000000;
  display: block;
}
.breadcrumb a:hover,
.breadcrumb a:link,
.breadcrumb a:visited {
  font-weight: normal;
  color: #000000;
}
/*end*/

.block {
  display: block;
}
.arrow {
  background: url('/Assets/Images/arrow_white.png') no-repeat right center;
  padding-right: 12px;
}
.arrow_black {
  background: url('/Assets/Images/arrow_black.png') no-repeat right center;
  padding-right: 12px;
}
input.default {
  color: #666666;
  font-style: italic;
}
/* language selector */

.languages {
  float: left;
}
.languages > span {
  float: left;
  margin-top: 20px;
  padding-left: 10px;
  padding-top: 4px;
  padding-bottom: 3px;
}
.languages > img {
  margin-top: 20px;
  padding-left: 5px;
  padding-top: 8px;
  float: left;
}
.languages > ul {
  float: left;
  top: 20px;
  border-radius: 0px 0px 5px 5px;
  padding-bottom: 3px;
  position: absolute;
  z-index: 2;
  padding-top: 3px;
  display: none;
}
.languages li:hover {
  color: White;
  cursor: pointer;
  background-color: #333333;
}
.languages li:first-child:hover {
  background-color: inherit;
  cursor: inherit;
}
.languages li {
  padding-left: 3px;
  padding-right: 3px;
  margin-left: 2px;
  margin-right: 2px;
  width: 100px;
}
.languages ul img {
  padding-top: 5px;
}
.languages ul span {
  padding-left: 6px;
  color: White;
}
/* top toolbar */

.toptoolbar {
  float: right;
  margin-right: 17px;
  border-radius: 10px;
  height: 48px;
  top: -20px;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  color: White;
}
.toptoolbar > span,
.toptoolbar > a {
  margin-top: 21px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  float: left;
  color: White;
}
body.width800 .noshowsmall {
  display: none;
}
input.customer {
  width: 250px;
}
#legend span {
  float: left;
}
#legend div {
  float: left;
  text-align: center;
  min-width: 100px;
  margin-left: 15px;
}
h1 a,
h1 span {
  color: #666666;
  font-size: 0.6em;
}
/* growl */

div.jGrowl {
  margin-top: 105px;
}
div.jGrowl div.jGrowl-notification {
  background-color: #FFFF87;
  opacity: 0.75;
  color: #000000;
  border-color: #BBBBBB;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 5px 5px 5px #ccc;
  -webkit-box-shadow: 5px 5px 5px #ccc;
  box-shadow: 5px 5px 5px #ccc;
}
div.jGrowl div.jGrowl-notification:hover {
  opacity: 1;
}
.ui-autocomplete a {
  font-size: 0.8em;
  font-weight: normal;
}
/* error */

.errorResponse {
  color: Red;
}
/* help tekst */

.help {
  background-position: 0px 15px;
  /*position: absolute;*/
  display: inline-block;
  padding-left: 8px;
  background-repeat: no-repeat;
  vertical-align: top;
  margin-top: 3px;
}
.help span {
  background-color: #eeeeee;
  display: block;
  width: 275px;
  color: #666666;
  font-size: 0.75em;
  border: 1px solid #dddddd;
  padding: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
}
/* notification bar */

.notificationBar {
  border: 0px solid #c0b080;
  border-width: 2px 0px 2px 0px;
  background: #fff5aa;
  padding-top: 3px;
  padding-bottom: 3px;
}
.notificationBar span {
  padding-left: 5px;
  padding-right: 5px;
}
.notificationBar img {
  vertical-align: middle;
  float: right;
  margin-right: 5px;
  cursor: pointer;
}
/* generics */

.right {
  text-align: right;
}
/* input */

table.input {
  border-collapse: collapse;
  margin-bottom: 20px;
}
table.input td:first-child {
  padding-right: 10px;
  text-align: right;
}
table.input select {
  font-size: 0.9em;
}
img.imgsub {
  vertical-align: sub;
}
/* transportIndicator */

.transportIndicator span {
  display: inline-block;
  width: 16px;
  margin-left: 2px;
}
.transportIndicator span:first-child {
  margin-left: 0px;
}
.transportIndicator {
  white-space: nowrap;
}
.head img {
  max-height: 65px;
}
/* 220822 */

header {
  display: flex;
  height: 77px;
  width: 100%;
  background-color: #0072c6;
  margin-bottom: 20px;
}
header .logout {
  display: flex;
  padding-right: 20px;
  align-self: center;
}
header .logout a {
  color: #fff;
}
table.list-orders tr td:nth-child(2) a {
  display: flex;
  align-content: center;
}
table.list-orders tr td:nth-child(2) a img {
  margin-left: 10px;
}
footer {
  margin-top: 20px;
}
main {
  min-height: calc(100vh - 137px);
}
.ui-widget {
  font-size: 16px;
}
