body {
  font-size: .875rem;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

header{
  height: 5em;
}

nav#sidebarMenu{
  top: 5em !important;
}
/*
 * Sidebar
 */

 /* eindcijfer in navigatie */
 a[name="navCampagne"]{
  overflow: hidden;
 }

 a[name="navCampagne"] .col-md-1{
  flex-direction: row-reverse;
 }

 a[name="navCampagne"] .col-md-1 #score{
  margin-right: 16px;
  font-size: medium;
	color: #555;
 }

/* Status icon in navigatie */
a[name="navCampagne"] #status{
  margin-right: 5px;
}

a[name="navCampagne"] #status.bi-unlock-fill{
  color: #419f41;
}

a[name="navCampagne"] i#status::before{
  content: "\f47a";
}

a[name="navCampagne"].open strong{
  color: #419f41;
}

a[name="navCampagne"].open i#status::before{
  content: "\f5ff";
}

a[name="navCampagne"][aria-selected="true"] strong{
  color: white;
}

.sidebar {
  position: fixed;
  top: 0;
  /* rtl:raw:
  right: 0;
  */
  bottom: 0;
  /* rtl:remove */
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 0px 0 0; /* Height of navbar  was: 48px */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
  a[name="navCampagne"] .col-md-1{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #727272;
}

.sidebar .nav-link.active {
  color: #2470dc;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/*
 * Navbar
 */

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  /*background-color: rgba(0, 0, 0, .25);*/
  /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); */
}

.navbar .navbar-toggler {
  top: .25rem;
  right: 1rem;
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.disable-scroll{
  overflow: hidden;
  max-height: calc(100vh - 6em);
  max-width: 100vw;
}

button#push::after{
  content: "vrijgeven";
}

.open button#push::after{
  content: "sluiten";
}

/* Loading animation */
.loading button#push::before{
	font-family: bootstrap-icons !important;
  font-weight: 900;
	content: "\F116";
	animation: spin 1s infinite linear forwards;
	display: inline-block;
  margin-right: 5px;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

div#send {
  position: fixed;
  bottom: -100%;
  z-index: 999999;
  right: 10px;
  transition: bottom .7s;
}

.merk {
  cursor: grab;
}

/* TOAST NOTIFICATION */
@-webkit-keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0%);  } }
@-moz-keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0%); } }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0%); } }


.toast-notification {
    background: #dbf8e8 url(../images/icon_checkmark.svg) no-repeat 17px center;
    position: absolute;
    right: 20px;
    top: 55px;
    z-index: 80085;
    /* font-size: 12px; */
    box-shadow: rgb(0 0 0 / 8%) 0 2px 6px;
    padding: 12px 17px 12px 42px;
    color: #29a761;
    border: 1px solid #c6e8d6;
    border-radius: 5px;
    transform: translateY(-100%);
    transition: top .35s;

    -webkit-animation: slideDown 1;
    -moz-animation: slideDown 1;
    animation: slideDown 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    animation-duration: .5s;
}

.toast-notification--warning {
	background-color: #fff7df;
	border-color: #ffe599;
	color: #cca023;
	background-image: url(../images/icon_warning.svg);
}