/*Horizontale card maken voor de foto eigenschappen*/
.card-horizontal {
  display: flex;
  flex: 1 1 auto;
}
.hidden,
.is-hidden {
  display: none;
}
/*Login*/
.mvh-100 {
  min-height: 100vh;
}
/*Card achtergrond*/
.card {
  background-color: rgba(255, 255, 255, 0.65);
}
/*Kleine tekst in noty confirm dialoog*/
.tiny {
  font-style: italic;
  font-size: 0.75em;
}
i.fas {
  padding-left: 0.25em;
  padding-right: 0.25em;
}
/*Cursor zetten op secondary buttons*/
a,
input.btn-primary {
  cursor: pointer;
}
/*Minimale hoogte textvelden*/
textarea.form-control {
  min-height: 15em;
}
/*Iets omtrent iconen/labels e.d. bij input velden*/
.input-group .input-group-prepend {
  width: 30%;
  /*adjust as needed*/
}
.input-group .input-group-prepend .input-group-text {
  width: 100%;
  text-align: left;
}
.input-group .input-group-prepend-auto {
  width: auto;
}
.input-group label {
  height: auto;
}
/*Standaard achtergrond tabellen*/
td {
  background-color: rgba(255, 255, 255, 0.65);
}
/*Lege rij maken in tabellen*/
.seperate-row {
  border: none !important;
  background: transparent;
  height: 0.5em !important;
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
/*Achtergrond van de applicatie neerzetten en statisch maken*/
.bg {
  /* The image used */
  background-image: url("/imko/img/application/background.jpg");
  /* Center and scale the image nicely */
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
/*Tooltip wijzigen*/
.tooltip-inner {
  background-color: #ffffff;
}
/*Kaartjes voorzien van een vaste hoogte*/
.card-img-custom-fixed-height {
  height: 10em;
  width: auto !important;
}
