/*Confirm dialog*/
.fc-container .fancybox-bg {
  background: #000000;
}
.fancybox-is-open.fc-container .fancybox-bg {
  opacity: 0.6;
}
.fc-content {
  margin: 20px;
  max-width: 550px;
  padding: 30px!important;
  /*box-shadow: 10px 10px 60px -25px;
  border-radius: 4px;*/
  -webkit-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.5);
  box-shadow: 5px 5px 9px 0px rgba(0,0,0,0.5);
}
.fc-content h3 {
  color: #1669ab;
  margin-top: 0;
  font-size: 1.6em;
  letter-spacing: normal;
}
.fc-content p {
  color: #666;
  line-height: 1.5;
}
.fc-content p:last-child {
  margin-bottom: 0;
}
.fc-content p.text-right {
  text-align: right;
}
.fc-content p.text-left {
  text-align: left;
}
.fc-content p.text-center {
  text-align: center;
}
.fc-content .btn {
    background-color: #8DC63F;
    padding: 5px 10px;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.1); /*Bordure un peu plus foncé*/
    outline:0;
    cursor: pointer;
    margin-left: 10px;
    color: white;
    font-weight: bold;
}
.fc-content .btn-primary:hover {
  background-color: #72aa21;
}
.fc-content .btn-secondary {  
   background-color: #CB2128;
}
.fc-content .btn-secondary:hover {
  background-color: #ac0013;
}
.fc-content .btn-confirm-primary {
  background-color: #1669ab;
}
.fc-content .btn-confirm-primary:hover {
  background-color: #1669ab;
}
.fc-content .btn-confirm-secondary {  
   background-color: white;
   color: #666;
}
.fc-content .btn-confirm-secondary:hover {
  background-color: white;
}
/* Custom animation */
.fancybox-fx-material.fancybox-slide--previous,
.fancybox-fx-material.fancybox-slide--next {
  transform: translateY(-60px) scale(1.1);
  opacity: 0;
}
.fancybox-fx-material.fancybox-slide--current {
  opacity: 1;
  transform: translateY(0) scale(1);
}