/*
 * organization: Logilab
 * copyright: 2024 LOGILAB S.A. (Paris, FRANCE), license is LGPL.
 * contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
 *
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation, either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 *
 * You should have received a copy of the GNU Lesser General Public License along
 * with this program. If not, see <http://www.gnu.org/licenses/>..
 */

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/RobotoCondensed-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 300;
  src: url("fonts/RobotoCondensed-LightItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/RobotoCondensed-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "fonts/Roboto Condensed";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/RobotoCondensed-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/RobotoCondensed-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 700;
  src: url("fonts/RobotoCondensed-BoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Atkinson-Hyperlegible";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Atkinson-Hyperlegible-Regular-102.ttf") format("truetype");
}

@font-face {
  font-family: "Atkinson-Hyperlegible";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/Atkinson-Hyperlegible-Italic-102.ttf") format("truetype");
}

@font-face {
  font-family: "Atkinson-Hyperlegible";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Atkinson-Hyperlegible-Bold-102.ttf") format("truetype");
}

@font-face {
  font-family: "fAtkinson-Hyperlegible";
  font-style: italic;
  font-weight: 700;
  src: url("fonts/Atkinson-Hyperlegible-BoldItalic-102.ttf") format("truetype");
}

@font-face {
  font-family: "Corporate S Bold";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/CorporateS-Bold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

:root {
  --color-default: #e3e2fb;
  --color-homepage: #e3e2fb;
  --color-bg-lab: #f1f1f7;
  --color-person: #67b2fe;
  --color-family: #67b2fe;
  --color-org: #6badbe;
  --color-work: #c00000;
  --color-autocreated_work: #c00000;
  --color-rameau: #d62728a1; /* ?? */
  --color-geo: #99a6ae;
  --color-geo-rameau: #99a6ae;
  --color-event: #ffcc66;
  --color-performance: #bdb1fc;
  --color-periodic: #7f7f7fa1; /* ?? Work ? */
  --color-vocabulary: #b2b6ff;
  --color-lab-qc: #00a2ff;
  --color-lab-map-qc: #0512fd;
  --color-lab-movie: #905ce4;
  --color-lab-music: #7d7ac1;
}


#tarteaucitronIcon {
  right: auto !important;
  left: 0 !important;
}


html,
body {
  margin: 0;
  padding: 0;
  font-family: "Atkinson-Hyperlegible";
  color: #000;
}

body {
  font-size: 14px;
  line-height: normal;
  position: relative;
  background-color: var(--color-default);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
}

body#lab-page { background-color: var(--color-bg-lab); }

#tags-and-tools {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tag {
  background-color: var(--color-default);
  color: white;
  padding: 4px 8px;
  margin: 2px;
  text-align: center;
  border-radius: 5px;
}
.tag.person { background-color: var(--color-person); }
.tag.org { background-color: var(--color-org); }
.tag.work { background-color: var(--color-work); }
.tag.autocreated_work { background-color: var(--color-autocreated_work); }
.tag.themes { background-color: var(--color-rameau); }
.tag.geo { background-color: var(--color-geo); }
.tag.event { background-color: var(--color-event); color: black}
.tag.performance { background-color: var(--color-performance); }
.tag.periodic { background-color: var(--color-periodic); }
.tag.lab-movie { background-color: var(--color-lab-movie); }
.tag.lab-music { background-color: var(--color-lab-music); }
.tag.lab-qc { background-color: var(--color-lab-qc); }
.tag.lab-map-qc { background-color: var(--color-lab-map-qc); }

#lab-links a.tag::before {
  content: "";
  display: flex;
  background: url(images/data-viz.png) no-repeat center center;
  background-size: contain;
  height: 17px;
  width: 17px;
  display: inline-block;
  margin-bottom: -4px;
  padding-right: 0.5rem;
}

#lab-links {
  margin-top: 1rem;
}

#returntop {
  position: absolute;
  bottom: 12px;
  right: 15px;
  height: 100%;
  display: none;
}

#returntop:before {
  content: "";
  height: calc(100vh + 30px);
  pointer-events: none;
}

#returntop a {
  position: sticky;
  top: 90vh;
  cursor: pointer;
  font-size: 20px;
  padding: 15px;
  background-color: #9e9e9e;
  border-radius: 4px;
  z-index: 9999;
  color: white;
}

#returntop a:hover {
  background-color: #07549e;
}

@media (max-width: 768px) {
  #returntop {
    right: calc(50% - 24px);
  }
}

a {
  text-decoration: none;
  color: #0008cc
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-weight: normal;
  font-size: 32px;
}

h3 {
  font-weight: normal;
  font-size: 24px;
}

.page-container {
 width: 55%;
 margin:auto;
}

@media (max-width: 1024px) {
  .page-container {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .page-container {
    width: 95%;
  }
}

/* page structure */
section {
  background-color: white;
  padding: 2rem;
  padding-top: 1rem;
  margin-bottom: 1rem;
  scroll-margin-top: 75px;
}

.page-content {
  display: flex;
  justify-content: space-between;
}

#facet-part, #navigation-part {
  width: 20%;
}

#infobox-part {
  width: 20%;
}

#content-part {
  margin-top: 2rem;
}

@media (min-width: 1025px) {
  #content-part {
    width: 55%;
  }

  .information.fa-info-circle {
    display: none;
  }
}

@media (max-width: 1024px) {
  #infobox-part {
    display: none;
  }

  .information.fa-thumb-tack {
    display: none;
  }

  #content-part {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}

.block {
  background-color: white;
  padding: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.left-block {
  max-height: 80vh;
  overflow: auto;
  width: 80%;
  margin-left: auto;
  position: sticky;
  top: calc(75px + 1rem);
}

#facet-part .left-block {
  height: calc(100vh - 75px - 3rem);
  max-height: unset;
}

@media (max-width: 768px) {
  #infobox-part, #navigation-part {
    display: none;
  }
  .left-block {
    /* this will be used for facet block only */
    width: 100%;
    position: initial;
    max-height: none;
  }
  #content-part {
    width: auto;
  }
}

.left-block section {
  padding: 1rem;
}

.infobox-block {
  max-height: 80vh;
  overflow: auto;
  width: 80%;
  margin-right: auto;
  position: sticky;
  top: calc(75px + 1rem);
}

.infobox-block .visualiser {
  width: 50%;
}

.infobox-block .visualiser .depict {
  width: 100%;
}

/* Navigation */

#navigation-part ul {
  margin: 0;
  padding: 0;
}

#navigation-part section > ul > li > ul > li > a {
  padding-left: 2rem;
}

#navigation-part li {
  list-style-type: none;
}

#navigation-part li:not(:last-child) {
  border-bottom: 1px solid rgba(3, 3, 3, 0.2);
}

#navigation-part li:not(.active) > a {
  color: #6a6a6a;
}

/* reduce the font size of subsection links */
#navigation-part li li > a {
  font-size: 0.95em;
}

#navigation-part li > a {
  border-left: 5px solid transparent;
}

/* show first active section with a blue border */
#navigation-part section > ul > :nth-child(1 of li.active) > a {
  border-left: 5px solid #00509c;
}

/* show first active subsection in the first active section, with a light blue
 * border */
#navigation-part :nth-child(1 of li.active) :nth-child(1 of li.active) > a {
  border-left: 5px solid #74b6ffd6;
}

/* Hide the content of active section when they are not the first active one */
#navigation-part section > ul > :not(:nth-child(1 of li.active)) > ul {
  display: none;
}

/* Hide subsection when they are not active */
#navigation-part li:not(.active) > ul {
  display: none;
}

/* finally, show blue border when hover links */
#navigation-part li:hover > a {
  border-left: 5px solid #00509c;
}

#navigation-part li > a {
  color: inherit;
  display: block;
  padding: 0.8em;
}

/* Presentation section (the first one, former cartouche) */
#presentation h1 {
  border-bottom: 2px solid black;
}

#presentation ul#secondary-authors {
  list-style: none;
  padding-left: 0;
  margin-top: -15px;
}

#presentation .visuel img {
  border: 1px solid #adadad;
  width: 129px;
  margin-right: 37px;
  -moz-box-shadow: 5px 5px 5px 0 #656567;
  -webkit-box-shadow: 5px 5px 5px 0 #656567;
  -o-box-shadow: 5px 5px 5px 0 #656567;
  box-shadow: 5px 5px 5px 0 #656567;
}

@media (max-width: 768px) {
  #presentation .visuel {
    display: none;
  }
  #presentation .visuel-mobile img {
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  #presentation .visuel-mobile {
    display: none;
  }
}

#presentation table td {
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

#presentation table td p {
  margin: 0;
}

#presentation table td.label {
  width: 10vw;
}

#presentation table td.label p {
  border-bottom: black 1px solid;
}

#presentation #details {
  display: flex;
  width: 100%;
}

#presentation #details #table {
  width: inherit;
}

#presentation #details-see-more {
  display: flex;
  border-top: #0a66c2 1px solid;
}

#presentation #details-see-more button {
  margin: auto;
  background-color: #0a66c2;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  vertical-align: middle;
  min-height: 30px;
  padding: 10px;
  font-weight: 600;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#presentation #details-see-more button:hover,
#presentation #details-see-more button:focus {
  background-color: #16437e;
}

#presentation .page_title {
  display: flex;
  align-items: center;
}

#presentation .work-authors {
  margin-left: 1rem;
}

#leaflet-map-geo-page .leaflet-container {
  min-height: 200px;
  height: 50vh;
}

/* subsection & subsection filters */
.collapse-wrapper .collapse-trigger {
  color: black;
  display: flex;
  justify-content: space-between;
  min-height: 45px;
  align-items: baseline;
  padding: 0 0.5em;
}

.collapse-wrapper h3 {
  padding: 0.2rem 0em;
  margin: 0px;
  font-weight: bold;
}

.collapse-wrapper h3.subsection-title {
  width: 75%;
}

.collapse-wrapper h4 {
  font-weight: normal;
  margin: 0px;
}

.collapse-trigger .collaborator {
  width: 40%;
}

.collapse-wrapper h3:first-letter {
  text-transform: capitalize;
}

.collapse-wrapper {
  background: #f4f4ff;
  border: 1px solid lightgray;
  padding: 1em;
  scroll-margin-top: 73px;
}

.subsection-banner {
  background: #f4f4ff;
  padding: 0.1rem 0px;
  position: sticky;
  top: 73px;
  z-index: 100;
}

@media (max-width: 768px) {
  .subsection-banner {
    top: 0;
  }
}

.section-filters {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #898989;
  border: 1px solid #e7e7e7;
  padding: 1rem;
  margin-bottom: 1rem;
  z-index: 200;
  position: relative;
}

.subsection-filters {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #f8f8f8;
  border: 1px solid #e7e7e7;
  border-radius: 0px;
}

.subsection-filters input[type=checkbox] {
    margin: 0px 3px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.subsection-filters .container-fluid {
  display: flex;
  margin: 1rem;
  color: rgb(110, 110, 110);
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0px;
}

.filter-container {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.filter-container .switch {
  margin-right: 0.25em;
}

.filter-container p {
  margin-bottom: 0px;
}

.subsection-filters a {
  color: rgb(110, 110, 110);
}

.collapse-trigger:hover {
  cursor: pointer;
}

.collapse-wrapper h3.collapse-button {
  background-color: white;
  border-radius: 1em;
  padding: 2px 10px;
}

.collapse-button .chevron-down,
.collapse-button .chevron-up {
  color: white;
  margin-left: 0.5em;
  display: inline-block;
  height: 20px;
  width: 25px;
}

.collapse:hover {
  cursor: pointer;
}

.chevron-down {
  background: url("images/chevron_down.png") right center no-repeat;
}

.chevron-up {
  background: url("images/chevron_up.png") right center no-repeat;
}

.visually-hidden {
  position: absolute !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.section-separator {
  padding: 0.1rem;
  background-color: white;
  margin-bottom: 1rem;
}

/* item list */
.table {
  display: table;
  width:100%;
  border-collapse: collapse;
  background-color: white;
}

.row {
  display: table-row;
  position: relative;
}

.itemlist-item.row {
  border-bottom: 2px solid #dddfff;
}

.cell {
  display: table-cell;
  vertical-align: middle;
  padding: 0.1rem 0.3rem;
}

.itemlist-details__actions .cell {
  width: 20px !important;
  height: 20px !important;
  padding: 0px;
}

.download-gallica:hover {
  cursor: pointer;
}

.download-gallica:before {
  content: "";
  background: url(images/download-btn.png) no-repeat center center;
  background-size: contain;
  display: flex;
  height: 20px;
  width: 20px;
}

.download-gallica.recommended-by-data::before {
  background: url(images/recommended-download-btn.png) no-repeat center center;
  background-size: contain;
  border-radius: 5px;
}

.gallica-link {
  cursor: pointer;
}

.gallica-link-intra-only {
  cursor: default;
}

.gallica-link::before {
  content: "";
  display: flex;
  background: url(images/gallica-btn.png) no-repeat center center;
  border-radius: 5px;
  background-size: contain;
  height: 17px;
  width: 17px;
}

.gallica-link-intra-only::before {
  background: url(images/gallica-intra-muros-only.png) no-repeat center center;
  background-size: contain;
}

.recommended-by-data::before {
  background: url(images/recommended-gallica-btn.png) no-repeat center center;
  border-radius: 5px;
  background-size: contain;
  height: 17px;
  width: 17px;
}

.itemlist-details {
  font-size: 115%;
}

.item-indirect-role {
  color: grey;
}

.itemlist-item {
  vertical-align: middle;
}

.itemlist-item a {
  font-weight: 700;
  color: black;
}

.itemlist-details__actions {
  vertical-align: middle;
  text-align: center;
  width: 100px;
}

.itemlist-details__actions a.catalog-link::before {
  content: "";
  display: flex;
  background: url(images/bnf-resource-icon.png) no-repeat center center;
  background-size: contain;
  height: 17px;
  width: 17px;
  border-radius: 5px;
}

.itemlist-details__actions a.catalog-link[href*="catalogue.bnf.fr"]::before {
  background: url(images/catalog-icon.png) no-repeat center center;
  background-size: contain;
}

.itemlist-details__actions a.catalog-link[href*="archivesetmanuscrits.bnf.fr"]::before {
  background: url(images/bam-icon.png) no-repeat center center;
  background-size: contain;
}

.itemlist-details__actions a.catalog-link[href*="ark.bnf.fr"]::before {
  background: url(images/expo-virtuelle-icon.png) no-repeat center center;
  background-size: contain;
  border-radius: 0px;
}

.itemlist-details__actions a.information {
  background-color: transparent;
  border: none;
  color: #888;
  cursor: pointer;
}

.itemlist-details__actions .pinned {
  transform: rotate(-90deg);
}

.itemlist-gallery {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  padding: 2rem;
  justify-content: left;
  gap: 1rem;
}

.itemlist-gallery::after {
  content: "";
  flex: auto;
}

.itemlist-gallery .gallery-item {
  display: flex;
}

.itemlist-gallery .gallery-item a {
  display: block;
  height: fit-content;
}

.itemlist-gallery .gallery-item input {
  display: block;
  height: 14px;
  margin-left: -18px;
}

.gallery-item img {
  width: 100px;
}

.pdfdownload {
  font-size: 0.9em;
  background: white;
  padding: 1em;
  overflow: auto;
  position: absolute;
  width: 500px;
  box-shadow: 1px 1px 5px 3px rgba(3, 3, 3, 0.2);
  border-radius: 6px;
  z-index: 999;
  right: 5em;
  text-align: left;
}

.pdfdownload button.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.pdfdownload button.close:hover {
  color: #000;
  opacity: .5;
}


.pdfdownload .btn[type="submit"] {
  float: right;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #fff;
  border-color: #ccc;
}

.pdfdownload .btn[type="submit"]:hover {
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* infobulles */
.docdesc {
  font-size: 0.9em;
  overflow: auto;
  display: flex;
  margin-bottom: 1em;
}

.docdesc strong {
  font-size: 1.2em;
}

.docdesc .manifinfo {
  margin-left: 1em;
}

.docdesc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.export-button {
  display: flex;
}

.export-button button {
  max-height: 24px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 10px;
}

.close-button {
  display: flex;
}

.close-button .fa-close {
  background-color: transparent;
  border: none;
  color: #888;
  margin-left: auto;
  cursor: pointer;
}

/* Pagination facets */
.searchletters {
  position: relative;
}

.searchletters button {
	background-color: transparent;
	border: none;
	font-size: 20px;
	height: 20px;
	margin-left: -30px;
	width: 20px;
	cursor: pointer;
}

.searchletters button::after {
	content: "\f002";
	font: normal normal normal 14px/1 FontAwesome;
}

.searchletters input {
	width: 100%;
	height: 30px;
	border: 1px solid #226a93;
}

.searchletters i.fa-chevron-down {
  margin-left: -26px;
  font-size: 16px;
  cursor: pointer;
}

.facet-titlebar {
  padding: 10px 0px;
  border-bottom: solid 1px black;
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
}

#facet-part h3 {
  margin: 0px;
  font-size: 20px;
}

.facets-container h4 {
  margin-bottom: 5px;
  margin-top: 10px;
}

.facet-toggleswitch {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.facet-checkboxes table {
  width: 100%;
  table-layout: fixed;
}

.facet-checkboxes table label {
  word-break: break-word;
}

button.clear-all {
  background-color: #f8c6c6;
  border: 0;
  box-sizing: border-box;
  color: #e93636;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  vertical-align: middle;
  min-height: 30px;
  padding: 10px;
  margin: 5px;
  font-weight: 600;
}

button.clear-all:hover,
button.clear-all:focus {
  background-color: #c82333;
  color: white;
}

/* pagination component */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 26px;
  background-color: #d9d9d9;
  width: 25%;
  border-radius: 4px;
}

#pagination-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#pagination-input {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 5em;
  text-align: center;
  border-radius: 4px;
}

.pagination > a {
  display: block;
  padding: 1px 4px;
  margin: 4px;
  border: 1px outset black;
  border-radius: 3px;
  background-color: white;
  text-decoration: none;
  color: black;
}

.pagination > a.disabled {
  cursor: not-allowed;
}

/* Modal */
.modal-container {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: bold;
  color: #62626e;
}

.modal-content {
  max-width: 80%;
  max-height: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #d8dce3;
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  background-color: #f7f8fa;
  padding: 14px;
}

/* toolbox */
#toolbox {
  display: flex;
  column-gap: 0.5em;
}

img.tool {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.rdf-dropdown:hover .rdf-dropdown-content,
.rdf-dropdown:focus-within .rdf-dropdown-content {
  display: block;
}

.rdf-dropdown ul {
  display: none;
  list-style-type: none;
  margin-top: 0;
  padding: 1em;
  box-shadow: 1px 1px 5px 3px rgba(3, 3, 3, 0.1);
  background-color: white;
  position: absolute;
}

/* tree view for level works */
.basic.tree {
  list-style: none;
  margin: 0;
  padding: 20px;
}
.basic .tree-node,
.basic .tree-node-group {
  list-style: none;
  margin: 0;
  padding: 0;
}

.basic .tree-branch-wrapper,
.basic .tree-node__leaf {
  outline: none;
}

.basic .tree-node--focused {
  outline-color: rgb(77, 144, 254);
  outline-style: auto;
  outline-width: 2px;
  display: block;
}

.basic .tree-node__branch {
  display: block;
}

.basic .tree-node {
  cursor: pointer;
}
