@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.message-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 30px auto -60px;
}

.alert {
  float: left;
  padding: 16px 20px;
  margin-bottom: 12px;
  width: 100%;
  border-radius: 4px;
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert a {
  font-weight: 700;
  color: #002752;
}
.alert.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert.alert-success a {
  color: #0b2e13;
}
.alert.alert-notice {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert.alert-notice a {
  color: #533f03;
}
.alert.alert-error, .alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert.alert-error a, .alert.alert-danger a {
  color: #491217;
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.even-columns {
  display: flex;
}
.even-columns > * {
  width: 100%;
}

.col-25 {
  width: 25%;
}

.col-33 {
  width: 33.333%;
}

.col-50 {
  width: 50%;
}

.col-75 {
  width: 75%;
}

.col-100 {
  width: 100%;
}

form {
  display: flex;
  width: 100%;
  max-width: 100%;
}

input,
textarea,
select {
  float: left;
  width: 100%;
  border: 1px solid #e7eaf1;
  background-color: #fbfbfd;
  padding: 0 1em;
  height: 46px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #bbb;
  opacity: 1;
  font-style: italic;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #bbb;
  opacity: 1;
  font-style: italic;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #bbb;
  opacity: 1;
  font-style: italic;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  background-color: #f4f5f8;
  border-color: #d8dce4;
}
input.small,
textarea.small,
select.small {
  max-width: 200px;
}
input.medium,
textarea.medium,
select.medium {
  max-width: 480px;
}

input[type=file] {
  padding: 0;
  background: none;
  border: none;
  height: auto;
  font-size: inherit;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: auto;
  height: auto;
  padding: 0;
}

input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  top: -3px;
  overflow: hidden;
  cursor: pointer;
  border-color: #d8dce4;
}
input[type=checkbox]:hover, input[type=checkbox]:focus {
  background-color: #f4f5f8;
  border-color: #d8dce4;
}
input[type=checkbox]:checked {
  background-color: var(--clr-blue);
  border-color: var(--clr-blue);
}
input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  transform: rotate(45deg);
  height: 12px;
  width: 6px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.form-input-file .form-current-image {
  width: 100%;
  margin: 1em 0 1.5em;
}
.form-input-file .form-current-image.small img {
  height: 50px;
}
.form-input-file .form-current-image img {
  max-height: 100px;
}

select {
  background-image: url(/images/select_icon.svg);
  background-size: 10px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  padding-right: 26px;
}

option {
  font-weight: 500;
}

textarea {
  height: 200px;
  padding: 1em;
  font-weight: 500;
}

select.multiselect {
  float: none;
}

label {
  font-weight: 400;
  cursor: pointer;
}

.form-row {
  display: block;
  width: 100%;
  margin: 0 0 1.25em 0;
}
.form-row:last-child {
  margin-bottom: 0;
}
.form-row.actions {
  margin-top: 1.25em;
}

.form-input {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.form-input label {
  width: 100%;
  max-width: 200px;
  margin-top: 1em;
}
.form-input.checkbox input {
  margin: 14px 6px 0 0;
}
.form-input.radiobuttons label {
  margin-bottom: 10px;
}
.form-input.radiobuttons .radios {
  margin-top: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch.small {
  width: 42px;
  height: 24px;
  margin: 0;
  top: 2px;
}
.switch.small input:checked + .slider:before {
  transform: translateX(17px);
}
.switch.small .slider:before {
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: var(--clr-green);
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--clr-green);
}
.switch input:checked + .slider:before {
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 34px;
}

.select2-container .select2-selection--multiple {
  min-height: 42px;
  font-size: 13px;
}
.select2-container .select2-search--inline .select2-search__field {
  float: none;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ddd;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  padding: 4px 6px;
  border-radius: 0;
  font-size: 15px;
  color: #666;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding: 0 8px;
  color: #242424;
}

.radios {
  float: left;
  width: auto;
}
.radios .radio {
  float: left;
  margin-right: 24px;
}
.radios .radio input,
.radios .radio label {
  display: inline-block;
  width: auto !important;
  padding: 0 0 0 6px !important;
}

.sidemenu {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  min-height: 100vh;
  background: var(--clr-dark);
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  transition: max-width 0.2s ease;
}
.sidemenu .top {
  width: 100%;
  position: relative;
  padding: 1em 1.5em 0;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}
.sidemenu .top .top-content {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 1.5em;
}
.sidemenu .top .top-content:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #393f59;
  width: 100%;
}
.sidemenu .toggle-side-menu {
  float: left;
  text-align: center;
  cursor: pointer;
  padding: 1em 0 0.5em;
}
.sidemenu .toggle-side-menu .icon {
  font-size: 24px;
  color: var(--clr-light);
}
.sidemenu .branding {
  float: left;
  margin-left: 10px;
  width: calc(100% - 40px);
  color: var(--clr-light);
  transition: opacity 0.15s ease;
}
.sidemenu .branding img {
  float: right;
  max-width: 137px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sidemenu .account {
  float: left;
  width: 100%;
  padding: 1.5em;
  overflow: hidden;
  color: var(--clr-light);
  margin-top: auto;
}
.sidemenu .account .user-info {
  float: left;
  width: 100%;
  padding-top: 2em;
  position: relative;
}
.sidemenu .account .user-info:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #393f59;
  width: 100%;
}
.sidemenu .account .user {
  float: left;
  width: 100%;
  margin-bottom: 4px;
  color: #fff;
}
.sidemenu .account a {
  float: left;
  color: var(--clr-light);
  margin-top: 4px;
}
.sidemenu .account a:hover span {
  text-decoration: underline;
}
.sidemenu .account a span {
  display: inline-block;
  margin-left: 4px;
}
.sidemenu .account a .icon {
  float: left;
  font-size: 19px;
  margin: 1px 4px 0 0;
}
.sidemenu .submenu {
  position: absolute;
  display: none;
  left: 100%;
  top: 0;
  padding: 0;
  background: #292f48;
}
.sidemenu .submenu li a.menu-item {
  color: #8fa3b3;
}
.sidemenu .submenu li a.menu-item.active {
  color: #fff;
}
.sidemenu .submenu li a.menu-item:hover {
  background: #484e69;
  color: #fff;
}
.sidemenu .submenu li a.menu-item .icon {
  width: 26px;
}
.sidemenu .divider {
  border-top: 1px solid #4f546b;
  padding: 5px 0;
  margin-top: 10px;
  background: #292f48;
}

.sidemenu ul,
.mobile-menu ul {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidemenu li,
.mobile-menu li {
  float: left;
  width: 100%;
  position: relative;
}
.sidemenu li.has-submenu:after,
.mobile-menu li.has-submenu:after {
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--clr-light);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\F105";
}
.sidemenu li:hover a,
.mobile-menu li:hover a {
  color: #fff;
  background: #292f48;
}
.sidemenu li:hover:after,
.mobile-menu li:hover:after {
  color: #fff;
}
.sidemenu li:hover .submenu,
.mobile-menu li:hover .submenu {
  display: block;
}
.sidemenu li:hover .icon,
.mobile-menu li:hover .icon {
  color: #abcce6;
}
.sidemenu li a.menu-item.active,
.mobile-menu li a.menu-item.active {
  color: #fff;
  font-weight: 700;
  background: #292f48;
}
.sidemenu li a.menu-item.active .icon,
.mobile-menu li a.menu-item.active .icon {
  color: #abcce6;
}
.sidemenu li .icon,
.mobile-menu li .icon {
  color: var(--clr-light);
  font-size: 16px;
  width: 30px;
  position: relative;
  top: 1px;
}
.sidemenu a.menu-item,
.mobile-menu a.menu-item {
  float: left;
  width: 100%;
  color: var(--clr-light);
  text-decoration: none;
  line-height: 100%;
  padding: 1.375em 1.5em;
}
.sidemenu a.menu-item:hover,
.mobile-menu a.menu-item:hover {
  background: #292f48;
  color: #fff;
}

.sidemenu.compact {
  max-width: 66px;
}
.sidemenu.compact .toggle-side-menu .icon {
  color: #abcce6;
}
.sidemenu.compact .submenu a.menu-item {
  width: 240px;
}

.sidemenu.instant {
  max-width: 66px;
  transition: none;
}

.sidemenu.visuallyhidden .top .branding,
.sidemenu.visuallyhidden a.menu-item span,
.sidemenu.visuallyhidden li.has-submenu:after,
.sidemenu.visuallyhidden .account .user-info:before,
.sidemenu.visuallyhidden .account .user,
.sidemenu.visuallyhidden .account a span {
  display: none;
}

.mobile-menu {
  position: fixed;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translateX(-100vw);
  background: var(--clr-dark);
  visibility: hidden;
  transition: transform 400ms ease, visibility 0s linear 500ms;
}
.mobile-menu.open {
  z-index: 1;
  transform: translateX(0);
  visibility: visible;
  transition: transform 400ms ease, visibility 0s linear 0s;
}
.mobile-menu ul {
  margin-top: 7em;
}
.mobile-menu li:first-of-type a {
  border-top: 1px solid #24323c;
}
.mobile-menu li a.menu-item {
  padding: 1.5em 2em;
  border-bottom: 1px solid #24323c;
}
.mobile-menu li a.menu-item.active {
  border-top: none;
  border-bottom: none;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
:root {
  --font:"Poppins", sans-serif;
  --clr-background:#eef0f8;
  --clr-dark:#121325;
  --clr-light:#7a92a5;
  --clr-text:#242424;
  --clr-table-head-text:#b5b5c3;
  --clr-table-border:#ebedf3;
  --base-lightness: 50%;
  --base-blue: 210, 100%;
  --base-red: 2, 76%;
  --base-green: 145, 55%;
  --base-secondary: 210, 33%;
  --clr-blue:hsl(var(--base-blue), calc(var(--base-lightness) + 11%));
  --clr-red:hsl(var(--base-red), calc(var(--base-lightness) + 4%));
  --clr-green:hsl(var(--base-green), calc(var(--base-lightness) - 1%));
  --clr-secondary:hsl(var(--base-secondary), calc(var(--base-lightness) + 46%));
  --content-width:1480px;
  --shadow: 0px 0px 30px 0px rgba(82,63,105,0.05);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

body {
  font-weight: 500;
  line-height: 1.4;
  font-size: 0.8125rem;
  text-align: left;
  background: var(--clr-background);
  color: var(--clr-text);
  font-family: var(--font);
}

.main-container {
  width: 100vw;
  display: flex;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  transition: width 200ms ease;
}

.layout-container {
  min-height: 100vh;
  width: calc(100vw - 320px);
  background: var(--clr-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6em 5em;
  transition: transform 400ms ease, width 200ms ease;
}
.layout-container.wide {
  width: calc(100vw - 66px);
}
.layout-container.open {
  transform: translateX(100vw);
}
.layout-container.instant {
  transition: transform 400ms ease, width 0ms ease;
}

.content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: max-width 0.2s ease;
  max-width: var(--content-width);
}
.content-container.wide {
  max-width: min(100%, 2100px);
}
.content-container.instant {
  transition: none;
}

.editform {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.section {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.325em;
  padding: 3em;
  width: 100%;
  box-shadow: var(--shadow);
}
.section.side {
  margin-bottom: auto;
  position: sticky;
  top: 20px;
  width: 100%;
  max-width: 380px;
  margin-left: 4em;
}
.section.side .form-input {
  flex-direction: column;
}
.section.side .form-input label {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.section.side .form-input .switch {
  width: 60px;
  margin-top: 0;
}
.section.side .actions {
  margin-top: 1em;
}

h1, h2, h3, h4 {
  margin-bottom: 1em;
}

h1, .h1 {
  font-size: 1.75rem;
  line-height: 2rem;
}

a {
  color: var(--clr-blue);
}

strong {
  font-weight: 600;
}

button,
.button {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 1em 2em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 150ms ease;
  --clr-blue:	hsl(var(--base-blue), calc(var(--base-lightness) + 11%));
  background-color: var(--clr-blue);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button:hover, button:focus,
.button:hover,
.button:focus {
  --base-lightness: 44%;
  outline: none;
}
button.green,
.button.green {
  --clr-green:hsl(var(--base-green), calc(var(--base-lightness) - 1%));
  background-color: var(--clr-green);
}
button.red,
.button.red {
  --clr-red:hsl(var(--base-red), calc(var(--base-lightness) + 4%));
  background-color: var(--clr-red);
}
button.secondary,
.button.secondary {
  --clr-secondary:hsl(var(--base-secondary), calc(var(--base-lightness) + 46%));
  text-transform: none;
  color: var(--clr-text);
  background-color: var(--clr-secondary);
}
button.small,
.button.small {
  padding: 0.625em 0.8125em;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: none;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  background: var(--clr-dark);
  z-index: 3;
  display: none;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 1.5em 1em 0.5em;
}
.header .toggle-mobile-menu {
  font-size: 1.25rem;
  width: 40px;
  height: 30px;
  text-align: center;
  color: var(--clr-light);
}
.header .toggle-mobile-menu .close {
  padding-top: 4px;
  display: none;
}
.header .toggle-mobile-menu.open .close {
  display: block;
}
.header .toggle-mobile-menu.open .open {
  display: none;
}
.header .branding {
  width: 130px;
  margin: 0 auto;
}
.header .account {
  color: var(--clr-light);
}
.header .account .icon {
  padding-right: 6px;
  top: 1px;
}

.page-title {
  margin: 0 0 1em;
  width: 100%;
}
.page-title .total-amount {
  color: var(--clr-light);
}
.page-title .filtered {
  color: orange;
  font-size: 0.5em;
  font-style: italic;
  font-weight: normal;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
table thead tr:hover {
  background: none;
}
table th {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-table-head-text);
  letter-spacing: 1px;
  padding: 0.75em 0.75em;
  border-bottom: 1px solid var(--clr-table-border);
}
table th.full {
  width: 100%;
}
table th.xlarge {
  width: 50%;
}
table th.large {
  width: 25%;
}
table th.medium {
  min-width: 200px;
  width: 200px;
}
table th.small {
  width: 120px;
  min-width: 120px;
}
table th.xsmall {
  min-width: 60px;
  width: 60px;
}
table tr {
  border-bottom: 1px solid var(--clr-table-border);
}
table tr:last-child {
  border-bottom: none;
}
table tr:hover {
  background: #fbfbfb;
}
table td {
  padding: 0.875em 0.75em;
}
table th,
table td {
  white-space: nowrap;
}
table th.left,
table td.left {
  text-align: left;
}
table th.right,
table td.right {
  text-align: right;
}
table th.center,
table td.center {
  text-align: center;
}
table .actions {
  float: right;
}
table .actions form {
  float: right;
  width: auto;
  margin-left: 5px;
}
table .actions .button {
  float: right;
  margin-left: 4px;
}

.container {
  float: left;
  width: 100%;
}

.image-container {
  float: left;
}
.image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.loginscreen {
  background: #fff;
  min-height: 100vh;
  padding: 0 2em;
}
.loginscreen .container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
}
.loginscreen .image-container {
  width: 100%;
  height: max(50vh, 350px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.loginscreen .loginform {
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 3em 0;
}
.loginscreen .logo-container {
  float: left;
  width: 100%;
  margin-bottom: 2.5em;
}
.loginscreen .logo-container img {
  width: 100%;
}
.loginscreen form {
  flex-direction: column;
  max-width: 480px;
  background: #fff;
  border-radius: 10px;
  padding: 3em 4em;
  box-shadow: 0 2.7px 4.7px rgba(0, 0, 0, 0.016), 0 8.9px 15.6px rgba(0, 0, 0, 0.024), 0 40px 70px rgba(0, 0, 0, 0.08);
}
.loginscreen form h1 {
  font-size: 24px;
  line-height: 24px;
  margin: 0 0 24px 0;
  font-weight: 800;
}
.loginscreen form .forgot-password-link {
  float: right;
  margin-top: 10px;
}
.loginscreen .form-input {
  flex-direction: column;
}
.loginscreen .form-input label {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.loginscreen .form-input.checkbox {
  flex-direction: row;
}
.loginscreen .form-input.checkbox input {
  margin: 2px 0 0;
}
.loginscreen .form-input.checkbox label {
  padding-left: 6px;
}
.loginscreen .invalid-feedback {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  width: 100%;
  display: inline-block;
  padding: 6px 16px;
  margin-top: 6px;
}
.loginscreen .invalid-feedback strong {
  font-weight: 300;
}

.page-actions {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 2em;
}
.page-actions input, .page-actions select, .page-actions option {
  font-weight: 500;
}
.page-actions .search {
  margin-right: 1.25em;
  position: relative;
}
.page-actions .search input {
  width: 100%;
  max-width: 280px;
  padding-right: 50px;
}
.page-actions .search .button {
  background: none;
  position: absolute;
  color: #242424;
  top: 1px;
  right: 1px;
  padding: 11px 16px 10px;
  font-size: 15px;
  border-radius: 0px 4px 4px 0px;
  border: none;
}
.page-actions .search .button:hover {
  border: none;
  background: #f2f2f2;
}
.page-actions .toggle-filters {
  width: 100%;
  max-width: 46px;
  height: 46px;
  padding: 1em 0;
  text-align: center;
  margin-left: auto;
  display: none;
}
.page-actions .toggle-filters .icon {
  font-size: 1rem;
  position: relative;
  top: 2px;
}
.page-actions .add-button {
  margin-left: 0;
  height: 46px;
  min-width: 120px;
}
.page-actions .add-button.right {
  margin-left: auto;
}
.page-actions .add-button .icon {
  display: none;
  font-size: 1.25rem;
}

.remove_filters {
  display: none;
  position: relative;
  margin-bottom: 1.5em;
  margin-right: auto;
}
.remove_filters .icon {
  padding-right: 6px;
}

.filter-container {
  display: flex;
}
.filter-container .top {
  display: none;
  margin-bottom: 2em;
}
.filter-container .top h2 {
  margin-bottom: 0;
}
.filter-container .close-filters {
  display: none;
  margin-left: auto;
  margin-right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 4px;
}
.filter-container .filter {
  margin-right: 1.25em;
  width: 100%;
  max-width: 200px;
}
.filter-container .filter span.label {
  float: left;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.filter-container .filter select {
  width: 100%;
}
.filter-container .filter .filterform {
  float: left;
}

.tabs {
  width: 100%;
  float: left;
  margin: 1em 0 2em 0;
  border-radius: 0.375em 0 0 0;
  border-bottom: 1px solid #D2DFE9;
}
.tabs .tab {
  border: 1px solid #D2DFE9;
  border-bottom: 1px solid #D2DFE9;
  border-bottom: 0;
  border-left: 0;
  padding: 0.875em 1.75em;
  color: #000;
  font-weight: bold;
  float: left;
  cursor: pointer;
  transition: all linear 0.1s;
  text-decoration: none;
  opacity: 0.5;
  background: #f1f1f1;
  position: relative;
  top: 1px;
  border-radius: 0.375em 0.375em 0 0;
}
.tabs .tab:first-child {
  border-left: 1px solid #D2DFE9;
}
.tabs .tab.active {
  background: #20455e;
  border-color: #20455e;
  color: #fff;
  opacity: 1;
}
.tabs .tab.active:hover {
  border-color: #20455e;
  opacity: 1;
}
.tabs .tab:hover {
  opacity: 0.8;
}

.tabpanes {
  float: left;
  width: 100%;
  position: relative;
}
.tabpanes .pane {
  float: left;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.tabpanes .pane.active {
  height: auto;
  position: relative;
}
.tabpanes .pane-content {
  float: left;
  width: 100%;
}

/* To do nieuwe styling */
.pagination {
  float: left;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.pagination li {
  float: left;
  margin: -1px 0 0 -1px;
}
.pagination li:last-child a, .pagination li:last-child span {
  border-right: 1px solid #ddd;
}
.pagination li a,
.pagination li span {
  float: left;
  padding: 0;
  width: 38px;
  line-height: 38px;
  border: 1px solid #ddd;
  text-decoration: none;
  text-align: center;
}
.pagination li a:hover,
.pagination li span:hover {
  background: #f4f4f4;
}
.pagination li.disabled a, .pagination li.disabled span {
  color: #ccc;
}
.pagination li.active {
  z-index: 1;
  position: relative;
}
.pagination li.active a, .pagination li.active span {
  color: #fff;
  border: 1px solid var(--clr-blue);
  background: var(--clr-blue);
}

.descr {
  float: right;
  color: #999;
  font-size: 0.9em;
  margin: 6px 0;
}

@media screen and (min-width: 2600px) {
  .layout-container {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1921px) {
  .content-container {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1500px) {
  .sidemenu {
    max-width: 260px;
  }

  .layout-container {
    padding: 4em;
    width: calc(100vw - 260px);
  }

  .section .side {
    max-width: 320px;
  }

  .form-input {
    flex-direction: column;
  }
  .form-input label {
    margin-top: 0.25em;
    margin-bottom: 0.375em;
  }
}
@media screen and (max-width: 1280px) {
  .editform {
    flex-direction: column;
  }

  .section.side {
    max-width: 100%;
    margin: 3em 0 0 0;
  }

  table th {
    min-width: 120px;
  }
  table th.small {
    width: auto;
    min-width: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    display: flex;
    max-width: 100vw;
  }

  .sidemenu {
    display: none;
  }

  .layout-container {
    width: 100vw;
    padding: 6em 1.5em;
  }
  .layout-container.wide {
    width: 100vw;
  }

  .section {
    padding: 3em 2.25em 2.25em;
  }
}
@media screen and (max-width: 700px) {
  .layout-container {
    padding: 6em 1em;
  }

  .section {
    padding: 3em 1.75em 2.25em;
  }

  .page-actions .toggle-filters {
    display: block;
  }
  .page-actions .add-button {
    min-width: 0;
    padding: 1em 0;
    width: 100%;
    max-width: 46px;
    text-align: center;
  }
  .page-actions .add-button.right {
    margin-left: 1em;
  }
  .page-actions .add-button span {
    display: none;
  }
  .page-actions .add-button .icon {
    display: block;
  }

  .filter-container {
    position: fixed;
    flex-direction: column;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 3em 3em;
    top: 0;
    left: 0;
    visibility: hidden;
    transform: translateX(100vw);
    overflow-y: auto;
    transition: transform 400ms ease, visibility 0s linear 400ms;
  }
  .filter-container.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 400ms ease, visibility 0s linear 0s;
  }
  .filter-container.instant {
    transition: transform 0ms ease, visibility 0s linear 0ms;
  }
  .filter-container .top {
    display: flex;
  }
  .filter-container .close-filters {
    display: block;
  }
  .filter-container .filter {
    max-width: 100%;
    margin-bottom: 2em;
  }
  .filter-container .filter .label {
    font-size: 1rem;
  }

  .remove_filters {
    display: block;
  }

  input, textarea, select {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) and (orientation: portrait) {
  .loginscreen {
    position: fixed;
    width: 100%;
  }
  .loginscreen .loginform {
    margin-top: 10vh;
    padding: 0;
  }
  .loginscreen form {
    padding: 2.5em 2em;
  }
  .loginscreen .logo-container {
    max-width: 210px;
  }
}