
:root {
	--color-primary: #1569AE;				/* input border, border-left info, separator, loading spin : #F27F6F */
	--bg-input: aliceblue;					/* input background-color : #FAEBD7 */
	--hover-head-color: #abffd9;			/* selection head button hover */
	--bg-jqcloud: rgba(255,255,255,0.0);	/* background-color JQCloud */
	--bg-head-color: rgba(255,255,255,1);	/* background-color entête de bloc résultat*/
	--unitless-max-font-size: 17;			/* font-size body */
}

body {
	font-size: calc(var(--unitless-max-font-size) * 1px);
	line-height: 1.5em;
}

body, a {
	border: 0 !important;
}

h1, h2, h3, h4, h5, h6, div, span, p {
	margin: 0;
	padding: 0;
	border: 0;
	line-height: inherit;
}

input, textarea, select, button {
	font-weight: unset;
	font-size: 0.7em;
	line-height: inherit;
}

input, textarea, select {
	color: #919ca7 !important;
}

button {
	color: #919ca7;
}


.post, .page, article {
	margin: 0;
	padding: 0;
	border: unset !important;
}

label {
	letter-spacing: normal;
	display: inline-block;
}

.form-group {
	padding-bottom: 0;
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free";
}

/**------------------------------------------*/
/** Update plugins fiche détails - Banner */
#plugin-information-title.with-banner {
	background-position: center;
}

/**------------------------------------------*/
/** Elementor cache le texte des boutons Dynamic Tags */
.elementor-tags-list__teaser {
	display: none !important;
}

/**------------------------------------------*/
/** Style du bouton 'Lire le flux - Read the feed' */
.eac__button {
	display: block;
	margin-top: 10px;
	text-align: center;
}

.eac__button .eac__read-button {
	padding: 5px 15px;
	background: #EEE;
	border: none;
	border-radius: 7px;
	background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2) );
	color: #222 !important;
	font-family: sans-serif;
	font-size: .9em;
	text-shadow: 0 1px white;
	cursor: pointer;
	text-transform: initial;
}

.eac__button .eac__read-button:hover {
  background-color: #8CF;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #222;
}

.eac__button .eac__read-button:active,
.eac__button .eac__read-button.is-checked {
	background-color: #28F;
}

.eac__button .eac__read-button.is-checked {
	color: white;
	text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.eac__button .eac__read-button:active {
	box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

@media (max-width: 640px) {
	.eac__button { display: block; }
}

/**-----------------------------*/
/** Style des boutons related hashtags, stories, suggestions, tagged users */
.eac__container-head-button {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	line-height: 1.7em;
	margin-bottom: 10px;
}

.eac__head-button {
	display: none;
	/*background-color: burlywood;
	background-image: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,0.25));
	box-shadow: 3px 3px 3px rgba(0,0,0,.35);*/
	border: 0;
	padding: 0 10px;
	font-size: .9em;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	border-radius: 10px;
	/*background-color: rgba(220, 0, 0, 1);*/
	background-color: #007cba;
	background-color: var(--color-primary);
	background-image: linear-gradient(to top left, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, 0));
	box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
				inset -2px -2px 3px rgba(0, 0, 0, .6);
	cursor: pointer;
}

/** Theme hueman */
.eac__head-button p {
	margin-bottom: 0;
}

.eac__head-button:hover {
	background-color: var(--hover-head-color);
}

.eac__head-button p {
	color: white;
	padding: 2px 10px;
	font-size: .9em;
	font-weight: 600;
}

/**------------------------------------------*/
/** animation loading spin */
.eac__loader-spin {
	display: none;
	margin: 10px auto;
	height: 30px;
	width: 30px;
	animation: spin 0.8s infinite linear;
	-webkit-animation: spin 0.8s infinite linear;
	border: 4px solid var(--color-primary);
	border-right-color: transparent;
	border-radius: 50%;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@-webkit-keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@-moz-keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/**------------------------------------------*/
/**<div id="pin__loader-wheel" class="eac__loader-wheel"><i><i><i><i><i><i><i><i><i><i><i><i></i></i></i></i></i></i></i></i></i></i></i></i></div>*/

/** animation loading wheel */
.eac__loader-wheel {
	display: none;
	margin: 5px auto;
}

.eac__loader-wheel {
  font-size: 32px; /* change size here */
  position: relative;
  height: 1em;
  width: 1em;
  padding-left: 0.45em;
  overflow: hidden;
  /*margin: 0 auto;*/
  animation: eac-loader__wheel-rotate 0.5s steps(12) infinite;
}

.eac__loader-wheel i {
  display: block;
  position: absolute;
  height: 0.3em;
  width: 0.1em;
  border-radius: 0.05em;
  background: #333; /* change color here */
  opacity: 0.8;
  transform: rotate(-30deg);
  transform-origin: center 0.5em;
}

@keyframes eac-loader__wheel-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/**------------------------------------------*/
/** Pour les headings du thème Twenty Nineteen */
h1::before, h2::before, h3::before, h4::before, h5::before, h6::before {
	content: none !important;
}

/** Augmentation de la taille font awesome fa-lg */
.insta-user__link-icon .fa-instagram.fa-lg,
.insta-explore__link-icon .fa-instagram.fa-lg,
.insta-location__link-icon .fa-instagram.fa-lg {
	font-size: 1.45555555em !important
}

.dynamic-tags_author-social-network .fa-instagram.fa-lg {
	font-size: 1.33333333em !important
}

/**------------------------------------------*/
/** Responsive embeded shortcode Instagram */
iframe.instagram-media.instagram-media-rendered {
	margin: 0 auto 12px !important;
}

/** Important pour les composant Instagram qui affichent video ou slideshow */
@media only screen and (min-width: 640px) {
    iframe.instagram-media.instagram-media-rendered { width: 450px !important; }
}

/**------------------------------------------*/
/** Theme Hueman */
.entry ol ul li, .entry ul li {
	list-style: none !important;
}

.inside-header {
	padding: 40px 40px 100px 40px;
}

/** Pour l'entête du thème Customizr
.branding .navbar-brand {
	font-size: 1.5em !important;
} */

/** ----------------- */

.children li {
  list-style-type: none;
}

.children li::before {
	content: ">";
	padding-right: 5px;
	color: blue;
}

/**---------------------------*/
/* Dynamic tags */
.dynamic-tags_author-social-network {
	display:flex;
	flex-direction:row;
	justify-content:space-around;
	align-items:center;
	padding: 3px;
}