body {
  margin:125px 0px 0px 0px;
  background: #d4003c;  /* red*/
  font-family: Arial;
  font-size: 12px;
}

/* NAVBAR    */
.navbar {
  background-color: #2b2d36; /* black */
  position: fixed; /* or absolute */
  width: 66%;
  top:0;
  left:17%;
  border: 8px solid #E3E3E3; /* light grey  */
  border-style: solid solid hidden solid;
  box-sizing: border-box;  /* to avoid width to be more than 60%  */
}
.header {
  height:90px;
  box-sizing: border-box;
  padding-top:30px;
  color:white;
  font-size: 22px;
  font-weight: bold;
  background:#d4003c;  /* red wine */
  text-align: left;
  text-indent: 10%;
  border: 0px solid red;
}

/* Links inside the bar */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 5px 15px; /* top and bottom are 14px, right and left are 16px */
  text-decoration: none;
  font-size: 15px;
  border: 0px solid yellow;
}

/* background on mouse-over */
.navbar a:hover {
  background: #ffffff;
  color: #49242f; /* black */
}

a.active {
  background-color: #ffffff;
  color: #49242f;  /* black */ 
}

/* Hide the hamburger that should open and close the navbar on small screens */
 .navbar .icon {
  display: none;
} 

.main {
  background: white;
  box-sizing: border-box;
  padding: 10px 20px; /* top, right, bottom, left */
  width: 66%;
  margin-left:17%;
  border: 8px solid #E3E3E3; /* light grey  */
  border-style: hidden solid solid solid; 
}
.titre {
  color: #d4003c; /* blue sky */
  font-size: 22px;
  font-weight: none; /* bold */
  padding-top:8px;
  padding-bottom:5px;
}

.sous_titre {
  color: #49242f; /* black */
  font-size: 14px;
  font-weight: bold; /* none */
  padding-top: 10px;
}
.texte {
  color: #49242f; /* black */
  font-size: 13px;
  margin-top: 2px;
  line-height: 18px;
}
.legende {
  color: #49242f; /* black */
  font-size: 10px;
  margin-top: 2px;
  line-height: 16px;
}
a {
  color: #d4003c; /* blue sky */
  font-weight: bold; /* none, bold */
  text-decoration: none;
}
a:hover {
  color: #1e5e94;
  font-weight: bold; /* none, bold */
}

.column {
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 10px;
  padding-left: 0px;
  padding-top: 0px;
  border-style: solid;
  border-width: 0px;
}

/* Create two unequal columns that floats next to each other */
.leftcolumn {   
  box-sizing: border-box;  
  float: left;
  width: 20%;
  border-style: solid;
  border-width: 0px;  
}
.rightcolumn {
  box-sizing: border-box; 	
  float: left;
  width: 80%;
  padding-left: 10px;
  border-style: solid;
  border-width: 0px; 
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
} 

/* Add padding BETWEEN each column */
.row,
.row > .column .leftcolumn .rightcolumn {
  padding: 10px;
}

/* Content */
.content {
  background-color: white;
  padding: 0px;
  padding-bottom:0px
}	
.greyline {
  border-bottom: 1px solid #E3E3E3;
  margin:0px;
  padding-top:10px;
}	
.clearfix {
  overflow: auto;
  border: 0px solid black;
  padding: 0px 10px 10px 10px; /* Top Right Bottom and Left margin */
}

/* Images */
.img_header { 
  width: 35%;
  border: 0px solid #E3E3E3;
  max-width: 270px;
}
.img_auteur {
  float: right;
  padding: 1px;
  border: 1px solid;
  border-color:#d4003c;
  max-width: 50%;
  margin-left: 5px;
  margin-bottom: 5px;
}
.img_livre { /* default height settings = 500px */
  width: 60%;
  border: 1px solid #E3E3E3;
  box-shadow: 3px 3px 10px grey;
}
.img_livre:hover {
/* to do */
  box-shadow: 3px 3px 10px #49242f;
  opacity: 5;
}
.img_livre_big { /* default height settings = 500px */
  width: 100%;
  border: 1px solid #E3E3E3;
  /* box-shadow: 3px 3px 10px grey; */
}
input[type=text] {
  width: 33%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea[type=text] {
  width: 33%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=submit] {	
  background-color: #d4003c;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Zoomify effect for images: https://www.jqueryscript.net/lightbox/jQuery-Plugin-For-Image-Lightbox-with-Zoom-Effect-Zoomify.html */	
.zoomify {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.zoomify.zoomed {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1501;
}
.zoomify-shadow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1500;
  background: rgba(0, 0, 0 , .3);
  opacity: 0;
}
.zoomify-shadow.zoomed {
  opacity: 1;
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
  
.icon-bar {
  position: fixed;
  top: 237px;
  right: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.icon-bar a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.icon-bar a:hover {
  background-color: white;
}
.instagram {
  background: #44232e;
  color: white;
  padding: 10px 13px 11px 12px;  
}


/* bouton "Afficher plus"  */
.collapsible {
  display: inline-block;
  width: auto;
  clear:both;
  margin: ;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s ease 0s;
  border-radius: 25px;
  background-color: #d4003c;
  color: white;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid white; 
}
.actif, .collapsible:hover {
  border: 1px solid #1e5e94; 
  background-color: white;
  color: #d4003c;  
  font-weight: 400;
  text-decoration: none;
}
.content_open {
  padding: 10px 0px 0px 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

@media screen and (max-width: 950px) {
  .navbar {
	width: 80%;
	left: 10%;
  }
  .main {
	width: 80%;
	margin-left: 10%;
  }  
  .icon-bar {
    right: 90%;
  }
}

@media screen and (max-width: 780px) {
  .navbar {
	width: 90%;
	left: 6%;
  }
  .main {
	width: 90%;
	margin-left: 6%;
  }  
  .icon-bar {
  right: 94%;
  }  
}


/* When the screen is less than 950px pixels wide, hide all links. Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 700px) {
  body {
    margin:148px 0px 0px 0px;
  }	
  .navbar {
    line-height: 40px;
    width: 96%;
    top:0;
    left:2%;	
  }	
  .navbar a {
    display: none;
  }
  .navbar a.icon {
    float: right;
    display: block;
  }	       
  .navbar .logo {
    display: block;  
  }
  .navbar.responsive {
    /*position: fixed; /* The element is positioned relative to its normal position, so "left:20px" adds 20 pixels to the element's LEFT position */
  }
  .navbar.responsive .icon {
    float: right;
    display: block;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .navbar.responsive .logo {
 	max-width:13px;
    display: block;  
  }  
  .column {
    width: 100%; /* make the columns stack on top of each other instead of next to each other */
  }
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }  
  .img_livre {
	display: block;
	margin:auto;
	width: 50%;
	box-shadow: 3px 3px 10px grey;
  }
  .img_livre_big { /* default height settings = 500px */
    width: 80%;
  }
  .img_auteur {
    float: none;
    max-width: 96%;
  } 
  input[type=text] {
    width: 90%;
  }

  textarea[type=text] {
    width: 90%;
  }  

  
    .main {
  padding: 24px 2% 0px 2%; /* Top Right Bottom and Left margin */
  width:96%;
  margin-left:2%;
  box-sizing: border-box;
  }  
  .icon-bar {
  display: none;
  }
  .titre {
  color: #d4003c;
  font-size: 24px;
  font-weight: none; /* bold */
  }
  .sous_titre {
  color: #49242f;
  font-size: 20px;
  font-weight: bold; /* none */
  padding-top: 10px;
  padding-bottom: 10px;
  }
  .livre {
  text-align: center;
  font-size: 16px;
  }  
  .texte {
  color: #49242f;
  font-size: 15px;
  margin-top: 5px;
  line-height: 23px;
  padding-bottom: 20px;
  }
}


 