@media screen and (min-width: 640px) {

	.wscat_search {
		margin-bottom: 1em;
	}

	.jstree-leaf > .jstree-icon {
		background-image: url('img/leaf.png') !important;
		background-position: center right !important;
		background-size: 14px 14px;
		height: 14px !important;
		width: 14px !important;
		margin-right: 5px !important;
	}

	.jstree-closed > .jstree-icon {
		background-image: url('img/closed.png') !important;
		background-position: center right !important;
		background-size: 36px 14px;
		height: 14px !important;
		width: 36px !important;
		margin-right: 5px !important;
	}

	.jstree-open > .jstree-icon {
		background-image: url('img/open.png') !important;
		background-position: center right !important;
		background-size: 36px 14px;
		height: 14px !important;
		width: 36px !important;
		margin-right: 5px !important;
	}

	.jstree-node {
		background-image: none !important;
		margin-bottom: 0.1em !important;
	}

	.jstree-default-small .jstree-anchor, .jstree-default-small .jstree-icon {
		line-height: 14px !important;
	}
}

div.jstree-hide {
	display:none;
}


.wscat-span-pages {
	font-size: 10px;
	vertical-align: super;
}

/* Styling for search boxes */
.wsc-searchbox {
	margin-bottom: 1rem;
	background: #ffffff;
	padding: 0.2rem 1.6rem;
	border-radius: .7rem;
}
/* Styling for jstree box */
.card-body.jstree {
    max-height: 500px;
    overflow-y: auto;
}

.category-tooltip {
    position: absolute;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.811);
    color: #fff;
    border-radius: 6px;
    display: none;
    cursor: pointer;
}
/* SPINNER */
/* HTML: <div class="loader"></div> */
.loader {
    width: 45px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#0D316E 0 0);
    background: 
      var(--c) 0%   50%,
      var(--c) 50%  50%,
      var(--c) 100% 50%;
    background-size: 20% 100%;
    animation: l1 1s infinite linear;
    display: none;
    margin: 30px;
  }
  @keyframes l1 {
    0%  {background-size: 20% 100%,20% 100%,20% 100%}
    33% {background-size: 20% 10% ,20% 100%,20% 100%}
    50% {background-size: 20% 100%,20% 10% ,20% 100%}
    66% {background-size: 20% 100%,20% 100%,20% 10% }
    100%{background-size: 20% 100%,20% 100%,20% 100%}
  }
