/*
 Theme Name:   Sponge tahiti
 Description:  Twenty Fifteen Child Theme
 Author:       Poisson Bouge
 Template:     twentyfifteen
 Version:      2.0.0
 Text Domain:  spon
*/

 @import url("inc/sp_ol.css");

/**
 * Table of Contents
 *
 * 1.0 - Reset
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigations
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Header
 * 11.0 - Widgets
 * 12.0 - Content
 *    12.1 - Posts and pages
 *    12.2 - Post Formats
 *    12.3 - Comments
 *    12.4 - Table 
 * 13.0 - Footer
 * 14.0 - Media
 *    14.1 - Captions
 *    14.2 - Galleries
 * 15.0 - Media Queries
 *    15.1 - Mobile Large
 *    15.4 - Desktop Small
 */
 
@import url('./css/normalize.css');
/**
 * 1.0 - Reset
 */
body {
	background: #FFFFFF;
}

:root {
	--color-default: #2D2D2D;
	--color-border: #C5C5C5;
	--color-main: #45AAA2;
	--color-second: #707070;

	--font-main: 'Asap', sans-serif;

	--letter-space: 0.5;
}

body, input, button {
	letter-spacing: var(--letter-space);
}

* {
	box-sizing: border-box;
}



/**
 * 2.0 - Genericons
 */

.social-navigation a:before,
.secondary-toggle:before,
.dropdown-toggle:after,
.bypostauthor > article .fn:after,
.comment-reply-title small a:before,
.comment-navigation .nav-next a:after,
.comment-navigation .nav-previous a:before,
.posted-on:before,
.byline:before,
.cat-links:before,
.tags-links:before,
.comments-link:before,
.entry-format:before,
.edit-link:before,
.full-size-link:before,
.pagination .prev:before,
.pagination .next:before,
.image-navigation a:before,
.image-navigation a:after,
.format-link .entry-title a:after,
.entry-content .more-link:after,
.entry-summary .more-link:after,
.author-link:after {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: "Genericons";
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	speak: none;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	vertical-align: top;
}


@font-face {
	font-family: 'sponges';
	src:
	  url('inc/fonts/sponges.ttf?xmd4fg') format('truetype'),
	  url('inc/fonts/sponges.woff?xmd4fg') format('woff'),
	  url('inc/fonts/sponges.svg?xmd4fg#sponges') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }
  
[class^="pbicon-"]:before, [class*=" pbicon-"]:before, .menu-principal-container .menu-item-has-children:after, .widget_categories form:after, .search-form label::after {
/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'sponges' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pbicon-down:before,
.widget_categories form:after {
	content: "\e900";
}
.pbicon-grille:before {
	content: "\e901";
}
.pbicon-left:before {
	content: "\e902";
}
.pbicon-liste:before {
	content: "\e903";
}
.pbicon-loupe:before,
.search-form label::after {
	content: "\e904";
}
.pbicon-marker:before {
	content: "\e905";
}
.pbicon-oeil:before {
	content: "\e906";
}
.pbicon-pdf:before {
	content: "\e907";
}
.pbicon-photo:before {
	content: "\e908";
}
.pbicon-right:before {
	content: "\e909";
}
.pbicon-texte:before {
	content: "\e90a";
}


/**
 * 3.0 Typography
 */

body {
	color: var(--color-default);
	font-family: var(--font-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin: 1em 0;
}

blockquote {
	border-left: 3px solid var(--color-border);
	font-size: 0.94117647em;
	font-style: italic;
	margin-bottom: 1em;
	margin-left: 0;
	padding-left: 1em;
}

blockquote p {
	margin-bottom: 1em;
}

blockquote > p:last-child {
	margin-bottom: 0;
}

blockquote cite,
blockquote small {
	color: #333;
}

blockquote em,
blockquote i,
blockquote cite {
	font-style: normal;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

address {
	font-style: italic;
	margin: 0 0 1.6em;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: Inconsolata, monospace;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre {
	background-color: transparent;
	background-color: rgba(0, 0, 0, 0.01);
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
	line-height: 1.2;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 0.8em;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

abbr[title] {
	border-bottom: 1px dotted #eaeaea;
	border-bottom: 1px dotted rgba(51, 51, 51, 0.1);
	cursor: help;
}

mark,
ins {
	background-color: #fff9c0;
	text-decoration: none;
}

/**
 * 4.0 Elements
 */

hr {
	border: 0;
	border-bottom: dotted 1px var(--color-border);
	height: 1px;
	margin-bottom: 1.6em;
}

ul,
ol {
	margin: 0 0 1.6em 1.3333em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dl {
	margin-bottom: 1.6em;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 1.6em;
}

table,
th,
td {
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	font-size: 0.8823529em;
	margin: 0 0 1.6em;
	table-layout: fixed; /* Prevents HTML tables from becoming too wide */
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th, td {
	padding: 0.4em;
}

img {
	-ms-interpolation-mode: bicubic;
	vertical-align: top;
}

figure {
	margin: 0;
}

del {
	opacity: 0.8;
}

/* Placeholder text color -- selectors need to be separate to work. */

::-webkit-input-placeholder {
	color: var(--color-main);
	font-family: var(--font-main);
}

:-moz-placeholder {
	color: var(--color-main);
	font-family: var(--font-main);
}

::-moz-placeholder {
	color: var(--color-main);
	font-family: var(--font-main);
	opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: var(--color-main);
	font-family: var(--font-main);
}


/**
 * 5.0 Forms
 */

button,
input,
select,
textarea {
	background-color: #fff;
	border: solid 1px var(--color-border);
	border-radius: 1.5em;
	line-height: 1.5;
	margin: 0;
	max-width: 100%;
	padding: 0.5em 1em;
	vertical-align: baseline;
}

select {
	appearance: none;
}

button,
input {
	line-height: normal;
}

input,
textarea {
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); /* Removing the inner shadow on iOS inputs */
	border: 1px solid var(--color-border);
	color: var(--color-second);
}

input:focus,
textarea:focus {
	background-color: #fff;
	border: 1px solid var(--color-border);
	color: #333;
}

input:focus,
select:focus {
	outline: 1px solid #a1a1a1;
}

button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
	cursor: default;
	opacity: .5;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	background-color: #333;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-family: var(--font-main);
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	background-color: var(--color-second);
	background-color: rgba(51, 51, 51, 0.7);
	outline: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	width: 100%;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	outline: 0;
}

.post-password-form {
	position: relative;
}

.post-password-form label {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	display: block;
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-transform: uppercase;
}

.post-password-form input[type="submit"] {
	padding: 0.7917em;
	position: absolute;
	right: 0;
	bottom: 0;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

.search-form input[type="submit"],
.widget .search-form input[type="submit"] {
	padding: 0;
}

.search-form-top {
	margin: 2.5em 0;
}

.search-form {
	position: relative;
}

.search-form label {
	width: 100%;
}

.search-form:hover label:after {
	color: var(--color-default);
}

.search-form .search-submit[type="submit"] {
	height: 3em;
	width: 4.25em;
	clip:auto;
	background:transparent;
	color:transparent;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

input[type="search"] {
	box-sizing: inherit;
}

.search-form label:after {
	color: var(--color-main);
	font-size: 1.75em;
	position: absolute;
	right: 0;
	top: 3px;
	vertical-align: bottom;
	width: 1.5em;
}

/**
 * 6.0 Navigations
 */


/**
 * 6.1 Links
 */

a {
	color: var(--color-main);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
}


/**
 * 6.2 Menus
 */

.sub-menu, .list-view .post-thumbnail a:before, .search-form label:after {
	transition-property :all;
	transition-duration :0.1s;
	transition-timing-function :ease-in-out;	
}

.main-navigation a {
	display: block;
	padding-left: 2.5em;
	position: relative;
	text-decoration: none;
}

.main-navigation ul {
	list-style: none;
	margin: 1.125em auto 0;
	padding-left: 0;
}

.main-navigation ul ul {
	display: none;
}

.main-navigation ul .toggled-on {
	display: block;
}

.main-navigation li {
	border-top: 1px solid var(--color-border);
	padding: 1.375em 0;
	position: relative;
}

.main-navigation li:before {
	color: var(--color-default);
	font-size: 1.375em;
	position: absolute;
}

.main-navigation li:hover:before {
	color: var(--color-main);
}

.main-navigation .sub-menu li {
	border: none;
	padding: 0.5em 0;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	color: var(--color-default);
}

.main-navigation .page_item_has_children > a,
.main-navigation .menu-item-has-children > a {
	padding-right: 48px;
}

.main-navigation .menu-item-description {
	color: var(--color-second);
	font-weight: 400;
	margin-top: 0.25em;
	font-size:0.8em;
}

.no-js .main-navigation ul ul {
	display: block;
}

.dropdown-toggle {
	background-color: transparent;
	border: 0;
	content: "";
	height: 36px;
	padding: 0;
	position: absolute;
	text-transform: lowercase; /* Stop screen readers to read the text as capital letters */
	top: 0.875em;
	right: 0;
	width: 42px;
}

.dropdown-toggle:after {
	color: var(--color-second);
	content: "\f431";
	font-size: 24px;
	line-height: 36px;
	position: relative;
	top: 0;
	left: 1px;
	width: 42px;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
	background-color: transparent;
}

.dropdown-toggle:hover:after,
.dropdown-toggle:focus:after {
	color: var(--color-main);
}

.dropdown-toggle:focus {
	outline: 1px solid var(--color-border);
}

.dropdown-toggle.toggle-on:after {
	content: "\f432";
}

.social-navigation {
	margin: 9.0909% 0;
}

.social-navigation ul {
	list-style: none;
	margin: 0 0 -1.6em 0;
}

.social-navigation li {
	float: left;
}

.social-navigation a {
	display: block;
	height: 3.2em;
	position: relative;
	width: 3.2em;
}

.social-navigation a:before {
	content: "\f415";
	font-size: 24px;
	position: absolute;
	top: 0;
	left: 0;
}

.social-navigation a[href$="/feed/"]:before {
	content: "\f413";
}

.social-navigation a[href*="codepen.io"]:before {
	content: "\f216";
}

.social-navigation a[href*="digg.com"]:before {
	content: "\f221";
}

.social-navigation a[href*="dribbble.com"]:before {
	content: "\f201";
}

.social-navigation a[href*="dropbox.com"]:before {
	content: "\f225";
}

.social-navigation a[href*="facebook.com"]:before {
	content: "\f203";
}

.social-navigation a[href*="flickr.com"]:before {
	content: "\f211";
}

.social-navigation a[href*="foursquare.com"]:before {
	content: "\f226";
}

.social-navigation a[href*="plus.google.com"]:before {
	content: "\f206";
}

.social-navigation a[href*="github.com"]:before {
	content: "\f200";
}

.social-navigation a[href*="instagram.com"]:before {
	content: "\f215";
}

.social-navigation a[href*="linkedin.com"]:before {
	content: "\f208";
}

.social-navigation a[href*="pinterest.com"]:before {
	content: "\f210";
}

.social-navigation a[href*="getpocket.com"]:before {
	content: "\f224";
}

.social-navigation a[href*="polldaddy.com"]:before {
	content: "\f217";
}

.social-navigation a[href*="reddit.com"]:before {
	content: "\f222";
}

.social-navigation a[href*="stumbleupon.com"]:before {
	content: "\f223";
}

.social-navigation a[href*="tumblr.com"]:before {
	content: "\f214";
}

.social-navigation a[href*="twitter.com"]:before {
	content: "\f202";
}

.social-navigation a[href*="vimeo.com"]:before {
	content: "\f212";
}

.social-navigation a[href*="wordpress.com"]:before,
.social-navigation a[href*="wordpress.org"]:before {
	content: "\f205";
}

.social-navigation a[href*="youtube.com"]:before {
	content: "\f213";
}

.social-navigation a[href*="mailto:"]:before {
	content: "\f410";
}

.social-navigation a[href*="spotify.com"]:before {
	content: "\f515";
}

.social-navigation a[href*="twitch.tv"]:before {
	content: "\f516";
}

.secondary-toggle {
	background-color: transparent;
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
	height: 42px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: 50%;
	right: 0;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 42px;
}

.secondary-toggle:before {
	color: #333;
	content: "\f419";
	line-height: 40px;
	width: 40px;
}

.secondary-toggle:hover,
.secondary-toggle:focus {
	background-color: transparent;
	border: 1px solid #c1c1c1;
	border: 1px solid rgba(51, 51, 51, 0.3);
	outline: 0;
}

.secondary-toggle.toggled-on:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: 1px;
	left: -1px;
}

.post-navigation {
	background-color: #fff;
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	font-weight: 700;
}

.post-navigation a {
	display: block;
	padding: 3.8461% 7.6923%;
}

.post-navigation span {
	display: block;
}

.post-navigation .meta-nav {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	letter-spacing: 0.04em;
	line-height: 1.5;
	position: relative;
	text-transform: uppercase;
	z-index: 2;
}

.post-navigation .post-title {
	font-family: "Noto Serif", serif;
	font-size: 1.125em;
	line-height: 1.3333;
	position: relative;
	z-index: 2;
}

.post-navigation .nav-next,
.post-navigation .nav-previous {
	background-position: center;
	background-size: cover;
	position: relative;
}

.post-navigation a:before {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.post-navigation a:hover:before,
.post-navigation a:focus:before {
	opacity: 0.5;
}

.post-navigation .meta-nav {
	opacity: 0.8;
}

.post-navigation div + div {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.pagination .nav-links {
	min-height: 3.2em;
	position: relative;
	text-align: center;
	border: solid 1px var(--color-main);
	border-radius: 25px;
}

/* reset screen-reader-text
.pagination .current .screen-reader-text {
	position: static !important;
}
 */
.pagination .page-numbers {
	line-height: 3.2em;
	padding: 0 0.6667em;
}

.pagination .page-numbers.current {
	text-transform: uppercase;
}

.pagination .current {
	display: inline-block;
	font-weight: 700;
}

.pagination .prev,
.pagination .next {
	display: inline-block;
	height: 48px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 48px;
}

.pagination .prev:before,
.pagination .next:before {
	font-size: 32px;
	height: 48px;
	line-height: 48px;
	position: relative;
	width: 48px;
}

.pagination .prev:hover,
.pagination .prev:focus,
.pagination .next:hover,
.pagination .next:focus {
	background-color: var(--color-second);
	background-color: rgba(51, 51, 51, 0.7);
}

.pagination .prev {
	left: 0;
}

.pagination .prev:before {
	content: "\f430";
	left: -1px;
}

.pagination .next {
	right: 0;
}

.pagination .next:before {
	content: "\f429";
	right: -1px;
}

.image-navigation,
.comment-navigation {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
}

.image-navigation a,
.comment-navigation a {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
}

.image-navigation a:hover,
.image-navigation a:focus,
.comment-navigation a:hover,
.comment-navigation a:focus {
	color: #333;
}

.image-navigation .nav-previous:not(:empty),
.image-navigation .nav-next:not(:empty),
.comment-navigation .nav-previous:not(:empty),
.comment-navigation .nav-next:not(:empty) {
	display: inline-block;
}

.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
	content: "\2215";
	font-weight: 400;
	margin: 0 0.7em;
}

.image-navigation .nav-previous a:before,
.comment-navigation .nav-previous a:before {
	content: "\f430";
	margin-right: 0.2em;
	position: relative;
}

.image-navigation .nav-next a:after,
.comment-navigation .nav-next a:after {
	content: "\f429";
	margin-left: 0.2em;
	position: relative;
}

.comment-navigation {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	border-bottom: 1px solid #eaeaea;
	border-bottom: 1px solid rgba(51, 51, 51, 0.1);
	padding: 2em 0;
}

.comments-title + .comment-navigation {
	border-bottom: 0;
}

.image-navigation {
	padding: 0 7.6923%;
}

.image-navigation .nav-previous:not(:empty),
.image-navigation .nav-next:not(:empty) {
	margin-bottom: 2em;
}


/**
 * 7.0 Accessibility
 */

/* Text meant only for screen readers */
.says,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	font: bold 14px/normal "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}


/**
 * 8.0 Alignments
 */

.alignleft {
	display: inline;
	float: left;
}

.alignright {
	display: inline;
	float: right;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	clear: both;
	margin-top: 0.4em;
	margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
	margin-bottom: 1.2em;
}


/**
 * 9.0 Clearings
 */

.clear:before,
.clear:after,
.site:before,
.site:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.nav-links:before,
.nav-links:after,
.comment-navigation:before,
.comment-navigation:after,
.social-navigation ul:before,
.social-navigation ul:after,
.textwidget:before,
.textwidget:after {
	content: "";
	display: table;
}

.clear:after,
.site:after,
.entry-content:after,
.comment-content:after,
.site-content:after,
.nav-links:after,
.comment-navigation:after,
.social-navigation ul:after,
.textwidget:after {
	clear: both;
}


/**
 * 10.0 Header
 */

.sidebar {
	background:#fff;
	padding: 1em;
}

.site-branding {
	color: var(--color-second);
	min-height: 2em;
	position: relative;
}

.site-title {
	margin: 0;
}

.site-description span {
	color: var(--color-main);
	display: block;
}




/**
 * 11.0 Widgets
 */


 .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	width: 100%;
	word-wrap: break-word;
}

.widget button,
.widget input {
	line-height: normal;
}

.widget button,
.widget input[type="button"],
.widget input[type="reset"],
.widget input[type="submit"] {
	font-size: 0.75em;
	padding: 0.7917em 1.5833em;
}

.widget input[type="text"],
.widget input[type="email"],
.widget input[type="url"],
.widget input[type="password"],
.widget input[type="search"],
.widget textarea {
	padding: 0.375em;
}

.widget-title {
	color: var(--color-default);
	font-size: 1.5em;
	font-weight: normal;
}

.widget > :last-child {
	margin-bottom: 0;
}

.widget_categories {
	border-bottom: 1px solid var(--color-border);
	border-top: 1px solid var(--color-border);
	padding: 10px 0;
}

.widget_categories form {
	margin-bottom: 1em;
	position: relative;
}

.widget_categories form:after {
	font-size: 0.625em;
	position: absolute;
	right: 12px;
	top: 16px;
	z-index: -1;
}

.widget select {
	background-color: transparent;
	color: var(--color-main);
	width: 100%;
}

.widget_calendar table {
	margin: 0;
}

.widget_calendar td,
.widget_calendar th {
	line-height: 2.3333;
	text-align: center;
	padding: 0;
}

.widget_calendar caption {
	font-family: "Noto Serif", serif;
	font-weight: 700;
	margin: 0 0 1.6em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.widget_calendar tbody a {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	background-color: #333;
	color: #fff;
	display: block;
	font-weight: 700;
}

.widget_calendar tbody a:hover,
.widget_calendar tbody a:focus {
	background-color: var(--color-second);
	background-color: rgba(51, 51, 51, 0.7);
	color: #fff;
}

.widget_archive a,
.widget_categories a,
.widget_links a,
.widget_meta a,
.widget_nav_menu a,
.widget_pages a,
.widget_recent_comments a,
.widget_recent_entries a {
	border: 0;
}

.widget_archive ul,
.widget_categories ul,
.widget_links ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.widget_categories .children,
.widget_pages .children {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transform: scaleY( 0 );
	transform-origin: center top;
}

.widget_categories li:hover .children,
.widget_pages li:hover .children {
	margin: 0.5em 0 1em 0.5em;
	opacity: 1;
	padding-top: 0.25em;
	transform: scaleY( 1 );
	height: auto;
}

.widget_recent_entries .post-date {
	display: block;
}

.widget_rss ul {
	list-style: none;
	margin: 0;
}

.widget_rss li {
	margin-bottom: 1.6em;
}

.widget_rss ul:last-child,
.widget_rss li:last-child {
	margin-bottom: 0;
}

.widget_rss .rsswidget {
	border: 0;
	font-weight: 700;
}

.widget_rss .rsswidget img {
	margin-top: -4px;
}

.widget_rss .rss-date,
.widget_rss cite {
	font-size: 0.75em;
	font-style: normal;
	display: block;
	line-height: 2;
	opacity: 0.8;
}

.textwidget > :last-child {
	margin-bottom: 0;
}

.textwidget a {
	border-bottom: 1px solid #333;
}

.textwidget a:hover,
.textwidget a:focus {
	border-bottom: 0;
}


/**
 * 12.0 Content
 */

.site {
	padding: 1em;
}

.secondary.toggled-on {
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	display: block;
	overflow: hidden;
	padding-top: 1em;
}

.secondary.toggled-on .main-navigation ul {
	margin-top: 0;
}

.cbFormTable {
	border: 0;
}

.cbFormTable td {
	border-width: 0 0 1px 0;
	padding: 1em 0;
}

.cbFormLabel {
	color: var(--color-main);
}

/**
 * 12.1 Posts and pages
 */


.entry-header, .entry-header-top {
	position: relative;
}

.list-view h2 {
	margin-bottom: 0.25em;
}

h2, .like-h2 {
	color: var(--color-main);
	font-size: 1.5625em;
	font-weight: 400;
	margin: 1em 0;
}

h3 {
	color: var(--color-second);
	font-size: 1.375em;
	font-weight: 400;
}

h4 {
	color: var(--color-main);
	font-size: 1.25em;
	font-weight: 400;
}

.list-view .entry-header-cat {
	font-size: 0.785em;
}

.entry-header-cat a {
	display:inline-block;
	border-left : 1px solid;
	color: var(--color-default);
	font-style: italic;
	margin: 0.25em 0 0.25em 1em;
	padding-left: 1em;
}

.entry-header-cat a:hover {
	border-color: var(--color-second);
	border-color: rgba(51, 51, 51, 0.7);
}

.list-view .entry-header {
	padding-bottom: 1em;
}

.list-view .entry-header-cat a:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

.family:before, .order:before {
	color: var(--color-main);
	display: block;
	line-height: 1;
}
.family:before {
	content:"Family ";
}
.order:before {
	content:"Order ";
}

.archive.category .page-title {
	display:table;
}
.archive.category .page-title span {
	display:table-cell;
}
.archive.category .page-title span:before {
	font-size: 18px;
}
.archive.category .page-title span + span {
	padding-left: 1em;
}

.post .entry-title a {
	color: var(--color-default);
}

.post .entry-title span {
	color: var(--color-main);
	font-style: normal;	
	font-size: 0.65em;
	font-style:italic;
}

.list-view .post-thumbnail a:hover:before {
	height: 100%;
}
.post-link-arrow {
	display: none;
}
.-liste-chosen-view- .post-link-arrow {
	display: block;
	font-size: 1.4375em;
	position: absolute;
	right: 0;
	transform: scaleX(-1);
}
.post-thumbnail {
	background: #7bcac4;
	background: linear-gradient(220deg, #7bcac4 5%, #c4fbf6 40%, #7bcac4 75%);
	border-bottom: solid 5px var(--color-main);
	overflow: hidden;
	padding-top: 43%;
	position: relative;
}

.post-thumbnail img {
	bottom: -100%;
	left: -100%;
	margin: auto;
	position: absolute;
	right: -100%;	
	top: -100%;
}

.page .has-post-thumbnail.hentry {
	display: grid;
	grid-template-areas: 
	"h1"
	"image"
	"texte";
}
.has-post-thumbnail .post-thumbnail {
	grid-area: image;
}

.has-post-thumbnail .entry-content {
	grid-area: texte;
}

.has-post-thumbnail .entry-header {
	grid-area: h1;
}

.has-post-thumbnail .entry-header a:hover  {
	color:#000;
	border-color:#000;
}

.has-post-thumbnail.list-view{
	background-color:transparent;
	overflow:hidden;
}
.has-post-thumbnail.list-view .entry-header:hover {
	background:transparent;
}
.attachment-post-thumbnail {
	height: auto;
	width:100%;
}

.wpr-sticky {
	overflow: hidden;
	position: relative;
	max-height: 75vh;
	width: 100%;
}

.sticky-posts, .single-view.type-post {
	width: 100%;
}

.wpr-sticky .-icon {
	bottom: 0;
	cursor: pointer;
	display: block;
	font-size: 2.1875em;
	height: 4em;
	margin: auto;
	position: absolute;
	top: 0;
}

.wpr-sticky .-prev {
	left: -0.75em;
}

.wpr-sticky .-next {
	right: -0.75em;
	transform: scaleX(-1);
}

.btn_post-wrp {
	margin-bottom: 1.25em;
	text-align: right;
}

.btn_post-wrp .-icon {
	color: #000000;
	cursor: pointer;
	display: inline-block;
	font-size: 1.625em;
	margin-left: 0.5em;
}

.btn_post-wrp .-icon:hover, .btn_post-wrp .-icon.-chosen-view-, .wpr-sticky .-icon:hover {
	color: var(--color-main);
}

.-liste-chosen-view- .entry-header-top {
	display: grid;
	grid-template-areas:
	"image h1";
	align-items: center;
	gap: 3em;
	justify-content: start;
	position: relative;

	border-bottom: 1px solid var(--color-border);
	margin-bottom: 1.125em;
	padding-bottom: 1.125em;
}

.-liste-chosen-view- .post-thumbnail {
	width: 11.625em;
}

.-liste-chosen-view- .entry-header {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.-liste-chosen-view- .entry-header h2 {
	margin-top: 0;
}

.entry-content > h1:first-child,
.entry-content > h2:first-child,
.entry-content > h3:first-child,
.entry-content > h4:first-child,
.entry-content > h5:first-child,
.entry-content > h6:first-child,
.entry-summary > h1:first-child,
.entry-summary > h2:first-child,
.entry-summary > h3:first-child,
.entry-summary > h4:first-child,
.entry-summary > h5:first-child,
.entry-summary > h6:first-child,
.page-content > h1:first-child,
.page-content > h2:first-child,
.page-content > h3:first-child,
.page-content > h4:first-child,
.page-content > h5:first-child,
.page-content > h6:first-child,
.comment-content > h1:first-child,
.comment-content > h2:first-child,
.comment-content > h3:first-child,
.comment-content > h4:first-child,
.comment-content > h5:first-child,
.comment-content > h6:first-child {
	margin-top: 0;
}

/* .entry-content a,
.entry-summary a,
.page-content a,
.comment-content a,
.pingback .comment-body > a {
	border-bottom: 1px solid #333;
}

.entry-content a:hover,
.entry-content a:focus,
.entry-summary a:hover,
.entry-summary a:focus,
.page-content a:hover,
.page-content a:focus,
.comment-content a:hover,
.comment-content a:focus,
.pingback .comment-body > a:hover,
.pingback .comment-body > a:focus {
	border-bottom: 0;
} */

.entry-content a img,
.entry-summary a img,
.page-content a img,
.comment-content a img {
	display: block;
}

.entry-content .more-link,
.entry-summary .more-link:after {
	white-space: nowrap;
}

.entry-content .more-link:after,
.entry-summary .more-link:after {
	content: "\f429";
	font-size: 16px;
	position: relative;
	top: 5px;
}

.author-info {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	margin: 0 7.6923%;
	padding: 7.6923% 0;
}

.author-info .avatar {
	float: left;
	height: 36px;
	margin: 0 1.6em 1.6em 0;
	width: 36px;
}

.author-heading {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	letter-spacing: 0.04em;
	margin-bottom: 1.5em;
	text-transform: uppercase;
}

.author-title {
	clear: none;
}

.author-bio {
	font-size: 0.75em;
	line-height: 1.5;
	overflow: hidden;
	padding-bottom: 1px;
}

.author-description {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.author-description a {
	border-bottom: 1px solid #333;
}

.author-description a:hover,
.author-description a:focus {
	border-bottom: 0;
}

.author-description > :last-child {
	margin-bottom: 0;
}

.author-link {
	white-space: nowrap;
}

.author-link:after {
	content: "\f429";
	position: relative;
	top: 1px;
}

.entry-footer {
	padding: 1em;
}

.entry-footer a {
	border-bottom: 1px solid transparent;
	color: var(--color-second);
	/*color: rgba(51, 51, 51, 0.7);*/
}

.entry-footer a:hover {
	border-bottom: 1px solid #333;
}

.entry-footer a:hover,
.entry-footer a:focus {
	color: #333;
}

.sticky-post {
	background-color: #333;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.25em 0.5em;
	position: absolute;
	top: 0;
	text-transform: uppercase;
}

.updated:not(.published) {
	display: none;
}

.sticky .posted-on {
	display: none;
}

.posted-on:before,
.byline:before,
.cat-links:before,
.tags-links:before,
.comments-link:before,
.entry-format:before,
.edit-link:before,
.full-size-link:before {
	margin-right: 2px;
	position: relative;
}

.posted-on,
.byline,
.cat-links,
.tags-links,
.comments-link,
.entry-format,
.full-size-link {
	margin-right: 1em;
}

.format-aside .entry-format:before {
	content: "\f101";
}

.format-image .entry-format:before {
	content: "\f473";
}

.format-gallery .entry-format:before {
	content: "\f103";
}

.format-video .entry-format:before {
	content: "\f104";
}

.format-status .entry-format:before {
	content: "\f105";
}

.format-quote .entry-format:before {
	content: "\f106";
}

.format-link .entry-format:before {
	content: "\f107";
}

.format-chat .entry-format:before {
	content: "\f108";
}

.format-audio .entry-format:before {
	content: "\f109";
}

.posted-on:before {
	content: "\f307";
}

.byline:before {
	content: "\f304";
}

.cat-links:before {
	content: "\f301";
}

.tags-links:before {
	content: "\f302";
}

.comments-link:before {
	content: "\f300";
}

.full-size-link:before {
	content: "\f402";
}

.edit-link:before {
	content: "\f411";
}

.comments-link,
.edit-link {
	white-space: nowrap;
}

.edit-link {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #fff;
	opacity: 0.7;
	padding: 0.25em;
	font-size: 0.8em;
}

.page-header, .entry-header {
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 2.1875em;
}

.page-title, .entry-title {
	font-size: 2.1875em;
	font-weight: 400;
	margin: 1em 0;
}

.taxonomy-description {
	color: var(--color-second);
	padding-top: 0.4em;
	font-size:0.9em;
}

.taxonomy-description a {
	border-bottom: 1px solid #333;
}

.taxonomy-description a:hover,
.taxonomy-description a:focus {
	border-bottom: 0;
}

.taxonomy-description > :last-child {
	margin-bottom: 0;
}

.page-content, .entry-content {
	font-size: 1.0625em;
	letter-spacing: normal;
	line-height: 1.5;
	min-height:400px;
	padding: 1em 0;
}

.page-content a, .entry-content a, .sp-links a {
	text-decoration: underline;
}

.page-content a:hover, .entry-content a:hover, .sp-links a:hover {
	text-decoration: none;
}

.page-content > :last-child {
	margin-bottom: 0;
}

.page-links {
	clear: both;
	margin-bottom: 1.3333em;
}

.page-links a,
.page-links > span {
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
	display: inline-block;
	font-size: 0.75em;
	height: 2em;
	line-height: 2;
	margin: 0 0.3333em 0.3333em 0;
	text-align: center;
	width: 2em;
}

.page-links a {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	background-color: #333;
	border-color: #333;
	color: #fff;
}

.page-links a:hover,
.page-links a:focus {
	background-color: var(--color-second);
	background-color: rgba(51, 51, 51, 0.7);
	border-color: transparent;
	color: #fff;
}

.page-links > .page-links-title {
	border: 0;
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	height: auto;
	margin: 0;
	padding-right: 0.5em;
	width: auto;
}

.entry-attachment {
	margin-bottom: 1.6em;
}

.type-attachment .entry-title {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.entry-caption {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	line-height: 1.5;
	padding-top: 0.5em;
	word-wrap: break-word;
}

.entry-caption > :last-child {
	margin-bottom: 0;
}

.sp-carte {
	padding-bottom: 2em;
}

.sp-images, .sp-links {
	border-top: 1px solid var(--color-border);
}

.sp-images {
	padding: 2em 0 0.4em;
}

.sp-images img {
	padding-bottom: 0.5em;
}
.sp-links ul {
	margin: 0;
	padding-left: 1em;
}

.sp-links li {
	font-size: 0.823529em;
	margin-bottom: 1em;
	word-wrap: break-word;
}

.ccg-banner, .sp-images .wp-caption-text {
	font-size: 0.823529em;
}

/**
 * 12.2 Post Formats
 */

.format-aside .entry-title,
.format-image .entry-title,
.format-video .entry-title,
.format-quote .entry-title,
.format-gallery .entry-title,
.format-status .entry-title,
.format-link .entry-title,
.format-audio .entry-title,
.format-chat .entry-title {
	font-size: 1.125em;
	line-height: 1.3333;
	margin-bottom: 1.3333em;
}

.format-link .entry-title a:after {
	content: "\f442";
	font-size: 24px;
	height: 24px;
	position: relative;
	top: 0;
	width: 24px;
}

.blog .format-status .entry-title,
.archive .format-status .entry-title {
	display: none;
}


/**
 * 12.3 Comments
 */

.comments-area {
	background-color: #fff;
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	padding: 7.6923%;
}

.comments-area > :last-child {
	margin-bottom: 0;
}

.comment-list + .comment-respond {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
	padding-top: 1.6em;
}

.comments-title,
.comment-reply-title {
	font-family: "Noto Serif", serif;
	font-size: 1.125em;
	line-height: 1.3333;
}

.comments-title {
	margin-bottom: 1.3333em;
}

.comment-list {
	list-style: none;
	margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	padding: 1.6em 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children > li {
	padding-left: 0.8em;
}

.comment-author {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	margin-bottom: 0.4em;
}

.comment-author a:hover {
	border-bottom: 1px solid var(--color-second);
	border-bottom: 1px solid rgba(51, 51, 51, 0.7);
}

.comment-author .avatar {
	float: left;
	height: 24px;
	margin-right: 0.8em;
	width: 24px;
}

.bypostauthor > article .fn:after {
	content: "\f304";
	position: relative;
	top: 5px;
	left: 3px;
}

.comment-metadata,
.pingback .edit-link {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	line-height: 1.5;
}

.comment-metadata a,
.pingback .edit-link a {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
}

.comment-metadata a:hover,
.pingback .edit-link a:hover {
	border-bottom: 1px solid #333;
}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .edit-link a:hover,
.pingback .edit-link a:focus {
	color: #333;
}

.comment-metadata {
	margin-bottom: 1.6em;
}

.comment-metadata .edit-link {
	margin-left: 1em;
}

.pingback .edit-link {
	margin-left: 1em;
}

.pingback .edit-link:before {
	top: 5px;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 1.6em 1.3333em;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.comment-list .reply {
	font-size: 0.75em;
}

.comment-list .reply a {
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	margin-top: 2em;
	padding: 0.4167em 0.8333em;
	text-transform: uppercase;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
	border-color: #333;
	color: #333;
	outline: 0;
}

.comment-form {
	padding-top: 1.6em;
}

.comment-form label {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	font-weight: 700;
	display: block;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-transform: uppercase;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="submit"] {
	width: 100%;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 2em;
}

.logged-in-as a:hover {
	border-bottom: 1px solid #333;
}

.no-comments {
	border-top: 1px solid #eaeaea;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-weight: 700;
	padding-top: 1.6em;
}

.comment-navigation + .no-comments {
	border-top: 0;
}

.form-allowed-tags code {
	font-family: Inconsolata, monospace;
}

.form-submit {
	margin-bottom: 0;
}

.required {
	color: #c0392b;
}

.comment-reply-title small {
	font-size: 100%;
}

.comment-reply-title small a {
	border: 0;
	float: right;
	height: 32px;
	overflow: hidden;
	width: 26px;
}

.comment-reply-title small a:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: -3px;
}

/**
 * 12.4 Table
 */

table.hr-style {
	border: 0;
	width: 100%;
}

.hr-style td {
	border-width: 0 0 1px 0;
	border-bottom: dotted 1px var(--color-border);
	padding: 0 0 2em;
}

.hr-style tr:first-child h2 {
	margin-top: 0;
}

.hr-style h2 {
	margin: 1em 0 0;
}

.hr-style p {
	margin: 0.5em 0;
}

.hr-style i {
	color: var(--color-main);
	letter-spacing: var(--letter-space);
}

/**
 * 13.0 Footer
 */

.site-footer {
	padding: 2em 2.5em 4em;
}

.listes-partenaires {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-info {
	background-color: var(--color-default);
	bottom: 0;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 1000;

	color: var(--color-second);
	color: rgba(51, 51, 51, 0.7);
	font-size: 0.75em;
	line-height: 1.5;
}

.site-info ul, .listes-partenaires {
	margin: 10px 0;
	padding: 0;
}

.site-info li, .site-info ul, .listes-partenaires {
	list-style: none;
	text-align: center;
}

.site-info li {
	display: inline-block;
}


.site-info li + li {
	border-left: solid 1px var(--color-border);
	margin-left: 1em;
	padding-left: 1em;
}

.site-info a {
	border-bottom: 1px solid transparent;
	color: #FFF;
}

.site-info a:hover {
	border-bottom: 1px solid #333;
}

.site-info a:hover,
.site-info a:focus, 
.site-info a[aria-current="page"] {
	color: #BBBBBB;
}


/**
 * 14.0 Media
 */

.site .avatar {
	border-radius: 50%;
}

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

audio,
canvas {
	display: inline-block;
}

embed,
iframe,
object,
video {
	margin-bottom: 1.6em;
	max-width: 100%;
	vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
	margin-bottom: 0;
}

.wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
	font-size: 15px;
	font-size: 0.9375em;
	margin-top: 0;
	margin-bottom: 1.6em;
}

.wp-playlist.wp-playlist {
	padding-bottom: 0;
}

.wp-playlist .wp-playlist-tracks {
	margin-top: 0;
}

.wp-playlist-item .wp-playlist-caption {
	border-bottom: 0;
	padding: 10px 0;
}

.wp-playlist-item .wp-playlist-item-length {
	top: 10px;
}


/**
 * 14.1 Captions
 */

.wp-caption {
	/*margin-bottom: 1.6em;*/
	padding-bottom: 1.6em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}

/**
 * 14.2 Galleries
 */

.gallery {
	margin-bottom: 1.6em;
	margin-left: -1.79104477%;
	margin-top: -1.79104477%;
	width: 103.58208954%;
}

.gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-icon img {
	border-bottom: 5px solid;
	width: 100%;
}

.gallery-caption {
	border-bottom: solid 1px var(--color-border);
	display: block;
	line-height: 1.5;
	padding: 0.5em 0 0.675em;
}

.gallery-caption i {
	color: var(--color-main);
	display: block;
	font-size: 0.8235em;
	letter-spacing: var(--letter-space);
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


/**
 * 15.0 Media Queries
 */

/*
 * Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
	zoom: 1; 
}

@viewport {
	width: device-width;
	zoom: 1; 
}

@media screen and (max-width: 85em) and (min-width:70.0625em) { /* min 1121px */
	.gallery-columns-4 .gallery-item {
		max-width: 33.33%;
	}
}
@media screen and (max-width: 70em) and (min-width:59.6875em) {
	.gallery-columns-4 .gallery-item {
		max-width: 50%;
	}
}

/**
 * 15.1 Mobile Large 620px
 */

@media screen and (min-width: 37em) {

	.site-title {
		font-size:2em;
	}
	.secondary-toggle {
		-moz-box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.4);
		-webkit-box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.4);
		-o-box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.4);
		box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.4);
		border:rgba(0,0,0,0);
	}
	#site-navigation {
		float: left;
		width: 45%;
	}
	#widget-area {
		float: right;
		margin: 0;
		width: 45%;
	}
	.list-view h2 {
		font-size: 1.5625em;
	}
	.list-view .cat::before {
		display: inline;
	}

	.single-view .entry-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

@media screen and (max-width: 36.9375em) {
	.site-title img {
		max-width: calc(100% - 3em);
	}
	.wpr-sticky .entry-title {
		font-size: 1.5625em;
	}
	.list-view h2 {
		font-size: 1.25em;
	}
	.wpr-sticky, .btn_post-wrp {
		display: none;
	}
	.home .content-area .site-main:not(.-liste-chosen-view-) {
		column-count: 1;
	}
	.page-title, .entry-title {
		font-size: 1.75em;
	}
	.single-view .entry-title {
		margin-bottom: 0.5em;
	}
	.single-view .entry-header-cat {
		padding-bottom: 1em;
	}
	.single-view .entry-header-cat a:first-child {
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
	} 
}

@media screen and (max-width: 30em) {
	.cbFormTableEvenRow, .cbFormTableRow {
		display: flex;
		flex-direction: column;
	}
	.cbFormTable .cbFormLabel {
		border-bottom-width: 0;
		padding-bottom: 0;
	}
	.cbFormTable td.cbFormDataCell {
		padding-top: 5px;
	}
}

/**
 * 15.4 Desktop Small 955px
 */

@media screen and (min-width: 59.6875em) {
	.site {
		padding: 0;
	}

	.site-title {
		margin: 0 0 1em;
	}

	#site-navigation, #widget-area {
		float: none;
		width: auto;
	}

	.sidebar {
		position : fixed !important;
		left:0;
		top:0;
		bottom:0;
		height:100%;
		width:25em;
		padding: 2.5em;
		box-shadow: 0 20px 10px rgba(0, 0, 0, 0.16);
	}

	.secondary {
		margin-top: 3em;
	}
		
	.site-content {
		margin-left: 25em;
		padding-left: 2.5em;
		padding-right: 2.5em;
	}

	.site-footer {
		margin-left: 25em;
	}
		
		/*EC*/

	.secondary-toggle {
		display: none;
	}

	.list-view .post-thumbnail a:before {
		background-color: var(--color-main);
		bottom: 0;
		content: "";
		height: 0px;
		opacity: 0.5;
		position: absolute;
		transition-duration :0.4s;
		width: 100%;
		z-index: 1;
	}
}

@media screen and (max-width:59.625em) {
	.hr-style tr {
		display: flex;
		flex-direction: column;
	}
	.hr-style tr:first-child td + td h2 {
		margin-top: 1em;
	}
	.secondary, .wpr-sticky .-icon {
		display: none;
	}
	.sidebar {
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	}
	.site-description {
		font-size: 0.75em;
	}
	.-liste-chosen-view- .entry-header-top {
		gap: 1em;
	}
	.home .site-main:not(.-liste-chosen-view-) {
		column-count: 2;
	}
}


@media screen and (min-width: 77.2em) {
	.post .content-wrp {
		display: flex;
		justify-content: space-between;
	}
	.content-wrp .entry-content {
		max-width: 100%;
		width: calc(100% - 340px);
	}
	.content-wrp .entry-footer {
		width: 300px;
	}

	.archive .site-main, .home .site-main:not(.-liste-chosen-view-) {
		-webkit-column-count: 2;
		-webkit-column-gap: 2em;
		-moz-column-count: 2;
		-moz-column-gap: 2em;
		column-count: 2;
		column-gap: 2em;
	}
	
	.page-header, .taxonomy-description, .hentry {
		-webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
	}
	
	.site-main article:first-child {
		margin-top:0;
	}
	
	.paged .site-main {
		padding-top:4em;
	}

}
@media screen and (min-width: 100em) {
		.archive .site-main, .home .site-main:not(.-liste-chosen-view-) {
		-webkit-column-count: auto;
		-moz-column-count: auto;
		column-count:auto;
		-webkit-column-width: 32em;
		-moz-column-width: 32em;
		column-width: 32em;
		
	}
}



/**
 * 16.0 Print
 */

@media print {
	body {
		background: none !important; /* Brute force since user agents all print differently. */
		font-size: 11.25pt;
	}
	
	* {
		position:static !important;
		border-color: #333 !important;
	}
	img {
		max-width:50%
	}

	.secondary-toggle,
	.navigation,
	.page-links,
	.edit-link,
	#reply-title,
	.comment-form,
	.comment-edit-link,
	.comment-list .reply a,
	button,
	input,
	textarea,
	select,
	.site-footer
	 {
		display: none;
	}

	.site-header,
	.site-footer,
	.hentry,
	.entry-footer,
	.page-header,
	.page-content,
	.comments-area {
		background: none !important; /* Make sure color schemes dont't affect to print */
	}

	body,
	blockquote,
	blockquote cite,
	blockquote small,
	label,
	a,
	.site-title a,
	.site-description,
	.post-title,
	.author-heading,
	.entry-footer,
	.entry-footer a,
	.taxonomy-description,
	.entry-caption,
	.comment-author,
	.comment-metadata,
	.comment-metadata a,
	.comment-notes,
	.comment-awaiting-moderation,
	.no-comments,
	.site-info,
	.site-info a,
	.wp-caption-text,
	.gallery-caption {
		color: #000 !important; /* Make sure color schemes don't affect to print */
	}

	pre,
	abbr[title],
	table,
	th,
	td,
	.site-header,
	.site-footer,
	.hentry + .hentry,
	.author-info,
	.page-header,
	.comments-area,
	.comment-list + .comment-respond,
	.comment-list article,
	.comment-list .pingback,
	.comment-list .trackback,
	.hentry,
	.no-comments {
		border: none !important; /* Make sure color schemes don't affect to print */
	}

	.site {
		margin: 0 7.6923%;
	}
	

	.site-branding {
		padding: 0;
	}

	.site-header {
		padding: 7.6923% 0;
	}

	.site-description {
		display: block;
	}

	.hentry + .hentry {
		margin-top: 7.6923%;
	}

	.hentry.has-post-thumbnail {
		padding-top: 7.6923%;
	}

	.sticky-post {
		background: #000 !important;
		color: #fff !important;
	}

	.entry-header,
	.entry-footer {
		padding: 0;
	}

	.entry-content,
	.entry-summary {
		padding: 0 0 7.6923%;
	}

	.post-thumbnail img {
		margin: 0;
	}

	.author-info {
		margin: 0;
	}

	.page-content {
		padding: 7.6923% 0 0;
	}

	.page-header {
		padding: 3.84615% 0;
	}

	.comments-area {
		border: 0;
		padding: 7.6923% 0 0;
	}

	.site-footer {
		margin-top: 7.6923%;
		padding: 3.84615% 0;
	}
}