/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary: #1bb1dc;
  --violet: #413e66;
  color-scheme: light;
}

.bg-igo,
.bg-igo:focus,
.bg-igo:hover {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
}

.btn-igo {
  color: white;
  background-color: var(--primary);
  font-weight: 500;
}

.text-igo {
  color: var(--primary);
}

body {
  background: #fff;
  color: #444;
}

a {
  color: var(--primary);
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2,.h3,.h4 {
  /* font-family: 'Poppins', sans-serif; */
  /* font-weight: 400; */
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: var(--primary);
  width: 44px;
  height: 44px;
  text-align: center;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  z-index: 11;
}

.back-to-top.fadeIn {
  visibility: visible;
  opacity: 1;
}
.back-to-top img {
  padding-top: 16px;
}
/* gCaptcha */
.grecaptcha-badge {
  display: none;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  padding: 0 0 10px 0;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar .social-links {
  text-align: right;
}

#topbar .social-links a {
  color: #535074;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
}

#topbar .social-links a:hover {
  color: var(--primary);
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 110px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  height: 70px;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar {
  display: none;
}

#header .logo img,
#footer .logo img {
  padding: 0;
  max-height: 46px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 90vh;
  position: relative;
  /* background-size: cover;
  background-color: #f5f8fd; */
}

#intro h1 {
  color: var(--violet);
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
}

#intro h1 span {
  color: var(--primary);
}

.btn-login,
#intro .btn-get-started,
#presentation .btn-register {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--primary);
}

#intro .btn-get-started:hover,
#presentation .btn-register:hover {
  background: #0a98c0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: var(--violet);
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: var(--primary);
  text-decoration: none;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(40, 38, 70, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle img {
  margin: 22px 18px 0 0;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-header h2,
.section-header h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--violet);
  text-align: center;
  max-width: 667px;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f5f8fd;
}

/* presentation Us Section
--------------------------------*/

#presentation {
  padding: 80px 0;
}

#presentation h2 {
  font-weight: normal;
  padding-bottom: .5rem !important;
  font-size: 1.5rem;
}

#presentation img {
  height: 317px;
}

/* PARTNERS
--------------------------------*/
#partners {

}

#partners .partner {
  padding: 1em;
  background:white;
}

/* TEAM Section
--------------------------------*/

#about {
  padding-top: 180px;
}

#about h1, h2 {
  color: var(--violet);
  font-weight: 700;
  font-size: 50px;
}

#about h3 {
  color: var(--violet);
  font-size: 32px;
  font-weight: 300;
  margin-top: 50px;
}
@media (max-width: 453px) {
  
  #about h1, h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
 
  #about {
    padding-top: 120px;
  }
  /* #call-to-action .cta-title {
    font-size: 24px !important;
  } */

  #main h2, h3,
  #call-to-action .cta-title {
    font-size: 24px !important;
    font-weight: 400;
    text-align: initial;
  }
  #about h3 {
    font-size: 27px;
    font-weight: 400;
  }
  #main .features h4 {
    font-size: 20px !important;
  }

}

@media (max-width: 985px) {
  #about .reassurance { order: 1 }
  #about .reassurance-img { order: 2 }
  #about .reassurance-img img { max-width: 100%; }
}

#about .heavy {
  font-size: 2.4em;
  color: white;
}

#about input {
  height: 45px;
}

#about form button {
  color: white;
  width: 130px;
  height: 55px;
  background-color: var(--primary);
}

#about #sendmessage {
  color:#28a745;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#about #sendmessage.show,
#about #errormessage.show {
  display: block;
}

#about #errormessage {
  color: red;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#about .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}
#about .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  border-radius: 10px;
  /* margin: 0 10px 40px 10px; */
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1); */
}

@media (min-width: 768px) {

  #about .leader1 {
    position: relative;
    top: -100px;
  }
}

#partners img:hover {
  -webkit-filter: initial; /* Safari 6.0 - 9.0 */
  filter: initial;
}

#partners img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

#equipe img {
  /* -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  /*filter: grayscale(100%); */
  width: 50%;
  border-radius: 10%;
}

#about a.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border-radius: 8px;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
}

#about a.social-link:hover {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

#about .icon-ldn {
  display: block;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNNC45OCAzLjVjMCAxLjM4MS0xLjExIDIuNS0yLjQ4IDIuNXMtMi40OC0xLjExOS0yLjQ4LTIuNWMwLTEuMzggMS4xMS0yLjUgMi40OC0yLjVzMi40OCAxLjEyIDIuNDggMi41em0uMDIgNC41aC01djE2aDV2LTE2em03Ljk4MiAwaC00Ljk2OHYxNmg0Ljk2OXYtOC4zOTljMC00LjY3IDYuMDI5LTUuMDUyIDYuMDI5IDB2OC4zOTloNC45ODh2LTEwLjEzMWMwLTcuODgtOC45MjItNy41OTMtMTEuMDE4LTMuNzE0di0yLjE1NXoiLz48L3N2Zz4=) no-repeat center;
  background-size: cover;
  width: 20px;
  height: 20px;
}
#about .icon-envelope {
  display: block;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAzdjE4aDI0di0xOGgtMjR6bTIxLjUxOCAybC05LjUxOCA3LjcxMy05LjUxOC03LjcxM2gxOS4wMzZ6bS0xOS41MTggMTR2LTExLjgxN2wxMCA4LjEwNCAxMC04LjEwNHYxMS44MTdoLTIweiIvPjwvc3ZnPg==) no-repeat center;
  background-size: cover;
  width: 20px;
  height: 20px;
}

/* Features Section
--------------------------------*/
#features {
  padding: 80px 0;
}

#features h4 {
  font-weight: 600;
  /* font-size: 24px; */
}

#features a,
#features a:hover {
  color: #444;
}

#features .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#features .box:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#features .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#features .icon i {
  font-size: 36px;
  line-height: 1;
}

#features .title a {
  color: #111;
}

#features .box:hover .title a {
  color: var(--primary);
}

#features .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}


/* Available on
--------------------------------*/
#why-us .platform {
  padding-top: 40px;
}

#why-us .platform img.icon {
  height: 60px;
  width: 60px;
  padding: 5px;
}

/* Why Us Section
--------------------------------*/

#why-us {
  padding-bottom: 60px;
}

#why-us .why-us-content .features {
  margin: 0 0 15px 0;
  padding: 0;
  max-width: 600px;
  transition: 0.3s ease-in-out;
}

#why-us .why-us-content .features i {
  font-size: 36px;
  float: left;
}

#why-us .why-us-content .features img {
  float: left;
  display: none;
}

#why-us .why-us-content .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: var(--violet);
  margin-bottom: 5px;
}

#why-us .why-us-content .features p {
  font-size: 16px;
  margin-left: 56px;
  color: #555186;
}

@media (min-width: 768px) {
  #why-us .why-us-img img {
    max-width: 540px;
  }
}


/* Call To Action Section
--------------------------------*/

#call-to-action {
  background: #2d2b46;
  background-size: cover;
  padding: 50px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 38px;
  /* max-width: 450px; */
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

#call-to-action .cta-btn {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: var(--primary);
  border: 3px solid var(--primary);
}

/* Frequently Asked Questions Section
--------------------------------*/

#faq {
  padding: 60px 0;
  overflow: hidden;
  /* background-color: #f5f8fd; */
}

#faq #faq-list {
  padding: 0;
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

#faq #faq-list li {
  border-bottom: 1px solid #ebebeb;
}

#faq #faq-list a.donation {
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  text-decoration: underline;
  position: unset;
  display: unset;
}

#faq #faq-list a {
  padding: 22px 0;
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  padding-right: 20px;
}

#faq-list .down-caret {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  display: inline-block;
  margin-left: 6px;
  right: 0;
  position: absolute;
  transform: rotate(0deg);
  transition: all .25s ease-in;
}

#faq-list li a[aria-expanded="true"] .down-caret {
  transform: rotate(180deg);
  transition: all .25s ease-out;
}

#faq-list .down-caret {
  top: 28px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

#faq #faq-list a.collapse {
  color: var(--primary);
  font-weight: 500;
}

#faq #faq-list a.collapsed {
  color: #414141;
}

#faq #faq-list a.collapsed i::before {
  content: "\f2c7" !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #f5f8fd; */
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: var(--violet);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  color: #535074;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: var(--primary); */
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  /* background: #0a98c0; */
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--violet);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #696592;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}
/*
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border: 1px solid #d9dde6;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: var(--primary);
  border: 1px solid var(--primary);
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0a98c0;
}
*/
#footer .footer-top .form .form-group {
  margin-bottom: 15px;
}

#footer .footer-top .form #sendmessage {
  color:#28a745;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#footer .footer-top .form #errormessage {
  color: red;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#footer .footer-top .form #sendmessage.show,
#footer .footer-top .form #errormessage.show,
#footer .footer-top .form .show {
  display: block;
}

#footer .footer-top .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#footer .footer-top .form label {
  color: var(--violet);
  font-weight: 500;
}

#footer .footer-top .form input,
#footer .footer-top .form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#footer .footer-top .form input::-webkit-input-placeholder,
#footer .footer-top .form textarea::-webkit-input-placeholder {
  color: #a2a0bd;
}

#footer .footer-top .form input::-moz-placeholder,
#footer .footer-top .form textarea::-moz-placeholder {
  color: #a2a0bd;
}

#footer .footer-top .form input:-ms-input-placeholder,
#footer .footer-top .form textarea:-ms-input-placeholder {
  color: #a2a0bd;
}

#footer .footer-top .form input::placeholder,
#footer .footer-top .form textarea::placeholder {
  color: #a2a0bd;
}

#footer .footer-top .form button[type="submit"] {
  background: var(--primary);
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .form button[type="submit"]:hover {
  background: #0a98c0;
  cursor: pointer;
}

#footer .footer-bottom a {
  color: black;
}

#footer .footer-bottom li {
  text-decoration: none;
  list-style-type: none;
  color: #222 !important;
  font-size: 13px;
  padding: 0 0.7em;
  
}
#footer .footer-bottom li:not(:last-child) {
  border-right: 0.5px solid black;
} 

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #535074;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  #intro .intro-info,
  #intro .intro-img,
  #why-us {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  #topbar {
    display: none;
  }

  #header {
    height: 70px;
    padding: 15px 0;
  }

  #why-us .why-us-content {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq-list .down-caret {
    top: 28px;
  }
}

@media (max-width: 767px) {

  #intro {
    height: auto;
    padding: 80px 0 60px 0;
  }

  #intro .container {
    height: auto !important;
  }

  #intro .intro-info {
    /* text-align: center; */
    padding-top: 40px;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

}

@media (max-width: 574px) {

  #intro h1 {
    font-size: 29px;
  }

  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
}
@media (max-width:1073px) {
  #social-fbshare {
    position: relative !important;
    margin: 0 auto !important;
    text-align: center;
    display: block;
    bottom: 0px !important;
    width: 80%;
  }
}
body {
  background-color: #f5f8fd !important;
}
.shadow-light {
  box-shadow: 0 1.5rem 4rem rgba(22,28,45,.05) !important;
}
#contenu p {
  font-size: 16px;
}
#contenu {
  padding-top: 180px;
  position: relative;
  background-color: #f5f8fd;
}

#contenu h1 {
  color:#413e66;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
}
#contenu h2, h4 {
  font-weight: 600 !important;
  font-size: 1.8em;
}
table.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: #FBFBFB;
}
#social-fbshare {
  position: sticky;
  bottom: 500px;
  left: 15px;
  z-index: 2;
  width: 85px;
  margin-left: 80px;
}
#contenu table th {
  padding: 10px 13px;
  border: 1px solid #fff;
  background: #e4e9f5;
  color: #212529;
  font-weight: 600;
  align-items: last baseline;
}
#contenu table {
  max-width: 1000px;
  z-index: 4;
}
#contenu table.ipa,
#contenu table.tarification {
  max-width: 800px;
  background-color: white;
}
#contenu table.ipa strong,
#contenu table.tarification strong {
  color: #444;
}
#contenu table.informations tbody tr td:first-child {
  font-weight: bold;
  text-align: center;
}
#contenu table.ipa td:nth-child(2),
#contenu table.ipa td:nth-child(3),
#contenu table.tarification td:nth-child(2),
#contenu table.tarification td:nth-child(3) {
  text-align: center;
}
/* TARIFICATION */

.regionDivChoix {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.regionDivChoix label.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}
#contenu .radio__input {
  display: none;
}
#contenu .radio__radio {
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #d8e4e2;
  border-radius: 50%;
  margin-right: 10px;
  box-sizing: border-box;
  padding: 2px;
}
#contenu .radio__radio::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  background:#009879;
  border-radius: 50%;
  transform: scale(0);
}
#contenu .radio__input:checked + .radio__radio::after {
  transform: scale(1);
}
/* Hide metro */
table.tarification.metropole tr th:nth-child(3),
table.tarification.metropole tr td:nth-child(3){
  display: none;
}
/* Show dom */
table.tarification.domtom tr th:nth-child(2),
table.tarification.domtom tr td:nth-child(2){
  display: revert;
}
/* Hide metro */
table.tarification.domtom tr th:nth-child(2),
table.tarification.domtom tr td:nth-child(2){
  display: none;
}

/* Show metro */
table.tarification.domtom tr th:nth-child(3),
table.tarification.domtom tr td:nth-child(3){
  display: revert;
}

table.tarification.metropole tr td:nth-child(2),
table.tarification.domtom tr td:nth-child(3){
  text-align: center;
}

/* table informations */

table.actes tr td:nth-child(2),
table.actes tr td:last-child,
table.majoration tr td:nth-child(3),
table.specific tr td:nth-child(3) {
  min-width:200px;
}

#footer-simple {
  font-size: 14px;
  background: white;
}
#footer-simple ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-simple ul li {
  padding: 5px 0px;
  text-decoration: none;
  color: #696592;
}
#footer-simple ul li a {
  color: #696592;
}
#footer-simple .footer-top {
  padding: 40px 0;
}
#footer-simple .footer-bottom a {
  color: black;
}

#footer-simple .footer-bottom li {
  color: #222 !important;
  font-size: 13px;
  padding: 0 0.7em;
}
#footer-simple .footer-bottom li:not(:last-child) {
  border-right: 0.5px solid black;
}
.copyright {
  text-align: center;
  padding: 20px;
}
/**
  Styles généraux
 **/

 /*
:root[data-rf-theme="dark"] {
    --bf500: #bfbfe3;
    --w-bf500: #1bb1dc;
    --t-plain: transparent;
    --g800: #fff;
    --g700: #f0f0f0;
    --g600: #e7e7e7;
    --g400: #9c9c9c;
    --g300: #6a6a6a;
    --g200: #383838;
    --w: #1e1e1e;
    --g100-g800: #1e1e1e;
    --focus: #5398ff;
    --rm500: #f7bfc3;
    --overlay: rgba(206, 206, 206, 0.08); 
}
*/
:root {
  --bf500: #1bb1dc;
  --w-bf500: #fff;
  --t-plain: transparent;
  --g800: #1e1e1e;
  --g700: #383838;
  --g600: #6a6a6a;
  --g400: #cecece;
  --g300: #e7e7e7;
  --g200: #f0f0f0;
  --w: #fff;
  --g100-g800: #f8f8f8;
  --focus: #2a7ffe;
  --rm500: #e1000f;
  --overlay: rgba(156, 156, 156, 0.32); 
  --focus-z-index: 2000; 
}

/*
@font-face {
  font-family: "dsfr-tac-icons";
  src: url("data:font/truetype;charset=utf-8;base64,d09GRgABAAAAAASYAAsAAAAABtgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAQwAAAFY4wUKAY21hcAAAAYgAAABVAAABjOEvI+NnbHlmAAAB4AAAALEAAAC8RwSAoGhlYWQAAAKUAAAAMAAAADYcco6VaGhlYQAAAsQAAAAeAAAAJAgEA+1obXR4AAAC5AAAAA8AAAAQDhAAAGxvY2EAAAL0AAAACgAAAAoAcgAubWF4cAAAAwAAAAAeAAAAIAEQAChuYW1lAAADIAAAATEAAAIuRB1J2XBvc3QAAARUAAAAQwAAAF18Wox+eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRuYZzAwMrAwPST2YOBgWEFhGZyYLBiNAXSDKzMDFhBQJprCoPDA4YHTMwv/lsw5DC/YDgBFGYEyQEA8HwMsgB4nO2QsQ2AQAwDL59AgZiDipJJqBifTR4n/2Ng6SzZilIYWAAXpwiwByN1q7Xqna364KibyP5tvctJV47ylp9s5ddefs3kudSgtptoL+04wD9smw0NAAAAeJxjYGQAAuZpTL4MrAwMjObinIzmTBE/XP8d/nfIjTHsu/u/Q4x27kAlEHXTmc4xcIPVsYuzq7Orm6uDVX/74fbzu9u3726M1364/QCygPwfbgxMDAz/z7FIMQcxCDFIA3WJKgsqmhoLirApKyqpmQqamBmrCiqbMqozAokvv5jUUmRF/5aJysqKMgel/KtyY2x7xrQn5e+tX/+ugASZukRlp/0reAaWSQG6BgBlHzlCAAAAeJxjYGRgYADiImfHBfH8Nl8ZuFk2AEUY7sxZ8gRB/z/HIsUcBORyMDCBRAFWOQxBeJxjYGRgYH7x34KBgWUDAxCwSDEwMqACFgBU5AL7AAB4nGNgYGBg2YDAAA7gAh0AAAAAAAAUAC4AXgAAeJxjYGRgYGBhkGFgYgABEMkFhAwM/8F8BgALoAE5AAB4nG2RPU7DMBiG3/QP0UoIBGJh8QILavozdmRo9w7d08RJUyVx5LgVvQMn4BAcgoEzcAgOwVvzSZVQbcl+vsfvFysJgGt8IcBxBOj79ThauGD1x23SjXCH/CDcxQCPwj36sXAfz5gJD3ALzScEnUuaO7wKt3CFN+E2/btwh/wh3MU9PoV79N/CfazwIzzAU/CSNKkd5rGpmqXOdkVkT+JEK22b3FRqEo5PcqErbSOnE7U+qGafTZ1LVWpNqeamcroojKqt2erYhRvn6tlolIoPY1MiQYMUFkPkiGFQsV7yfTPsUCDiybnEObdil+We+1phgpDf81xywWTl0xEc94TpNQ5cG+x585TWsUv5ToOSNPe9x3TBaWhqf7alielDbHxXzf824kz/5UN/e/kLsDVkLAAAAHicY2BigAAeBuyAhZGJkZmRhZGVQTCxqCi/XDclvzxPt1g3JzMvlSs5J784FcwUSq0oSS3KS8wB8bLBQgwMANcAEdUA") format("truetype");
}
*/

#tarteaucitronRoot {
  box-sizing: border-box;
  color: var(--g700);
  font-family: "Marianne", arial, sans-serif;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}

#tarteaucitronRoot *,
#tarteaucitronRoot *::before,
#tarteaucitronRoot *::after {
  box-sizing: inherit; 
}
.tac_visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}
#tarteaucitronRoot h1 {
  font-size: 2.75rem;
  line-height: 1.25;
  color: var(--g800);
  font-weight: bold; 
}

#tarteaucitronSave {
  display: none !important;
}

@media (min-width: 48em) {
  #tarteaucitronRoot h1 {
    font-size: 3rem; 
  } 
}

#tarteaucitronRoot h2 {
  font-size: 2rem;
  line-height: 1.25;
  color: var(--g800);
  font-weight: bold; 
}

#tarteaucitronRoot h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--g800);
  font-weight: bold; 
}

#tarteaucitronRoot h4 {
  font-size: 1.375rem;
  line-height: 1.375;
  color: var(--g800);
  font-weight: bold; 
}

/*** Liens ***/
#tarteaucitronRoot a {
  box-shadow: 0 1px 0 0 currentColor;
  color: inherit; 
}

#tarteaucitronRoot a:focus {
  outline: 2px solid;
  outline-color: var(--focus);
  outline-offset: 2px;
  z-index: var(--focus-z-index); 
}

#tarteaucitronRoot a {
  text-decoration: none; 
}
/*
#tarteaucitronRoot a[target="_blank"]::after {
  content: "";
  font-family: dsfr-tac-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1; 
  font-size: 1rem;
  margin-left: 0.25rem;
  vertical-align: baseline;
}
*/

/*** Boutons ***/
#tarteaucitronRoot button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border: none;
  cursor: pointer;
}

#tarteaucitronRoot button:focus {
  outline: 2px solid;
  outline-color: var(--focus);
  outline-offset: 2px;
  z-index: var(--focus-z-index);
}

button#tarteaucitronPrivacyUrl {
  position: absolute;
  font-size: 9px;
  background: transparent;
  bottom: 0.5em;
  left: 2.5em;
}

 /*** Listes ***/
 #tarteaucitronRoot ul, #tarteaucitronRoot ol {
  list-style: none;
  padding: 0;
  margin: 0;
 }

/*** Overlay ***/
#tarteaucitronBack {
  background-color: var(--overlay);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 1 !important;
  z-index: 2147483646;
}

/*** Positionnements du bouton d'ouverture du gestionnaire ***/
.tarteaucitronIconBottomLeft {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 4000;
}
.tarteaucitronIconBottomRight {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 4000;
}
.tarteaucitronIconTopLeft {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
}
.tarteaucitronIconTopRight {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4000;
}

/*** Affichage de l'icône TAC sous forme de bouton design system ***/
#tarteaucitronIcon #tarteaucitronManager > img {
  display: none;
}

#tarteaucitronIcon #tarteaucitronManager {
  background: var(--bf500);
  color: var(--w);
  padding: 0.5rem 1.5rem;
  line-height: 1.5rem;
  min-height: 2.5rem;
  font-size: inherit;
}

#tarteaucitronIcon #tarteaucitronManager::before {
  content: "Cookies";
}

/*---------------------------------------------*/

/**
  Styles du bandeau (#tarteaucitronAlertBig) et des éléments du bandeau 
 **/

/*** Bandeau ***/
div#tarteaucitronRoot.tarteaucitronBeforeVisible:before {
  opacity: 1 !important;
  background-color: var(--overlay) !important;
}

div#tarteaucitronAlertBig:before {
  content: none !important;
}

body #tarteaucitronRoot div#tarteaucitronAlertBig {
  border-radius: 10px;
}

.tarteaucitronBeforeVisible #tarteaucitronAlertBig {
  display: flex !important;
}

#tarteaucitronAlertBig {
  position: fixed;
  flex-wrap: wrap;
  justify-content: flex-end;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: var(--g700);
  background: var(--w);
  box-shadow: inset 0 0 0 1px var(--g400);
  z-index: 2147483645;
  max-height: 73vh;
  overflow-y: scroll;
}



/* Bandeau >= 768px */
@media screen and (min-width: 48em) {
   #tarteaucitronRoot #tarteaucitronAlertBig {

    max-width: 460px;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
    padding: 2rem !important;
    margin: auto;
    top: auto !important;
    /* width: 40rem !important; */
    /* transform: none !important; */
    /* box-shadow: inset 0 0 0 1px var(--g400) !important; */
    /* border-radius: 0 !important; */
  }
}

/*** Texte du bandeau ***/
#tarteaucitronDisclaimerAlert {
  margin-bottom: 2rem;
}


@media screen and (min-width: 48em) {
  #tarteaucitronAlertBig {
    max-height: initial;
    height: auto;
    padding-right: 0;
    overflow: initial;
  }
}

/*** Surcharge des margin bottom trop importantes du design system ***/
#tarteaucitronDisclaimerAlert > p {
  margin-bottom: 1rem;
}

#tarteaucitronDisclaimerAlert > p:last-child {
  margin-bottom: 0;
}

/*** Bouton fermer le bandeau optionnel (closePopup) ***/
#tarteaucitronRoot #tarteaucitronCloseCross::first-letter {
  color: transparent;
}

#tarteaucitronRoot #tarteaucitronCloseCross {
  position: relative;
  background-color: var(--t-plain);
  color: var(--bf500);
  padding: .25rem .75rem;
  display: block;
  line-height: 1.5rem;
  min-height: 2rem;
  font-size: .875rem;
  border-radius: 1rem;
  width: 5rem;
  margin-bottom: .5rem;
  border-radius: 1rem;
}

#tarteaucitronRoot #tarteaucitronCloseCross:before {
  content: "Fermer";
  position: absolute;
  left: .75rem;
}
/*
#tarteaucitronRoot #tarteaucitronCloseCross:after {
  font-family: dsfr-tac-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "";
  font-size: 1rem;
  height: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
*/

/*** Boutons d'action du bandeau ***/
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton {
  font-size: inherit;
  cursor: pointer;
  background: var(--bf500);
  color: var(--w);
  padding: 0.5rem 0.7rem;
  line-height: 1.5rem;
  min-height: 2.5rem;
  width: 100%;
  margin: .5rem 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert {
  background-color: var(--t-plain);
  color: var(--bf500);
  box-shadow: inset 0 0 0 1px var(--bf500);
  order: 5; 
  margin-bottom: 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronAllDenied2 {
  order: 4; 
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize {
  order: 3;
  margin-right: 0; 
}

@media screen and (min-width: 36em) {

  #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert,
  #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize, 
  #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton {
    width: auto;
    margin: 0 .5rem !important;
    display: flex !important;
  }

  #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton:not(.tarteaucitronAllow, .tarteaucitronDeny) {
    margin: 0 0 0 auto !important;
  }

  #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert {
    order: 3; 
  }
  
  #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronAllDenied2 {
    order: 4;
  }
  
  #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2,
  #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize {
    order: 5;
    margin-right: 0 !important;
  }

}

/*---------------------------------------------*/

/**
  Styles du gestionnaire de cookie (#tarteaucitron) et des éléments du gestionnaire 
 **/

#tarteaucitron {
  display: none;
  height: 90%;
  padding: 3rem 0 0;
  margin: 0;
  left: 0;
  top: auto !important;
  bottom: 0 !important;
  position: fixed;
  width: 100%;
  z-index: 2147483647;
}

#tarteaucitron::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--w);
  height: calc(3rem + 1px);
  width: 100%;
}

@media screen and (min-width: 48em) {

  #tarteaucitron {
    width: 50rem;
    height: initial;
    max-height: 80%;
    left: 50%;
    top: 0 !important;
    margin: auto auto auto -25rem;
  }

}

/*** Bouton pour fermer le gestionnaire ***/
#tarteaucitronRoot #tarteaucitronClosePanel {
  background: var(--tplain);
  color: var(--bf500);
  padding: .25rem .75rem;
  line-height: 1.5rem;
  min-height: 2rem;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: .875rem;
  border-radius: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  outline-offset: 0px;
}
/*
#tarteaucitronRoot #tarteaucitronClosePanel::before {
  font-family: dsfr-tac-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "";
  font-size: 1rem;
  margin-right: -0.25rem;
  margin-left: .5rem;
}
*/

/*** Lien vers le site tarte au citron ***/
.tarteaucitronSelfLink > img {
  display: none;
}

.tarteaucitronSelfLink:before {
  content: "Site officiel de Tarte au citron"
}

/*** Surcharge des styles de liste design system ***/
#tarteaucitronServices ul > li::before {
  content: none;
}

#tarteaucitronServices ul > li > ul {
  padding-left: 0;
}

/*** Section générale pour gérer tous les services ***/
#tarteaucitronRoot .tarteaucitronMainLine {
  padding-bottom: 2.5rem;
  /* box-shadow: inset 0 -1px 0 0 var(--g300); */
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronH1 {
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--g700);
  margin: 0 0 1rem;
  font-weight: 700;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk {
  flex-direction: column;
  align-items: flex-start;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk::before {
  content: none;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk .tarteaucitronDeny {
  margin-left: 0;
  margin-top: 1.5rem;
}

@media screen and (min-width: 48em) {

  #tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk {
    flex-direction: row;
    align-items: center;
  }

  #tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk::before {
    content: "";
  }

  #tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk .tarteaucitronDeny {
    margin-left: 1.5rem;
    margin-top: 0;
  }

}

/*** Container des services ***/
#tarteaucitronServices {
  background-color: var(--w);
  padding: 1rem 1rem 2rem;
}

@media screen and (min-width: 48em) {

  #tarteaucitronServices {
    padding: 1rem 2rem 2rem;
  }

}

/*** Titre et boutons du conteneur des cookies obligatoires  ***/
#tarteaucitronServicesTitle_mandatory .tarteaucitronH3 {
  font-size: 1rem;
  margin-bottom: .5rem;
  max-width: initial;
}

#tarteaucitronServicesTitle_mandatory .tarteaucitronTitle {
  margin-bottom: 1rem;
}

#tarteaucitronServicesTitle_mandatory .tarteaucitronAsk {
  position: relative;
  top: auto;
  right: auto;
}

/*** Container des textes de service (titre et description) ***/
@media screen and (min-width: 48em) {
  .tarteaucitronName {
    max-width: 60%;
  }
}

/*** Container des boutons Accepter/Refuser ***/
.tarteaucitronAsk {
  display: flex;
  margin-top:2rem;
}

@media screen and (min-width: 48em) {
  .tarteaucitronAsk {
    justify-content: flex-end;
    align-items: center;
    margin-top: 0!important;
  }
  .tarteaucitronLine:not(.tarteaucitronMainLine) .tarteaucitronAsk {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*** Boutons Accepter/Refuser sous forme de boutons radios design system ***/
#tarteaucitronRoot .tarteaucitronAsk .tarteaucitronAllow {
  order: 1;
  margin-right: 1.5rem;
  font-size: 1rem;
}

#tarteaucitronRoot .tarteaucitronAsk .tarteaucitronDeny {
  margin-left: 1.5rem;
  order: 3;
  font-size: 1rem;
}

#tarteaucitronRoot .tarteaucitronAsk::before {
  content: "";
  width: 1px;
  height: 1.5rem;
  order: 2;
  background: var(--g300);
}

#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton),
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton) {
  background: var(--tplain);
  color: var(--g800);
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0;
}

#tarteaucitronRoot .tarteaucitronAllow:disabled:not(.tarteaucitronCTAButton),
#tarteaucitronRoot .tarteaucitronDeny:disabled:not(.tarteaucitronCTAButton) {
  color: var(--g600-g400);
}

#tarteaucitronRoot .tarteaucitronAllow:disabled:not(.tarteaucitronCTAButton)::before,
#tarteaucitronRoot .tarteaucitronDeny:disabled:not(.tarteaucitronCTAButton)::before {
  background-color: var(--g200);
  border: 1px solid var(--g400);
}

#tarteaucitronRoot .tarteaucitronAllow:disabled:not(.tarteaucitronCTAButton)::after,
#tarteaucitronRoot .tarteaucitronDeny:disabled:not(.tarteaucitronCTAButton)::after {
  content: none;
}
  

#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronIsSelected::after,
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronIsSelected::after {
  opacity: 1;
}

#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronIsSelected::before,
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronIsSelected::before {
  border: 1px solid var(--bf500);
}

#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton)::before,
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton)::before {
  content: "";
  display: block;
  flex-shrink: 0;
  border: 1px solid var(--g800);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
}

#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton)::after,
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton)::after {
  content: "";
  display: block;
  background: var(--bf500);
  border-radius: 50%;
  width: .75rem;
  height: .75rem;
  position: absolute;
  left: .375rem;
  opacity: 0;
}

#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronAllow::after {
  opacity: 1;
}

#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronDeny::after {
  opacity: 1;
}

#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronAllow::after {
  opacity: 1;
}

#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronAsk::before {
  content: none;
}


#tarteaucitronRoot [id^=tarteaucitronServices_]{
  margin-top:1.5rem;
}

@media screen and (min-width: 48em) {
  #tarteaucitronRoot [id^=tarteaucitronServices_]{
    margin-top:0;
  }
}

/*** Ajout des bordures dans la liste des services ***/
.tarteaucitronBorder > ul > li {
  padding: 1.5rem 0;
  box-shadow: inset 0 1px 0 0 var(--g300);
}

.tarteaucitronBorder > ul > li:first-child {
  box-shadow: none;
}

/*** Titres des services avec infobulle associée ou non ***/
#tarteaucitronRoot .tarteaucitronTitle > button, 
#tarteaucitronRoot .tarteaucitronTitle > .catToggleBtn {
  background: 0;
  color: var(--g800);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

#tarteaucitron #tarteaucitronInfo, 
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: var(--w);
  background: var(--g700);
  display: none;
  font-size: 0.75rem;
  margin-top: 0;
  max-width: 270px;
  padding: 1rem;
  position: absolute;
  z-index: 2147483647;
}

/*** Style de base des items de liste de service ***/
#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  display: none;
  position: relative;
}

/*** Titre des sous-services ***/
.tarteaucitronH3 {
  display: block;
  color: var(--g800);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 24rem;
}

.tarteaucitronH3 + span {
  display: block;
}

/*** Ligne d'un sous-service ***/
.tarteaucitronLine {
  position: relative;
}


.tarteaucitronLine{margin-bottom:1rem!important;}


/*** Surcharge dans le cas des sous-services groupés ***/
ul[style="display: block;"] .tarteaucitronLine{
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 48em) {

  .tarteaucitronHidden > ul[style="display: block;"] .tarteaucitronLine:not(:last-child),
  .tarteaucitronHidden > ul:last-child:not([style="display: block;"]) .tarteaucitronLine:not(:last-child) {
    margin-bottom: 0;
  }

}

.tarteaucitronHidden > ul[style="display: block;"] .tarteaucitronLine .tarteaucitronH3,
.tarteaucitronHidden > ul:last-child:not([style="display: block;"]) .tarteaucitronLine .tarteaucitronH3 {
  margin-bottom: .5rem;
  font-size: 1rem;
}

.tarteaucitronHidden > ul:last-child:not([style="display: block;"]) .tarteaucitronLine:first-child {
  margin-top: 1.5rem;
}

@media screen and (min-width: 48em) {

  .tarteaucitronHidden > ul[style="display: block;"] .tarteaucitronLine {
    display: flex;
  }

}



@media screen and (min-width: 48em) {
  .tarteaucitronHidden > ul[style="display: block;"] .tarteaucitronAsk {
    margin-top: 0;
    margin-right: 0;
    margin-left: auto;
  }
}

.tarteaucitronHidden > ul[style="display: block;"] .tarteaucitronLine:not(.tarteaucitronMainLine) .tarteaucitronAsk ,
.tarteaucitronHidden > ul[style="display: none;"] .tarteaucitronLine:not(.tarteaucitronMainLine) .tarteaucitronAsk {
  position: relative;
  top: auto;
  right: auto;
  align-items: flex-start;
}

/*** Bouton pour déplier les sous-services ***/
#tarteaucitronRoot .tarteaucitron-toggle-group {
  background: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-bottom: var(--is-link) solid 1px currentColor;
  font-size: inherit;
}
/*
#tarteaucitronRoot .tarteaucitron-toggle-group::after {
  font-family: dsfr-tac-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "";
  font-size: 1rem;
  margin-left: .5rem;   
}
*/

/*---------------------------------------------*/

/**
  Styles du bouton "AlertSmall" et de la modale avec la liste des cookies
 **/

 .tarteaucitronAlertSmallBottom {
  display: none;
  padding: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  text-align: center;
  width: auto;
  z-index: 2147483646;
}

 .tarteaucitronAlertSmallTop, .tarteaucitronAlertSmallBottom {
  bottom: 0;
}

#tarteaucitronAlertSmall {
  display: none;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManager,
#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  position: relative;
  font-size: inherit;
  cursor: pointer;
  background: var(--bf500);
  color: var(--w);
  padding: 0.5rem 1.5rem!important;
  line-height: 1.5rem;
  min-height: 2.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  margin-left: .25rem;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
  position: absolute;
  background-color: gray;
  border-radius: 5px;
  display: block;
  height: 5px;
  overflow: hidden;
  width: calc(100% - 3rem);
  left: 1.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  display: block;
  float: left;
  height: 100%;
  width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  background-color: #1B870B;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  background-color: #FBDA26;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  background-color: #9C1A1A;
}


#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  display: none;
  max-height: 50%;
  max-width: 500px;
  position: fixed;
  right: 0;
  width: 100%;
  background: #fff;
  padding-top: 1rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
  color: #333;
  font-size: .75rem;
  height: auto;
  overflow: auto;
  text-align: left;
  padding: 0 1.5rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
  color: var(--g800);
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0;
  padding: 1rem 0;
  text-align: left;
  width: auto;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
  color: var(--g800);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
  padding: .5rem 1.5rem;
  text-align: left;
  color: var(--g800);
  font-size: 1.25rem;
  font-weight: 700;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
  color: var(--w);
  font-size: 1rem;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
  padding: 0 0 .25rem;
  word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:before {
  content: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
  color: var(--g800);
  text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
  display: inline-flex;
  width: 50%;
  align-items: center;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
  color: var(--rm500);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
  color: var(--g800);
  display: inline-block;
  font-size: .75rem;
  margin-left: 10%;
  vertical-align: top;
  width: 30%;
}

/*** Bouton pour fermer le gestionnaire ***/
#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie {
  background: var(--tplain);
  color: var(--bf500);
  padding: .25rem .75rem;
  line-height: 1.5rem;
  min-height: 2rem;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: .875rem;
  border-radius: 1rem;
  position: absolute;
  right: 1rem;
  top: 0;
}
/*
#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie::before {
  font-family: dsfr-tac-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "";
  font-size: 1rem;
  margin-right: -0.25rem;
  margin-left: .5rem;
}
*/

/*** Bouton pour supprimer les cookies dans la liste ***/
#tarteaucitronRoot .purgeBtn {
  flex-direction: row;
  max-width: 2rem;
  max-height: 2rem;
  padding: 0.25rem .5rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  min-height: 2rem;
  background-color: var(--bf500);
  color: var(--w-bf500);
  flex-shrink: 0;
  margin-right: .25rem;
}
/*
#tarteaucitronRoot .purgeBtn::before {
  font-family: dsfr-tac-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "";
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0.5rem;
}
*/

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .purgeBtn strong {
  display: none;
}

/*---------------------------------------------*/

/**
  Styles du placeholder pour les services (type youtube) désactivés
 **/

.tac_activate {
  background: var(--g200);
  display: flex;
  padding: 6rem 0;
  justify-content: center;
  width: 100%;
}

.tac_activate .tac_float {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rf-responsive-vid__player .tac_activate {
  padding: O;
  height: 100%;
}


.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton)::before,
.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton)::after {
  content: none;
}

.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border: none;
  font-size: inherit;
  cursor: pointer;
  background: var(--bf500);
  color: var(--w);
  padding: 0.5rem 1.5rem;
  line-height: 1.5rem;
  min-height: 2.5rem;
  margin-top: 1.5rem;
}

.tac_activate .tarteaucitronAllow:not(.tarteaucitronCTAButton):focus {
  outline: 2px solid;
  outline-color: var(--focus);
  outline-offset: 2px;
  z-index: var(--focus-z-index); 
}
