/**
 
 _    _                _                   _     _   
| |  (_)              | |                 | |   | |  
| | ___  ___ _ __ ___ | | ___ __ __ _  ___| |__ | |_ 
| |/ / |/ _ \ '_ ` _ \| |/ / '__/ _` |/ __| '_ \| __|
|   <| |  __/ | | | | |   <| | | (_| | (__| | | | |_ 
|_|\_\_|\___|_| |_| |_|_|\_\_|  \__,_|\___|_| |_|\__|

**/
@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.rainbow {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}
.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #efd19f;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#006847, #006847),
    linear-gradient(#006847, #006847), linear-gradient(#efd19f, #efd19f),
    linear-gradient(#efd19f, #efd19f);
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
}
.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: white;
  border-radius: 5px;
}

.video-background {
  background-image: url("/assets/media/bg/xmas.jpg") !important;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}

@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: 0.5rem;
  }

  .vid-info h1 {
    margin-bottom: 0.2rem;
  }
}

@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none;
  }
}

.kiwi-100 {
  border-radius: 0 !important;
}

#electronHistoryBack {
  display: none;
}

.kiwi-login-bg {
  background-image: url("/assets/media/bg/xmas.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: grey;
  /*background-blend-mode: multiply;*/
}

@media screen and (min-width: 800px) {
  .card-login {
    background-color: transparent !important;
    border: 0px;
  }
  .login-bg-white {
    background-color: transparent !important;
  }

  .login-form {
    padding: 20px;
  }
  .kiwi-login-dark {
    color: white !important;
  }
}

@media (max-width: 320px) {
  .kiwi-min-h-600 {
    min-height: 600px;
  }
  .flex-column-fluid {
    flex: 1 0 auto;
  }
}

.kiwi-bericht img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}

@media (max-width: 770px) {
  .kiwi-100 {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .kiwi-100 {
    width: 100%;
  }
}

/* pride */

.pride {
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  padding: 8px 16px;
}

.pride:hover {
  background-image: linear-gradient(
    90deg,
    #00c0ff 0%,
    #ffcf00 49%,
    #fc4f4f 80%,
    #00c0ff 100%
  );
  animation: slidebg 5s linear infinite;
}

@keyframes slidebg {
  to {
    background-position: 20vw;
  }
}

.pride-a {
  color: #e7484f;
}
.pride-b {
  color: #f68b1d;
}
.pride-c {
  color: #fced00;
}
.pride-d {
  color: #009e4f;
}
.pride-e {
  color: #00aac3;
}
.pride-f {
  color: #732982;
}

/* end pride */

.btn.btn-success.disabled,
.btn.btn-success:disabled {
  color: gray;
  background-color: gainsboro;
  border-color: gainsboro;
  cursor: not-allowed;
}

.bg-red {
  background-color: #782f40 !important;
}
.bg-zand {
  background-color: #efd19f !important;
}
.bg-groen {
  background-color: #006847 !important;
}
.bg-petrol {
  background-color: #00626c !important;
}
.bg-blauw {
  background-color: #9bcbeb !important;
}
.bg-red:hover {
  background-color: #b98f92 !important;
}
.bg-zand:hover {
  background-color: #f8e8cf !important;
}
.bg-groen:hover {
  background-color: #80b3a2 !important;
}
.bg-petrol:hover {
  background-color: #74a8b2 !important;
}
.bg-blauw:hover {
  background-color: #cee3f5 !important;
}

/* Kiwi: Formulieren -> Onkostennota -> Aan/Uit Schakelaar */
.custom-switch {
  position: relative;
  width: 40px;
  height: 20px;
  -webkit-appearance: none;
  background-color: #ddd;
  outline: none;
  border-radius: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.custom-switch:checked {
  background-color: #006847;
}

.custom-switch::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  transition: left 0.3s;
}

.custom-switch:checked::after {
  left: 21px;
}
/* Stijl voor geselecteerde knoppen */
.selected-btn {
  background-color: #006847 !important; /* Bootstrap primary kleur */
  color: white !important;
  border-color: #006847 !important;
}

/* Stijl voor flash */
.flash {
  animation: flash-bg 0.8s ease-out;
}

@keyframes flash-bg {
  0%   { background-color: #00626c; }
  100% { background-color: transparent; }
}

/* ========================= */
/* KIWI MENU RESPONSIVE FIX */
/* ========================= */

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  #kt_header_mobile,
  #kt_header_mobile_nav {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  /* Just hide the inner contents of the header */
  #kt_header .header-top,
  #kt_header .header-bottom {
    display: none !important;
  }
}

/* Mobile nav (left menu) */
#kt_header_mobile_nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  max-width: 85%;
  background-color: #fff;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

#kt_header_mobile_nav.open {
  transform: translateX(0);
}
/* Overlay behind the mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1049;
}

/* Show overlay when menu is open */
#kt_header_mobile_nav.open + .mobile-nav-overlay {
  display: block;
}
/* Fix alignment of subtabs under the active top tab */
@media (min-width: 992px) {
  .subtabs-fix {
    padding-left: 0;
    padding-right: 0;
  }
}

.menu-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  z-index: 9999;
  min-width: 220px;
}

.menu-item {
  position: relative;
}
