/* CSS Document */
body {
  font-family: Arial, Helvetica, sans-serif;
}
.fa{
  padding: 20px;
  font-size: 30px;
  width: 50px;
  font-weight:bold;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
    color: white;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}
/* bloc nouvelles... */

.sdvabb-bloc-news {
  border: #999 solid 2px;
  box-shadow: 0 4px 8px 0 #333; 
  padding:2px;
  width:100%;
  text-align:left;
  height:340px;
}
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
   /*width: 33%;*/
}

.dropdown {
  float: left;
  
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;/**/
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  border-bottom:solid 3px blue;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  
  left: 0;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
}

.dropdown-content .header {
  background: red;
 padding: 16px;
  color: white;
 /* width: 33%;*/
}

.dropdown:hover .dropdown-content {
  display: block;
}
.sdvabb-container-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 75%; /* 4:3 Aspect Ratio */

}
.sdvabb-responsive-iframe-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 0px;
  background-color: #ccc;
  height: 220px;
}

.column a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns <i class="fa fa-caret-down"></i>*/
.row:after {
  content: "";
  display: table;
  clear: both;
}

.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  /*max-width: 1200px;*/
  position: relative;
  margin: auto;
}

/* Caption text */

.text {
  color: #fff;
  padding: 8px 12px;
  position: absolute;
  bottom: 5px;
  /*width: 40%;*/
  text-align: left;
  background-color:#ccc;
  opacity:0.9;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 20px;
  width: 20px;
  margin: 1px 2px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 20px}
}
 .triangle {
    width: 0;
    height: 0;
    margin: 25px 0px 0px 30px;
    border: 0 solid transparent;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left: 35px solid blue;
}
.triangle1 {
    width: 0;
    height: 0;
    margin: 35px 0px 0px 50px;
    border: 0 solid transparent;
    border-top-width: 40px;
    border-bottom-width: 40px;
    border-left: 60px solid blue;
}
/* The Modal (background) */
.modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  /*height: 100%;  Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
} 

/* Modal Content */
.modal-content{
  background-color: #ccc;
  margin: auto;
  padding: 20px;
  /*height: 700px;*/
  border: 1px solid #888;
  width: 80%;
} 

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 78px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}