html {
	scroll-behavior: smooth;
}
body {
	background-color:#fff;
	font-size:1.0em;
	font-weight:300;
	position: relative;
}
a, a:visited, a:active, a:hover {
	text-decoration:none;
}

.container {
	background-color:#ffffff;
	font-family: 'Roboto Condensed';
}

.btn-holonet , .btn-holonet:visited , .btn-holonet:active {
	color:#fff;
	background-color:#d35400;
	border-color:#d35400;
	cursor:pointer;
	text-decoration:none;
}
.btn-holonet:hover {
	color:#fff;
	background-color:#e67e22;
	border-color:#e67e22;
	cursor:pointer;
	text-decoration:none;
}

a , a:active, a:visited {
	color: #d35400;
	font-weight:400;
}
a:hover {
	color: #e67e22;
	text-decoration: underline;
	font-weight:400;
}

/* CONTAINER SIZE */
/* Extra small devices (portrait phones, less than 576px) */
/* .-col- */
@media (max-width: 575.98px) { 
    .container {
        max-width:100%;
    }
}
/* Small devices (landscape phones, 576px and up)*/
/* .col-sm- */
@media (min-width: 576px) and (max-width: 767.98px) { 
    .container {
        max-width:100%;
    }
}
/*  Medium devices (tablets, 768px and up)*/
/* .col-md- */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .container {
        max-width:100%;
    }
}
/* Large devices (desktops, 992px and up)*/
/* .col-lg- */
@media (min-width: 992px) and (max-width: 1199.98px) { 
    .container {
        max-width:100%;
    }
}
/*  Extra large devices (large desktops, 1200px and up)*/
/* .col-xl- */
@media (min-width: 1200px) and (max-width: 1599.98px) { 
    .container {
        max-width:1140px;
    }
}
/*  Extra large devices (large desktops, 1600px and up)*/
@media (min-width: 1600px) { 
    .container {
        max-width:1570px;
    }
}




// Resetting from the mobile up!
// 
// Dropping the root* element font size to 14px is something
// I do on almost all projects, a 16px font size on mobiles
// is not normally needed. --> Only my opinion of course!
//
// At mobile size I used the scale "Major Second" from 
// type-cale.com to set out the heading sizes as well as the
// "Major Third" scale for the .display-* classes however my
// technique was to begin the scale from the h1's front size.
// To do this simply do the h1 font size * scale size. So in 
// in this example it was 1.602 * 1.250 = 2.0025 I went with 
// 2em to keep it simple.
//
//------------------------------------------------------------//
/*
html,
body {
	font-size: 12px !important;
}
h1 {
	font-size: 1.602em;
	font-size: 1.5em;
}
h2 {
	font-size: 1.424em;
}
h3 {
	font-size: 1.266em;
}
h4 {
	font-size: 1.125em;
}
h5 {
	font-size: 0.889em;
}
h6 {
	font-size: 0.79em;
}
.display-1 {
	font-size: 3.906em;
}
.display-2 {
	font-size: 3.125em;
}
.display-3 {
	font-size: 2.5em;
}
.display-4 {
	font-size: 2em;
}
*/




// Medium devices (tablets, 48em and up)
// 
// At this point you have overridden Bootstraps rem's and are
// into module based font sizes should you require it. 
//
// I took a while over this change because I felt that there
// is no reason why I cant use a modified scale on another 
// device size. So I did, the headings have now taken on
// "Perfect Fourth" and the dislpay-* has been put to the
// Bootstrap defaults.
//
//------------------------------------------------------------//

/*

@media (min-width: 48em) {
	h1 {
	  font-size: 2.441em;
	}
	h2 {
		font-size: 1.953em;
	}
	h3 {
		font-size: 1.563em;
	}
	h4 {
		font-size: 1.25em;
	}
	.display-1 {
		font-size: 6em;
	}
	.display-2 {
		font-size: 5.5em;
	}
	.display-3 {
		font-size: 4.5em;
	}
	.display-4 {
		font-size: 3.5em;
	}
}

// Large devices (desktops, 62em and up)
@media (min-width: 62em) {
	html,
	body {
		font-size: 16px !important;
	}
}

// Extra large devices (large desktops, 75em and up)
@media (min-width: 75em) {
	html,
	body {
		font-size: 18px !important;
	}
}

// Pen Specific Styles
.jumbotron {
	font-size: 16px;
	@media (min-width: 62em) {
		font-size: 20px;
	}
	h1 {
		border-bottom: 4px solid #0275d8;
	}
	p.lead {
		border-radius: 4px;
	}
}
*/

/* homepage */
.news-heading-big {
	margin-top: 10px;
	margin-bottom: 0;
	max-height: 350px;
}
.news-heading-small {
	margin-top:10px;
	margin-bottom:0px;
	max-height:350px;
}
.news-heading-small .row {
	padding-left:5px !important;
	padding-right:5px !important;
}

.news-heading-big figure,
.news-heading-small figure,
.news-classic-one figure
 {
	margin: 0;
    position: relative;
    background-color: #000;
}
.news-heading-big figure img,
.news-classic-one figure img {
    max-width: 100%;
    display: block;
    position: relative;
	max-height:350px;
}
.news-heading-big figcaption,
.news-heading-small figcaption,
.news-classic-one figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    color: #fff;
	/*text-transform:uppercase;*/
	background-color: rgba(10, 61, 98, 0.5);
	padding:5px;
	margin:0;	
}

.news-heading-big figcaption {
	font-size:0.9em;
}
.news-heading-small figcaption {
	font-size:0.6em;
}
.news-classic-one figcaption {
	font-size:0.6em;
}

.news-heading-small-img,
.news-classic-img-main,
.news-classic-img,
.news-classic-img-big,
.news-classic-img-carousel {
	background-size: cover;
	background-repeat: no-repeat;
/*	background-position-x: center;
	background-position-y: top;*/
	border-radius:1em;
	/*background-position: center left;*/
	background-position-y:50%;
	background-position-x:50%;
}
.news-classic-img-main,
.news-classic-img-big {
	background-blend-mode: darken;
}

.fiche-classic-img {
	background-size: cover;
	background-repeat: no-repeat;
	height:170px;
	background-position-x: center;
	background-position-y: top;
}
.fiche-classic-module {
	/* background-color:green; */
}

/* Extra small devices (portrait phones, less than 576px) */
/* XS */
@media (max-width: 575.98px) { 
	.news-heading-small-img {
		height:150px;
	} 
	.news-classic-img {
		height:130px;
	}
	.news-classic-img-main {
		height:250px;
	}
	.news-classic-img-big {
		height:160px;
	}
	.news-classic-img-carousel {
		height:250px;
	}
}

/* Small devices (landscape phones, 576px and up)*/
/* SM */
@media (min-width: 576px) and (max-width: 767.98px) { 
	.news-heading-small-img {
		height:190px;
	}
	.news-classic-img {
		height:130px;
	} 
	.news-classic-img-main {
		height:350px;
	}
	.news-classic-img-big {
		height: 200px;
	}
	.news-classic-img-carousel {
		height:350px;
	}
}

/*  Medium devices (tablets, 768px and up)*/
/* MD */
@media (min-width: 768px) and (max-width: 991.98px) { 
	.news-heading-small-img {
		height:200px;
	}
	.news-classic-img {
		height:150px;
	} 
	.news-classic-img-main {
		height:390px;
	}
	.news-classic-img-big {
		height:220px;
	}
	.news-classic-img-carousel {
		height:400px;
	}
}

/* Large devices (desktops, 992px and up)*/
/* LG */
@media (min-width: 992px) and (max-width: 1199.98px) { 
	.news-heading-small-img {
		height:120px;
	} 
	.news-classic-img {
		height:100px;
	} 
	.news-classic-img-main {
		height:290px;
	}
	.news-classic-img-big {
		height:150px;
	}
	.news-classic-img-carousel {
		height:400px;
	}
}

/*  Extra large devices (large desktops, 1200px and up)*/
/* XL */
@media (min-width: 1200px) and (max-width: 1599.98px) { 
	.news-heading-small-img {
		height:143px;
	} 
	.news-classic-img {
		height:120px;
	} 
	.news-classic-img-main {
		height:330px;
	}
	.news-classic-img-big {
		height:150px;
	}
	.news-classic-img-carousel {
		height:400px;
	}
}
/*  Extra large devices (large desktops, 1600px and up)*/
@media (min-width: 1600px) { 
	.news-heading-small-img {
		height:143px;
	} 
	.news-classic-img {
		height:120px;
	} 
	.news-classic-img-main {
		height:450px;
	}
	.news-classic-img-big {
		height:213px;
	}
	.news-classic-img-carousel {
		height:500px;
	}
}


.news-heading-big .tag, .news-heading-small .tag, .news-classic-one .tag, .news-classic-list .tag, .fiches-list .tag, .carousel .tag , .news-heading-big-tags .tag {
	border-radius: 4px;
	padding:2px; 
	padding-left:5px; 
	padding-right:5px;
	color: #fff;
	border: solid 1px #2d3436;
	margin-bottom: 4px;
    	display: inline-block;
}

.news-classic-list {
	font-size:0.8em;
}
.news-classic-list div.row {
	margin-bottom:10px;
}
.news-heading-big-tags {
	margin-bottom:1em;
}

/* row header */
.header {
	max-height:200px; 
	/*background-color:#EBEBEB;*/
	margin-bottom: 20px;
}
.header .logo {
	max-height: 100%;
    max-width: 100%;
    display: table-cell;
    vertical-align: middle;
	margin:auto;
}
.header .header-left {
	background-color:lightblue;
}
.header .header-right {
	background-color:lightyellow;
}

/*
.row-actu1 a , .row-actu1 a:visited , .row-actu1 a:active {
	color: #27ae60;
}
.row-actu2 a , .row-actu2 a:visited , .row-actu2 a:active {
	color: #6c5ce7;
}
*/
.row-actu1 {
	/*margin-left: -10px;
	margin-right: -10px;
	margin-top:25px;*/
}
.row-actu1-titre {
    border-left: solid 5px #00b894;
	padding-left:10px;
}
.row-actu1-titre h2 {
    font-family: "Josefin Sans";
    font-weight: 300;
}

.news-content , .fiche-content {
    font-size: 1.1em;
    line-height: 1.5em;
    text-align: justify;
    font-weight: 300;
}
.news-detail h1, .news-detail h2, .news-detail h3 , .fiche-detail h1, .fiche-detail h2, .fiche-detail h3, .fiche-detail h4, .fiche-detail h5 {
    font-family: "Josefin Sans";
    font-weight: 300;
}
.news-detail h1 {
padding-left:10px;
}
.news-content img {
	max-width:100% !important;
	height:auto !important;
	border:none !important
}
.news-content iframe {
	width:100% !important;
	height:30vw !important;
	border:none !important
}

.news-options {
	margin-top:1em;
}
.news-info {
	font-size:0.9em;
}
.news-info span:not(:first-child) {
	padding-left:0.8em;
}

/* lien actu principale et secondaire */
.news-classic-one a {
	color:#fff;
	font-size:1.3em;
}
.news-classic-one a:hover {
	color:#fff;
}
.news-classic-list a {
	color:#fff;
	font-size:1.1em;
}
.news-classic-list a:hover {
	color:#fff;
}
.img-actu-texte {
	margin-bottom:0.1em;
	margin-left:0.8em;
	margin-right:0.8em;
}
.img-actu-texte h2 {
	color:#fff;
	margin-bottom:0px;
	font-size:1.5em;
}
.img-actu-texte p {
	font-size:1.2em;
	color:#fff;
}

.fiche-separateur {
	margin: 3em;
}

.fiche-detail .continuite-legends {
    border-left: solid 5px #00b894;
}
.fiche-detail .continuite-canon {
    border-left: solid 5px #0984e3;  
}
.fiche-detail .continuite-legends > h1, .fiche-detail .continuite-canon > h1 {
    padding-left:10px;
    padding-top:10px;
}
.fiche-detail .continuite-legends > p, .fiche-detail .continuite-canon > p {
    padding-left:10px;
    padding-bottom:10px;
}
.fiche-detail .alerte-canon {
    border-left: solid 5px #d63031;
    padding-left:10px;
}
.fiche-detail .alerte-spoiler {
    border-left: solid 5px #e17055;
    padding-left:10px;
}
.pave-technique h3 {
    /*border-left: solid 5px #34495e; 
    padding-left:10px;  */
}
.fiche-detail .figure-caption {
	margin-top:-2em;
	/*background-color:#f0f0f0;
	border-radius:5px;
	padding-top:0.5em;
	padding-bottom:0.5em;*/
}
.pave-technique img {
	width:100%;
	height:auto;
}

/* generic */
.section-titre {
    border-left: solid 5px #34495e;
    margin-top:10px;
}
.section-titre>h1 , .section-titre>h2 , .section-titre>nav , .section-titre>p {
    padding-left:10px;
}
.titre-section-row {
    margin-left: -10px;
    margin-right: -10px;
    margin-top:20px;
}
.titre-section-texte {
    border-left: solid 5px #00b894;
    padding-left:10px;
}
.titre-section-texte h2 , .titre-section-texte h3 , .titre-section-texte h4 {
    font-family: "Josefin Sans";
    font-weight: 300;
}

.titre-section-couleur-1 {
	border-color:#2d3436;
}


/* breadcrumb */
.breadcrumb {
	background:none;
	margin:0;
	margin-bottom: 10px;
	padding:0px;
}
.breadcrumb>ol {
	font-size:0.8em; 
	padding-left:0px; 
	padding-top:0px
}
.breadcrumb-item + .breadcrumb-item::before {
    	content: ">";
}
.breadcrumb-item-middle {
	min-width:70px
}
.breadcrumb-item-last {
/*	padding-left:0px !important; */
}


.col-actu-petit:nth-child(odd) {
    padding-left:0px !important;
}
.col-actu-petit:nth-child(even) {
    padding-right:0px !important;
}

/* fic */
a.fic-lien-non, a.fic-lien-non:hover, a.fic-lien-non:active, a.fic-lien-non:visited {
color:#e74c3c;
text-decoration: underline #e74c3c;
}
span.fic-lien-non {
/*color:#e74c3c;*/
border-bottom: dotted 1px #e74c3c;
cursor:help;
}

.liste-fiches > h1 {
    font-family: "Josefin Sans";
    font-weight: 300;
    padding-left:10px;
    padding-top:10px;
}
.liste-fiches > p {
    padding-bottom:10px;
}

/* image fiche hover */
.holo-fic-list {
	width: 100%;
	height: 170px;
	background-size: cover;
	/*background-position: center;*/
	padding: 0 !important;
	float:left;
	margin-bottom:10px;
    border: solid 1px #b2bec3;
/* border-radius : 5px; */
}
@media (max-width: 575.98px) { 
.holo-fic-list {
	height:100px;
	}
}

.holo-fic-list-hover {
	width: 100%;
	height: 100%;
	color: #fff;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	/*background-color: rgba(186, 232, 2, 0.7); */
    background-color: rgba(44, 62, 80, 0.7);
	padding: 10px;
}

.holo-fic-list-hover hr {
    height: 5px;
	margin:0;
	width: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-color: rgba(255, 255, 255, 1);
	border: 0;
}

.holo-fic-list-hover a {
	color: rgba(255, 255, 255, 1);
	/*padding: 2px 22px;*/
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
	border: 2px solid rgba(255, 255, 255, 1);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    background-color:#0a3d62; 
}

.holo-fic-list-hover a:hover {
	border-color: rgba(51, 51, 51, 1);
	color: rgba(51, 51, 51, 1);
	background-color: #FFF;
    text-decoration:none;
}

.holo-fic-list:hover .holo-fic-list-hover {
	opacity: 1;
}

.holo-fic-list:hover .holo-fic-list-hover hr {
	width: 100%;
	height: 5px;
}

/* holonav */
.tab-content {
	padding:0px;
}
.holonav {
	border-bottom:solid 0px;
	margin-bottom:10px;
}
.holonav .nav-link {
	color:#d35400 !important;
	border: solid 0px;
	font-size:1.2em; 
	text-transform:uppercase;
	padding-left:0px;
}
.holonav .nav-link.active {
	border: solid 0px;
	border-bottom: solid 3px #d35400;
	padding-left:0px;
}
.holonav .nav-link:hover {
	text-decoration:none !important;
	border: solid 0px;
	border-bottom: solid 3px #e74c3c;
}

@media (max-width: 575.98px) { 
.holonav a.nav-item {
	font-size:0.8em;
	margin-right:0.2em;
	padding:0.25em;
	/*border-radius:0.25em;
	background-color:#f39c12;
	color:#ffffff;*/
	}
.holonav a.nav-item.active {
	font-size:0.8em;
	margin-right:0.2em;
	padding:0.25em;
	/*
	border-radius:0.25em;
	background-color:#e67e22;
	color:#ffffff;*/
	}
}


/* cat colors */
.titre-section-texte .cat-focus {
	border: solid 1px #2c3e50
}

/* liste de fiches */
.fic_lst_main {
		margin-left:-20px !important;
	}
.fic_lst {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-clip: border-box;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: .25rem;
	margin-bottom:1em;
	margin-left:10px;
}
.fic_lst_header {
	border-bottom: 1px solid rgba(0,0,0,.125);
	padding:0.5em;
}
.fic_lst_header h4 {
	margin:0;
	white-space: nowrap;
  	overflow: hidden;
	text-overflow: ellipsis;
	font-size:0.9em;
}
.fic_lst_image {
	width:100%;
	cursor:pointer;
}
.fic_lst_intro {
	height:6.25em;
	padding:0.5em;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.fic_lst_footer {
	border-top: 1px solid rgba(0,0,0,.125);
	padding: 0.5em;
}

/* Extra small devices (portrait phones, less than 576px) */
/* .-col- */
@media (max-width: 575.98px) { 
    .fic_lst {
		margin-right:5px; 
		padding:4px; 
		border: solid 1px #bebebe; 
		border-radius:8px;
	}
	.fic_lst_header {
		/*background-color:#fff;*/
		border-bottom: solid 0px;
	}
	.fic_lst_header h4 {
		white-space: normal;
  		overflow: visible;
		text-overflow: clip;
		font-size:1.1em;
	}
	.fic_lst_image {
		float:left;
		margin:5px;
		margin-right:10px;
		width:35%;
		border:solid 1px #3d3d3d;
		border-radius:5px;
		height:auto;
	}
	.fic_lst_footer {
		/*background-color:#fff;*/
		border-top: 0px solid;
		padding-left: 0.5em;
		padding-right: 0.5em;
		padding-top: 0.2em;
		padding-bottom: 0.2em;
	}
	.fic_lst_uni:before {
		content: "Continuit\00E9  : ";
	}
	.fic_lst_type:before {
		content: "Cat\00E9 gorie : ";
	}
	.fic_lst_main:nth-child(odd) {
		margin-left:0px;
	}
	.fic_lst_intro {
		font-size:0.9em; 
		line-height:1.4em;
		/*height:auto;*/
		display:inline;
		padding:0;
		margin:0;
		max-height:5.8em;

		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
	} 
}

ul.timeline {
    list-style-type: none;
    position: relative;
    margin-right:15px;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 19px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 10px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #bdc3c7;
    left: 10px;
    width: 20px;
    height: 20px;
    z-index: 400;
}
ul.timeline > li.chrono-select:before {
    border: 3px solid #bdc3c7;
    background-color: #27ae60;
}
ul.timeline > li.chrono-select a.cat-main {
    font-weight:bold;
}

.pave-technique-detail h2, .pave-technique-chronologie h2 {
	/*font-weight:500;*/
}

.pave-technique-detail h3 {
	margin-bottom:0px;
	font-weight:500;
	font-size:1em;
}
.pave-technique-detail p:not(:last-child) {
	padding-bottom:0.3em;
	border-bottom: solid 1px #f0f0f0;
}
.pave-technique-detail p:(:last-child) {
	padding-bottom:0em;
	margin-bottom:0em;
} 

.pave-technique-chronologie p {
	margin-top:0;
	margin-bottom:0;
}

/* avis */
div.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 180;
}

.bg-holonet {
    background-color:#d35400;
}
.avis-checked {
    color: #f1c40f;
}
.row>.avis-list>col-* {
    margin:10px;
    background-color:#ecf0f1; 
    border:solid 1px #95a5a6; 
}
.avis-points {
    font-size:1.1em;
}
.avis-resume {
    padding:0.5em;
    background-color: #fafafa; 
    border:solid 1px #a0a0a0;  
    border-radius:5px;
    font-size:1em;
}
.avis-summary , .avis-auteur {
    padding:0.5em;
    background-color: #fafafa; 
    border:solid 1px #a0a0a0; 
    font-size: 1.1em;
	border-radius: 5px;
}
.avis-summary .focus , .avis-auteur .focus {
    font-size:1.5em;
    margin-bottom:0;
}

.anchor{
  display: block;
  height: 70px; /*same height as header*/
  margin-top: -70px; /*same height as header*/
  visibility: hidden;
}

/* bottom toolbar, cantina */
.bbar {
    position:fixed;
    bottom:0;
    width:100%;
	z-index:1500;
}
.bbar-appear {
	clear:both;
	}
.bbar-inside {
    height: 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: height .2s ease;
    background: #fff;
	border-top: solid 2px #000;
	opacity: 1;
}
.bbar-inside.openup {
    height: 26em;
    transition: height .7s ease;
}
@media (max-width: 575.98px) { 
  .bbar-inside.openup {
    height: 30em;
  }
}

#bbar-button {
	font-size:4em;
	text-align:center;
	line-height:1em;
}
.holo-cantina {
	height:20em;
	overflow:auto;
}
.holo-cantina span {
	font-size:0.7em;
	font-weight:200;
}
.holo-cantina-form {
	min-height:10%;
}
.actualite-cantina {
	height:400px;
	border: 1px solid #ced4da; 
	padding:0.5em;  
	border-radius:5px;
	background-color:#fafafa;
}
.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
}
.btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px 0 0 3px;

    text-align:left;
    /*margin-right:5px;*/
}
.btn, .btn:visited, .btn:active, .btn:hover {
    cursor: pointer;
    text-decoration: none;
}



.footer {
	font-size:0.8em;
}
.footer h3 {
	text-transform:uppercase;
	font-weight:400;
}
.footer h3:after {
	content: '';
    width: 50px;
    height: 2px;
    background-color: #d35400;
    display: block;
    margin: 10px 0;
}
.footer ul {
	list-style-type:none;
	padding-left:0;
}

/* Night mode */
body {
    transition: 0.7s;
    background-color: #fff;
}
body.night {
    transition: 0.7s;
    background-color: #2f3542;
}
body.night .news-classic-list a {
  color:#ecf0f1 !important;
}
body.night div.container {
  background-color: #2f3542;
  color:#ecf0f1;
}
body.night .card , body.night .figure-caption , body.night .list-group-item , body.night .table td , body.night .modal-content , body.night .accordion-button , body.night .accordion-body {
  background-color: #34495e !important;
  color:#ecf0f1 !important;
}
body.night .fic_lst_header , body.night .fic_lst_body , body.night .fic_lst_footer {
  background-color: #455A6F;
}
body.night .text-muted {
  color: #8e979f !important;
}
body.night tr.odd , body.night tr.odd>.sorting_1 {
    background-color:#57606f !important;
    color: #ecf0f1;
}
body.night tr.even , body.night tr.even>.sorting_1 {
    background-color:#3d3d3d !important;
}
body.night .dataTables_paginate {
  color:#ecf0f1;
}
body.night .dataTables_paginate .paginate_button:active {
  background-color: #34495e !important;
  color:#ecf0f1;
}
body.night .dataTables_paginate .paginate_button {
  background-color: #34495e !important;
  color: #ecf0f1 !important;
}
body.night .dataTables_filter {
  color: #ecf0f1;
}
body.night .dataTables_filter input {
  background-color: #34495e;
  color: #ecf0f1;
}
body.night .nav-tabs .nav-item.show .nav-link, body.night .nav-tabs .nav-link.active {
	background-color: #34495e;
	color: #ecf0f1;
}
body.night .avis-summary , body.night .avis-resume , body.night .holo-cantina , body.night .form-control , body.night .input-group , body.night .form-control::placeholder {
	background-color: #34495e;
	color: #ecf0f1;
}

/* navbar */
body.night .navbar {
  background-color: #34495e !important;
}
body.night .navbar-nav .nav-link , body.night .navbar-nav .nav-link:hover {
  color:#fff;
}
body.night .navbar .dropdown-menu {
  background-color: #34495e !important;
}
body.night .navbar .dropdown-item {
  color: #fff !important;
}
body.night .navbar .dropdown-item:hover {
  background-color: #2c3e50 !important;
  color: #fff !important;
}
body.night .navbar .form-control {
  background-color: #2c3e50;
}

a.filterlink, a.filterlink:hover, a.filterlink:active, a.filterlink:visited {
	color:#515457;
	text-decoration: none;
	font-weight:300;
}

.nav-tabs {
	cursor:pointer
}

blockquote {
	font-size: 1.1em;
	background-color: #2d3436;
	padding: 0.8em;
	line-height: 1.4em;
	color: #fff;
	border-left: solid 10px #d35400;
	/*margin-left:3em;*/
}
blockquote .holoquote {
	float: left;
	margin-right: 0.5em;
	font-size: 1.4em;
}

.btn-link-white , .btn-link-white:hover, .btn-link-white:visited , .btn-link-white:active {
	color:#fff
}

/* tooltips fiches */
.tooltip-inner {max-width:300px; background-color: #f9ca24; color: #000; text-align:left; border: solid 1px #a0a0a0; border-radius:5px }
.tooltip.top .tooltip-arrow { border-top-color: #f9ca24; }
.tooltip.right .tooltip-arrow { border-right-color: #f9ca24; }
.tooltip.bottom .tooltip-arrow { border-bottom-color: #f9ca24; }
.tooltip.left .tooltip-arrow { border-left-color: #f9ca24; }

#holo-cantina .text-muted {
	color:#fff !important;
}

.holonet-logo {
      width: 50px;
	height:50px;
}

@media (min-width: 576px) {
      .holonet-logo {
        width: 100px;
	height: 100px;
      }
    }

.news-chapo {
    font-size:1.1em;
    font-weight:bold;
}