html, body {
  /* Main color palette */
  --main-color: hsl(35, 100%, 50%);
  --main-color-light: hsl(35, 100%, 96%);
  --complement-color: hsl(215, 100%, 50%);
  --complement-color-light: hsl(215, 100%, 95%);
  --complement-color-dark: hsl(215, 100%, 15%);
  --backdrop-color: hsl(210, 10%, 90%);
  --background-color: hsl(255, 0%, 100%);
  --highlighted-element-color: hsl(35, 100%, 50%);
  /* Global variables */
  --transition-speed: .2s;
  --top-row-height: 5rem;
  --top-row-margin: 35px;
  --site-max-width: 90rem;
  --side-menu-width: 75%;
  --icon-size: 1rem;
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.075);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  scroll-behavior: smooth !important;
}

::-moz-selection { /* Code for Firefox */
  background: var(--main-color);
}

::selection {
  background: var(--main-color);
}

/*Animation observer*/


/*Used by js for threshhold*/
.animation-item {
  --animation-distance: 2rem;
  --animation-duration: calc(var(--transition-speed) * 2);
  --custom-easing: cubic-bezier(.35,.65,.45,.95);
}

/*Class given by js when its spotted*/
.react {
}

.animation-item .fly-in-bottom {
  opacity: 0;
  transform: translateY(var(--animation-distance));
  transition: transform var(--animation-duration) var(--custom-easing), opacity var(--animation-duration) var(--custom-easing);
}

.react .fly-in-bottom,
.react.fly-in-bottom {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: var(--delay);
}

.animation-item .fly-in-right {
  opacity: 0;
  transform: translateX(var(--animation-distance));
  transition: transform var(--animation-duration) var(--custom-easing), opacity var(--animation-duration) var(--custom-easing);
}

.react .fly-in-right,
.react.fly-in-right {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: var(--delay);
}

.animation-item .fly-in-left {
  opacity: 0;
  transform: translateX(calc(var(--animation-distance) * -1));
  transition: transform var(--animation-duration) var(--custom-easing), opacity var(--animation-duration) var(--custom-easing);
}

.react .fly-in-left,
.react.fly-in-left {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: var(--delay);
}

/* Tablet / mobile animations */
@media (max-width: 870px) {
  /* Left and right animations become from-bottom animations */
  .animation-item .fly-in-right,
  .animation-item .fly-in-left {
    opacity: 0;
    transform: translateY(var(--animation-distance));
    transition: transform var(--animation-duration) var(--custom-easing), opacity var(--animation-duration) var(--custom-easing);
  }

  .react .fly-in-right,
  .react.fly-in-right,
  .react .fly-in-left,
  .react.fly-in-left {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: var(--delay);
  }
}

/*Detail styling*/

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.center {
  justify-content: center;
}


.align-cent {
  align-items: center;
}

/*Tablet*/
@media (max-width: 870px) {
  .align-cent {
    justify-content: center;
  }
}

/*Mobiel*/
@media (max-width: 750px) {
}


/* Menu disabled scrolling */
@media (max-width: 870px) {
  body:has(.nav-menu-container.open) {
    overflow: hidden;
  }
}

/* Element classes */

.back-to-news-button {
  color: black;
  gap: 0.5rem;
  align-items: center;
  display: flex;
  width: fit-content;
  margin-bottom: 2rem;
}

  .back-to-news-button > div.icon > svg {
    height: inherit;
    width: inherit;
    vertical-align: top;
  }

  .back-to-news-button:hover,
  .back-to-news-button:hover > .icon > svg > path {
    color: var(--highlighted-element-color);
    fill: var(--highlighted-element-color);
  }

.preview-card > a {
  display: block;
  height: 100%;
}

.ddigit-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  max-width: 20rem;
  padding: 1rem;
}


.no-margin {
  margin: 0;
}

/*Folder view Hover effect*/
.folder-view-wrapper:has(.folder-image:hover) .folder-image {
  transition-delay: 0ms;
  opacity: 0.5;
}

.folder-view-wrapper .folder-image:hover {
  z-index: 10;
  opacity: 1 !important;
}

/* Big header, Collection product pages header */
.big-header {
  height: 55vh;
  display: grid;
  grid-template-columns: 1fr 45%;
  align-items: center;
}

  .big-header .header-title p {
    font-size: 1.1rem;
  }

  .big-header .folder-image {
    max-height: 45vh;
  }

@media (max-width: 500px) {
  .big-header {
    grid-template-columns: unset;
    grid-template-rows: auto;
  }

    .big-header .folder-image {
      max-height: 25vh;
    }
}

.diagram {
  display: grid;
  grid-template-rows: 1fr;
  font-size: 1.75rem;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
}

  .diagram .icon {
    display: flex;
    align-items: center;
  }

/*Mobiel*/
@media (max-width: 550px) {
  .diagram {
    font-size: 1.2rem;
  }

    .diagram .icon {
      height: calc(var(--icon-size) * 0.75);
      width: calc(var(--icon-size) * 0.75);
    }
}


.big-text {
  line-height: 1.75rem;
  font-size: 1.2rem;
  margin: 0;
}

p, li {
  max-width: 75ch;
}

  p.full-text {
    max-width: unset;
  }

.icon.large {
  /* Is gone in new nuget version, 
    but new nuget version has problem with html fragnents preventing update */
  padding: unset !important;
}

.big-icon {
  --icon-size: 4rem;
}

.medium-icon {
  --icon-size: 2rem;
}

.rotate-270 {
  transform: rotate(270deg);
}

.attention-button {
  background-color: var(--main-color);
  border-radius: 1rem;
  color: white;
  padding: .5rem 1rem;
  transition: all ease var(--transition-speed);
  font-size: 1.15rem;
  margin: auto;
  border: none;
}

  .attention-button:hover {
    background-color: var(--complement-color-dark);
    cursor: pointer;
  }

.nav-link {
  text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--highlighted-element-color);
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  transition: color var(--transition-speed) ease;
}

  a:not(:has(div)):not(.attention-button):hover {
    /*opacity: 50%;*/
    color: var(--complement-color-dark);
  }

  a[target="_blank"] {
    position: relative;
    transition: color var(--transition-speed) ease, padding-right 0.1s ease-in-out;
  }

    a[target="_blank"]:hover {
      padding-right: calc(6px + 1ch);
    }

    a[target="_blank"]::after {
      content: '\1F865';
      position: absolute;
      left: auto;
      right: auto;
      padding-left: 2px;
      transform: scaleX(0);
      opacity: 0;
      transform-origin: right;
      transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out;
    }

    a[target="_blank"]:hover::after {
      transform: scaleX(1);
      transform-origin: left;
      opacity: 1;
    }

.active-link {
  pointer-events: none;
  cursor: default;
  color: var(--main-color) !important;
}

h1:focus {
  /* Prevents outline flicker */
  outline: none;
  transition: none !important;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}

  .blazor-error-boundary::after {
    content: "An error has occurred."
  }

.mobile {
  display: none;
}

.pre {
  display: inline-block;
  margin: 1em 0px;
}

.code {
  font-family: Courier, monospace;
  background-color: #f5f5f5;
  padding: 2px 4px;
  box-shadow: 0 0 1px rgba(33,37,41,.5);
  border-radius: 4px;
  font-size: .9em;
  word-wrap: break-word;
}

  .code a {
    color: inherit;
  }

/*Tablet*/
@media (max-width: 870px) {
  html, body {
    --site-max-width: 100vw;
    --top-row-margin: 0px;
  }

  .not-mobile {
    display: none !important;
  }

  .mobile {
    display: block;
  }

  .content-row {
    grid-template-rows: repeat(auto-fit, minmax(1rem, auto));
  }

  .big-text {
    line-height: 1.5rem;
    font-size: 1.1rem;
    padding: 0 .5rem;
  }
}

/*Mobiel*/
@media (max-width: 750px) {
}
