@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

body {
    overflow-x: clip;
}

.site-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.site-btn-outline-primary {
    color: var(--primary-color)!important;
    border-color: var(--primary-color)!important;
}

input[type="checkbox"] {
    accent-color: var(--primary-color)!important;
    /* Green color */
}

#window-overlay {
    top: 0;
    left: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

#progress-tracker {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-flow: column;
}

#progress-tracker-image {
    height: 96px;
    animation: rotate 1s linear infinite;
}

#progress-tracker-text {
    max-width: 640px;
    text-align: center;
    background: white;
}

.loading-animation {
    display: flex;
    flex-flow: row;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    height: 32px;
    width: fit-content;
}

#loading-animation {
    display: none;
}

.loading-animation-image-container {
    height: 100%;
}

.loading-animation-image {
    height: 100%;
    animation: rotate 1s linear infinite;
}

.loading-animation-text {
    padding-left: 2px;
    width: fit-content;
}

.loading-animation-text {
    padding-left: 2px;
    width: fit-content;
}

.nav-item:not(.active) .navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,1) !important;
}

.nav-item.active .navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,1) !important;
}

.carousel_button {
    border: none;
    outline: grey 1px solid;
    background-color: #e0e1e4;
    color: grey;
    height: max(2.5vw, 2.5vh);
    width: max(2.5vw, 2.5vh);
    font-size: max(1.5vw, 1.5vh);
    border-radius: 50%;
    line-height: max(1.5vw, 1.5vh);
}

.carousel_button:hover {
    outline-color: #007bff;
    color: #007bff;
}

.toolbar {
    background-color: #e0e1e4;
    width: 249px !important;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    display:flex;
    overflow-y: scroll;
}

.toolbar::-webkit-scrollbar {
    width: 7px;
}
.toolbar::-webkit-scrollbar-track {
    background: transparent;
}
.toolbar::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 5px;
}

.toolbar .group-list-item > span {
    padding: 6px 10px;
    width: 100%;
    cursor: pointer;
    display: block;
    background-color: white;
    border: grey 1px solid;
    border-radius: 15px;
    margin-bottom: 5px;
    position: relative;
}

.toolbar .group-list-item > span::after {
    content: var(--toolbar_group_symbol);
    color: grey;
    position: absolute;
    right: 15px;
}

.toolbar-button > button{
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 100%;
    margin-bottom: 5px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 15px;
    text-align: left;
}

.toolbar-button > button:focus {
    outline: none;
}

.toolbar-button > button:hover{
    background-color: white;
    color: black;
    outline: black 1px solid;
}

#filters-reset-button {
    margin-left: 6px;
}

button.download-button{
    background-color: transparent;
    border: none;
    color: black;
    outline: #bbbbbb 1px solid;
}

button:focus.download-button{
    outline: black 1px solid;
}

button:hover.download-button{
    color: black;
    outline: black 1px solid;
}

.workspace {
    background-color: #e0e1e4;
    width: calc(100vw - 251px) !important;
    left: 250px;
    top: 0px;
    position: absolute;
    display:flex;
}

.workspace > * {
    width: 100%;
}

.col-md-12 {
    padding: 15px 5px;
}

.slide-container {
    width: 100%;
    height: 100%;
}

/*
Source - https://stackoverflow.com/a/19207528
Posted by Arun Aravind, modified by community. See post 'Timeline' for change history
Retrieved 2026-02-28, License - CC BY-SA 4.0
*/

.dropdown-check-list {
  display: inline-block;
}

.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px 5px 10px;
  border: 1px solid #ccc;
}

.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
  border-left: 2px solid black;
  border-top: 2px solid black;
  padding: 5px;
  right: 10px;
  top: 20%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}

.dropdown-check-list ul.items {
  padding: 2px;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  z-index: 20;
  list-style-type: none;
  padding-left: 10px;
  padding-right: 20px;
  background-color: white;
}

.dropdown-check-list ul.items li {
  list-style: none;
}

.dropdown-check-list ul.items li label {
    width: calc(100% - 13px);
}

.hierarchy-list-container {
    background-color: #e0e1e4;
    height: 100%; 
    position: relative;
}

.hierarchy-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    align-content: flex-start;
}

.hierarchy-list-header {
    background-color: #e0e1e4;
    border: 1px grey solid;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 500px;
}

.hierarchy-list-item {
    background-color: white;
    width: 500px;
    text-align: left;
    border: none;
}

.hierarchy-list-item:hover {
    border: 1px black solid;
}