body {
text-align: justify;
font-size: 0.7rem;
}

@media screen and (max-width: 840px) {
	body {
		font-size: 1rem;
	}
}

#header .logo img, #header .logo svg {
    display: inherit;
    height: 80px;
}

#breadcrumbs { line-height: 1rem; }

#breadcrumbs span, #breadcrumbs a { padding: 0 0.1rem; }

#breadcrumbs span:not(:first-child)::before, #breadcrumbs a:not(:first-child)::before { color: #e7e9ed; content: "/"; padding-right: 0.1rem; }

.h1, h1, .h2, h2 {
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0rem;
    margin-bottom: 0.2rem;
}


.bouton, .bouton:visited{
    padding-right: .4rem;
    padding-left: .4rem;
    border-radius: 5rem;
	line-height: 1.25;
    display: inline-block;
	background: #A9A9A9;
	color: black;
}
.boutonselected, .bouton:hover {
    padding-right: .4rem;
    padding-left: .4rem;
    border-radius: 5rem;
	line-height: 1.25;
    display: inline-block;
	background-color: black;
	color: white !important;
	font-weight: bold;
}


.listitem p {
    margin: 0 0 1.2rem;
}

p {
 margin:0 1rem 1.2rem;
}

.center {
    display: block;
    margin: 0 auto;
}

.floatleft {
    float: left;
    margin: 5px 15px 5px 15px;
}
.floatright {
    float: right;
    margin: 5px 15px 5px 15px;
}
.content-title {
    margin-bottom: 0rem;
}
/*
.timeline-item figure, .timeline-item.odd figure, .timeline-item.even figure {
    width: 100%;
    margin-top: 50px;
}

.timeline-item.even figure {
    margin-left: 0px;
}
*/
.timeline img {
    max-width: 90%;
}

.card {
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 20%) !important
}

.card .card-body:last-child, .card .card-footer:last-child, .card .card-header:last-child {
    padding-bottom: 0px;
}

.card .card-body, .card .card-footer, .card .card-header {
    padding: .2rem;
}

.blog-listing .card {
    margin-bottom: 25px;
    border: .05rem solid #e7e9ed;

}

.blog-listing .bricklayer-column {
    padding-right: 5px;
    padding-left: 5px;
}

.column, .columns {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

.label {
    font-size: inherit;
    text-transform: inherit;
    color:inherit;
}



.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #d3d3d3;
  color:black;
  font-weight: normal;
  font-style: italic;
  font-size: 0.9em;
  text-align: center;
  border-radius: 25px;
  padding: 8px;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 0%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}