:root {
  --bs-primary: #3170e0;
  --bs-primary-rgb: 49, 112, 224;
  --bs-secondary: #38a197;
  --bs-secondary-rgb: 56, 161, 151;
}

.border-primary {
  border-color: #3170e0 !important;
}

.border-secondary {
  border-color: #38a197 !important;
}

.text-primary {
  color: #3170e0 !important;
}

.text-secondary {
  color: #38a197 !important;
}

.bg-primary {
  background-color: #3170e0 !important;
}

.bg-secondary {
  background-color: #38a197 !important;
}

.badge-secondary {
  background-color: #38a197;
  color: #fff;
  --bs-badge-color: #fff;
  --bs-badge-bg: #38a197;
}

.badge-danger {
  background-color: #dc3545;
  color: #fff;
  --bs-badge-color: #fff;
  --bs-badge-bg: #dc3545;
}

.text-bg-primary {
  --bs-text-opacity: 1;
  color: #fff !important;
  background-color: #3170e0 !important;
}

.text-bg-secondary {
  --bs-text-opacity: 1;
  color: #fff !important;
  background-color: #38a197 !important;
}

.dropdown-toggle::after {
  content: none;
  display: none;
}

.hightlighted {
  color: white;
}

.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3crect x='-3' y='-3' width='6' height='6' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3crect x='-3' y='-3' width='6' height='6' fill='rgba(0, 0, 0, 0.25)'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3crect x='-3' y='-3' width='6' height='6' fill='%2386b7fe'/%3e%3c/svg%3e");
}

footer a {
  text-decoration: none;
}

button.btn.btn-link.text-start.text-white.p-0.cookie-settings-link.text-decoration-none {
    font-weight: unset;
}

body {
  view-transition-name: page;
}

::view-transition-old(page) {
  animation: 0.25s ease-in both leave;
}

::view-transition-new(page) {
  animation: 0.25s ease-in both enter;
}

@keyframes leave {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

::view-transition-group(*) {
  animation-duration: 0.33s;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*) {
    animation-duration: 0s !important;
  }
}
