@charset "UTF-8";
/*------------------------------------*\
    #BASE
\*------------------------------------*/
/* Fonts */
/* roboto-light */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto-Light"), url("/fonts/Roboto-Light.ttf") format("truetype");
}
/* roboto-regular */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto-Regular"), url("/fonts/Roboto-Regular.ttf") format("truetype");
}
/* roboto-medium */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto-Medium"), url("/fonts/Roboto-Medium.ttf") format("truetype");
}
/* Global */
/* ---------- Base ---------- */
html {
  box-sizing: border-box;
  height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Roboto";
  font-weight: 400;
  color: #2f344a;
}

h1, h2, h3, h4, h5, h6, strong, th {
  font-weight: 500;
}

h1 {
  font-size: 24px;
}

/* ---------- Typography & Links ---------- */
a {
  color: #2f344a;
}

.uppercase {
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
button {
  padding: 0;
  background: none;
  border: none;
  font-family: "Roboto";
  font-weight: 500;
  color: #2f344a;
  cursor: pointer;
  box-sizing: inherit;
  font-size: inherit;
  line-height: inherit;
}

button > img,
button > svg,
button > span,
a > img,
a > span {
  pointer-events: none;
}

/* ---------- Media ---------- */
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

svg {
  width: 100%;
  height: 100%;
  fill: #2f344a;
}

/* ---------- Inputs & Forms ---------- */
.input-wrapper {
  max-width: 320px;
  margin-right: 10px;
}

.input-wrapper > input {
  width: 100%;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  accent-color: #2f344a;
}

select {
  font-family: "Roboto";
  font-size: 10px;
  line-height: 9px;
  color: #2f344a;
  border: 1px solid rgba(47, 52, 74, 0.4);
  border-radius: 5px;
  outline: none;
}
select:hover, select:focus {
  border-color: #2f344a;
}
select option {
  background-color: #fff;
  color: #2f344a;
}

textarea::-moz-placeholder {
  font-family: "Roboto";
  color: #2f344a;
}

textarea,
textarea::placeholder {
  font-family: "Roboto";
  color: #2f344a;
}

/* ---------- Utilities ---------- */
.disabled {
  pointer-events: none;
  opacity: 0.2;
  cursor: not-allowed;
}

.br::after {
  content: "";
  display: block;
  clear: both;
}

/* ---------- Layout ---------- */
main {
  margin-top: 60px;
}
main > div {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  padding: 10px;
}
@media (min-width: 1024px) {
  main > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1400px) {
  main > div {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.page-hl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.page-hl > span:first-of-type {
  padding-right: 8px;
}

/* ---------- Misc ---------- */
pre {
  white-space: pre-wrap;
}

*:active,
*:focus {
  outline: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: #2f344a;
}

::-webkit-scrollbar-track {
  background: #fff;
}

/* ---------- Responsive ---------- */
@media (min-width: 1300px) {
  select {
    font-size: 13px;
  }
  .select-wrap {
    max-width: 125px;
  }
}
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/* Header */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  border-bottom: 1px solid rgba(47, 52, 74, 0.2);
  background: #fff;
  z-index: 2;
}

header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
}
@media (min-width: 1024px) {
  header > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1400px) {
  header > div {
    padding-left: 40px;
    padding-right: 40px;
  }
}

header > div > div:first-of-type {
  display: flex;
}

.logo {
  display: flex;
  width: 45px;
}

.nav > ul {
  display: flex;
  list-style: none;
}

.nav > ul > li {
  margin-left: 15px;
}

.menu-btn-wrap {
  order: 4;
}

.menu-basket-wrap {
  order: 3;
}

.nav > ul > li select {
  height: 100%;
}

.help-btn {
  display: none;
  align-items: center;
  justify-content: center;
  height: 32px;
  background: #fff;
}

.help-btn > svg {
  width: 20px;
  height: 20px;
}

.notification-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 10px;
  height: 32px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  color: #2f344a;
  transition: 0.3s;
}

.notification-btn:hover {
  background: #606894;
  color: #fff;
}

.notification-btn > svg {
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.notification-btn:hover > svg {
  fill: #fff;
}

.notification-btn > span {
  margin-right: 5px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 10px;
  height: 32px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  color: #2f344a;
  transition: 0.3s;
}

.menu-btn:hover {
  background: #606894;
  color: #fff;
}

.menu-btn > span {
  width: 18px;
  height: 2px;
  margin-bottom: 3px;
  background: #2f344a;
  transition: 0.3s;
}

.menu-btn:hover > span {
  background: #fff;
}

.menu-btn > span:last-of-type {
  margin-bottom: 0;
}

/* Info modal styles */
.keybindings-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.keybindings-list {
  list-style: none;
  padding: 0;
}

.keybindings-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f9f9f9;
  margin: 5px 0;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.keybindings-list i {
  color: #555;
}

.keys {
  font-weight: bold;
  background: #eee;
  padding: 5px 10px;
  border-radius: 5px;
}

.description {
  flex-grow: 1;
  text-align: left;
}

/* Notifications styles */
.notifications-overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(47, 52, 74, 0.5);
}

.notifications-content {
  position: fixed;
  z-index: 3;
  top: 0;
  right: -290px;
  overflow: hidden;
  width: 290px;
  height: 100%;
  min-height: 200px;
  background: #fff;
}

.notifications-hl {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 80px;
  padding-left: 20px;
  background: #fff;
  font-weight: 500;
  font-size: 20px;
}

.notifications-content-quantity {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  color: #2f344a;
  border: 1px solid #2f344a;
  border-radius: 5px;
}

.notifications-item-wrap {
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 15px;
  overflow-y: scroll;
}

.notification > div:last-of-type {
  margin-top: -3px;
}

/* Nofitications animation */
#notifications #ntfctnsOvrly {
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

#notifications.anim #ntfctnsOvrly {
  pointer-events: auto;
  opacity: 1;
}

#notifications #ntfctnsCntnt {
  transition: transform 0.3s ease-in-out;
  transform: translateX(0);
}

#notifications.anim #ntfctnsCntnt {
  transform: translateX(-290px);
}

.notification {
  position: relative;
  background: #fff;
  border: 1px solid #dddddd;
  border-left: 5px solid #2f344a;
  border-radius: 5px;
  padding: 20px 15px;
  box-shadow: 0px 4px 6px rgba(47, 52, 74, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-bottom: 20px;
}

.notification-close {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
}

.notification-close > svg {
  transition: 0.3s;
  width: 20px;
  height: 20px;
}

.notification-close:hover > svg {
  fill: #2c5714;
}

.notification-title {
  font-weight: 500;
}

.notification-msg {
  font-size: 14px;
  margin: 10px 0;
  color: #555;
}

.notification-link {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.notification-link:hover {
  color: #2c5714;
}

/* Basket styles */
.basket-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 32px;
  padding: 0 10px;
  background: #2f344a;
  color: #fff;
}

.basket-btn > svg {
  width: 18px;
  height: 18px;
}

.basket-btn > svg {
  fill: #fff;
}

.basket-btn > span {
  margin-right: 5px;
}

.basket-overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(47, 52, 74, 0.5);
}

.basket-content {
  position: fixed;
  z-index: 3;
  top: 0;
  right: -290px;
  overflow: hidden;
  width: 290px;
  height: 100%;
  min-height: 200px;
  background: #fff;
}

.basket-hl {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 80px;
  padding-left: 10px;
  background: #fff;
  font-weight: 500;
  font-size: 20px;
}

.basket-content-quantity {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  color: #2f344a;
  border: 1px solid #2f344a;
  border-radius: 5px;
}

.tab-menu {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6px;
       column-gap: 6px;
  row-gap: 6px;
  margin-top: 8px;
}

.basket-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 116px;
  color: rgba(47, 52, 74, 0.4);
  padding: 6px 12px;
  flex-shrink: 0;
  font-size: 12px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background: #f7f7f7;
  transition: 0.3s;
}

.basket-tab select {
  color: rgba(47, 52, 74, 0.4);
  border: 1px solid #dddddd;
  cursor: pointer;
}

.basket-tab.active,
.basket-tab.active select {
  background: #2f344a;
  color: #fff;
}

.basket-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.basket-controls > div {
  display: flex;
  align-items: center;
}

.basket-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.change-date-order {
  margin-right: 10px;
}

.delete-order,
.change-date-order {
  display: flex;
  align-items: center;
}

.delete-order > svg {
  width: 25px;
  height: 25px;
}

.change-date-order > svg {
  width: 23px;
  height: 23px;
  margin-left: 3px;
}

.basket-item-wrap {
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 110px;
  left: 0;
  padding: 0 6px 0 10px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.basket-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 5px;
}

.basket-item > div:last-of-type {
  margin-top: -3px;
}

.basket-img-wrap {
  position: relative;
  max-width: 200px;
  margin-right: 15px;
}

.basket-img-wrap > img {
  height: 180px;
  width: 200px;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 3px;
  background: #f7f7f7;
  border-radius: 5px;
}

.basket-product-id,
.basket-product-price {
  display: inline;
  position: absolute;
  bottom: 6px;
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  background: #dddddd;
}

.basket-product-id {
  left: 6px;
}

.basket-product-price {
  right: 6px;
}

.basket-product-quantity {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.basket-product-quantity > div {
  display: flex;
  align-items: center;
  height: 25px;
  border: 1px solid rgba(47, 52, 74, 0.4);
  border-radius: 3px;
}

.basket-product-quantity > div > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 100%;
  transition: 0.3s;
}

.basket-product-quantity > div > button:hover {
  background: #dddddd;
}

.basket-product-quantity > div > button:first-of-type {
  border-right: 1px solid rgba(47, 52, 74, 0.4);
}

.basket-product-quantity > div > button:last-of-type {
  border-left: 1px solid rgba(47, 52, 74, 0.4);
}

.basket-product-quantity > div > button > img {
  width: 20px;
  height: 20px;
}

.basket-quantity {
  width: 40px;
  height: 100%;
  border: 0;
  text-align: center;
}

.basket-product-quantity > button {
  margin-left: 15px;
  font-size: 12px;
}

.basket-item > div:last-of-type > p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.basket-checkout-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.basket-total-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  padding: 0 20px;
  background: #f7f7f7;
  font-weight: bold;
}

.basket-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  padding-top: 3px;
  text-decoration: none;
  color: #fff;
  background: #2f344a;
  transition: 0.3s;
  font-size: 20px;
}

.basket-checkout-btn:hover {
  background: #2c5714;
}

/* Basket animation */
#basket #bsktOvrly {
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

#basket.anim #bsktOvrly {
  pointer-events: auto;
  opacity: 1;
}

#basket #bsktCntnt {
  transition: transform 0.3s ease-in-out;
  transform: translateX(0);
}

#basket.anim #bsktCntnt {
  transform: translateX(-290px);
}

#basket.anim-fast #bsktOvrly,
#basket.anim-fast #bsktCntnt {
  transition: all 0s;
}

/* Basket item delete */
.basket-wrap .product.anim-delete {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s, transform 0.3s;
}

@keyframes basket-delete {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* Checkout collapse animation */
.collapse {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

/* Basket product items styles */
.basket-wrap .product {
  margin-bottom: 15px;
}

.basket-wrap .product-img-wrap {
  display: none;
}

.basket-wrap .has-focus-brand {
  position: relative;
  bottom: initial;
  left: initial;
  margin: 3px 0;
}

.basket-wrap .product-info {
  display: flex;
  justify-content: space-between;
  padding: 6px;
}

.basket-wrap .price {
  font-size: 12px;
  margin-bottom: 0;
}

.basket-wrap .price.line-through {
  font-size: 11px;
}

.basket-wrap .add-to-cart-wrapper {
  position: relative;
}

.basket-wrap .add-to-cart-wrapper > div > div {
  display: flex;
  flex-direction: column;
}

.basket-delete-btn {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.basket-delete-btn > svg {
  transition: 0.3s;
}

.basket-delete-btn:hover > svg {
  fill: #BC290D;
}

.basket-wrap .add-to-cart-wrapper input {
  max-width: 35px;
  padding-right: 5px;
  padding-left: 5px;
}

.basket-wrap .quantity-button {
  width: 18px;
  height: 18px;
}

.basket-wrap .quantity-up {
  border-top: 1px solid rgba(47, 52, 74, 0.4);
  border-right: 1px solid rgba(47, 52, 74, 0.4);
  border-left: 1px solid rgba(47, 52, 74, 0.4);
  border-top-right-radius: 3px;
}

.basket-wrap .quantity-down {
  border-right: 1px solid rgba(47, 52, 74, 0.4);
  border-bottom: 1px solid rgba(47, 52, 74, 0.4);
  border-left: 1px solid rgba(47, 52, 74, 0.4);
  border-top: 1px solid rgba(47, 52, 74, 0.4);
  border-bottom-right-radius: 3px;
}

.basket-wrap .basket-price {
  flex-direction: row;
  margin-top: 6px;
  font-size: 14px;
}

@media (min-width: 540px) {
  .basket-content {
    right: -500px;
    width: 500px;
  }
  #basket.anim #bsktCntnt {
    transform: translateX(-500px);
  }
  .tab-menu {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .basket-wrap .product {
    display: flex;
  }
  .basket-wrap .product-img-wrap {
    display: flex;
  }
  .basket-wrap .product-img-wrap > img {
    height: 100px;
    width: 100px;
  }
  .basket-wrap .add-to-cart {
    display: flex;
    align-items: center;
  }
  .basket-wrap .add-to-cart > div:first-of-type {
    margin-right: 0;
  }
  .basket-wrap .add-to-cart > div:last-of-type {
    width: 100px;
    flex-shrink: 0;
  }
  .basket-wrap .add-to-cart-wrapper {
    margin-top: 0;
  }
  .basket-wrap .product-info > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .basket-wrap .procure-info > a {
    margin-top: 2px;
  }
  .basket-wrap .product-text-brand {
    width: auto;
    margin-right: 10px;
  }
  .basket-wrap .product-icons .icons {
    margin-top: 0;
  }
  .basket-wrap .product-info {
    width: 100%;
  }
  .basket-wrap .has-focus-brand {
    position: absolute;
    bottom: 3px;
    left: 3px;
    margin: 0;
    width: 35px;
    height: 35px;
    padding: 2px;
    border: 1px solid rgba(47, 52, 74, 0.2);
    border-radius: 5px;
    background: #fff;
  }
  .basket-wrap .product-text-brand,
  .basket-wrap .product-name {
    font-size: 12px;
  }
  .basket-wrap .product-id,
  .basket-wrap .country-code,
  .basket-wrap .co2-icon-container,
  .basket-wrap .product-state-tag {
    padding: 3px 6px 4px 6px;
    margin-right: 3px;
    font-size: 11px;
    line-height: 11px;
  }
  /*.basket-wrap .select-wrap {
      width: 100%;
      max-width: 75px;
  }*/
  .basket-wrap select {
    font-size: 10px;
    line-height: 9px;
  }
}
/* Menu styles */
.menu-overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(47, 52, 74, 0.5);
}

.menu-content {
  position: fixed;
  z-index: 3;
  top: 0;
  right: -290px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  width: 290px;
  height: 100%;
  min-height: 200px;
  background: #fff;
}

.menu-spacer {
  display: flex;
  flex-shrink: 0;
  height: 20px;
  background: rgba(47, 52, 74, 0.1);
}

.menu-content ul > li a {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(47, 52, 74, 0.1);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.menu-content .menu-group ul > li a {
  font-size: 12px;
}

.menu-content ul > li a:hover {
  background: #606894;
  color: #fff;
}

.menu-content ul > li a:hover svg {
  fill: #fff;
}

.menu-content ul > li a svg,
.menu-content ul > li a span,
.mn-acc > span > svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.menu-content ul > li a span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-content ul > li a span::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #2f344a;
  transition: 0.3s;
}

.menu-content ul > li a:hover span::after {
  background: #fff;
}

.mn-acc-active {
  background: #f7f7f7;
}

.menu-group > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid rgba(47, 52, 74, 0.1);
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.menu-group > button:hover {
  background: #606894;
  color: #fff;
}

.mn-acc > span {
  display: flex;
  align-items: center;
}

.menu-group > button > svg {
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.menu-group > button:hover svg {
  fill: #fff;
}

.menu-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.menu-panel > ul > li {
  background: #f7f7f7;
}

.menu-departments-select {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-top: 1px solid rgba(47, 52, 74, 0.2);
}

.menu-departments-select > p {
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
}

.menu-departments-select > select {
  font-size: 14px;
  line-height: initial;
  color: #2f344a;
  border: 1px solid rgba(47, 52, 74, 0.4);
  border-radius: 3px;
}

/* Menu animation */
#mn #mnOvrly {
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

#mn.anim #mnOvrly {
  pointer-events: auto;
  opacity: 1;
}

#mn #mnCntnt {
  transition: transform 0.3s ease-in-out;
  transform: translateX(0);
}

#mn.anim #mnCntnt {
  transform: translateX(-290px);
}

.mn-logout {
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin-top: auto;
  font-weight: 500;
  padding: 10px 15px;
  background: #2f344a;
  color: #fff;
  transition: 0.3s;
}

.mn-logout:hover {
  background: #BC290D;
}

/* Filter styles */
.filter-menu-btn {
  position: fixed;
  right: 5px;
  bottom: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #C39923;
  color: #fff;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.filter-menu-btn > svg {
  width: 17px;
  height: 11px;
}

.filter-menu-btn > svg {
  fill: #fff;
}

.search-bar-container {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 400px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  font-size: 14px;
}

.search-bar-container > div {
  display: flex;
  height: 48px;
}

.search-bar {
  padding: 0 14px;
  border: 0;
  height: 100%;
  width: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.product-search-btn {
  display: flex;
  width: 60px;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(47, 52, 74, 0.2);
}

.search-bar-suggestions {
  display: none;
  position: absolute;
  background: white;
  top: 49px;
  left: 14px;
  list-style: none;
  width: calc(100% - 79px);
  box-shadow: 0px 3px 8px rgba(47, 52, 74, 0.2);
  border-right: 1px solid rgba(47, 52, 74, 0.2);
  border-bottom: 1px solid rgba(47, 52, 74, 0.2);
  border-left: 1px solid rgba(47, 52, 74, 0.2);
}

.search-bar-suggestions.anim {
  display: block;
}

.search-bar-suggestions > li {
  padding: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.search-bar-suggestions > li:hover {
  background: #dddddd;
}

.filter-group {
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  font-size: 14px;
}

.accordion {
  display: flex;
  align-items: center;
  background: #fff;
  color: #2f344a;
  cursor: pointer;
  padding: 12px;
  border: 0;
  border-top: 1px solid rgba(47, 52, 74, 0.2);
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.accordion > img {
  margin-right: 8px;
}

.filter-wrap > div:not(:first-of-type) {
  margin-top: 20px;
}

.filter-group > button:first-of-type {
  border-top: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.filter-group > button:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.filter-group ul {
  list-style: none;
  padding: 12px 0;
}

.active,
.accordion:hover {
  background: #dddddd;
}

.panel {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.filter-check-label {
  display: flex;
  align-items: center;
}

.filter-check-label,
.filter-check-input {
  cursor: pointer;
}

.filter-check-label > span {
  margin-top: -1px;
}

.active-filter-count {
  margin-left: 3px;
}

@media (min-width: 968px) {
  .filter-main {
    display: block;
    flex-shrink: 0;
    max-height: calc(100vh - 140px);
    position: sticky;
    top: 100px;
    z-index: 1;
    right: 0;
    left: 0;
    width: 330px;
    margin-right: 50px;
    padding-right: 10px;
    overflow-y: auto;
  }
  .filter-menu-btn {
    display: none;
  }
}
@media (max-width: 968px) {
  .sidebar-overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    background: rgba(47, 52, 74, 0.5);
  }
  .sidebar-content {
    position: fixed;
    z-index: 3;
    top: 0;
    left: -270px;
    overflow: hidden;
    width: 270px;
    height: 100vh;
    overflow-y: auto;
    padding: 6px;
    background: #fff;
  }
  .search-bar-container {
    margin-top: 10px;
    font-size: 12px;
  }
  .search-bar-container > div {
    height: 35px;
  }
  /* Mobile sidebar animation */
  #sidebar #sdbrOvrly {
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0;
  }
  #sidebar.anim #sdbrOvrly {
    pointer-events: auto;
    opacity: 1;
  }
  #sidebar #sdbrCntnt {
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
  }
  #sidebar.anim #sdbrCntnt {
    transform: translateX(270px);
  }
  .accordion {
    font-size: 12px;
    padding: 10px 6px;
  }
  .filter-group {
    font-size: 12px;
  }
}
/* Client control styles */
.client-call-wrap {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 12px;
  background: #fff;
  color: #2f344a;
  box-shadow: 0px 3px 15px rgba(47, 52, 74, 0.2);
  z-index: 1;
}

.client-call-wrap > div > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-call-wrap h1 {
  margin-bottom: 3px;
  font-size: 12px;
}

.client-call-wrap .info-box-hl-second {
  font-weight: 400;
}

.client-call-wrap .page-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(47, 52, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.client-call-wrap .page-info-icon > svg {
  width: 18px;
  height: 18px;
}

.client-call-wrap .page-info-body {
  display: flex;
  flex-direction: column;
}

.client-call-wrap p {
  margin-bottom: 3px;
}

.client-call-wrap p:first-of-type {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.client-call-wrap p:last-of-type {
  margin-bottom: 0;
}

.client-call-wrap p span {
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (min-width: 968px) {
  .client-call-wrap {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    padding: 14px;
    border: 1px solid rgba(47, 52, 74, 0.2);
    border-left: 4px solid #2f344a;
    border-radius: 5px;
    box-shadow: none;
  }
}
/* Products styles */
.shop-wrapper {
  display: flex;
}

.products-main {
  width: 100%;
  margin-top: 120px;
}

.product-results-top > div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-listing-wrap {
  display: flex;
}

.products-listing-wrap > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 28px;
  border-radius: 5px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  transition: 0.3s;
}

.products-listing-wrap > button:hover {
  background: #dddddd;
}

.products-listing-wrap > button:first-of-type {
  margin-right: 8px;
}

.view-listing-active {
  background: #dddddd;
}

.list-view-btn > img {
  width: 28px;
}

.grid-view-btn > img {
  width: 20px;
}

.filter-tag-wrap {
  margin: 15px 0;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px 4px 10px;
  margin-right: 3px;
  margin-bottom: 7px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  background: #dddddd;
}

.filter-tag > img {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.products-wrap.products-list-view > div {
  display: flex;
}

.products-wrap.products-list-view .product {
  margin-bottom: 15px;
}

.products-wrap.products-list-view .product-img-wrap > img {
  display: none;
}

.products-wrap.products-list-view .product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.product {
  position: relative;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
}

.product-state-sale {
  border: 1px solid #C39923;
  box-shadow: 0 0 6px #C39923;
}

.product-state-no-waste {
  border: 1px solid #2c5714;
  box-shadow: 0 0 6px #2c5714;
}

.product-info {
  padding: 6px;
}

.product-text-brand {
  font-size: 12px;
}

.product-brand {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-name {
  font-weight: 500;
  font-size: 12px;
}

.product-fav-wrap {
  display: flex;
  height: 24px;
  margin-top: 6px;
}

.product-fav-wrap > div {
  margin-right: 5px;
}

.product-fav-wrap > button,
.product-fav-wrap > div {
  width: 24px;
  height: 24px;
}

.has-focus-brand {
  display: block;
  max-width: 40px;
  margin: 3px 0;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  padding: 2px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  background: #fff;
}

.product-icons .icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  grid-auto-columns: min-content;
  gap: 2px;
  align-items: center;
  justify-items: center;
  width: 100%;
  margin-top: 2px;
}

.product-icons .icons > img {
  max-width: 20px;
}

.product-icons .icons > img:last-of-type {
  margin-right: 0;
}

.product-icons > div:last-of-type {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-id,
.country-code,
.co2-icon-container,
.product-state-tag {
  padding: 3px 6px 4px 6px;
  margin-right: 3px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 11px;
  background: #dddddd;
}

.product-state-tag {
  margin-right: 0;
}

.product-id,
.country-code,
.co2-icon-container {
  margin-top: 3px;
}

.product-id {
  cursor: pointer;
  transition: 0.3s;
}

.product-id:hover {
  background: #2f344a;
  color: #fff;
}

.co2-icon-container {
  display: flex;
  align-items: end;
}

.co2-icon-container > img {
  height: 9px;
}

.co2-icon-container > span:nth-last-of-type(2) {
  margin-right: 2px;
  font-weight: 500;
}

.add-to-cart .select-wrap {
  margin-top: 4px;
}

.add-to-cart > div {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.product-state-sale .product-state-tag {
  background: #C39923;
}

.product-state-no-waste .product-state-tag {
  background: #2c5714;
  color: #fff;
}

.product-state-tag {
  display: flex;
  align-items: center;
  font-size: 11px;
  margin-bottom: 4px;
}

.price {
  display: flex;
  font-weight: 500;
  line-height: 14px;
  font-size: 14px;
  gap: 3px;
  text-align: right;
}

.price.line-through {
  font-size: 12px;
}

.add-to-cart-wrapper {
  display: flex;
  margin-top: 5px;
}

.add-to-cart-wrapper > div {
  display: flex;
}

.add-to-cart-wrapper input {
  max-width: 40px;
  border: 1px solid rgba(47, 52, 74, 0.4);
  border-right: 0;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 8px;
  padding-right: 5px;
}

.add-to-cart-wrapper > div > div {
  display: none;
}

.add-to-cart-btn {
  width: 35px;
  height: 30px;
  padding: 4px 8px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  background: #2f344a;
  transition: 0.3s;
}

.add-to-cart-btn:hover {
  background: #2c5714;
}

.extended-description {
  font-size: 11px;
  line-height: 10px;
}

.extended-description > p:first-of-type {
  margin-top: 6px;
}

.expiration-date,
.product-inventory {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 2px;
}

.expiration-date > svg,
.product-inventory > svg,
.procure-info > a > svg {
  width: 16px;
  height: 16px;
  margin-left: 3px;
}

.procure-info {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.procure-info > span {
  margin-top: 5px;
  padding: 3px 6px 4px 6px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 11px;
  white-space: nowrap;
  color: #fff;
  background: #BC290D;
}

.procure-info > a {
  display: flex;
  align-items: center;
  margin-top: 2px;
  font-size: 12px;
}

.products-wrap.products-grid-view {
  display: grid;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  align-items: start;
  align-content: start;
}

.products-wrap.products-grid-view .product-img-wrap > img {
  height: 140px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5px;
  border-radius: 5px;
}

.products-wrap.products-grid-view .product-info > div:first-of-type {
  display: block;
}

.products-wrap.products-grid-view .product-text-brand {
  width: 100%;
}

.products-wrap.products-grid-view .product-brand {
  font-size: 12px;
}

.products-wrap.products-grid-view .product-name {
  height: 30px;
}

.products-wrap.products-grid-view .has-focus-brand {
  position: absolute;
  top: 3px;
  left: 3px;
  margin: 0;
}

.products-wrap.products-grid-view .product-icons {
  height: 43px;
}

.products-wrap.products-grid-view .add-to-cart {
  display: flex;
  height: 85px;
  margin-top: 15px;
  align-items: end;
}

.products-wrap.products-grid-view .price {
  text-align: left;
}

.products-wrap.products-grid-view .add-to-cart > div:first-of-type {
  align-items: start;
}

.products-wrap.products-grid-view .add-to-cart > div:last-of-type {
  margin-left: auto;
}

@media (min-width: 400px) {
  .products-wrap.products-list-view .product-img-wrap > img {
    display: block;
  }
  .has-focus-brand {
    position: absolute;
    bottom: 3px;
    left: 3px;
    margin: 0;
    width: 35px;
    height: 35px;
    padding: 2px;
    border: 1px solid rgba(47, 52, 74, 0.2);
    border-radius: 5px;
    background: #fff;
  }
  .product-img-wrap {
    display: flex;
    align-items: center;
    position: relative;
  }
  .product-img-wrap > img {
    height: 70px;
    width: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 3px;
    border-radius: 5px;
  }
  .add-to-cart-wrapper > div > div {
    display: flex;
    flex-direction: column;
  }
  .quantity-button {
    width: 20px;
    height: 20px;
    transition: 0.3s;
  }
  .quantity-button:hover {
    background: #dddddd;
  }
  .quantity-up {
    border-top: 1px solid rgba(47, 52, 74, 0.4);
    border-left: 1px solid rgba(47, 52, 74, 0.4);
  }
  .quantity-down {
    border-bottom: 1px solid rgba(47, 52, 74, 0.4);
    border-left: 1px solid rgba(47, 52, 74, 0.4);
    border-top: 1px solid rgba(47, 52, 74, 0.4);
  }
  .add-to-cart-btn {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 560px) {
  .product-img-wrap > img {
    height: 100px;
    width: 100px;
  }
}
@media (min-width: 600px) {
  .product-info > div:first-of-type {
    display: flex;
    align-items: center;
  }
  .product-text-brand {
    width: 150px;
    margin-right: 10px;
  }
  .has-focus-brand {
    margin-bottom: 0;
  }
  .product-icons .icons {
    margin-top: 0;
  }
}
@media (min-width: 750px) {
  .product-text-brand {
    margin-right: 30px;
  }
  .add-to-cart {
    display: flex;
    align-items: center;
  }
  .add-to-cart > div:first-of-type {
    margin-right: 20px;
  }
  .add-to-cart-wrapper {
    margin-top: 0;
  }
}
@media (min-width: 850px) {
  .product-img-wrap > img {
    height: 100px;
    width: 150px;
  }
}
@media (min-width: 968px) {
  .products-main {
    margin-top: 25px;
  }
}
@media (min-width: 1300px) {
  .product-text-brand {
    width: 300px;
  }
  .product-text-brand,
  .product-name {
    font-size: 14px;
  }
  .product-id,
  .country-code,
  .co2-icon-container,
  .product-state-tag {
    font-size: 13px;
    line-height: 13px;
    margin-right: 6px;
  }
  .product-state-tag {
    margin-right: 0;
  }
}
@media (min-width: 1450px) {
  .product-info {
    padding: 12px;
  }
}
.product[data-type=outlet] .product-state-tag {
  background: #2c5714;
  color: #fff;
  white-space: pre;
}

.product[data-type=outlet] {
  border: 1px solid #2c5714;
  box-shadow: 0 0 6px #2c5714;
}

/* Breadcrumbs styles */
.page-info-box {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  min-width: 280px;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 50px;
  border-left: 4px solid #2f344a;
}

.page-info-box > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-info-box h1 {
  font-size: 14px;
}

.page-info-box h1 .info-box-hl-second {
  font-weight: 400;
}

.page-info-box .page-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(47, 52, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.page-info-box .page-info-icon > svg {
  width: 18px;
  height: 18px;
}

.page-info-box .page-info-body {
  display: flex;
  flex-direction: column;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 10px;
}

.breadcrumb a {
  text-decoration: underline;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #606894;
}

.breadcrumb > li {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 5px;
}

.breadcrumb > li:last-of-type a {
  text-decoration: none;
}

.breadcrumb li::after {
  display: block;
  content: "-";
  padding: 0 5px;
  color: #2f344a;
}

.breadcrumb li:last-of-type::after {
  display: none;
}

/* Product search modal styles */
/* Modal shell (som før) */
.dcx-search-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 10px 5px;
  background-color: rgba(47, 52, 74, 0.5);
}
.dcx-search-modal > div {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
}

.dcx-search-close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.dcx-search-close-modal > svg {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}
.dcx-search-close-modal:hover > svg {
  fill: #2c5714;
}

.dcx-search-modal-content {
  height: 100%;
}

.dcx-search-modal-header {
  padding: 10px;
  height: 70px;
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
}

.dcx-search-modal-header-title {
  font-weight: 500;
}

/* Body layout */
.dcx-search-modal-body {
  position: relative;
  overflow: hidden;
}

/* Top controls */
.dcx-search-controls {
  padding: 10px 10px 12px 10px;
  border-bottom: 1px solid #dddddd;
  background: #fff;
  display: grid;
  gap: 8px;
}

.dcx-search-input {
  height: 38px;
  padding: 6px 10px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  width: 100%;
}

.dcx-search-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dcx-search-select {
  height: 38px;
  padding: 6px 10px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background: #fff;
  color: #2f344a;
}

/* Main layout: sidebar + results */
.dcx-search-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 12px;
  height: calc(100% - 82px); /* header + controls */
  padding: 10px;
}

@media (max-width: 980px) {
  .dcx-search-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
}
/* Sidebar filters */
.dcx-search-sidebar {
  border-radius: 5px;
  overflow: auto;
  padding: 8px;
}

/* Result list area */
.dcx-search-results {
  border-radius: 5px;
  background: #fff;
  overflow: auto;
  padding: 10px;
}

/* Product CTA (fra før) */
.add-to-list-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
  background: #2f344a;
}
.add-to-list-btn > svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

/* Modal styles */
.modal-loader-wrapper {
  display: flex;
  align-items: center;
  height: calc(100% - 40px);
  flex-direction: column;
  justify-content: center;
}

.modal-loader-wrapper p {
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 10px 5px;
  background-color: rgba(47, 52, 74, 0.5);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.close-modal > svg {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.close-modal:hover > svg {
  fill: #2c5714;
}

.modal > div {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.modal-content {
  height: 100%;
}

.modal-header {
  padding: 10px;
  height: 70px;
}

.modal-header-title {
  font-weight: 500;
}

.search-bar-modal {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  height: 48px;
  max-width: 230px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  font-size: 14px;
}

.modal-search-bar {
  padding: 0 14px;
  border: 0;
  height: 100%;
  width: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.modal-search-btn {
  display: flex;
  width: 60px;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(47, 52, 74, 0.2);
}

.modal-body {
  width: 100%;
  padding: 0 10px 0 10px;
  position: absolute;
  overflow: auto;
  bottom: 40px;
  top: 70px;
}

.modal-header .search-bar-container {
  max-width: 220px;
}

@media (min-width: 968px) {
  .modal {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .modal-body {
    padding: 0 40px 0 40px;
    top: 80px;
  }
  .modal-header {
    padding: 18px 40px 0 39px;
  }
  .modal-header .search-bar-container {
    max-width: 400px;
  }
}
.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 52, 74, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.confirm-modal-content {
  background: #fff;
  border-radius: 5px;
  text-align: center;
  max-width: 300px;
  font-size: 14px;
}

.confirm-modal-msg {
  padding: 20px;
}

.confirm-modal-actions {
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(47, 52, 74, 0.2);
}

.confirm-modal-actions > button {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  margin-left: 10px;
  transition: 0.3s;
}

#confirm-cancel {
  background: #dddddd;
  color: #2f344a;
}

#confirm-confirm {
  background: #2f344a;
  color: #fff;
}

#confirm-cancel:hover {
  box-shadow: 0px 4px 8px rgba(47, 52, 74, 0.25);
}

#confirm-confirm:hover {
  box-shadow: rgba(47, 52, 74, 0.35) 0px 5px 15px;
}

/* Table styles */
.table-info-header {
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}

.table-info-header > div {
  margin-right: 25px;
}

.table-info-header > div:last-of-type {
  margin-right: 0;
}

.table-info-node {
  width: 200px;
  margin-bottom: 10px;
}

.table-info-node-desc {
  margin: 0 0 2px 0;
  font-size: 12px;
}

.table-info-node-value {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  font-size: 14px;
  background: #fff;
}

.table-info-node-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.table-info-node-checkbox input {
  width: 15px;
  height: 15px;
}

.table-info-node-textarea {
  width: 100%;
  max-width: 100%;
  min-height: 90px;
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  background: #fff;
}

.table-into-node-zip {
  display: flex;
  gap: 6px;
}

.table-into-node-zip > input {
  width: 100%;
}

.table-options-wrapper {
  display: flex;
  justify-content: space-between;
}

.table-action-btn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #2f344a;
  color: #fff;
  transition: 0.3s;
}

.table-action-btn:hover {
  background: #606894;
}

.table-action-btn > svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.table-toolbox,
.table-infobox {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 15px 10px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
}

.table-toolbox-spacer {
  content: "";
  display: flex;
  width: 20px;
  margin: 0 6px;
  height: 1px;
  background: #2f344a;
}

.table-infobox-icon {
  position: absolute;
  top: -9px;
  width: 20px;
  height: 20px;
  left: -9px;
  border-radius: 100px;
  background: #fff;
}

.table-toolbox-icon > svg,
.table-infobox-icon > svg {
  width: 20px;
  height: 20px;
}

.table-toolbox > button,
.table-infobox > button,
.table-toolbox > a,
.table-infobox > a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 6px 11px 8px 11px;
  margin: 0 5px;
  border-radius: 5px;
  background: #2f344a;
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
  text-decoration: none;
}

.table-toolbox > button > svg,
.table-infobox > button > svg,
.table-toolbox > a > svg,
.table-infobox > a > svg {
  fill: #fff;
  margin-right: 5px;
  width: 24px;
  height: 24px;
}

.table-toolbox > button:hover,
.table-infobox > button:hover,
.table-toolbox > a:hover,
.table-infobox > a:hover {
  background: #606894;
}

.table-infobox-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}

.table-infobox-modal-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 400px;
}

.table-infobox-modal-header {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}

.table-infobox-modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
}

.table-infobox-modal-close:hover > svg {
  fill: #606894;
}

.table-infobox-modal-close > svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.shortcut-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  background: #2f344a;
  padding: 10px 12px;
  border-radius: 5px;
}

.shortcut-list li:last-of-type {
  margin-bottom: 0;
}

.shortcut-list .key {
  display: inline-block;
  min-width: 45px;
  text-align: center;
  background: #fff;
  color: #2f344a;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  margin-right: 12px;
  font-size: 14px;
}

.shortcut-list .desc {
  flex: 1;
  color: #fff;
  font-size: 12px;
  padding-bottom: 2px;
}

.table-container {
  position: relative;
  min-height: 180px;
  max-height: 800px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-right: 1px solid #2f344a;
  border-left: 1px solid #2f344a;
  border-bottom: 4px solid #2f344a;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table thead {
  position: sticky;
  z-index: 1;
  top: 0;
  white-space: nowrap;
}

table thead tr {
  background: #2f344a;
  color: #fff;
  text-align: left;
}

table th,
table td {
  padding: 12px 20px;
}

table tbody tr {
  border-bottom: 1px solid rgba(47, 52, 74, 0.2);
}

table tbody tr:last-of-type {
  border-bottom: 0;
}

table tbody tr:nth-of-type(even) {
  background: #f7f7f7;
}

table td input[type=date],
table td select {
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
}

.th-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 6px;
}
.th-dropdown button {
  padding: 2px 6px;
  font-size: 12px;
  background: #f7f7f7;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 3px;
  cursor: pointer;
}
.th-dropdown .th-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 5;
  background: #fff;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 220px;
}
.th-dropdown .th-dropdown-menu input[type=text] {
  width: 100%;
  padding: 6px;
  margin-bottom: 6px;
  font-size: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 4px;
}
.th-dropdown .th-dropdown-menu button {
  padding: 4px 8px;
  font-size: 13px;
  margin-right: 6px;
  border-radius: 3px;
  background: #2f344a;
  color: #fff;
}
.th-dropdown .th-dropdown-menu small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(47, 52, 74, 0.7);
}
.th-dropdown .th-dropdown-menu select {
  width: 100%;
  padding: 6px;
  font-size: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 4px;
  margin-bottom: 6px;
}
.th-dropdown.open .th-dropdown-menu {
  display: block;
}

.table-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.3s ease;
}
.table-modal.hidden {
  display: none;
}
.table-modal .table-modal-inner {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 300px;
}
.table-modal .table-modal-inner p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #2f344a;
}
.table-modal .table-modal-inner .table-modal-close {
  background: #2f344a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.ag-table-top-actions {
  display: flex;
}

.view-agreement-archieve {
  background-color: #C39923;
  color: white;
  font-weight: 500;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 5px;
  margin-left: 15px;
  text-decoration: none;
}

.grid-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(221, 221, 221, 0.6);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.unlock-btn {
  background-color: #2f344a;
  color: white;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}

.ag-theme-dcx .ag-header {
  background-color: #2f344a;
  color: #fff;
}

.ag-theme-dcx-detail .ag-header {
  background-color: rgba(47, 52, 74, 0.5);
  color: #fff;
}

.ag-cell,
.ag-cell > span {
  display: flex;
  align-items: center;
  height: 100%;
}

.ag-cell > span {
  gap: 5px;
}

.ag-header-cell-label {
  display: flex;
  align-items: center;
  height: 100%;
}

.ag-cell-disabled {
  background-color: #e0e0e0 !important;
  color: #777 !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* Vareinfo styles */
.vareinfo-modal-wrap > div:first-of-type > div:first-of-type {
  margin-bottom: 20px;
}

.vareinfo-kategory {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}

.print-info-btn {
  width: 24px;
  height: 22px;
  position: absolute;
  right: 45px;
  top: 11px;
}

.vareinfo-row-wrap > div p {
  margin-top: 40px;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.vareinfo-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}

.vareinfo-table td:first-of-type {
  font-weight: 500;
  vertical-align: text-top;
}

.vareinfo-table-cln td:first-of-type {
  font-weight: 400;
}

.vareinfo-table thead tr {
  background: #2f344a;
  color: #fff;
  text-align: left;
  border-left: 1px solid #2f344a;
}

.vareinfo-table th,
.vareinfo-table td {
  padding: 6px;
}

.vareinfo-table tr td:first-of-type {
  width: 40%;
  line-break: anywhere;
}

.vareinfo-table tr td:last-of-type {
  width: 60%;
}

.vareinfo-table-cln tr td:first-of-type {
  width: 50%;
}

.vareinfo-table-cln tr td:last-of-type {
  width: 50%;
}

.vareinfo-table tbody {
  border-top: 1px solid rgba(47, 52, 74, 0.2);
}

.vareinfo-table tbody tr {
  border-bottom: 1px solid rgba(47, 52, 74, 0.2);
  border-right: 1px solid rgba(47, 52, 74, 0.2);
  border-left: 1px solid rgba(47, 52, 74, 0.2);
}

.vareinfo-table .vareinfo-table-row-clr {
  border-bottom: 0;
}

.vareinfo-table tbody tr:nth-of-type(even) {
  background: #f7f7f7;
}

.vareinfo-table-cln tbody tr:nth-of-type(even) {
  background: #fff;
}

.vareinfo-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  grid-auto-columns: min-content;
  gap: 2px;
  align-items: center;
  justify-items: center;
  width: 100% !important;
  margin-top: 2px;
}

.vareinfo-icons > img {
  max-width: 20px;
}

.vareinfo-icons > img:last-of-type {
  margin-right: 0;
}

@media (min-width: 768px) {
  .vareinfo-modal-wrap > div {
    display: flex;
  }
  .vareinfo-modal-wrap > div:first-of-type > div:first-of-type {
    order: 1;
    width: 50%;
    padding-left: 20px;
  }
  .vareinfo-modal-wrap > div:first-of-type > div:first-of-type > img {
    max-height: 396px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .vareinfo-modal-wrap > div:first-of-type > div:first-of-type {
    margin-bottom: 0;
  }
  .vareinfo-modal-wrap > div:first-of-type > div:last-of-type {
    width: 50%;
    padding-right: 20px;
  }
  .vareinfo-row-wrap > div:nth-of-type(2) {
    padding: 0 40px;
  }
}
/* Favoritliste styles */
:root {
  --white: #fff;
  --grey: #dddddd;
  --light-grey: #f7f7f7;
  --omni: #2f344a;
  --green: #2c5714;
}

.favcx {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--omni);
  max-width: 700px;
}

.favcx__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.favcx__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.favcx__block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.favcx__row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.favcx__label {
  display: block;
  font-size: 12px;
  color: #5a617d;
  margin-bottom: 2px;
}

.favcx__hint {
  font-size: 12px;
  color: #6a718d;
  margin-top: 2px;
}

/* Buttons */
.favcx__btn {
  display: inline-flex;
  align-self: baseline;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--grey);
  background: var(--light-grey);
  color: var(--omni);
  padding: 6px 10px;
  height: 32px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}

.favcx__btn--primary {
  background: var(--omni);
  color: var(--white);
  border-color: var(--omni);
}

.favcx__btn--outline {
  background: transparent;
  border-color: var(--omni);
  color: var(--omni);
}

.favcx__btn:active {
  transform: translateY(1px);
}

/* Inputs */
.favcx__input {
  flex: 1 1 auto;
  height: 32px;
  border: 1px solid var(--grey);
  border-radius: 5px;
  background: var(--light-grey);
  padding: 6px 8px;
  outline: none;
}

.favcx__input:focus {
  border-color: var(--omni);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47, 52, 74, 0.12);
}

/* Dropdown */
.favcx__dropdown {
  position: relative;
}

.favcx__display {
  width: 100%;
  height: 34px;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--grey);
  background: var(--light-grey);
  color: var(--omni);
  border-radius: 5px;
  padding: 6px 34px 6px 10px;
  cursor: pointer;
  outline: none;
}

.favcx__display:focus {
  border-color: var(--omni);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47, 52, 74, 0.12);
}

.favcx__chev {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: #6a718d;
  pointer-events: none;
}

.favcx__content {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 220px;
  overflow: auto;
  display: none;
}

.favcx__content.open {
  display: block;
}

.favcx__list {
  list-style: none;
  margin: 0;
  padding: 6px;
}

.favcx__item + .favcx__item {
  margin-top: 4px;
}

.favcx__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
}

.favcx__option:hover {
  background: var(--light-grey);
}

.favcx__option input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--omni);
}

/* Mobile */
@media (max-width: 520px) {
  .favcx__row {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Select client table styles */
.select-client-in-list {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 5px;
  background: #2f344a;
  color: #fff;
}

@media (max-width: 768px) {
  .customers-table, .customers-table thead, .customers-table tbody, .customers-table th, .customers-table tr {
    display: block;
  }
  .customers-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .customers-table tbody tr:nth-of-type(even) {
    background: #f7f7f7;
  }
  .customers-table tbody tr {
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(47, 52, 74, 0.2);
    border-radius: 5px;
  }
  .customers-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-align: right;
    border-bottom: 1px solid rgba(47, 52, 74, 0.1);
  }
  .customers-table td:before {
    padding-right: 10px;
    text-align: left;
  }
  .customers-table td:nth-of-type(1):before {
    content: "ID:";
  }
  .customers-table td:nth-of-type(2):before {
    content: "Navn:";
  }
  .customers-table td:nth-of-type(3):before {
    content: "CVR:";
  }
  .customers-table td:nth-of-type(4):before {
    content: "Konsulent:";
  }
  .customers-table td:nth-of-type(5):before {
    content: "Vælg kunde:";
  }
}
@media (min-width: 769px) {
  .customers-table {
    width: 100%;
    border-collapse: collapse;
  }
  .customers-table thead tr {
    background: #2f344a;
    color: #fff;
    text-align: left;
    font-size: 14px;
    border-left: 1px solid #2f344a;
  }
  .customers-table th,
  .customers-table td {
    padding: 12px 20px;
  }
  .customers-table tbody {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .customers-table tbody tr {
    border-bottom: 1px solid rgba(47, 52, 74, 0.2);
    border-right: 1px solid rgba(47, 52, 74, 0.2);
    border-left: 1px solid rgba(47, 52, 74, 0.2);
  }
  .customers-table tbody tr:nth-of-type(even) {
    background: #f7f7f7;
  }
  .customers-table tbody tr:last-of-type {
    border-bottom: 2px solid #2f344a;
  }
  .customers-table tfoot {
    font-size: 18px;
    text-align: right;
  }
}
/* Checkout styles */
.checkout-basket-wrap .basket-checkout-information {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkout-basket-wrap .checkout-remarks {
  width: 278px;
  min-height: 100px;
  margin-right: 15px;
}

.checkout-basket-wrap .checkout-single-stats-wrap {
  margin-bottom: 0;
}

.checkout-remarks {
  width: 100%;
  min-height: 60px;
  padding: 8px;
  font-size: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  color: #2f344a;
  resize: none;
}

.checkout-remarks::-moz-placeholder {
  color: rgba(47, 52, 74, 0.7);
}

.checkout-remarks::placeholder {
  color: rgba(47, 52, 74, 0.7);
}

.checkout-route-wrap {
  display: none;
}

.checkout-basket-wrap .checkout-route-wrap {
  position: relative;
  display: block;
  font-size: 14px;
  border-radius: 5px;
  padding: 6px 8px;
  background: #f7f7f7;
}

.checkout-basket-wrap .checkout-route-wrap > span {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: #f7f7f7;
}

.checkout-basket-wrap .checkout-route-wrap > span svg {
  width: 20px;
  height: 20px;
  fill: #2f344a;
}

.checkout-totalt-stats-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.checkout-totalt-stats-wrap > div {
  display: flex;
  align-items: center;
  margin-top: 3px;
}

.checkout-single-stats-wrap {
  display: flex;
  margin-top: 10px;
  margin-bottom: 20px;
}

.checkout-single-stats-wrap > div {
  display: flex;
  align-items: center;
}

.eco-counter-checkout {
  margin-left: 15px;
}

.eco-counter-checkout svg {
  width: 21px;
  height: 20px;
  margin-right: 5px;
}

.co2-counter-checkout svg {
  width: 32px;
  height: 16px;
  margin-right: 5px;
}

.eco-numeric,
.co2-numeric {
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  padding: 0 6px;
  border-radius: 5px;
  height: 26px;
  line-height: 0;
  font-weight: 500;
  font-size: 14px;
}

.eco-numeric > span,
.co2-numeric > span {
  margin-right: 3px;
}

.eco-counter-single {
  margin-left: 10px;
}

.eco-counter-single svg {
  width: 18px;
  height: 17px;
  margin-right: 5px;
}

.co2-counter-single svg {
  width: 26px;
  height: 13px;
  margin-right: 5px;
}

.eco-numeric-single,
.co2-numeric-single {
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  padding: 0 6px;
  border-radius: 5px;
  height: 20px;
  line-height: 0;
  font-weight: 500;
  font-size: 12px;
}

.eco-numeric-single > span,
.co2-numeric-single > span {
  margin-right: 3px;
}

.checkout-totalt-price {
  margin-top: 25px;
  font-weight: 500;
  font-size: 20px;
  text-align: right;
}

.checkout-complete-wrap {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}

.checkout-complete-wrap > button {
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 16px;
}

.checkout-complete-wrap > button:first-of-type {
  margin-left: auto;
  margin-right: 15px;
  border: 1px solid #2f344a;
}

.checkout-complete-wrap > button:last-of-type {
  margin-right: 0;
  color: #fff;
  background: #2c5714;
  border: 1px solid #2c5714;
}

@media (min-width: 768px) {
  .order-notes-wrap {
    display: flex;
    justify-content: space-between;
  }
  .order-notes-wrap > div:first-of-type {
    width: 100%;
    max-width: 400px;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
/* Checkout basket specific styles */
@media (min-width: 768px) {
  .checkout-basket-wrap .product-info > div:first-of-type {
    flex-direction: row;
    align-items: center;
    justify-content: initial;
  }
  .checkout-basket-wrap .product-img-wrap > img {
    height: 100px;
    width: 100px;
  }
  .checkout-basket-wrap .product-info > div:first-of-type {
    display: flex;
    align-items: center;
  }
  .checkout-basket-wrap .product-text-brand {
    width: 150px;
    margin-right: 10px;
  }
  .checkout-basket-wrap .has-focus-brand {
    margin-bottom: 0;
  }
  .checkout-basket-wrap .product-icons .icons {
    margin-top: 0;
  }
  .checkout-basket-wrap .product-text-brand {
    margin-right: 30px;
  }
  .checkout-basket-wrap .add-to-cart {
    display: flex;
    align-items: center;
  }
  .checkout-basket-wrap .add-to-cart > div:first-of-type {
    margin-right: 20px;
  }
  .checkout-basket-wrap .add-to-cart-wrapper {
    margin-top: 0;
  }
  .checkout-basket-wrap .product-img-wrap > img {
    height: 100px;
    width: 150px;
  }
}
@media (min-width: 1300px) {
  .checkout-basket-wrap .product-text-brand {
    width: 300px;
  }
  .checkout-basket-wrap .product-text-brand,
  .checkout-basket-wrap .product-name {
    font-size: 14px;
  }
  .checkout-basket-wrap .product-id,
  .checkout-basket-wrap .country-code,
  .checkout-basket-wrap .co2-icon-container,
  .checkout-basket-wrap .product-state-tag {
    font-size: 13px;
    line-height: 13px;
    margin-right: 6px;
  }
  .checkout-basket-wrap .product-state-tag {
    margin-right: 0;
  }
}
@media (min-width: 1450px) {
  .checkout-basket-wrap .product-info {
    padding: 12px;
  }
  .checkout-basket-wrap .add-to-cart > div:first-of-type {
    margin-right: 60px;
  }
}
/* Loader styles */
.loader {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #dddddd;
  border-top-color: #2f344a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.overlay-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(47, 52, 74, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
}

.overlay-center {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.overlay-text {
  font-size: 14px;
  color: #fff;
}

/* Calendar styles */
/* ----------------------------------------------------
   Top actions
---------------------------------------------------- */
.modal-delivery-date-actions {
  display: flex;
  justify-content: space-between;
}

.modal-delivery-date-actions > div:last-of-type {
  display: flex;
  flex-direction: column;
  width: 250px;
  align-items: flex-end;
}

.modal-delivery-date-actions > div:last-of-type > label {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  padding: 6px 8px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  font-size: 14px;
}

/* ----------------------------------------------------
   Dropdown
---------------------------------------------------- */
.search-dropdown {
  display: none;
  width: 250px;
  margin-top: 5px;
  position: relative;
}

.modal-delivery-date-pickup .search-dropdown {
  display: block;
}

.search-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 12px;
  border: 0;
  border-bottom: 1px solid rgba(47, 52, 74, 0.2);
  box-sizing: border-box;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  outline: none;
}

/* ----------------------------------------------------
   Month header
---------------------------------------------------- */
.calendar-months {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-months button {
  background: #2f344a;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-months button:hover {
  background-color: #2c5714;
}

.calendar-month {
  text-align: center;
  margin-bottom: 20px;
}

/* ----------------------------------------------------
   Calendar grid
   1. kolonne = uge, derefter 7 dag-kolonner
---------------------------------------------------- */
.calendar-days {
  display: grid;
  grid-template-columns: 50px repeat(7, 1fr);
  gap: 4px;
  margin-top: 20px;
}

/* ---------- Dags-knapper ---------- */
.calendar-day-disabled button,
.calendar-day-past button,
.calendar-day-primary button,
.calendar-day-secondary button {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.calendar-day-past button {
  background-color: rgba(188, 41, 13, 0.5);
  color: #2f344a;
  cursor: not-allowed;
}

.calendar-day-disabled button {
  background-color: #f7f7f7;
  color: #2f344a;
  cursor: not-allowed;
}

.modal-delivery-date-pickup .calendar-day-disabled button,
.calendar-day-primary button {
  background-color: #2f344a;
  color: #fff;
  cursor: pointer;
}

.calendar-day-secondary button {
  background-color: #BC290D;
  color: #fff;
}

.calendar-day-primary button:hover,
.calendar-day-secondary button:hover,
.modal-delivery-date-pickup .calendar-day-disabled button:hover {
  background-color: #2c5714;
}

/* ---------- Offset placering ---------- */
.calendar-day-offset-1 {
  grid-column-start: 1;
}

.calendar-day-offset-2 {
  grid-column-start: 2;
}

.calendar-day-offset-3 {
  grid-column-start: 3;
}

.calendar-day-offset-4 {
  grid-column-start: 4;
}

.calendar-day-offset-5 {
  grid-column-start: 5;
}

.calendar-day-offset-6 {
  grid-column-start: 6;
}

.calendar-day-offset-7 {
  grid-column-start: 7;
}

.calendar-day-offset-8 {
  grid-column-start: 8;
}

/* ----------------------------------------------------
   Tydelighed: ugedags-header, ugekolonne og weekend
---------------------------------------------------- */
/* Headeren (Uge, Man…Søn) */
.calendar-days > span:nth-child(-n+8) {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #2f344a;
  background: #dddddd;
  border-radius: 5px;
}

/* Ugekolonnen (inkl. "Uge") */
.calendar-week {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #2f344a;
  background: #dddddd;
  border-radius: 5px;
}

/* ----------------------------------------------------
   Responsive
---------------------------------------------------- */
@media (max-width: 480px) {
  .modal-delivery-date-actions {
    flex-direction: column;
  }
  .modal-delivery-date-actions > div:last-of-type {
    align-items: flex-start;
    margin-top: 10px;
  }
  .calendar-days {
    grid-template-columns: 26px repeat(7, 1fr);
  }
  .calendar-days button {
    padding: 6px;
    font-size: 12px;
  }
  .calendar-days > span:nth-child(-n+8),
  .calendar-week {
    padding: 4px;
    font-size: 11px;
  }
}
/* Scroll to top */
.scroll-to-top {
  position: fixed;
  right: 5px;
  bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #dddddd;
  color: #fff;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.scroll-to-top > svg {
  width: 12px;
  height: 8px;
  transition: 0.3s;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
  background: #2f344a;
}

.scroll-to-top:hover > svg,
.scroll-to-top:focus > svg {
  fill: #fff;
}

@media (min-width: 968px) {
  .scroll-to-top {
    right: 4px;
    bottom: 10px;
  }
}
/* Toasts */
.toast-container {
  position: fixed;
  bottom: 55px;
  right: 10px;
  padding: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.toast {
  background: #2f344a;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.3s ease, opacity 0.3s ease-out;
}

.toast.show {
  opacity: 1;
  transform: translateX(-10px);
}

/* Footer */
footer {
  margin-top: auto;
  background-color: #f7f7f7;
}

footer > div {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  footer > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1400px) {
  footer > div {
    padding-left: 40px;
    padding-right: 40px;
  }
}

footer small {
  display: block;
  text-align: center;
}

/*------------------------------------*\
    #PAGES
\*------------------------------------*/
/* Login */
.dcx-login-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 16px;
  color: #2f344a;
}

.dcx-login-wrap {
  max-width: 540px;
  margin: 50px 20px 0 20px;
}

.dcx-login-wrap > img {
  display: block;
  width: 65px;
  margin: 0 auto;
  margin-bottom: 65px;
}

.dcx-login-wrap > div {
  padding: 35px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 10px 35px -10px rgba(0, 0, 0, 0.75);
}

.dcx-login-wrap > div > h1 {
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 24px;
}

.dcx-login-wrap > div > a {
  display: inline-block;
  margin: 25px 0 65px 0;
  padding: 14px 22px;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
  border-radius: 5px;
  cursor: pointer;
  background: #2f344a;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.dcx-login-wrap > div > a:hover,
.dcx-login-wrap > div > a:focus {
  background: #606894;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dcx-login-wrap > div > p > a:hover {
  color: #606894;
}

.dcx-login-wrap > div > p:last-of-type {
  font-weight: 300;
}

.dcx-logos-wrap {
  margin-top: 130px;
}

.dcx-logos-wrap > p {
  margin-bottom: 10px;
  font-weight: 300;
  text-align: center;
}

.dcx-logos-wrap > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dcx-logos-wrap > div > img {
  margin: 10px 15px;
}

@media (min-width: 540px) {
  .dcx-login-page {
    font-size: 20px;
  }
  .dcx-login-wrap {
    margin: 150px 20px 0 20px;
  }
  .dcx-login-wrap > div {
    padding: 65px;
  }
  .dcx-login-wrap > div > h1 {
    font-size: 30px;
  }
  .dcx-login-wrap > div > a {
    font-size: 20px;
  }
}
/* Dashboard */
.dashboard-wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.dashboard-containers {
  display: flex;
  flex-wrap: wrap;
}

.dashboard-containers > a,
.dashboard-containers > button {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  min-width: 200px;
  padding: 20px 30px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  color: #2f344a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.dashboard-containers > a:hover,
.dashboard-containers > button:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dashboard-containers > a > svg,
.dashboard-containers > button > svg {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-top: 46px;
  margin-bottom: 10px;
  fill: #2f344a;
}

a.dashboard-order-errors {
  background: #BC290D;
  color: #fff;
}

a.dashboard-order-errors > svg {
  fill: #fff;
}

.dashboard-select-client:hover {
  background: #f7f7f7;
}

.dashboard-select-call:hover {
  background: #f7f7f7;
}

/* Elektroniske ordrer */
/* ====================================================
   FÆLLES / TILSTAND
==================================================== */
.order-disabled .order-input,
.order-disabled tbody {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* ====================================================
   TOPLINJE (ERROR-BOKS + ORDER-CONTROL)
==================================================== */
.order-top-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* top-align begge bokse */
  gap: 12px;
}

/* Fælles “kort”-udtryk til error + order-control */
.latest-order-error,
.order-control {
  position: relative;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  padding: 10px 12px;
  color: #2f344a;
  overflow: hidden;
}

/* Error-boks (gul variant) */
.latest-order-error {
  background: rgba(195, 153, 35, 0.2);
  border-left: 4px solid #C39923;
  margin-bottom: 20px;
  font-size: 14px;
  max-width: 400px;
}

.error-icon {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon > svg {
  width: 24px;
  height: 24px;
  fill: #C39923;
}

.error-text > p {
  margin: 0;
}

.error-text > p:not(:last-of-type) {
  margin-bottom: 5px;
}

/* Order-control (neutral/blå/omni variant) */
.order-control {
  background: #f7f7f7;
  border-left: 4px solid #2f344a; /* accent som notice */
  margin-top: 0; /* ingen “hæng” i bunden */
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Knap: kompakt, rolig skygge ved hover */
.order-control .order-takeover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2f344a;
  color: #fff;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 14px;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.order-control .order-takeover:hover {
  background: #2c5714;
  box-shadow: 0 6px 14px rgba(47, 52, 74, 0.15);
}

.order-control .order-takeover > svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Sekundær tekst */
.order-control > span {
  font-size: 12px;
  color: rgba(47, 52, 74, 0.75);
}

/* (Valgfrit) farvemodifikatorer – brug hvis du vil variere accent
.order-control--ok    { border-left-color: v.$green; }
.order-control--warn  { border-left-color: v.$yellow; }
.order-control--error { border-left-color: v.$red; }
*/
/* ====================================================
   ORDER STATE / LOCK
==================================================== */
.table-action-btn.locked {
  text-decoration: none;
  font-size: 12px;
}

.table-action-btn.locked > svg {
  margin-right: 3px;
}

.locked-by {
  display: block;
  font-size: 12px;
  color: #BC290D;
  margin-top: 5px;
}

.order-state-active,
.order-state-failed,
.order-state-complete {
  padding: 3px 6px 4px 6px;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
}

.order-state-active {
  background: #C39923;
}

.order-state-failed {
  background: #BC290D;
}

.order-state-complete {
  background: #2c5714;
  text-decoration: line-through;
}

/* Fremhævning (fx ordrenummer) */
.order-num-hl {
  border-radius: 5px;
  padding: 3px 10px 5px 10px;
  font-size: 16px;
  background: #2f344a;
  color: #fff;
}

/* ====================================================
   TABS
==================================================== */
.tab-container {
  width: 100%;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  gap: 5px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  background: #f7f7f7;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tab.anim {
  background: #2f344a;
  color: #fff;
}

.tab-content {
  display: none;
  border: 1px solid rgba(47, 52, 74, 0.2);
  padding: 20px;
  gap: 50px;
}

.tab-content.anim {
  display: flex;
}

/* ====================================================
   FELTER / FORM
==================================================== */
.order-input {
  width: 200px;
  margin-bottom: 10px;
}

.order-input p {
  margin: 0 0 2px 0;
  font-size: 12px;
}

.order-input input,
.order-input select {
  width: 100%;
  height: 26px;
  padding: 0 5px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  background: #fff;
}

.order-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.order-checkbox input {
  width: 15px;
  height: 15px;
}

.order-input textarea {
  width: 100%;
  max-width: 100%;
  height: 70px;
  min-height: 70px;
  padding: 2px 5px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  resize: none;
  background: #fff;
}

/* Leveringsspecifik – postnr/valg */
.order-delivery-zip {
  display: flex;
  gap: 6px;
}

.order-delivery-zip select {
  width: initial;
}

/* ====================================================
   FEJLLOG
==================================================== */
.fejllog-wrapper {
  max-width: 500px;
}

.fejllog-liste {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.log-linje {
  background: #fff;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-left: 4px solid #2f344a;
  border-radius: 5px;
  padding: 10px 12px;
}

.log-linje.system {
  background: rgba(195, 153, 35, 0.2);
  border-left-color: #C39923;
}

.log-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 500;
}

.log-besked {
  font-size: 14px;
  margin: 0;
}

/* Kommentar-formular */
.kommentar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kommentar-form textarea {
  font-size: 14px;
  padding: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  background: #f7f7f7;
}

.kommentar-form button {
  align-self: flex-start;
  background: #2f344a;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.kommentar-form button:hover {
  background: #2c5714;
  box-shadow: 0 6px 14px rgba(47, 52, 74, 0.15);
}

/* Receipt page */
.dcx-receipt-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 16px;
  color: #2f344a;
}

.dcx-receipt-wrap {
  max-width: 540px;
  margin: 50px 20px 0 20px;
}

.dcx-receipt-wrap > img {
  display: block;
  width: 65px;
  margin: 0 auto;
  margin-bottom: 65px;
}

.dcx-receipt-wrap > div {
  padding: 35px;
  border-radius: 1px;
  background: #fff;
  box-shadow: 0px 10px 35px -10px rgba(0, 0, 0, 0.75);
}

.dcx-receipt-wrap > div > h1 {
  margin-bottom: 15px;
}

.dcx-receipt-wrap > div > div {
  margin-top: 20px;
}

.dcx-receipt-wrap > div > div > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 16px;
  background: #2f344a;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.dcx-receipt-wrap > div > div > a:first-of-type {
  margin-right: 20px;
}

.dcx-receipt-wrap > div > div > a > svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  fill: #fff;
}

.dcx-receipt-wrap > div > div > a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dcx-receipt-logos-wrap {
  margin-top: 100px;
}

.dcx-receipt-logos-wrap > p {
  margin-bottom: 10px;
  font-weight: 300;
  text-align: center;
}

.dcx-receipt-logos-wrap > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dcx-receipt-logos-wrap > div > img {
  margin: 10px 15px;
}

@media (min-width: 540px) {
  .dcx-receipt-page {
    font-size: 18px;
  }
  .dcx-receipt-wrap {
    margin: 150px 20px 0 20px;
  }
  .dcx-receipt-wrap > div {
    padding: 65px;
  }
  .dcx-receipt-wrap > div > h1 {
    font-size: 26px;
  }
  .dcx-receipt-wrap > div > a {
    font-size: 20px;
  }
}
/* Debitor */
/* ----------------------------------------------------------------
   Debitor – generel styling
----------------------------------------------------------------- */
.debitor-hl > span {
  font-size: 18px;
  margin-left: 10px;
}

/* ---------- Layout / Grid ---------- */
.debitor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
.debitor-grid input {
  height: 37px;
  padding: 0 10px;
  margin-right: 5px;
  font-size: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 1024px) {
  .debitor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ---------- Sektioner ---------- */
.debitor-section {
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  padding: 20px;
}
.debitor-section > h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 20px;
  border-bottom: 1px solid rgba(47, 52, 74, 0.2);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.debitor-section > h2 > svg {
  width: 24px;
  height: 24px;
  fill: rgba(47, 52, 74, 0.5);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Kundeinfo
----------------------------------------------------------------- */
.kundeinfo {
  margin-top: 20px;
}

.kundeinfo > p {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.kundeinfo > p:last-of-type {
  margin-bottom: 0;
}
.kundeinfo > p > span:first-of-type {
  margin-bottom: 3px;
  font-size: 14px;
  color: rgba(47, 52, 74, 0.85);
}
.kundeinfo > p > span:last-of-type {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  font-weight: 500;
  background: #f7f7f7;
  border-radius: 5px;
}

.additional-client-info,
.additional-client-info .kundeinfo {
  margin-top: 20px;
}

/* ----------------------------------------------------------------
   Kundeopslag / handlinger i top
----------------------------------------------------------------- */
.debitor-bilag-btn,
.find-debitor-btn,
.debitor-f-o-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  padding: 8px 14px 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  text-decoration: none;
  font-weight: 500;
  color: #2f344a;
  background: #fff;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.debitor-bilag-btn > svg,
.find-debitor-btn > svg,
.debitor-f-o-btn > svg {
  height: 20px;
  width: 20px;
  fill: #2f344a;
}

.debitor-bilag-btn:hover,
.find-debitor-btn:hover,
.debitor-f-o-btn:hover {
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(47, 52, 74, 0.12);
}

.debitor-price-box-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.debitor-price-box {
  background: #f7f7f7;
  width: 58%;
  padding: 20px;
  border-radius: 5px;
}

.lookup-wrapper {
  display: flex;
  align-items: center;
}

.price-label,
.price-result {
  font-size: 12px;
  color: #2f344a;
  margin-bottom: 4px;
  font-weight: 500;
}

.price-result {
  margin-top: 6px;
}

.price-result span {
  font-weight: 400;
}

.debitor-buy-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38%;
  color: #2c5714;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  background: #fff;
  box-shadow: rgba(47, 52, 74, 0.15) 0px 4px 10px;
  transition: transform 0.08s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.debitor-buy-btn > svg {
  width: 40px;
  height: 40px;
  fill: #2c5714;
  margin-bottom: 8px;
}

.debitor-buy-btn:hover {
  box-shadow: rgba(47, 52, 74, 0.18) 0px 6px 14px;
  border-color: rgba(47, 52, 74, 0.3);
}

.debitor-buy-btn:active {
  transform: translateY(1px);
}

/* Stack prisboks og CTA på små skærme */
@media (max-width: 820px) {
  .debitor-price-box-wrap {
    flex-direction: column;
  }
  .debitor-price-box,
  .debitor-buy-btn {
    width: 100%;
  }
}
/* ----------------------------------------------------------------
   Bemærkninger
----------------------------------------------------------------- */
.remark-log-liste {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.remark-log-linje {
  background: #fff;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  padding: 10px 12px;
}

.remark-log-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}

.remark-log-besked {
  font-size: 14px;
}

.remark-kommentar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.remark-kommentar-form textarea {
  font-size: 14px;
  padding: 14px;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  background: #f7f7f7;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.remark-kommentar-form button {
  align-self: flex-start;
  background: #2f344a;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 5px;
  transition: box-shadow 0.15s ease, transform 0.08s ease;
}
.remark-kommentar-form button:hover {
  box-shadow: 0 4px 12px rgba(47, 52, 74, 0.18);
}
.remark-kommentar-form button:active {
  transform: translateY(1px);
}

/* ----------------------------------------------------------------
   Handlinger / Accordion
----------------------------------------------------------------- */
.debitor-handlinger > div:not(:last-of-type) {
  margin-bottom: 20px;
}

.debitor-accordion-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 40px 12px 12px; /* ekstra plads højre til indikator */
  background: #fff;
  color: #2f344a;
  font-weight: 500;
  text-align: left;
  border: 1px solid rgba(47, 52, 74, 0.2);
  border-radius: 5px;
  outline: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.debitor-accordion-toggle:hover {
  background: #f7f7f7;
}

/* Aktiv tilstand (klasse eller aria) */
.debitor-accordion-active,
.debitor-accordion-toggle[aria-expanded=true] {
  background: #f7f7f7;
}

/* Crisp + / − (uden font) – 16x16 container med 2 linære gradients */
.debitor-accordion-toggle::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -8px; /* halvdelen af højden = hele pixels */
  background: linear-gradient(currentColor, currentColor) center/14px 2px no-repeat, linear-gradient(currentColor, currentColor) center/2px 14px no-repeat; /* lodret (plus) */
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.15s ease, color 0.15s ease;
}

/* Åben = minus (skjul lodret linje) */
.debitor-accordion-active::after,
.debitor-accordion-toggle[aria-expanded=true]::after {
  background: linear-gradient(currentColor, currentColor) center/16px 2px no-repeat, linear-gradient(currentColor, currentColor) center/0 0 no-repeat;
  color: #2f344a;
  opacity: 1;
}

.debitor-accordion-content {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  font-weight: 500;
  transition: max-height 0.3s ease-out;
  will-change: max-height;
}

/* Menu i accordion */
.debitor-menu-list {
  list-style: none;
  padding: 12px 0 6px 0;
  margin: 0;
}
.debitor-menu-list li + li {
  margin-top: 4px;
}
.debitor-menu-list a,
.debitor-menu-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 5px;
  transition: background-color 0.15s ease;
}
.debitor-menu-list a span,
.debitor-menu-list button span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
.debitor-menu-list a span::after,
.debitor-menu-list button span::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #2f344a;
}
.debitor-menu-list a svg,
.debitor-menu-list button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.debitor-menu-list a:hover,
.debitor-menu-list button:hover {
  background: #f7f7f7;
}
.debitor-menu-list .disabled,
.debitor-menu-list .disabled:hover {
  opacity: 0.55;
  cursor: not-allowed;
  background: transparent;
}

/* Special Agreements */
.commit-message-wrap {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
  padding: 22px;
  color: #111827;
  max-width: 880px;
}

.commit-message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.commit-message-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.commit-message-required {
  font-size: 12px;
  color: #6b7280;
}

.commit-message-textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 14px 14px 40px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fbfcfe;
}

.commit-message-textarea::-moz-placeholder {
  color: #9aa3b2;
}

.commit-message-textarea::placeholder {
  color: #9aa3b2;
}

.commit-message-textarea[aria-invalid=true] {
  border-color: #b91c1c;
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.12);
}

.commit-message-helper {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}

.commit-message-error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
  font-weight: 600;
}

.commit-message-error.is-visible {
  display: block;
}

.commit-message-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.commit-confirm {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  display: none;
  place-items: center;
  padding: 20px;
  z-index: 1000;
}

.commit-confirm.is-open {
  display: grid;
}

.commit-confirm-dialog {
  width: min(560px, 100%);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
  padding: 22px 20px 16px;
}

.commit-confirm-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.commit-confirm-text {
  margin: 0 0 16px;
  color: #6b7280;
}

.commit-confirm-preview {
  background: #f8fafc;
  border: 1px dashed #dbe2ec;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: #334155;
  margin-bottom: 14px;
}

.commit-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 560px) {
  .commit-message-actions,
  .commit-confirm-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Error pages */
.error-page {
  width: 100%;
}

.error-code-wrap svg {
  width: 50px;
}

.error-code-hr {
  width: 70px;
  height: 2px;
  margin: 20px 0;
  background: #2f344a;
}

.error-to-start-msg {
  margin: 30px 0 15px 0;
}

.error-code-wrap a {
  display: inline-block;
  padding: 10px 16px;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  background: #2f344a;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.error-msg-wrap {
  margin-top: 40px;
}

.error-msg-wrap pre {
  padding: 20px;
  border: 1px solid #2f344a;
}

@media (min-width: 768px) {
  .error-page {
    max-width: 900px;
    margin: 0 auto;
  }
  .error-code-wrap {
    display: flex;
    align-items: center;
  }
  .error-code-wrap > div:first-of-type {
    order: 1;
    margin-left: auto;
  }
  .error-code-wrap > div:last-of-type {
    padding-right: 40px;
  }
  .error-code-wrap svg {
    width: 300px;
  }
  .error-msg-wrap pre {
    max-height: 500px;
    overflow-x: auto;
  }
}
/*------------------------------------*\
    #Miscellaneous
\*------------------------------------*/
/* JS */
/*------------------------------------*\
    #JS
\*------------------------------------*/
.hide {
  pointer-events: none;
  opacity: 0;
}

.show {
  pointer-events: auto;
  opacity: 1;
}

.hide-d {
  display: none;
}

.show-d {
  display: block;
}

.show-f {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.overflow-x {
  overflow-x: hidden;
}

.line-through {
  text-decoration: line-through;
}
/*# sourceMappingURL=main.css.map */
