main {
  padding-top: 80px;
}
.ariane {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 15px;
  margin-bottom: 30px;
  color: #919191;
  line-height: 16px;
}
.ariane ol {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.ariane li {
  display: inline;
}
.ariane li:not(:last-child):after {
  content: " > ";
}
.ariane a,
.ariane a:focus,
.ariane a:hover {
  color: #919191;
  text-decoration: none;
  font-weight: 400;
}
svg:not(:root) {
  overflow: hidden;
}
.hidden {
  display: none;
}
.share-rs a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 40px;
  background: #000;
  border-radius: 50px;
  margin: 0 5px;
}
.s-header__logo img {
  width: 150px;
  height: 50px;
}
.s-content__primary img {
  width: 100%;
  margin: 0px;
}
/* _______ BANDEAU RGPD _______ */
.rgpd .modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.rgpd .modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.rgpd .modal-window > div {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
  min-height: 100%;
  max-height: calc(100vh - 12rem);
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transform: none;
}
.rgpd .modal-window > div h1 {
  font-size: 25px;
  margin: 10px 0;
  line-height: 25px;
  color: var(--color-btn-primary-hover);
}
.rgpd .modal-window > div p {
  font-size: 14px;
  margin: 2px;
  line-height: 24px;
}
.rgpd .modal-window > div p.title b {
  color: var(--color-btn-primary-hover);
}
.rgpd .modal-window > div .actions {
  text-align: right;
}
.rgpd .modal-window > div .actions a {
  padding: 12px 15px;
  margin: 10px 5px 0px;
}
.rgpd .modal-window > div .actions a.cookie-configuration {
  color: var(--color-btn-primary-hover);
  background-color: #fff;
  border: 1px solid var(--color-btn-primary-hover);
  font-weight: bold;
}
.rgpd .modal-window > div .actions a.cookie-configuration:hover {
  opacity: 0.8;
}
.rgpd .modal-window > div .actions a.cookie-accept,
.rgpd .modal-window > div .actions a.cookie-accept-configuration {
  background-color: var(--color-btn-primary-hover);
  color: #fff;
  border: 1px solid var(--color-btn-primary-hover);
}
.rgpd .modal-window > div .actions a.cookie-accept:hover,
.rgpd .modal-window > div .actions a.cookie-accept-configuration:hover {
  opacity: 0.8;
}
.rgpd .modal-window > div .choices {
  margin: 25px 0px;
  border: 1px solid #ddd;
  padding: 0px;
}
.rgpd .modal-window > div .choices > div {
  padding: 10px;
  border-top: 1px solid #ddd;
}
.rgpd .modal-window > div .choices > div:first-child {
  border-top: none;
}
.rgpd .modal-window > div .choices > div a:hover,
.rgpd .modal-window > div .choices > div a:focus,
.rgpd .modal-window > div .choices > div a:active {
  color: inherit;
}
.rgpd .modal-window > div .choices > div a .title {
  display: inline;
}
.rgpd .modal-window > div .choices > div .choice {
  float: right;
  font-size: 15px;
}
.rgpd .modal-window > div .choices > div .text {
  font-size: 14px;
  line-height: 23px;
}
.rgpd .modal-window > div .choices > div select {
  height: 25px;
  width: 110px;
  padding: 0;
  margin: 5px 0 0 0;
  z-index: 9999;
}
.rgpd .modal-window > div .choices > div select:hover,
.rgpd .modal-window > div .choices > div select:focus,
.rgpd .modal-window > div .choices > div select:active {
  color: initial;
  background-color: initial;
}
.rgpd .cookie-refuse,
.rgpd .return-to-rgpd {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
  width: 200px;
  text-decoration: none;
  margin-right: 20px;
}
.rgpd .cookie-refuse:hover,
.rgpd .return-to-rgpd:hover {
  color: black;
}
@media (min-width: 1024px) {
  .rgpd .modal-window > div {
    width: 60%;
    min-height: unset;
    max-height: 100%;
    bottom: auto;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (min-width: 680px) {
  .rgpd .modal-window > div {
    width: 80%;
    min-height: unset;
    max-height: 100%;
    bottom: auto;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: var(--color-btn-primary-hover);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--color-btn-primary-hover);
}
input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}
.subscribe-form input[type="email"],
.subscribe-form input[type="text"],
.subscribe-form textarea,
.subscribe-form select {
  border: 1px solid #ddd;
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
  background-color: #ddd;
  color: #000;
}
.subscribe-form input[type="text"]:active,
.subscribe-form input[type="text"]:hover,
.subscribe-form input[type="text"]:focus,
.subscribe-form input[type="email"]:active,
.subscribe-form input[type="email"]:hover,
.subscribe-form input[type="email"]:focus,
.subscribe-form textarea:active,
.subscribe-form textarea:hover,
.subscribe-form textarea:focus,
.subscribe-form select:active,
.subscribe-form select:hover,
.subscribe-form select:focus {
  background-color: #ddd;
}
