.transitionWDF {
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
body.popup-open {
  overflow: hidden;
}
body .myPopup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(58,68,69,0.55);
  z-index: 1000;
  top: 0;
  left: 0;
}
body .myPopup .containerPopup {
  background: #ffffff;
  width: 500px;
  min-height: 100px;
  margin: 100px auto 0 auto;
  overflow: hidden;
}
body .myPopup .containerPopup .headerPopup {
  padding: 10px;
  position: relative;
  text-align: center;
}
body .myPopup .containerPopup .headerPopup h6 {
  color: #075c9d;
}
body .myPopup .containerPopup .headerPopup .closePopup {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 25px;
  cursor: pointer;
}
body .myPopup .containerPopup .headerPopup .closePopup:before {
  color: #075c9d;
}
body .myPopup .containerPopup .bodyPopup,
body .myPopup .containerPopup .footerPopup,
body .myPopup .containerPopup .errorPopup {
  padding: 10px;
}
body .myPopup.popup_zonage .footerPopup {
  text-align: center;
}
body .myPopup.popup_sos_litige .bodyPopup {
  padding: 15px 30px;
}
body .myPopup.popup_sos_litige .bodyPopup ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
body .myPopup.popup_sos_litige .bodyPopup ul li {
  padding: 10px 0;
}
body .myPopup.popup_sos_litige .bodyPopup ul li a {
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  body .myPopup .containerPopup {
    margin: 5% auto 0 auto;
    width: 95%;
    height: 90%;
  }
}
