@import url(https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap);
@tailwind base;
@tailwind components;
@tailwind utilities;
.lh-1 {
  line-height: 1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-15 {
  line-height: 1.5;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.font-bold {
  font-weight: bold;
}

.ql-snow .ql-tooltip {
  z-index: 2000;
}

h4, .h4 {
  font-weight: normal;
  margin: 5px 0 0 0;
  padding: 0;
  line-height: 1.3;
  font-size: 1.25rem;
}

.table thead small {
  font-weight: normal;
}

body .bg-primary {
  background-color: #e4eef6 !important;
}

body .text-primary {
  color: #1d71b8 !important;
}

body .border-primary {
  border-color: #1d71b8 !important;
}

body .btn-primary {
  background-color: #1d71b8 !important;
  border-color: #2582ce !important;
}

body .bg-success {
  background-color: #2dab68 !important;
}

body .text-success {
  color: #2dab68 !important;
}

body .border-success {
  border-color: #2dab68 !important;
}

body .btn-success {
  background-color: #2dab68 !important;
  border-color: #33b670 !important;
}

body .bg-danger {
  background-color: #cd1719 !important;
}

body .text-danger {
  color: #cd1719 !important;
}

body .border-danger {
  border-color: #cd1719 !important;
}

body .btn-danger {
  background-color: #cd1719 !important;
  border-color: #db191c !important;
}

body .rounded-primary {
  border: 3px solid #1d71b8 !important;
  border-radius: 5mm !important;
  background-color: #e4eef6 !important;
  color: #1d71b8 !important;
  font-family: "PT Sans" !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.252) !important;
}

body .rounded {
  border: 3px solid #1d71b8 !important;
  border-radius: 5mm !important;
  background-color: #e4eef6 !important;
  color: #706f6f !important;
  font-family: "PT Sans" !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.252) !important;
}

body .rounded-success {
  border: 3px solid #2dab68 !important;
  border-radius: 5mm !important;
  background-color: #e4eef6 !important !important;
  color: #2dab68 !important;
  font-family: "PT Sans" !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.252) !important;
}

body .rounded-danger {
  border: 3px solid #cd1719 !important;
  border-radius: 5mm !important;
  background-color: #f2d0d0 !important;
  color: #cd1719 !important;
  font-family: "PT Sans" !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.252) !important;
}

body .dashboard-rounded-danger {
  border: 3px solid #cd1719 !important;
  border-radius: 5mm !important;
  background-color: #e9e9e95a !important;
  color: #cd1719 !important;
  font-family: "PT Sans" !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.252) !important;
}

body .dashboard-rounded {
  border: 3px solid #706f6f !important;
  border-radius: 5mm !important;
  background-color: #e9e9e95a !important;
  color: #706f6f !important;
  font-family: "PT Sans" !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.252) !important;
}

body .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #1d71b8;
  border-color: #1d71b8;
}

body .nav-item .active {
  color: #fff !important;
  background-color: #1d71b8 !important;
  border-color: #1d71b8 !important;
}

.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
  background-color: white;
}

.table {
  border: solid #000 2px;
}

.table td, .table th {
  border: solid 1px #000;
}

.border-grijs {
  border: 1px solid #706f6f !important;
}

.bg-grijs {
  background-color: #666666;
}

.bg-primary-dark {
  background-color: #1d71b8 !important;
}

.border-primary {
  border-color: #0f71b7 !important;
}

.cursor-pointer {
  cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #ededed;
}

.containered {
  position: relative;
  width: 100%;
}

.navigation {
  position: fixed;
  width: 270px;
  height: 100%;
  background: #2fac66;
  background: linear-gradient(152deg, #2fac66 0%, #1d71b8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2fac66",endColorstr="#1d71b8",GradientType=1);
  border-top-right-radius: 5mm;
  border-bottom-right-radius: 5mm;
  transition: 0.5s;
  overflow-y: auto;
  overflow-x: hidden;
  direction: rtl;
}

.navigation::-webkit-scrollbar {
  width: 3px;
  margin: 100px;
}

.navigation::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.navigation::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #1d71b8;
  outline: none;
}

.navigation.smallmenu {
  width: 70px;
}

.navigation.smallmenu .side-bar-image {
  visibility: hidden;
}

.navigation ul {
  padding-left: 0;
  padding-top: 150px;
}

.navigation .side-bar-image {
  position: absolute;
  top: 0px;
  left: -10px;
  width: 100%;
  padding-left: 0;
}

.navigation.smallmenu .side-bar-brand {
  display: none;
}

.navigation .side-bar-brand {
  bottom: 10px;
  left: 5px;
  right: 5px;
  position: absolute;
  height: 100px;
  text-align: center;
  direction: ltr;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.navigation .side-bar-brand img {
  max-width: 100%;
  max-height: 100%;
  margin-top: 4px;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-left: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  direction: ltr;
}

.navigation ul li:hover,
.navigation ul li.hovered,
.navigation ul > li.active {
  background: #ededed;
}

.navigation ul li:nth-child(1) {
  margin: 10px 0;
  text-align: right;
  padding: 0;
  color: #fff;
  font-size: 16px;
  max-width: 3px;
}
.navigation ul li:nth-child(1) .menuClose {
  display: none;
}
.navigation ul li:nth-child(1):hover, .navigation ul li:nth-child(1).hovered, .navigation ul li:nth-child(1).active {
  background: transparent !important;
}

.navigation.smallmenu ul li:nth-child(1) .menuClose {
  display: inline-block;
}
.navigation.smallmenu ul li:nth-child(1) .menuOpen {
  display: none;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  font-family: "PT Sans" !important;
  text-decoration: none;
  color: #fff;
}

.navigation ul li:hover a,
.navigation ul li.hovered a,
.navigation ul > li.active a {
  font-family: "PT Sans" !important;
  font-weight: bold;
  color: #1d71b8;
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 70px;
  text-align: center;
}

.navigation ul li a .icon i {
  font-size: 1.75em;
  color: #fff;
}

.navigation ul li:hover a .icon i,
.navigation ul li.hovered a .icon i,
.navigation ul > li.active a .icon i {
  color: #1d71b8;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}

/* curve outside */
.navigation ul li:hover a::before,
.navigation ul li.hovered a::before,
.navigation ul > li.active a::before {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 35px 35px 0 10px #ededed;
  pointer-events: none;
}

.navigation ul li:hover a::after,
.navigation ul li.hovered a::after,
.navigation ul > li.active a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 35px -35px 0 10px #ededed;
  pointer-events: none;
}

.navigation a.navbar-brand {
  margin-left: 10px;
  max-width: 52%;
}

.navigation.active a.navbar-brand {
  overflow: hidden;
  width: 300px;
  margin-left: 10px;
}

.navbar-brand img {
  width: 275px;
}

.navigation ul li.menuToggle {
  top: -120px;
  right: 20px;
  font-size: 24px;
}

/* main */
.main {
  position: absolute;
  width: calc(100% - 270px);
  left: 270px;
  min-height: 100vh;
  background: #ededed;
  transition: 0.5s;
}

.main.smallmenu {
  width: calc(100% - 80px);
  left: 80px;
}

.topbar {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
}
.topbar .topbarLogo {
  position: absolute;
  z-index: 9999;
  right: -10px;
  top: 20px;
  height: 42px;
}
.topbar .topbarLogo img {
  max-height: 85px;
}

.menuToggle, .logout {
  position: relative;
  font-size: 1.2em;
  cursor: pointer;
}

.noTransition {
  transition: none !important;
}

/* responsive search and sidebar */
@media screen and (max-width: 767px) {
  .navigation {
    width: 100%;
    left: -100%;
    z-index: 5;
    overflow: scroll;
  }
  .navigation ul {
    margin-top: 59px;
  }

  .navigation.smallmenu {
    width: 300px;
    left: 0;
  }

  .main {
    width: 100%;
    left: 0;
  }

  .main.smallmenu {
    width: 100%;
    left: 0;
  }

  .navigation .side-bar-image {
    visibility: inherit !important;
    top: -39px;
    text-align: center;
  }

  .navigation .side-bar-image img {
    max-width: 85%;
  }

  .navigation .side-bar-brand {
    display: block !important;
  }
}
@media screen and (max-width: 480px) {
  .navigation {
    width: 100%;
    left: -100%;
    z-index: 5;
  }

  .navigation.smallmenu {
    width: 100%;
    left: 0;
  }

  .main.smallmenu {
    width: 100%;
    left: 0;
  }
}
.menuMobToggle {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
}
.menuMobToggle .navclose {
  display: none;
}
.menuMobToggle.smallmenu .navopen {
  display: none;
}
.menuMobToggle.smallmenu .navclose {
  display: block;
  color: #fff;
}

.message-box {
  border-top-left-radius: 5mm;
  border-bottom-left-radius: 5mm;
  border-left: 4px solid #1d71b8;
  border-top: 4px solid #1d71b8;
  border-bottom: 4px solid #1d71b8;
  width: 430px;
  max-height: 100vh !important;
  background: #ededed !important;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  overflow-y: hidden;
}

.message-container {
  overflow-y: auto;
  overflow-x: hidden;
  direction: rtl;
  max-height: 90vh !important;
}

.messageBoxItem {
  direction: ltr;
}

.message-container::-webkit-scrollbar {
  width: 0.5em;
  margin: 100px;
}

.message-container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.message-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1d71b8;
  outline: 1px solid slategrey;
}

@media only screen and (max-width: 500px) {
  .message-box {
    width: 100%;
    border: 4px solid #1d71b8;
    border-radius: 5mm;
  }
}
.message-open .btn.collapsed::after {
  content: "+ Open bericht";
}

.message-open .btn:not(.collapsed)::after {
  content: "- Sluit bericht";
}

@media print {
  .containered .navigation {
    display: none;
  }
  .containered .main {
    width: 100%;
    left: 0;
    background: transparent;
  }
  .containered .printblock {
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    border: none !important;
  }

  .pagebreakblock {
    page-break-inside: avoid;
    page-break-after: always;
    padding-top: 20px;
  }
}
/* style projects */
.formRow label {
  color: #666666;
  display: block;
  padding-top: 5px;
}

.alertbanner .btn-close {
  color: #fff;
  font-size: 22px;
  background: transparent;
  padding: 18px;
}

.modal-dialog .modal-header {
  position: relative;
  min-height: 60px;
}
.modal-dialog .modal-header ul.nav-tabs {
  padding-top: 18px;
  position: absolute;
}

.col-05 {
  width: 4.16%;
  flex: 0 0 auto;
}

.col-15 {
  width: 12.5%;
  flex: 0 0 auto;
}

.col-17 {
  width: 14.16%;
  flex: 0 0 auto;
}

.table .bg-gray {
  background-color: #f1f2f3;
}

.bg-gray {
  background-color: #f1f2f3;
}

.fas-arrow-enter {
  position: relative;
}
.fas-arrow-enter::after {
  content: "";
  display: block;
  border-left: solid 2px #212529;
  height: 9px;
  position: absolute;
  bottom: 50%;
}

input.numberArrows {
  padding: 1px 4px;
}

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

/* Firefox */
input.numberArrows[type=number] {
  -moz-appearance: textfield;
}

span.displayDuiz {
  display: inline-block;
  min-width: 100px;
  text-align: right;
}

span.displayDuizSm {
  display: inline-block;
  min-width: 60px;
  text-align: right;
}

.datetime_field .datetime_date {
  display: inline-flex;
  width: auto;
  max-width: 47%;
}
.datetime_field .datetime_hour, .datetime_field .datetime_minute {
  display: inline-flex;
  width: auto;
  padding-left: 9px;
  padding-right: 25px;
  background-position: right 4px center;
}

@media (min-width: 768px) {
  .h-md-100 {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .h-lg-100 {
    height: 100%;
  }
}
.media_file_uploads input.mf_input {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  padding: 120px 0px 85px 35%;
  text-align: center !important;
  margin: 0;
  width: 100% !important;
}
.media_file_uploads input.mf_input:focus {
  background-color: #f1f1f1;
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  border: 1px solid #92b0b3;
}

thead.sortHeads th[sort_url] {
  cursor: pointer;
}

thead.sortHeads th a,
a.sortHead {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}

.icon-badge-group .icon-badge-container {
  display: inline-block;
}

.icon-badge-group .icon-badge-container:first-child {
  margin-left: 0;
}

.icon-badge-container {
  position: relative;
}

.icon-badge-icon {
  font-size: 30px;
  position: relative;
}

.icon-badge {
  background-color: red;
  font-size: 12px;
  color: white;
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 35%;
  position: absolute;
  /* changed */
  top: -5px;
  /* changed */
  left: 18px;
  /* changed */
}
