
/* Nav principale */
.custom-nav-selected-bg {
	background-color: #ebeae6;
}
.pwnalisys-nav-unselected-text {
	color: #9b9482 !important;
}
.pwnalisys-nav-unselected-text:hover {
	color: #504d44 !important;
}
.pwnalisys-nav-selected-text {
	color: #352805 !important;
}
.pwnalisys-nav-selected-text:hover {
	color: #9a750e !important;
}

/* Tabs */
.custom-tabs-selected-bg {
	background-color: #e5e0d3;
}
.pwnalisys-tabs-unselected-text {
	color: #9b9482 !important;
}
.pwnalisys-tabs-unselected-text:hover {
	color: #504d44 !important;
}
.pwnalisys-tabs-selected-text {
	color: #352805 !important;
}
.pwnalisys-tabs-selected-text:hover {
	color: #9a750e !important;
}
.nav-pills .nav-item .pwnalisys-nav-link.active {
	background-color: #e5e0d3;
	color: #fff;
}

/* Text */
.pwnalisys-fw-900 {
	font-weight: 900 !important;
}
.pwnalisys-fw-800 {
	font-weight: 800 !important;
}
.pwnalisys-fw-700 {
	font-weight: 700 !important;
}
.pwnalisys-fw-500 {
	font-weight: 500 !important;
}
.pwnalisys-fs-6 {
	font-size: 4rem !important;
}

/* Autres */
.pwnalisys-shadow {
	box-shadow: 0px 25px 85px 0px #f4ead0;
}
.custom-bg {
	background-color: #f8f4ea;
}
.pwnalisys-primary-bg-gradient {
	background: #f7c23e;
	background: linear-gradient(90deg, #588f27 0%, #6fb531 100%);
}
.pwnalisys-primary-bg-gradient-animated {
    background: #f7c23e;
	background: linear-gradient(90deg, #588f27 0%, #6fb531 100%);
	background-size: 200% 200%;
    animation: gradientAnimation 750ms ease infinite alternate;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.pwnalisys-primary-bg {
	background: #6fb531 !important;

}
.pwnalisys-primary-bg:hover {
	background: #87db3b !important;
	
}

.pwnalisys-primary-bg-nohover {
	background: #6fb531 !important;
}

.pwnalisys-green-bg {
	background: #39b40e;
}
.pwnalisys-blue-bg {
	background: #0085ff;
}
.pwnalisys-light-blue-bg {
	background: #1c91ff;
}
.pwnalisys-light-light-blue-bg {
	background: #43a4ff;
}
.pwnalisys-orange-bg {
	background: #ff6700;
}
.pwnalisys-brown-bg {
	background: #352805;
}
.pwnalisys-light-white-bg {
	background: #f7f7f5 !important;
}
.pwnalisys-red-bg {
	background: #e1410d;
}
.pwnalisys-purple-bg {
	background: #7000ff;
}
.pwnalisys-yellow-bg {
	background: #f7c23e;
}

.pwnalisys-low-green-bg {
	background: #ccffd0;
}

.pwnalisys-green-text {
	color: #39b40e;
}
.pwnalisys-red-text {
	color: #e1410d;
}
.pwnalisys-purple-text {
	color: #7000ff;
}
.pwnalisys-brown-text {
	color: #352805;
}
.pwnalisys-light-beige-text {
	color: #9b9482 !important;
}

.pwnalisys-placeholder-beige-text::placeholder {
	color: #9b9482 !important;
}

.pwnalisys-search-icon {
	position: absolute;
	transform-origin: center;
	left: 30px;
	top: 19px;
	z-index: 2;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	text-align: center;
	pointer-events: none;
	color: #9b9482;
}

.pwnalisys-primary-bg-table {
	background-color: #f8f4ea !important;
}
.pwnalisys-text-underline {
	text-decoration-color: currentColor;
	text-decoration: underline;
}
.pwnalisys-text-underline-light {
	text-decoration-color: #c7c3b9 !important;
	text-decoration: underline;
}
.pwnalisys-clickable {
	cursor: pointer;
}
.pwnalisys-border-color {
	border-color: #e7b635;
}

.pwnalisys-reset-bg {
	background: inherit !important;
}

.selected {
	background: #dfdfdb !important;
}

.preserve-line-breaks {
	white-space: pre-line;
}

.pwnalisys-visually-hidden {
	position: absolute;
	left: -999em;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}


.pwnalisys-hide-anim {
	animation: hideAnimation 2s forwards;
}

@keyframes hideAnimation {
	0% {
		display: block;
		opacity: 1;
	}
	80% {
		display: block;
		opacity: 1;
	}
	100% {
		display: none;
		opacity: 0;
	}
}

.htmx-indicator{
	display: none;
	transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator{
	display: block;
}
.htmx-request.htmx-indicator{
	display: block;
}


.image-hover {
	opacity: 0;
	transition: opacity 0.25s;
	background-color: #000;
}

.image-hover:hover {
	opacity: 0.6;
}


.search-result {
	background-color: yellow !important;
}

.timeline {
	border-left: 1px solid hsl(0, 0%, 90%);
	position: relative;
	list-style: none;
  }
  
  .timeline .timeline-item {
	position: relative;
  }
  
  .timeline .timeline-item:after {
	position: absolute;
	display: block;
	top: 0;
  }
  
  .timeline .timeline-item:after {
	background-color: hsl(0, 0%, 90%);
	left: -38px;
	border-radius: 50%;
	height: 11px;
	width: 11px;
	content: "";
  }


.timeline-with-icons {
	border-left: 1px solid hsl(0, 0%, 90%);
	position: relative;
	list-style: none;
}
  
.timeline-with-icons .timeline-item {
	position: relative;
}

.timeline-with-icons .timeline-item:after {
	position: absolute;
	display: block;
	top: 0;
}

.timeline-with-icons .timeline-icon {
	position: absolute;
	left: -48px;
	background-color: #ffffff;
	color: #6fb531;
	border-radius: 50%;
	height: 31px;
	width: 31px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pwnalisys-transparent-black-bg {
	background: rgba(0, 0, 0, 0.2);
	transition: ease-in-out 0.2s;
}

.pwnalisys-transparent-black-bg:hover {
	background: rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.smooth * {
	transition: all 1s ease-in;
}



.hidden_demo_data {
	filter: blur(5px) !important;
	pointer-events: none !important;
	-webkit-user-select: none !important; /* Safari */
	-ms-user-select: none !important; /* IE 10 and IE 11 */
	user-select: none !important; /* Standard syntax */

}