@font-face {
    font-family: '72';
    src: url('../res/72-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1 {
	text-align: center;
	color: #006064;
	margin-top: 10px;
	font-size: 28px;
}

h2 {
	text-align: center;
	color: #00838f;
	margin-top: 30px;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Spinner circulaire */
.spinner {
	width: 50px;
	height: 50px;
	border: 6px solid #00AECA;
	border-top: 6px solid #FBBE00;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.btn_open{
	display: flex;	
	justify-content: space-evenly;
	align-items: center;
}

.sel_txt{
	font-weight: bold;
	text-decoration: underline;
}

.categories select, .search input{
	padding: 0px 5px;
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;
}

.n4v_lib_opt{
	margin-bottom: 0px;
}

.zonePalSL {
	border: 1px solid #b2ebf2;
	border-radius: 8px;
	overflow-y: auto;
	margin: 5px 0;
	background-color: #ffffff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.1);
	display: none;
	overflow: hidden;
}
.zonePal {
	height: 200px;
	border: 1px solid #b2ebf2;
	border-radius: 8px;
	overflow-y: auto;
	background-color: #ffffff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

@keyframes flashHalo {
  0% {
    box-shadow: 0 0 0px 0 rgba(0, 150, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(0, 150, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 0px 0 rgba(0, 150, 255, 0.6);
  }
}

.flash-update {
  animation: flashHalo 1s ease-in-out 3; /* 3 clignotements */
  transition: box-shadow 0.3s;
}

.palette-row {
	display: flex;
	align-items: center;
	padding: 0px 1px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background-color 0.2s;
}

.palette-row:hover {
	background-color: #f0f8ff;
}

.palette-row.selected {
	background-color: #f0f8ff;
}

.color-swatches-win {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(14px, 1fr));
	gap: 4px;
	width: 100%;
}

.color-swatches {
	display: flex;
	gap: 1px;
	flex-shrink: 0;
	min-width: 140px;
	align-items: center;
}

.color-swatch {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #ccc;
}
.color-dot{
	width: 16px;
	text-align: center;
}
.palette-name {
	font-size: 13px;
	color: #333;
	flex-grow: 1;
	white-space: nowrap;
	text-overflow: ellipsis;
    overflow: hidden;
}

.palette-name-win {
	font-size: 13px;
	color: #333;
	font-weight: bold;
	text-align: center;
}

.palette-id {
	font-size: 11px;
	color: #777;
	text-align: center;
	font-style: italic;
}

#chartPie{
	width:70%; 
}

#legend-container{
	width:30%; 
	max-height:100%; 
	overflow-y:auto;
	border:1px solid #ddd; 
	border-radius:3px; 
	padding:2px 0px 0px 2px; 
	font-size: 12px;
	font-family: "72", Arial, Helvetica, sans-serif;
}

#containerChart {
	display:flex; 
	gap:6px;
	max-width: 600px;
	height: 300px;
	margin: 5px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	padding: 5px;
}

.nb_svg{
	color: #ffa500;
	font-family: "72", Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: right;
	font-style: italic;
}

.nb_svg_win{
	color: #ffa500;
	font-family: "72", Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: right;
	font-style: italic;
	margin-right: 10px;
}

#zone-svg {
	height: 200px;
	border: 1px solid #b2ebf2;
	border-radius: 8px;
	overflow-y: auto;
	margin: 0px;
	background-color: #ffffff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.svg-row {
	--icon-color: #292929;   /* couleur au repos */
  	--icon-hover: #007cba;    /* couleur au survol */

	color: var(--icon-color); 
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 4px 12px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background-color 0.2s;
}

.svg-row:hover {
	background-color: #f0f8ff;
}

.svg-row:hover,
.svg-row:focus-visible{
  color: var(--icon-hover);                 /* change la couleur */
}

.svg-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	fill: currentColor; 
}

.icon-name {
	font-size: 14px;
	color: #333;
	flex-grow: 1;
}

.icon-libs {
	display: flex;
    flex-direction: column;
	justify-items: start;
    align-items: flex-start;
}

.icon-cat {
	font-weight: normal;
}

#containerResult {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	margin: 5px;
}

#gaugetitle {
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;
	color: #346187;
	padding-top: 5px;
	text-align: center;
}

#containerGauge {
	width: 100%;
	max-width: 600px;
	height: 200px;
	
}

.body_win{
	font-family: "72", Arial, Helvetica, sans-serif;
	color: #346187;
}

#header_page {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
	height: 70px;
}

#title_page{
	font-weight: bold;
	font-size: 40px;
	margin: 10px;
}

#subtitle{
	font-style: italic;
	font-size: 15px;
	margin-left: 10px;
}

.hr_window{
	margin: 5px;
    color: inherit;
    border-top: #346187 solid;
    opacity: .25;
}

.filt_window{
	margin: 5px 5px;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.palette-separator {
  grid-column: 1 / -1; /* occupe toute la ligne */
  text-align: center;
  position: relative;
  cursor: pointer;
}

.palette-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, #346187 50%, transparent 95%);
  transform: translateY(-50%);
}

.palette-separator span {
  background: #f8f9fa;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  color: #666;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.delete-pal-win{
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjQgMiAyNCAyOCIgb3BhY2l0eT0iMSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI4Ij4KCQkKCQk8cGF0aCBkPSJNMjAsNVYyaC04djNINHY0aDI0VjVIMjB6IE0xOSw1aC02VjNoNlY1eiBNNywzMGgxOGwxLTIwSDZMNywzMHogTTIwLDE0aDF2MTJoLTFWMTR6IE0xNywxNGgxdjEyIGgtMVYxNHogTTE0LDE0aDF2MTJoLTFWMTR6IE0xMSwxNGgxdjEyaC0xVjE0eiIgZmlsbD0iI2ZmMDAwMCIvPgoJCTwvc3ZnPg==);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 17px 17px;
	top: 0px;
	right: 0px;
	position: absolute;
	width: 22px;
	height: 22px;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}
.delete-pal-win:hover{
	opacity: 1;
}

.cloud-pal-win{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjEgNCAyMS44NiAxOCIgb3BhY2l0eT0iMSIgd2lkdGg9IjIxLjg2IiBoZWlnaHQ9IjE4Ij4KCQkKCQk8cGF0aCBkPSJNMTMgMTljMCAuMzQuMDQuNjcuMDkgMUg2LjVjLTEuNSAwLTIuODEtLjUtMy44OS0xLjU3QzEuNTQgMTcuMzggMSAxNi4wOSAxIDE0LjU4YzAtMS4zLjM5LTIuNDYgMS4xNy0zLjQ4UzQgOS40MyA1LjI1IDkuMTVjLjQyLTEuNTMgMS4yNS0yLjc3IDIuNS0zLjcyUzEwLjQyIDQgMTIgNGMxLjk1IDAgMy42LjY4IDQuOTYgMi4wNEMxOC4zMiA3LjQgMTkgOS4wNSAxOSAxMWMxLjE1LjEzIDIuMS42MyAyLjg2IDEuNWMuNTEuNTcuODQgMS4yMSAxIDEuOTJBNS45MDggNS45MDggMCAwIDAgMTkgMTNjLTMuMzEgMC02IDIuNjktNiA2bTMtMWgydjRoMnYtNGgybC0zLTNsLTMgM1oiIGZpbGw9IiMwMDhjYjIiLz4KCQk8L3N2Zz4=");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 17px 17px;
	top: 0px;
	left: 0px;
	position: absolute;
	width: 22px;
	height: 22px;
	opacity: 0.4;
}

.modal-content {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.modal-title {
  font-weight: 600;
}

.grid-container-win {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	overflow-y: auto;
    max-height: 75vh;
}

.tile-pal {
	background-color: #fff;
	border: 1px solid #ddd;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px;
	cursor: pointer;
	margin: 5px;
	position: relative;
}
.tile-pal:hover {
	border-color: #007cba;
	box-shadow: 0 0 5px rgba(0, 124, 186, 0.2);
}

#palname{
	border: 1px solid var(--bs-border-color);
    padding-left: 5px;
	flex: 1 1 auto;
}
.tile {
	--icon-color: #292929;   /* couleur au repos */
  	--icon-hover: #007cba;    /* couleur au survol */

	color: var(--icon-color);                 /* pilote la couleur du SVG (currentColor) */
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	cursor: pointer;
	margin: 5px;
	
}

.tile:hover {
	border-color: #007cba;
	box-shadow: 0 0 5px rgba(0, 124, 186, 0.2);
}

.tile:hover,
.tile:focus-visible{
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  transform: translateY(-1px);             /* léger lift (optionnel) */
  color: var(--icon-hover);                 /* change la couleur */
}

.icon-svg {
      width: 60px;
      height: 60px;
      fill: currentColor; 
	  transition: transform .18s ease, color .18s ease, fill .18s ease, stroke .18s ease;
  	  transform-origin: 50% 50%;
  	  will-change: transform;
    }

.icon-name-win {
	font-size: 12px;
	text-align: center;
	margin-top: 5px;
	color: #333;
}

.lib_cat{
	color: #ffa500;
	font-size: 18px;
	font-weight: bold;
	margin: 4px 8px;
}

#error {
	color: red;
	text-align: center;
	font-weight: bold;
}

.btn_yel{
	color: #fff;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	font-family: "Arial";
	background-color: #ffa500;
	border-width: 0px;
}
.btn_yel:hover, .btn_yel:focus, .open>.dropdown-toggle.btn_yel {
	color: #fff;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	font-family: "arial";
	background-color: #e69500;
	border-width: 0px;
}

.btn_yel.active, .btn_yel:first-child:active, .btn_yel:active {
	color: #ffa500;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	font-family: "arial";
	background-color: #fff;
	border-width: 1px;
	border-color: #ffa500;
}

.btn_yel svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.btn_whi{
	color: #ffa500;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	font-family: "Arial";
	background-color: #fff;
	border-width: 1px;
	border-color: #ffa500;
}
.btn_whi:hover{
	color: #ffa500;
	border-width: 1px;
	border-color: #ffa500;
}

.btn_vmenu{
	margin: 2px;
    width: 100%;
}

.btn_header {
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
	height: 80px;
}

.n4v_lab_col{
	cursor: grab;
	font-size: 14px;
}

.form-label {
	margin-bottom: 0px;
}
.relative {
    margin: 2px;
}

.n4v_pickcont{
	flex-direction: column;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.n4v_pickcont.dragging {
  opacity: 0.5;
  transform: scale(0.96);
}
.n4v_pickcont:hover {
	border-color: #007cba;
	box-shadow: 0 0 5px rgba(0, 124, 186, 0.2);
}
.n4v_placeholder {
  background-color: rgba(0, 181, 205, 0.1);
  border: 2px dashed #00b5cd;
  border-radius: 6px;
}

.n4v-toast {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  font-size: 0.9rem;
}

.n4v-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.n4v-toast.hide {
  opacity: 0;
  transform: translateX(100%);
}


.color-placeholder {
  background-color: rgba(0, 181, 205, 0.1);
}

.n4v_btn_colpick {
    color: #ffa500;
    background-color: white;
    border: 1.5px solid #ffa500;
    padding: 0px !important;
    font-size: 14px !important;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
	width: 20px;
	height: 20px;
	text-align: center;
}

.n4v_btn_colpick:hover {
    background-color: #ffa500;
    color: white;
}

.n4v_btn_colpick:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(255, 165, 0, 0.5);
}

.colpickwin{
	display: flex;
	align-items: center;
}
.btn_n4v_toolcol{
	display: flex;
    align-items: center;
    justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 4px;
    transition: all 0.3s ease-in-out;
	color: #ffa500;
    background-color: white;
    border: 1.5px solid #ffa500;
	font-size: 22px;
	font-weight: bold;
    line-height: 1;
    text-align: center;
    padding: 0;
}
.ic_btn_toolcolpic{	
	padding-bottom: 2px;
}
.btn_n4v_toolcol:hover{
	background-color: #ffa500;
    color: white;
}

.btn_n4v_toolcol:focus {
	outline: none;
    box-shadow: none;
	color: #ffa500;
	background-color: white;
}

.apply_btns{
	margin-right: 5px;
}
.btnCAPal{
	width: 110px;
	border-radius: 4px;
    transition: all 0.3s ease-in-out;
	color: #fff;
    background-color: #ffa500;
    border: 1.5px solid #ffa500;
	font-size: 16px;
    line-height: 1;
    padding: 5px;
}
.btnCAPal:hover{
	color: #ffa500;
	background-color: white;
}
.btnSavePal{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjQ4IDQ4IDQxNiA0NDYiIG9wYWNpdHk9IjEiIHdpZHRoPSI0MTYiIGhlaWdodD0iNDQ2Ij4KCQkKCQk8cGF0aCBkPSJNNjQgNDhjLTguNyAwLTE2IDcuMy0xNiAxNnYzODRjMCA4LjcgNy4zIDE2IDE2IDE2aDIxNXYtMTZINjRWNjRoNjMuNHY5Ny41YzAgNCAzLjQgNy4xIDcuNyA3LjFoMTY5LjhjNC4zIDAgNy43LTMuMSA3LjctN1Y2NGg2OS4ybDEuNSAxIDguNCA3LjVhODcyIDg3MiAwIDAgMSA1NS4yIDU2LjJsMS4xIDEuNXYyMDBsMTYgMTZWMTI4YzAtMi43LS43LTMuNC0xLTQuMmwtMS4xLTEuOC0yLjYtMy40cS0zLjEtMy44LTgtOS4xYTg3OCA4NzggMCAwIDAtNTcuOS01Ni44IDQ2IDQ2IDAgMCAwLTUuMi0zLjdjLS44LS4zLTEuNS0xLTQuMi0xem04Ny43IDE2aDQ4LjZjNC4zIDAgNy43IDQuNCA3LjcgMTB2NzBjMCA1LjYtMy40IDEwLTcuNyAxMGgtNDguNmMtNC4zIDAtNy43LTQuNC03LjctMTBWNzRjMC01LjYgMy40LTEwIDcuNy0xME0xMTQgMjEyYTggOCAwIDAgMC04IDh2MTg0YTggOCAwIDAgMCA4IDhoMTY1di0yOGgtNzYuN2wxNS4zLTE1LjQgMTI4LTEyOCA2LjQtNi4zIDYuNCA2LjMgNDcuNiA0Ny43VjIyMGE4IDggMCAwIDAtOC04em0yMzggNDcuOEwyNDUuOCAzNjZIMjk3djEyOGgxMTBWMzY2aDUxLjN6TTQ0OCAzODR2NjRoLTIzdjE2aDIzYzguNyAwIDE2LTcuMyAxNi0xNnYtNjR6IiBmaWxsPSIjZmZmZmZmIi8+CgkJPC9zdmc+");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 40% 60%;
	width: 65px;
	border-radius: 4px;
    transition: all 0.3s ease-in-out;
	color: #fff;
    background-color: #ffa500;
    border: 1.5px solid #ffa500;
	font-size: 16px;
    line-height: 1;
    text-align: right;
    padding: 5px;
}
.btnSavePal:hover{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjQ4IDQ4IDQxNiA0NDYiIG9wYWNpdHk9IjEiIHdpZHRoPSI0MTYiIGhlaWdodD0iNDQ2Ij4KCQkKCQk8cGF0aCBkPSJNNjQgNDhjLTguNyAwLTE2IDcuMy0xNiAxNnYzODRjMCA4LjcgNy4zIDE2IDE2IDE2aDIxNXYtMTZINjRWNjRoNjMuNHY5Ny41YzAgNCAzLjQgNy4xIDcuNyA3LjFoMTY5LjhjNC4zIDAgNy43LTMuMSA3LjctN1Y2NGg2OS4ybDEuNSAxIDguNCA3LjVhODcyIDg3MiAwIDAgMSA1NS4yIDU2LjJsMS4xIDEuNXYyMDBsMTYgMTZWMTI4YzAtMi43LS43LTMuNC0xLTQuMmwtMS4xLTEuOC0yLjYtMy40cS0zLjEtMy44LTgtOS4xYTg3OCA4NzggMCAwIDAtNTcuOS01Ni44IDQ2IDQ2IDAgMCAwLTUuMi0zLjdjLS44LS4zLTEuNS0xLTQuMi0xem04Ny43IDE2aDQ4LjZjNC4zIDAgNy43IDQuNCA3LjcgMTB2NzBjMCA1LjYtMy40IDEwLTcuNyAxMGgtNDguNmMtNC4zIDAtNy43LTQuNC03LjctMTBWNzRjMC01LjYgMy40LTEwIDcuNy0xME0xMTQgMjEyYTggOCAwIDAgMC04IDh2MTg0YTggOCAwIDAgMCA4IDhoMTY1di0yOGgtNzYuN2wxNS4zLTE1LjQgMTI4LTEyOCA2LjQtNi4zIDYuNCA2LjMgNDcuNiA0Ny43VjIyMGE4IDggMCAwIDAtOC04em0yMzggNDcuOEwyNDUuOCAzNjZIMjk3djEyOGgxMTBWMzY2aDUxLjN6TTQ0OCAzODR2NjRoLTIzdjE2aDIzYzguNyAwIDE2LTcuMyAxNi0xNnYtNjR6IiBmaWxsPSIjZmZhNTAwIi8+CgkJPC9zdmc+");
	color: #ffa500;
	background-color: white;
}

.hal {
  --c1: #346187; /* bleu-vert */
  --c2: #ffa500; /* jaune */
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--c1);
}

.hal:before,
.hal:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 3s spinhal linear infinite;
}

.hal:after {
  color: var(--c2);
  transform: rotateY(70deg);
  animation-delay: 0.8s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spinhal {
  0%,
  100% {
    box-shadow: .2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .2em .2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.2em .2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.2em -.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: .2em -.2em 0 0 currentcolor;
  }
}
.rephal{
	width: 100%;
    padding-left: 10px;
    background: #34618722;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: 5px;
}
.hal .core{
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;       /* taille du point */
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: currentColor;      /* suit la propriété color */
  color: var(--c1);
  z-index: 1;
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse{
  0%{
    color: var(--c1);
    transform: translate(-50%,-50%) scale(1);
  }
  50%{
    color: var(--c2); /* bascule vers la 2e couleur */
    transform: translate(-50%,-50%) scale(1.35); /* battement */
  }
  100%{
    color: var(--c1);
    transform: translate(-50%,-50%) scale(1);
  }
}

/* === STATUS PANEL === */
.status-panel {
	background-color: white;
	border-radius: 8px;
	padding: 1rem;
	box-shadow: 0 1px 6px rgba(0,0,0,0.1);
	text-align: center;
	font-size: 0.95rem;
	color: #333;
}

.recommendation-panel, .footer-buttons {
	display: none; /* Affiché quand une recommandation est prête */      
}

/* === GRID DES VISUALISATIONS === */
.recommendation-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin-bottom: 0.5rem;
}

/* Ajuste pour forcer 2 colonnes max si la largeur le permet */
@media (min-width: 300px) {
  .recommendation-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 299px) {
  .recommendation-options {
    /* grid-template-columns: 1fr; 1 colonne si très étroit */
    grid-template-columns: repeat(2, 1fr);
  }
}

.chart-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


/* Style custom du popover */
.popover.custom-popover {
	border: 1px solid #346187;
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
	max-width: 320px; /* largeur max */
}
.popover.custom-popover .popover-header {
	background: #346187;
	color: #fff;	
	padding: 5px;
	font-size: 14px;
}
.popover.custom-popover .popover-body {
	font-size: 13px;
	padding: 8px;
	color: #346187
}
.yel_arrow{
	color: #ffa500;
}

/* Mettre en évidence le mot “survolable” */
.hint {
	background: #fff3cd;
	padding: 0 .25rem;
	border-radius: .25rem;
	cursor: help;
	border-bottom: 1px dashed #d39e00;
}
.cr_ana_res{
	padding: 10px 0px 10px 0px;
}

.chart-option {
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  padding: 0px 5px 0px 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 115px; /* Légèrement réduit pour s'adapter à un petit espace */
  justify-content: center;
  text-align: center;  
  overflow: hidden; /* Évite le débordement si texte trop long */
}
.chart-option:hover {
  border-color: #34618777;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  /*transform: translateY(-1px);*/
}
.chart-option.selected {
  border-color: #346187;
}
.chart-option.selected .chart-option-title{
  background-color: #346187;
  color: #fff;
}


.chart-option-title {
  font-weight: bold;
  color: #346187;
  max-width: 100%;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* gauche | centre | droite */
  align-items: center;                  /* centrage vertical optionnel */
  gap: .5rem;
}
.span-chart-title{
  grid-column: 2;            /* colonne du milieu */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  justify-self: stretch;
  text-align: center;
}
.star-score{
  color: #ffa500;
  grid-column: 3;            /* colonne de droite */
  justify-self: end;         /* collé à droite */
  padding-right: 5px;
}
.red_col{
	color: #ff0000;
}
.hightscore{
	color: #ffa500 !important;
}
.lowscore{
	color: #aaa !important;
}
.chart-score {
  font-size: 0.85rem;
  color: #346187;
  text-align: end;
  margin-right: 5px;
}

.chart-icon-win {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.chart-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.b:hover + .a {
    opacity: 0;
    pointer-events: none;
}

.chart-option:hover .chart-score {
  display: none;
}
.chart-option:hover .chart-icon {
  height: 85px;
  width: 85px;
}

 /* === ACTION TOGGLE (Replace / Add) === */
.action-selection {
	margin-bottom: 0.5rem;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.btn {
	padding: 4px 5px 2px 6px;
	font-size: 27px;
}

.lib_btn_n4v{
	font-size: 14px;
}
/* === FOOTER BUTTONS === */
.footer-buttons {
	justify-content: center;
	margin-top: 0.5rem;
}


#reco_chart{
	display: none;
}

.synth_cr_win{
	width: 80%;
    margin-left: 10%;
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 10px;	
	font-size: 15px;
	display: flex;
    justify-content: space-around;
}
#synth-title3{
	font-size: larger;
	font-style: italic;
}
.synth_cr_win p{
	line-height: 1.5rem;
}
.synth_charac{
	max-width: 60%;
}
.list_chara_obj{
	font-size: 12px;
	margin-bottom: 0px;
}
.agent{
	color: #346187;
	font-size: 16px;
	margin: 15px 10px 15px 10px;
    font-weight: bold;	
    display: flex;
    align-items: center;
}
.det_rec_cont{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.detailed-recommendation {
	display: flex;
	flex-direction: column;
    justify-content: space-between;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	width: 45%;
}
.detailed-recommendation:hover {
  border-color: #34618777;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  transform: translateY(-1px);
}

.detailed-recommendation:hover .chart-icon-win {
  height: 150px;
  width: 150px;
}

.no-data {
	text-align: center;
	color: #777;
	font-style: italic;
	padding: 50px;
}
.chart-header {
	display: flex;
	align-items: center;
}
.chart-title {
	font-size: 1.2rem;
	font-weight: bold;
	flex: 1 auto;
    text-align: center;
}
.chart-greyed {
	background-color: #aaa !important;
	color: #aaa;
}
.high-score{
	background-color: #ffa500 !important;
}

.chart-title-greyed {
	color: #aaa;
}
.chart-score-win {
	background-color: #346187;
	color: white;
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 14px;
	margin-left: auto;
}
.chart-description {
	margin: 10px 0;
	color: #555;
	font-size: 0.95rem;
}
.chart-details {
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 10px;
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.chart-btns{
	display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.apply-btn {
	border: 1px solid #346187;
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 14px;
}
.apply-btn:hover {
	background-color: #346187;
    color: #fff;
}




body{	
	width: 100%;
}

#info {
	font-style: normal;
	font-size: 16px;
	font-family: "72", Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 5px;
    border-radius: 3px;
}

.info_help {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: help;
  position: absolute;
  right: 8px;
  top: 6px;
}

.info_help:hover {
  background: #fff;
  color: #346187
}

button svg {
  transition: transform 0.2s ease; /* animation douce */
}

button:hover svg {
  transform: scale(1.2); /* grossit de 20% */
}

#content, .infoExp{
	font-style: normal;
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;
}
#content ul{
	padding-left: 20px;	
}

.infoExp ul{
	padding-left: 20px;	
}

#seletedSpan{
	padding-left: 20px;	
}

.refreshBtnList {
	left: 10px;
	font-size: 20px;
    top: -3px;
}

#options, #content, .infoExp {
	border-radius: 3px;
	padding: 5px;
	margin: 5px;
}

#options {
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;	
}

#optionLib, #contentLib, .InfoLib, .optionLib {
	font-weight: bold;
    text-decoration: underline;
	line-height: 1.5rem;
}

#responsiveElmts {
	padding-bottom: 10px;
}

.accordion-header {
	font-family: "72", Arial, Helvetica, sans-serif;
}
.accordion-body {
	padding: 0;
}

div[id^="row-body"] {
	padding: 8px;
}

.accordion-button {
    padding-top: 8px;
    padding-bottom: 8px;
	font-weight: bold;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #e58829;
}

.help_chart{
	background-size: 100% 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjQgMCA1NiA2NCIgb3BhY2l0eT0iMSIgd2lkdGg9IjU2IiBoZWlnaHQ9IjY0Ij4KCQk8ZGVmcz4KCQkJPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkamV0dnIwIiBjeD0iNTAlIiBjeT0iMzAlIiByPSI3MCUiIGZ4PSI1MCUiIGZ5PSI1MCUiPgoJCQk8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYzZjM2M2IiAvPgoJCQk8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3YTc3N2EiIC8+CgkJCTwvcmFkaWFsR3JhZGllbnQ+CgkJPC9kZWZzPgoJCTxwYXRoIGQ9Ik02MCw1MlY0YzAtMi4yMTEtMS43ODktNC00LTRIMTR2NTF2M2g0MnY4SDEwYy0yLjIwOSwwLTQtMS43OTEtNC00czEuNzkxLTQsNC00aDJ2LTNWMEg4IEM1Ljc4OSwwLDQsMS43ODksNCw0djU0YzAsMy4zMTMsMi42ODcsNiw2LDZoNDljMC41NTMsMCwxLTAuNDQ3LDEtMXMtMC40NDctMS0xLTFoLTF2LThDNTkuMTA0LDU0LDYwLDUzLjEwNCw2MCw1MnogTTIzLDE0aDEyIGMwLjU1MywwLDEsMC40NDcsMSwxcy0wLjQ0NywxLTEsMUgyM2MtMC41NTMsMC0xLTAuNDQ3LTEtMVMyMi40NDcsMTQsMjMsMTR6IE00MiwyOEgyM2MtMC41NTMsMC0xLTAuNDQ3LTEtMXMwLjQ0Ny0xLDEtMWgxOSBjMC41NTMsMCwxLDAuNDQ3LDEsMVM0Mi41NTMsMjgsNDIsMjh6IE00OSwyMkgyM2MtMC41NTMsMC0xLTAuNDQ3LTEtMXMwLjQ0Ny0xLDEtMWgyNmMwLjU1MywwLDEsMC40NDcsMSwxUzQ5LjU1MywyMiw0OSwyMnoiIGZpbGw9InVybCgjZ3JhZGpldHZyMCkiLz4KCQk8L3N2Zz4=");
	width: 30px;
    height: 30px;
    background-repeat: no-repeat;
}
.alert_icon{
	background-size: 100% 100%;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAuMDAwMjk4MjA2MjQwMzM4NDMxOTYgMC45OTg1ODMzMjcxNjE0MDgyIDE2LjAwMjgyNDEzNDkzODcgMTQuMDAxNDE2NjcyODM4NTkxIiBvcGFjaXR5PSIxIiB3aWR0aD0iMTYuMDAyODI0MTM0OTM4NyIgaGVpZ2h0PSIxNC4wMDE0MTY2NzI4Mzg1OTEiPgoJCQoJCTxwYXRoIGQ9Ik04Ljk4MiAxLjU2NmExLjEzIDEuMTMgMCAwIDAtMS45NiAwTC4xNjUgMTMuMjMzYy0uNDU3Ljc3OC4wOTEgMS43NjcuOTggMS43NjdoMTMuNzEzYy44ODkgMCAxLjQzOC0uOTkuOTgtMS43NjdMOC45ODIgMS41NjZ6TTggNWMuNTM1IDAgLjk1NC40NjIuOS45OTVsLS4zNSAzLjUwN2EuNTUyLjU1MiAwIDAgMS0xLjEgMEw3LjEgNS45OTVBLjkwNS45MDUgMCAwIDEgOCA1em0uMDAyIDZhMSAxIDAgMSAxIDAgMmExIDEgMCAwIDEgMC0yeiIgZmlsbD0iI2ZmYTUwMCIvPgoJCTwvc3ZnPg==");
	background-repeat: no-repeat;
	width: 30px;
    height: 30px;    
}
.chart-notif {
	margin: 10px 0;
	color: #ffa500;
	font-size: 0.85rem;
	display: flex;
    align-items: center;
}
.form-check{
	margin: 0 10px;
}

.customCheck {
	padding-left: 0px;
}

.input-group{
    padding: 0px 10px;
}
.input-group .input-group-text{
	font-style: normal;
	font-size: 14px !important;
	font-family: "72", Arial, Helvetica, sans-serif;
	padding: 0px 5px;
}
.input-group input{
	font-style: normal;
	font-size: 14px !important;
	font-family: "72", Arial, Helvetica, sans-serif;
	padding: 0px 5px !important;
}

.dynamicLi{
	font-style: normal;
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;
	margin-bottom: 5px;
}

.btnDwnlFile{
	width: 14px;
	margin-bottom: 5px;
    margin-left: 5px;
}

.btn_copy {
	text-align: center;
	margin: 5px;
}
	
#bouton {
	text-align: center;
	margin-top: 5px;
}

button.learn-more{
	width: 270px;
}

button.learn-more .button-text {
	font-style: normal;
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;
	padding-top: 3px;
}

.txt_result {
	text-align: center;
	font-size: 14px;
	font-family: "72", Arial, Helvetica, sans-serif;
}


input[type="range"] {
	margin-left: inherit;
	width: 89px;
}

input, select {
	border-radius: 0.2rem;
}

.input-size {
	display: flex;
	gap: 10px;
  }
  
.input-size input, #btn_nb_rows, input[id^="row"] {
	max-width: 40px;
}

div[data-column-id] {
	margin-top: 10px;
	border-top: 1px solid #dee2e6;
}

select[data-row-id], input[id^="row"] {
	margin: 4px;
}

.align-right {
	float: right;
}

#infoContent {
    display: none;
    padding: 10px;
    margin: 7px 0;
    border-radius: 4px;
}

#infoContent.show {
    display: block;
}

.button-group-container {
	display: flex;
	justify-content: flex-end;
}

.button-group {
	display: flex;
	border-radius: 5px;
	overflow: hidden;
}

.button-group button {
	flex: 1;
	border: none;
	padding: 2px 10px;
	font-size: 11px;
	font-weight: bold;
}

.custom-menu {
	position: absolute;
	display: none;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 140px;
}

.custom-menu li {
	padding: 8px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	font-family: "72", Arial, Helvetica, sans-serif;
	font-size: 13px;
}

.custom-menu li:last-child {
	border-bottom: none;
}

.custom-menu li:hover {
	background-color: #f0f0f0;
}

.center-flex {
	display: flex;
	align-items: center;
}

.center-content {
	justify-content: center;
}

.gap5 {
	gap: 5px;
}

.margin-page {
	width: 51px;
	height: 70px;
	border: 1px solid black;
}


/* SETTINGS */
.n4v-selsettings{
	display: flex;
    align-items: center;
    justify-content: space-around;
}

.n4vset-lib-item{
	color: #666;
    font-size: 14px;
    font-family: "72", "72full", Arial, Helvetica, sans-serif;
    font-weight: normal;
    display: inline-block;
    /*white-space: nowrap;*/
    margin-left: 3px;
}

/* Style global des accordéons */
.accordion {
	border: none;
	background: transparent;
}

.accordion-item {
	background: transparent;
	border: none;
}

.accordion-header {
	padding: 0;
	margin: 0;
}

.accordion-button {
	background: transparent;
	color: #333;
	font-weight: 600;
	border: none;
	box-shadow: none;
	border-radius: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.accordion-button:not(.collapsed) {
	background: transparent;
	color: #333;
	box-shadow: none;
}

.accordion-collapse {
	border: none;
	padding: 0;
}

.n4v-inactive-dependency {
    border: 2px solid #dc3545 !important;
    border-radius: 4px;
    padding: 4px;
    background-color: #fff5f5;
    opacity: 0.8;
}

#breadcrumb {
    display: none;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#breadcrumb.visible {
    display: flex;
    pointer-events: auto;
}

#breadcrumb .clickable {
    cursor: pointer;
    text-decoration: underline;
	color: #346187;
	font-family: "72", "72full", Arial, Helvetica, sans-serif;
}
#breadcrumb .clickable:hover {
    opacity: 0.7;
}
.scroll-top-btn {
    cursor: pointer;
    font-size: 18px;
    padding: 4px 6px;
    line-height: 16px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;          /* empêche les clics quand caché */
    transition: opacity 0.25s ease;
}
/* visible */
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn:hover {
    opacity: 1;
    background: rgba(0,0,0,0.05);
}
.breadcrumb-popup {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 9999;
    min-width: 150px;
    display: none;          /* caché par défaut */
}

.breadcrumb-popup.visible {
    display: block;
}

.breadcrumb-popup .item {
    padding: 3px 6px;
    cursor: pointer;
    white-space: nowrap;
	color: #346187;
    font-size: 14px;
    font-family: "72", "72full", Arial, Helvetica, sans-serif;
}

.breadcrumb-popup .item:hover {
    background: #f0f0f0;
}


.n4vset-grp-accordbtn::after{
	width: 18px;
	height: 18px;
	background-size: 18px;
	font-weight: bold;
}

.n4vset-grp-accordbtn:not(.collapsed) {
	font-weight: bold;
}

.n4v-category:has(.n4vset-cat-accordbtn:focus)
  .accordion-collapse {
    border-left: 1px dashed #acacac !important;
}

.n4vset-cat-accordbtn::after{
	width: 16px;
	height: 16px;
	background-size: 16px;
	margin-left: 5px;
	font-weight: normal;
}
.n4vset-cat-accordbtn{
	font-weight: normal;
}

.n4vset-font-accordbtn{
	padding: 0px 0px 0px 20px !important;
	color: #666 !important;
}
.n4vset-font-accordbtn::after {
    left: 0px !important;
	color: #666 !important;
    font-size: 14px;
    font-family: "72", "72full", Arial, Helvetica, sans-serif;
	width: 14px;
	height: 14px;
	background-size: 14px;
}
.n4vset-lib-font{
	float: none;
	margin-bottom: 0;
	font-size: 14px;
	color: #666;
	font-family: "72", "72full", Arial, Helvetica, sans-serif;
	font-weight: normal;
	width: auto;
}

.n4vset-block:hover {
    background: #e4eaf5;
}
.n4vset-block:has(.n4vset-lib-item:hover) {
    background: #e4eaf5; /* couleur sur survol du lib */
}
.n4vset-formcheck:has(.n4vset-lib-item:hover) {
    background: #e4eaf5; /* couleur sur survol du lib */
}

.n4vset-lib-sellist{
	font-size: 14px;
	padding: 0rem 30px 0rem 5px;
	font-family: "72", "72full", Arial, Helvetica, sans-serif;
    font-weight: normal;
	border-radius: 0px;
}

.n4vset-lib-nb{
	font-size: 14px;
	padding: 0rem 0.1rem 0rem .75rem;
	font-family: "72", "72full", Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.n4vset-block-font{
	margin: 0px 5px 5px 5px;
	padding: 0px 8px 0px 8px;
}

.n4vset-lib-selbtn{
	font-size: 14px !important;
	height: 23px;
	padding: 0px 5px 0px 5px;
}

.n4vset-text-item{
	font-size: 14px;
	padding: 0px 5px 0px 5px;
	font-family: "72", "72full", Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.n4vset-formcheck{
	display: flex;
	padding-left: 0px;
	justify-content: space-between;
}

.n4vset-btn{
	font-size: 14px !important;
}

.n4vset-lock{
	font-size: 10px;
}

.btn.active{
	background-color: #346187 !important;
    border-color: #346187 !important;
}

.n4v_fold_unfold_btn{
	background-color: #346187;
    border-radius: 3px;
	width: 24px;
    height: 24px;
}

.n4v-btn-unfoldgrp{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjI0IDI0IDIwOCAxODQuMDYxMDE3MjQ2MzczMTUiIG9wYWNpdHk9IjEiIHdpZHRoPSIyMDgiIGhlaWdodD0iMTg0LjA2MTAxNzI0NjM3MzE1Ij4KCQkKCQk8cGF0aCBkPSJtMjA1LjcgNjEuNy0xNDQgMTQ0YTggOCAwIDAgMS0xMS40LTExLjRsMTQ0LTE0NGE4IDggMCAwIDEgMTEuNCAxMS40TTY0IDExMmE4IDggMCAwIDAgMTYgMFY4MGgzMmE4IDggMCAwIDAgMC0xNkg4MFYzMmE4IDggMCAwIDAtMTYgMHYzMkgzMmE4IDggMCAwIDAgMCAxNmgzMlptMTYwIDY0aC04MGE4IDggMCAwIDAgMCAxNmg4MGE4IDggMCAwIDAgMC0xNiIgZmlsbD0iI2RkZGRkZCIvPgoJCTwvc3ZnPg==");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 80% 80%;
	width: 24px;
    height: 24px;
}

.n4v-btn-unfold{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjQuNSA0LjUgMTUgMTUiIG9wYWNpdHk9IjEiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSI+CgkJCgkJPHBhdGggZD0iTTEyIDQuNWExIDEgMCAwIDAtMSAxVjExSDUuNWExIDEgMCAxIDAgMCAySDExdjUuNWExIDEgMCAxIDAgMiAwVjEzaDUuNWExIDEgMCAxIDAgMC0ySDEzVjUuNXEwLTEtMS0xIiBmaWxsPSIjZGRkZGRkIi8+CgkJPC9zdmc+");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 80% 80%;
	width: 24px;
    height: 24px;
}

.n4v-btn-fold{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjQuNSAxMSAxNSAyIiBvcGFjaXR5PSIxIiB3aWR0aD0iMTUiIGhlaWdodD0iMiI+CgkJCgkJPHBhdGggZD0iTTUuNSAxMWExIDEgMCAxIDAgMCAyaDEzYTEgMSAwIDEgMCAwLTJ6IiBmaWxsPSIjZGRkZGRkIi8+CgkJPC9zdmc+");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 80% 80%;
	width: 24px;
    height: 24px;
}

.n4v-accbody-grp {
	padding: 0 0 0 10px;
}


.svg-badge-wrapper {
    display: inline-block;
    position: relative;
}

.svg-badge-wrapper .badge-circle {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    padding: 0;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}