:root {
	--selection-color: #FED26C;
	--Couleur-primaire-2: #FFFEFA;
	--color-primaire-1:#5D3227;
}
::-webkit-scrollbar {
	width: 8px; /* Width of the scrollbar */
	height: 8px; /* Height of the scrollbar for horizontal scroll */
}

::-webkit-scrollbar-thumb {
	background: #964534; /* Color of the scrollbar thumb */
	border-radius: 10px; /* Round corners of the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
	background: #964534; /* Color of the scrollbar thumb when hovered */
}

::-webkit-scrollbar-track {
	background: #964534; /* Color of the scrollbar track */
	border-radius: 10px; /* Round corners of the scrollbar track */
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	text-transform: capitalize;
}

/* Firefox */
* {
	scrollbar-width: thin; /* Make the scrollbar thin */
	scrollbar-color: #964534 #f1f1f1; /* Thumb and track colors */
}

/* Optional: Specific styling for certain elements */
body, .container, .row, .card, .filter-container, .performer-card {
	scrollbar-width: thin; /* Make the scrollbar thin */
	scrollbar-color: #964534 #f1f1f1; /* Thumb and track colors */
}


html, body {
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	height: 100%;
}
#main {
	height: 100%;
	display: none;

}

[data-state] {
	display: none;
}
[data-state]:first-of-type {
	display: flex;
}
img {
	max-width: 100%;
}
img.icon32 {
	width: 32px
}
img.icon48 {
	width: 48px
}
.width100 {
	width: 100%;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	background-color: transparent;
}
.nav-tabs {
	border: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	border: none;
	border-bottom: 1px solid var(--color-primaire-1);
}
.font-italic {
	font-style: italic;
}
.font-bold {
	font-weight: bold;
}
.cursor-pointer {
	cursor: pointer;
}
.centered-vertical {
	height: 100%;
	display: flex;
	width: 100%;
	justify-content: center;
}


.emoji-picker {
	position: absolute;
	background: white;
	border: 1px solid #ccc;
	padding: 10px;
	display: none;
	flex-wrap: wrap;
	max-width: 350px;
	z-index: 1050;
}
.emoji-picker button {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	width: 28px;
}


#image-modal, #video-modal, #audio-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

#image-modal .modal-content, #video-modal .modal-content, #audio-modal .modal-content{
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

#image-modal img, #video-modal video, #audio-modal audio {
	height: auto;
	border-radius: 5px;
	margin: auto;
	max-height: 100dvh;
	max-width: 100dvw;
}
#audio-modal audio {
	height: 50px;
	width: 400px;
}

.center-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1080;
}
.me {
	opacity: 0.6;
	/*pointer-events: none;*/
}

.red {
	color:red;
	fill:red;
}

#webcam_btn.red path{
	fill:red;
}


.font_half {
	font-size: 0.5em;
}

.blink {
	animation: blink-animation 1s steps(1, end) infinite;
}
.blink-animation {
	animation: blink 0.5s steps(1) infinite;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
}

input:checked + .slider {
	background-color: var(--color-primaire-1);
}

input:checked + .slider:before {
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}


@keyframes blink-animation {
	50% {
		opacity: 0;
	}
}


@media (max-width: 768px) {
	#audio-modal audio {
		width: 85%;
	}
}
.display-none {
	display: none!important;
}
.form-control {
	border-radius: 5px;
}
.disabled {
	opacity: 30%;
	pointer-events: none;
}
.svg-white {
	fill:white;
}

