.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 30px 0;
  min-height: calc(100vh - 62px - 120px);
}
@media (min-width: 1200px) {
  .content-container {
    min-height: calc(100vh - 62px);
  }
}
@media (max-width: 1199.98px) {
  .content-container {
    flex-direction: column;
    justify-content: flex-start;
    height: inherit;
  }
}
.content-container .content-box {
  width: 450px;
  max-width: 100%;
}

.sidebar-or-header-container {
  margin-left: -15px;
  margin-right: -15px;
  height: 120px;
}
@media (min-width: 1200px) {
  .sidebar-or-header-container {
    position: fixed;
    left: 50%;
    right: 0;
    top: 62px;
    bottom: 0;
    height: inherit;
    margin-left: inherit;
    margin-right: inherit;
  }
}

.bs-image {
  height: 100%;
  width: 100%;
}

#debug-box {
  position: fixed;
  right: 0;
  bottom: 0;
  background: lime;
  opacity: 0.6;
  font-size: 10px;
}
#debug-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#debug-box ul li {
  line-height: 10px;
}

.form-group {
  margin-bottom: 0.7rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(122, 200, 22, 0.25);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #7AC816;
  border-color: #7AC816;
}

.custom-control > .custom-control-label {
  font-weight: 500;
}

label {
  font-weight: 500;
  font-size: 11px;
  margin-bottom: 0;
}

.custom-radio label {
  font-size: 14px;
}

input:not([type=checkbox]):not([type=radio]).form-control, textarea.form-control, select.custom-select {
  background-color: #F4F4F4;
  border: solid 2px #F4F4F4;
  font-size: 13px;
}
input:not([type=checkbox]):not([type=radio]).form-control:valid, textarea.form-control:valid, select.custom-select:valid {
  border: solid 2px #7AC816;
  background-color: #fff;
}

textarea.form-control {
  height: 95px;
}

input[type=date], input[type=time], select.custom-select {
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 40px;
  position: relative;
}
input[type=date]:after, input[type=time]:after, select.custom-select:after {
  content: "";
  width: 1px;
  height: 80%;
  top: 10%;
  position: absolute;
  display: block;
  border-left: solid 1px #BEBEBE;
  right: 35px;
  color: transparent;
}

input[type=date] {
  padding-right: inherit;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  height: 100%;
  width: 30px;
}

.custom-select-wrapper {
  position: relative;
}
.custom-select-wrapper:after {
  content: "";
  width: 1px;
  height: 70%;
  top: 15%;
  position: absolute;
  display: block;
  border-left: solid 1px #BEBEBE;
  right: 35px;
  color: transparent;
}

input[type=date] {
  background-image: url("../svg/kalender.svg");
}

input[type=time] {
  background-image: url("../svg/klok.svg");
}

select.custom-select {
  background-size: 12px;
  background-image: url("../svg/dropdown_pijl.svg");
}

.popup-container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-container .popup {
  position: relative;
  border-radius: 9px;
  background: #fff;
  width: 600px;
  max-width: 90%;
  padding: 70px 30px;
  font-size: 14px;
}
.popup-container .popup .popup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  display: block;
  width: 37px;
  height: 37px;
  background-color: #DBEBEE;
  border-radius: 999px;
  background-image: url("../svg/kruis_klein_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.popup-container .popup h1 {
  font-size: 29px;
  font-weight: 300;
}
.popup-container .popup-small {
  width: 330px;
  padding: 40px 20px;
}

.tooltip .tooltip-inner {
  background-color: #005667;
  border-radius: 0;
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  text-align: justify;
  padding: 4px 6px;
}
.tooltip.show {
  opacity: 1;
}
.tooltip .arrow::before {
  border-top-color: #005667;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nowrap {
  white-space: nowrap;
}

.line {
  height: 1px;
  width: 100%;
  background-color: #005667;
  margin: 20px 0;
}

.bg-fff {
  background-color: #fff;
}

.btn {
  background: #DBEBEE;
  color: #005667;
  font-weight: 500;
  border-radius: 3px;
  font-size: 12px;
  transition: 300ms ease-in-out;
  min-width: 88px;
}
.btn:hover {
  background: #005667;
  color: #fff;
}
.btn:hover .svg g {
  fill: #fff;
  stroke: #fff;
}

@media (max-width: 767.98px) {
  .btn {
    padding: 6px 10px;
  }
}

.btn-important {
  background-color: #7AC816;
  color: #fff;
}

.btn-alternative {
  background-color: #fff;
  border: solid 1px #DBEBEE;
}

.btn-big {
  padding: 0 20px;
  height: 40px;
  font-size: 14px;
}

body {
  font-family: "Ubuntu", sans-serif;
  color: #005667;
  min-height: 100vh;
  font-size: 14px;
  line-height: 24px;
}

h1 {
  font-size: 38px;
  font-weight: 300;
  line-height: 32px;
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 23px;
  }
}

strong {
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .menu {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 995;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 62px 1fr;
    grid-template-areas: "logo hamburger" "items items";
    height: 62px;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
  }
  .menu.open {
    height: 100vh;
  }
  .menu:after {
    content: "";
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 990;
    height: 62px;
    background: transparent;
    pointer-events: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  }
  .menu .logo {
    grid-area: logo;
    padding: 15px;
  }
  .menu .hamburger {
    grid-area: hamburger;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .menu .hamburger a {
    display: inherit;
  }
  .menu .items {
    grid-area: items;
    background: #DBEBEE;
    display: none;
  }
  .menu.open .items {
    display: block;
  }
  .menu ul {
    display: block;
    padding: 0;
    margin: 0;
    padding-top: 30px;
    list-style-type: none;
  }
  .menu ul li {
    display: block;
  }
  .menu ul li a {
    text-transform: uppercase;
    height: 46px;
    padding: 10px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: bold;
    display: block;
    color: #005667;
  }
  .menu ul li a:hover {
    background: #005667;
    color: #fff;
    text-decoration: none;
  }
  .menu .nav-icon {
    display: inline-block;
    width: 30px;
  }
  .menu .nav-icon:after,
.menu .nav-icon:before,
.menu .nav-icon div {
    background-color: #666;
    border-radius: 2px;
    content: "";
    display: block;
    height: 3px;
    margin: 6px 0;
    transition: all 0.2s ease-in-out;
  }
  .menu.open .nav-icon:before {
    transform: translateY(9px) rotate(135deg);
  }
  .menu.open .nav-icon:after {
    transform: translateY(-9px) rotate(-135deg);
  }
  .menu.open .nav-icon div {
    background-color: #fff;
    transform: scale(0);
  }
}
@media (min-width: 768px) {
  .menu {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
    height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .menu .logo {
    padding: 0 20px;
  }
  .menu .hamburger {
    display: none;
  }
  .menu .items {
    padding: 0 20px;
  }
  .menu .items ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%;
  }
  .menu .items ul li {
    margin: 0 9px;
    position: relative;
  }
  .menu .items ul li.active:after {
    content: "";
    position: absolute;
    background: #7AC816;
    height: 6px;
    border-radius: 1px;
    left: 0;
    right: 0;
    margin-top: -6px;
  }
  .menu .items ul li a {
    display: block;
    line-height: 62px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: #005667;
  }
  .menu .items ul li a:hover {
    text-decoration: none;
    color: #7AC816;
  }
}
.complaint-table-container {
  max-width: 100%;
  width: 900px;
}
@media (max-width: 991.98px) {
  .complaint-table-container {
    overflow-x: auto;
  }
}
.complaint-table-container .complaint-table {
  width: 100%;
}
.complaint-table-container .complaint-table td, .complaint-table-container .complaint-table th {
  padding: 5px 10px;
}
.complaint-table-container .complaint-table thead tr {
  border-top: solid 1px #005667;
  border-bottom: solid 1px #005667;
  background-color: #FFF;
}
.complaint-table-container .complaint-table thead tr th {
  height: 36px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .complaint-table-container .complaint-table thead tr th {
    font-size: 12px;
  }
}
.complaint-table-container .complaint-table > tbody > tr.list-row-odd {
  background-color: #F0F0F0;
}
.complaint-table-container .complaint-table > tbody > tr.list-row-even {
  background-color: #F8F8F8;
}
.complaint-table-container .complaint-table > tbody > tr .arrow-img {
  transition: 400ms ease-in-out;
}
.complaint-table-container .complaint-table > tbody > tr.active {
  background-color: #005667;
}
.complaint-table-container .complaint-table > tbody > tr.active .arrow-img {
  transform: rotate(180deg);
}
.complaint-table-container .complaint-table > tbody > tr.active .arrow-img circle {
  fill: #003741;
}
.complaint-table-container .complaint-table > tbody > tr.active .svg g {
  fill: #FFF;
}
.complaint-table-container .complaint-table > tbody > tr.active > td {
  color: #FFF;
}
.complaint-table-container .complaint-table > tbody > tr > td {
  height: 36px;
  line-height: 15px;
  font-size: 12px;
}
@media (max-width: 991.98px) {
  .complaint-table-container .complaint-table > tbody > tr > td {
    font-size: 10px;
  }
}
.complaint-table-container .complaint-table tr.detail-row {
  height: 0;
  padding: 0;
  margin: 0;
}
.complaint-table-container .complaint-table tr.detail-row > td {
  height: 0;
  padding: 0;
  margin: 0;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view {
  background: #DBEBEE;
  color: #005667 !important;
  padding: 20px 12px;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view img {
  max-width: 100%;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view p:last-of-type {
  margin-bottom: 0;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view h2 {
  font-size: 14px;
  font-weight: 600;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view p {
  font-size: 12px;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view table {
  margin-bottom: 16px;
}
.complaint-table-container .complaint-table tr.detail-row .detail-view table tr td {
  padding-left: 0;
  padding-right: 20px;
}
.complaint-table-container .table-div-oms {
  max-width: 380px;
}
@media (max-width: 575.98px) {
  .complaint-table-container .table-div-oms {
    width: 115px;
  }
}

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