/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

ul {
  margin-top: 1rem;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

#root,
#__next {
  isolation: isolate;
}

/****************/
/* INIT BLOCKS */
/****************/
@font-face {
  font-family: "Source-sans-pro-regular";
  src: url("../fonts/source-sans-pro.regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Source-sans-pro-bold";
  src: url("../fonts/source-sans-pro.bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Source-sans-pro-black";
  src: url("../fonts/source-sans-pro.black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Source-sans-pro-light";
  src: url("../fonts/source-sans-pro.light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Pt-sans-bold";
  src: url("../fonts/pt-sans.bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Pt-sans-regular";
  src: url("../fonts/pt-sans.regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
h1 {
  font-family: "Source-sans-pro-regular";
  line-height: 65px;
  font-size: clamp(4.0625rem, 4.0625rem + (1vw - 0.48rem) * 0, 4.0625rem);
  min-height: 0vw;
  color: #0784B0;
}

h2 {
  font-family: "Source-sans-pro-light";
  line-height: 55px;
  font-size: clamp(3.4375rem, 3.4375rem + (1vw - 0.48rem) * 0, 3.4375rem);
  min-height: 0vw;
  color: #0784B0;
}

h3 {
  font-family: "Pt-sans-bold";
  line-height: 40px;
  font-size: clamp(1.75rem, 1.75rem + (1vw - 0.48rem) * 0, 1.75rem);
  min-height: 0vw;
  color: #0784B0;
}

h4 {
  font-family: "Pt-sans-bold";
  line-height: 40px;
  font-size: clamp(1.625rem, 1.625rem + (1vw - 0.48rem) * 0, 1.625rem);
  min-height: 0vw;
  color: #0784B0;
}

h5 {
  font-family: "Pt-sans-bold";
  line-height: 30px;
  font-size: clamp(1.5rem, 1.5rem + (1vw - 0.48rem) * 0, 1.5rem);
  min-height: 0vw;
  color: #0784B0;
}

h6 {
  font-family: "Pt-sans-bold";
  line-height: 48px;
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.48rem) * 0, 1.125rem);
  min-height: 0vw;
  color: #0784B0;
}

p, body {
  font-family: "Pt-sans-regular";
  line-height: 36px;
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.48rem) * 0, 1.125rem);
  min-height: 0vw;
  color: #000000;
}

a.btn, a.list-group-nav-link, a.list-group-topbar-link, button, a {
  font-family: "Pt-sans-bold";
  line-height: 23px;
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.48rem) * 0, 1.125rem);
  min-height: 0vw;
}

form {
  font-family: "Pt-sans-bold";
  line-height: 23px;
  font-size: clamp(1rem, 1rem + (1vw - 0.48rem) * 0, 1rem);
  min-height: 0vw;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: var(--btn-border-width, 0) var(--btn-border-style, none) var(--btn-border-color, transparent);
  border-radius: var(--btn-border-radius);
  background-clip: border-box;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: var(--btn-box-shadow);
  cursor: pointer;
}
.btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
  box-shadow: var(--btn-hover-shadow-color);
}
.btn:active {
  background: var(--btn-active-bg);
  color: var(--btn-active-color);
  border-color: var(--btn-active-border);
}
.btn:focus {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
}
.btn:focus-visible {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  box-shadow: var(--btn-focus-shadow-color);
  outline: 2px solid var(--btn-hover-bg);
}

.btn-orange {
  --btn-bg: linear-gradient(0deg, rgb(255, 121, 33), #e3541f);
  --btn-color: #ffffff;
  --btn-border-color: ;
  --btn-hover-bg: linear-gradient(0deg, rgb(255, 121, 33), #e3541f);
  --btn-hover-shadow-color: inset 0 0 0 50rem rgba(0, 0, 0, 0.15);
  --btn-focus-shadow-color: inset 0 0 0 50rem rgba(0, 0, 0, 0.15),
  0 0 0 0.25rem rgba(255, 121, 33, 0.5);
  --btn-hover-border: ;
  --btn-hover-color: #ffffff;
  --btn-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  --btn-border-radius: 100rem;
}

.topbar {
  background: #1c1e26;
}
.topbar .container-fluid {
  width: 75%;
}
.topbar .menu-topbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.topbar .menu-topbar .list-group-topbar {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-top: 0;
}
.topbar .menu-topbar .list-group-topbar .list-group-topbar-item.login-link {
  display: flex;
  align-items: center;
}
.topbar .menu-topbar .list-group-topbar .list-group-topbar-item .list-group-topbar-link {
  display: block;
  padding: 1rem;
  color: #fff;
}
.topbar .menu-topbar .list-group-topbar .list-group-topbar-item .list-group-topbar-link:hover {
  color: #ff7921;
}

.navbar {
  background: #1c1e26;
}
.navbar .container-fluid {
  width: 75%;
}
.navbar .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navbar .menu .list-group-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-top: 0;
}
.navbar .menu .list-group-nav .list-group-nav-item .list-group-nav-link {
  display: block;
  padding: 1rem;
  color: #fff;
}
.navbar .menu .list-group-nav .list-group-nav-item .list-group-nav-link:hover {
  color: #ff7921;
}

.dashboard {
  display: grid;
  grid-template-columns: 20% 1fr;
}

.dashboard-nav {
  background: #1c1e26;
  padding: 1rem 1.5rem;
}
.dashboard-nav .dashboard-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-top: 0;
}
.dashboard-nav .dashboard-menu .dashboard-menu-item {
  display: block;
}
.dashboard-nav .dashboard-menu .dashboard-menu-item .dashboard-menu-link {
  display: block;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 1, 1);
  padding: 1rem;
  border-radius: 12px;
}
.dashboard-nav .dashboard-menu .dashboard-menu-item .dashboard-menu-link:hover {
  background: #0784b0;
  color: #ffffff;
}
.dashboard-nav .dashboard-menu .dashboard-menu-item .dashboard-menu-link:active {
  background: #0784b0;
  color: #ffffff;
}

.dashboard-content {
  padding: 1rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table .table-header tr th {
  background: #095d79;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-weight: bold;
  text-align: left;
}
.table .table-header tr th:first-of-type {
  border-top-left-radius: 12px;
}
.table .table-header tr th:last-of-type {
  border-top-right-radius: 12px;
}
.table .table-body tr {
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.table .table-body tr td {
  padding: 1rem 1.5rem;
}
section.login {
  background: linear-gradient(180deg, #004158, #1C8D9F, #2D9474);
  height: 100%;
  padding: 200px 0;
}
section.login .container-fluid {
  width: 30%;
}
section.login .card {
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.06);
}
section.login .card .card-body {
  padding-bottom: 2rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

input.form-control.is-invalid {
  border-color: #a12121;
  background-image: url("https://cp1.premiumoffline.nl/assets/img/danger.svg");
  background-repeat: no-repeat;
  background-position: center right 1rem;
  background-size: 2rem;
}

.form-floating {
  position: relative;
  --padding-x: 1rem;
  --padding-y: .75rem;
  margin-bottom: 1rem;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: var(--padding-x) var(--padding-y);
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  transform-origin: 0 0;
}
.form-floating > .form-control:focus {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.form-floating > .form-control:focus ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > input::placeholder {
  visibility: hidden;
}
.form-floating > .form-input {
  padding: var(--padding-x);
}
.form-floating .form-control {
  display: block;
  padding: 1rem 0.75rem;
  border-radius: 12px;
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: box-shadow 0.25s ease-in-out, border-color 0.25s ease-in-out;
  width: 100%;
}
.form-floating .form-control label {
  display: inline-block;
}
.form-floating .form-control textarea {
  resize: vertical;
}
.form-floating .form-control:focus {
  color: #000000;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.2);
  border-color: #000000;
}
.form-floating .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(161, 33, 33, 0.2);
}

.alert-danger {
  --alert-bg: #f3c2c2;
  --alert-color: #721515;
  --alert-border-color: #835252;
}

.alert-success {
  --alert-color: #75b798;
  --alert-bg: #051b11;
  --alert-border-color: #0f5132;
}

.alert {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--alert-bg);
  color: var(--alert-color);
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--alert-border-color);
}

.card {
  display: block;
  background: transparent;
}
.card .card-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #fff;
  padding: 1rem 1rem 0;
}
.card .card-body {
  padding: 1rem;
  background: #fff;
}

.container, .container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/*# sourceMappingURL=style.css.map */
