.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0px;
}

.float-right {
  float: right;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-8 {
  margin-right: 2rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.w-6 {
  width: 1.5rem;
}

.min-w-product {
  min-width: 150px;
}

.max-w-full {
  max-width: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-grow {
  flex-grow: 1;
}

.resize {
  resize: both;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-300 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-divide-opacity));
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.bg-soft-blue {
  --tw-bg-opacity: 1;
  background-color: rgba(211, 230, 248, var(--tw-bg-opacity));
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 36, 98, var(--tw-bg-opacity));
}

.p-10 {
  padding: 2.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-0 {
  padding-left: 0px;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

.leading-none {
  line-height: 1;
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgba(55, 36, 98, var(--tw-text-opacity));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-secondary {
  --tw-text-opacity: 1;
  color: rgba(0, 176, 127, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
  filter: var(--tw-filter);
}

h1 {
  font-size: 3.75rem;
  line-height: 1;
  line-height: 1.25;
}

p {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.375;
}

header {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  header {
    padding-left: 0px;
    padding-right: 0px;
  }
}

header {
  z-index: 1000;
}

.menu--open nav {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .menu--open nav {
    padding-left: 0px;
    padding-right: 0px;
  }
}

header nav #login.login--open .login--overlay {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  header nav #login.login--open .login--overlay {
    padding-left: 0px;
    padding-right: 0px;
  }
}

section#slider .block.block-primary h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 640px) {
  section#slider .block.block-primary h1 {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  section#slider .block.block-primary h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

section#slider .block.block-primary h1 {
  line-height: 1.375;
}

@media only screen and (max-width: 992px) {
  header .mobile-icon {
    padding: 1.25rem;
  }

  .menu--open nav ul li.dropdown.open .dropdown-menu {
    display: block;
  }

  .menu--open nav ul li.dropdown.open .dropdown-menu {
    position: relative;
  }

  .menu--open nav ul li.dropdown.open .dropdown-menu {
    margin-top: 0px;
  }

  .menu--open nav ul li.dropdown.open .dropdown-menu {
    width: 100%;
  }

  header nav ul li .dropdown-menu a.dropdown-item {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  header nav ul li .dropdown-menu a.dropdown-item {
    line-height: 1.625;
  }
}

section#slider.small .block.block-primary {
  padding-left: 1.5rem;
}

section#slider.small .block.block-primary h1 {
  margin-bottom: 0px;
  font-size: 3.75rem;
  line-height: 1;
}

.includer {
  margin-top: 2.5rem;
  display: none;
}

#filterResults .btn {
  width: 100%;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  margin: 2px;
  height: 33px !important;
  font-size: 13px !important;
  padding: 9px 8px !important;
}

.nav-pills .nav-item.active .nav-link, .nav-pills .show > .nav-link {
  background-color: #372462 !important;
  color: #fff !important;
}

#sidebar > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
}

#sidebar {
  padding-left: 0px;
}

@media (min-width: 1024px) {
  #sidebar {
    padding-left: 2.5rem;
  }
}

ul.detailsTab > li {
  padding: 7px 15px 4px;
}

ul.detailsTab > li.active {
  background: #372462;
}

ul.detailsTab > li.active > a {
  color: #fff;
}

section#page .table tbody tr td {
  font-size: 1.5rem;
  line-height: 2rem;
}

.fade:not(.show) {
  opacity: 1 !important;
  padding-right: 10px !important;
}

.modal-backdrop {
  background-color: rgba(0,0,0,0.5) !important;
}

#FeedbackModal {
  margin-top: 5rem;
}

#FeedbackModal .modal-dialog {
  transform: none;
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
}

.control-label {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media only screen and (max-width: 992px) {
  main ul:not(.nav) {
    padding-left: 40px;
  }
}

.btn-info  {
  background: #d9dadc!important;
}

.btn-info.active, .btn-info:hover {
  background-color: #372462 !important;
}

.btn-group .btn-info:not(.active) {
  color: #212529 !important;
}

.btn-group .btn-info:not(.active):hover {
  color: white !important;
}

.systeemlabel .panel-heading:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f078";
  bottom: 12px;
  right: 17px;
}

.systeemlabel .panel-heading.collapsed:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f077";
  bottom: 14px;
  right: 17px;
}

.systeemlabel .input-group .input-group-addon {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #eee;
  border: 2px solid #d2d2d2;
  border-radius: 0;
  border-right: 0;
}

.systeemlabel .valuerow .form-control {
  border-right: solid 2px #d2d2d2;
}

.systeemlabel .panel-body {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.btn.btn-default {
  color: #fff !important;
}

.modal.fade .modal-dialog {
  transform: none;
}

.modal-header .close {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:no-underline:hover {
  text-decoration: none;
}

@media (min-width: 640px) {
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:grid {
    display: grid;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:max-w-90 {
    max-width: 90vw;
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  .xl\:mt-2 {
    margin-top: 0.5rem;
  }

  .xl\:inline-block {
    display: inline-block;
  }

  .xl\:inline-flex {
    display: inline-flex;
  }

  .xl\:grid {
    display: grid;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:w-full {
    width: 100%;
  }

  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .xl\:pr-6 {
    padding-right: 1.5rem;
  }

  .xl\:pr-12 {
    padding-right: 3rem;
  }
}