/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
}
.modal-footer {
  padding: 0;
  .opslaan {
    width: 121px !important;
    height: 42px;
    background: linear-gradient(135deg, #514898 -3.58%, #1f1b37 78.86%);
    box-shadow: 4px 4px 8px 0px rgba(81, 72, 152, 0.5);
    border: 2px solid #ef80b1;
    border-radius: 8px;
    margin: 21px auto !important;
    font-size: 20px;
  }
}
.controleer {
  width: 160px !important;
  height: 50px !important;
  font-size: 18px;
  border-radius: 8px;
  border: 2px solid #ef80b1;
  background: linear-gradient(135deg, #514898 -3.58%, #1f1b37 78.86%);
  box-shadow: 4px 4px 8px 0px rgba(81, 72, 152, 0.5);
  align-items: center;
  margin-bottom: 21px;
  left: 50%;
  transform: translateX(-50%);
}
.toggle-btn-scanning .toggler {
  width: 14px;
  height: 14px;
  display: block;
  transform: translate(3px, 3px);
  display: block;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.5s;
}
#scannerData-id {
  margin-bottom: 10px;
}
#scannerData-id .toggle-btn-scanning {
  cursor: pointer;
  width: 43px;
  min-width: 43px;
  height: 20px;
  background: linear-gradient(180deg, #514898 0%, #6ca5da 100%);
  border-radius: 20px;
}
#specialScannerData-id .toggle-btn-scanning {
  cursor: pointer;
  width: 43px;
  height: 20px;
  background: linear-gradient(180deg, #514898 0%, #ef80b1 100%);
  border-radius: 20px;
}
.preference-popup-container > h1 {
  margin: 0 auto;
}
.toggle-btn .active {
  background-color: #0084ff;
  transform: translateX(16px);
}
.toggle-btn .toggler {
  width: 16px;
  height: 16px;
  display: block;
  background-color: #5d6a81;
  border-radius: 50%;
  transition: 0.5s;
}
.toggle-btn {
  cursor: pointer;
  width: 34px;
  height: 16px;
  background-color: #eaeef4;
  border-radius: 10px;
}

.form-check-input:not(:checked) {
  /* background: linear-gradient(180deg, #514898 0%, #ef80b1 100%) !important; */
}
.form-check-input:checked {
  background-color: red;
  border-color: red;
}
.header {
  width: 100%;
  /* height: 60px; */
  padding: 10px 21px;
  background: linear-gradient(1deg, #ef80b1 -8.71%, #514898 46.58%, #1f1b37 110.1%);
  color: #fff;
  margin-bottom: 20px;
  align-items: center;
}
.header h1 {
  font-size: 21px;
  font-weight: 400;
}

.ms-welcome__header {
  padding: 20px;
  padding-bottom: 30px;
  padding-top: 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

.ms-welcome__main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  padding: 10px 20px;
}

.ms-welcome__main > h2 {
  width: 100%;
  text-align: center;
}

.ms-welcome__features {
  list-style-type: none;
  margin-top: 20px;
}

.ms-welcome__features.ms-List .ms-ListItem {
  padding-bottom: 20px;
  display: -webkit-flex;
  display: flex;
}

.ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
  margin-right: 10px;
}

.ms-welcome__action.ms-Button--hero {
  margin-top: 30px;
}

.ms-Button.ms-Button--hero .ms-Button-label {
  color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label {
  color: #005a9e;
  cursor: pointer;
}

b {
  font-weight: bold;
}

/* loading */
.loading {
  position: absolute;
  background: gray;
  opacity: 0.7;
  user-select: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: grid;
  justify-content: center;
  align-content: center;
}

.loading .spinner {
  width: 50px;
  margin-bottom: 10px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top: 5px solid #0085ff;
  animation: spin 2s linear infinite;
}

.loading span {
  color: #fff;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.log-out-container {
  width: 160px;
  position: absolute;
  z-index: 2;
  right: 3%;
  top: 110%;
  background-color: #fff;
  box-shadow: 0px 1px 10px 0px #014b921a;
  border: 1px solid #d5dbdf;
  display: none;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.log-out-container ul {
  padding: 10px 0;
}
.log-out-container ul li {
  padding: 12px 15px;
  list-style: none;
}
.log-out-container ul li,
.log-out-container ul li a {
  color: #5d6a81;
}
.log-out-container ul li:hover {
  background-color: #f7f8f9;
}

.log-out-container a {
  color: #fff;
}

.log-out-container.show {
  cursor: pointer;
  display: block;
}

@media (min-width: 576px) {
  .preferences-modal .modal-dialog {
    max-width: 400px;
  }
}
.preferences-modal .modal-dialog {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.preferences-modal .modal-header,
.preferences-modal .modal-body {
  padding: 20px 20px 0;
  border-bottom: none;
}
.preferences-modal .modal-header h5 {
  margin: 0 auto;
  color: #1e7fbb;
  font-size: 16px;
  font-weight: 500;
}
.preferences-modal .modal-body .d-flex:not(:last-child) {
  margin-bottom: 18px;
}
.preferences-modal .modal-footer {
  border-top: none;
}
.preferences-modal .modal-footer button {
  width: 150px;
  margin: 0 auto;
}
.preferences-modal .form-check {
  min-height: auto;
  margin-bottom: 0;
}
.preferences-modal .form-check-input {
  height: 16px;
  width: 34px;
}
.preferences-modal .form-check-input:focus {
  box-shadow: none;
}
/* .preferences-modal .form-switch .form-check-input:checked {
  background-image: url("/assets/blue.png");
}
.preferences-modal .form-switch .form-check-input:not(:checked) {
  background-image: url("/assets/blue.png");
  filter: grayscale(1);
} */
.preferences-modal .form-check-input:not(:checked),
.preferences-modal .form-check-input:checked {
  background-color: #eaeef4;
  border: none;
}

.modal .nav {
  gap: 5px;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 5px;
}
.modal .nav .nav-link {
  border: 1px solid #bbc2d3;
  color: #5d6a81;
}
.modal .nav .nav-link.active {
  color: #fff;
}
.modal .tab-content {
  height: 50vh;
  overflow-y: scroll;
}
.modal .tab-content::-webkit-scrollbar {
  width: 7px;
}
.modal .tab-content::-webkit-scrollbar-thumb {
  background-color: #5d6a81;
  border-radius: 5px;
}
.chart-container {
  padding: 20px;
}
.showmodal {
  border-radius: 3px;
  font-size: 10px;
  line-height: 10px;
  padding: 4px 13px;
  color: #5d6a81;
  background-color: transparent;
  border: 0.5px solid #b8c2d3;
}
.chart-filter-inputs:not(:last-child) {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.chart-filter-inputs input {
  accent-color: #0084ff;
}
#secondModal .modal-header .year-selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#secondModal .modal-dialog {
  width: 180px;
  transform: translateY(70%);
  margin: auto;
}
#secondModal .modal-content {
  border: none;
  box-shadow: 0px 2px 18px 0px #014b9233;
  border-radius: 8px;
}
#secondModal .modal-body {
  padding: 0 10px;
}
#secondModal svg {
  cursor: pointer;
}
#secondModal button {
  font-size: 10px;
  line-height: 10px;
}
#secondModal .modal-header,
#secondModal .modal-footer {
  border: none;
  padding: 10px;
}
#secondModal .modal-footer {
  justify-content: center;
}