/* Variables */
:root
{
}

/* Global font fixer (only mac) */
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* GeneratePress fixes */
.site-content
{
	display: block;
}

/* Elementor basics fixes */
.elementor-text-editor p:last-child
{
	margin-bottom: 0;
}
p.elementor-heading-title
{
	margin-bottom: 0;
}

a.elementor-button
{
	position: relative;
	z-index: 1;
}

.elementor-element > .elementor-background-overlay
{
	pointer-events: none;
}


/* Elementor lightbox fix */
.elementor-lightbox .elementor-lightbox-item
{
	padding: 0;
}


/* Elementor utils */
.no-margin
{
	margin: 0 !important;
}
.nox-flex-row.elementor-column .elementor-widget-wrap
{
	flex-direction: row;
	flex-wrap: nowrap;
}
.nox-flex-row.elementor-column .elementor-widget-wrap>.elementor-element
{
	display: flex;
	align-items: center;
	width: auto;
	margin-bottom: 0 !important;
}
.nox-flex-row.elementor-column .elementor-widget-wrap>.elementor-element .elementor-icon-wrapper
{
	display: flex;
	align-items: center;
}
.nox-pos-static.elementor-widget
{
	position: static;
}

/* Commandes */
.ct-commande .cmd
{
	display: inline-block;
	padding: 2px 8px;
	margin: 0 8px 4px 0;
	background-color: rgba(255,255,255,0.15);
	border-radius: 3px;
	cursor: pointer;
}
.ct-commande .cmd > i
{
	margin-left: 2px;
	font-size: 0.85em;
	opacity: 0.5;
}
.ct-commande .cmd:hover,
.ct-commande .cmd:active
{
	background-color: rgba(255,255,255,0.25);
}
.ct-commande .cmd:hover > i,
.ct-commande .cmd:active > i
{
	opacity: 1;
}

/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext
{
	visibility: hidden;
	width: 120px;
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;

	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.3s;
}
.tooltip .tooltiptext i
{
	font-size: 0.85em;
	opacity: 1;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after
{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #222 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip.copied .tooltiptext
{
	visibility: visible;
	animation-name: tooltip_fade;
	animation-duration: 5s;
	animation-iteration-count: 1;
}
@keyframes tooltip_fade
{
	0%   { opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { opacity: 0; }
}
