.table-card {
  background: white;
  padding: 1.6666666667rem;
  border-radius: 40px; }

.table-head {
  text-transform: uppercase;
  font-size: 0.8888888889rem;
  margin-bottom: 1.6666666667rem; }

.table-item {
  font-size: 1.2222222222rem;
  min-height: 80px;
  align-items: center;
  border-bottom: 1px solid #ced4da;
  padding: 25px 0; }
  .table-item:last-child {
    border: none; }
  .table-item i {
    font-size: 1.8333333333rem; }
  .table-item .table-item-desktop {
    display: flex; }
  .table-item .table-item-mobile {
    display: none; }

@media (max-width: 991.98px) {
  .table-card {
    padding: 1rem; }
    .table-card .table-head {
      display: none; }
    .table-card .table-item {
      background: white;
      padding: 1.1111111111rem 0.5555555556rem; }
      .table-card .table-item .table-item-desktop {
        display: none; }
      .table-card .table-item .table-item-mobile {
        display: flex; } }

.circliful-75 {
  width: 4.1666666667rem;
  height: 4.1666666667rem; }

.circliful-150 {
  width: 11.1111111111rem;
  height: 11.1111111111rem; }

.circliful .circle-container {
  transform: translate(7%, 7%); }

.circliful svg {
  fill: none; }

.circliful .background-circle {
  stroke: #e9ecef;
  stroke-width: 10px; }

.circliful .foreground-circle {
  fill: none;
  stroke: #3366ff;
  stroke-width: 10px;
  stroke-linecap: round; }

.circliful .circle-text {
  fill: #3366ff;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem !important;
  dominant-baseline: middle;
  text-anchor: middle; }

@media (max-width: 991.98px) {
  .circliful-75 {
    width: 3.8888888889rem;
    height: 3.8888888889rem; }
  .circliful-150 {
    width: 5rem;
    height: 5rem; } }

.vbox-close {
  height: 80px !important;
  width: 80px !important;
  line-height: 80px !important;
  padding: 0 !important;
  text-align: center;
  background: white !important;
  color: black !important;
  border-radius: 25px; }

.la-poste {
  /* The checkbox-container */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark-round when checked */
  /* Style the checkmark/indicator */
  /* Style the checkmark/indicator */
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */ }
  .la-poste .checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .la-poste .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .la-poste .checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    margin: auto;
    background-color: white;
    border: 3px solid #dee2e6; }
  .la-poste .checkmark-round {
    height: 35px;
    width: 35px;
    border-radius: 1000px; }
  .la-poste .checkbox-container:hover input ~ .checkmark {
    background-color: white; }
  .la-poste .checkbox-container input:checked ~ .checkmark {
    background-color: #3366ff;
    border: none; }
  .la-poste .checkbox-container input:checked ~ .checkmark-round {
    height: 45px;
    width: 45px; }
  .la-poste .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .la-poste .checkbox-container input:checked ~ .checkmark:after {
    display: block; }
  .la-poste .checkbox-container .checkmark:after {
    width: 10px;
    height: 18px;
    margin-top: -2px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .la-poste .checkbox-container .checkmark-round:after {
    width: 20px;
    height: 30px;
    margin-top: -5px;
    border: solid white;
    border-width: 0 6px 6px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .la-poste .switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 15px; }
  .la-poste .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
  .la-poste .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: #e9ecef;
    -webkit-transition: .4s;
    transition: .4s; }
  .la-poste .slider:before {
    content: "";
    height: 25px;
    width: 25px;
    left: 0;
    bottom: 0;
    background: #adb5bd;
    -webkit-transition: .4s;
    transition: .4s; }
  .la-poste input:checked + .slider {
    background-color: rgba(51, 102, 255, 0.4); }
    .la-poste input:checked + .slider:before {
      background: #3366ff; }
  .la-poste input:focus + .slider {
    box-shadow: 0 0 1px #3366ff; }
  .la-poste input:checked + .slider:before {
    -webkit-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px); }
  .la-poste .slider.round {
    border-radius: 34px; }
  .la-poste .slider.round:before {
    border-radius: 50%; }
  .la-poste .custom-control-input.custom-checkbox-dark-primary:checked ~ .custom-control-label::before {
    border-color: #380098;
    background-color: #380098; }
  .la-poste .custom-control-input.custom-checkbox-round ~ .custom-control-label::before {
    border-radius: 1000px; }
  .la-poste .custom-control-input.custom-control-input ~ .custom-control-label {
    cursor: pointer; }
    .la-poste .custom-control-input.custom-control-input ~ .custom-control-label:after {
      background-size: 70%; }
  .la-poste .custom-control-input.custom-checkbox-lg ~ .custom-control-label {
    height: 2.4rem; }
    .la-poste .custom-control-input.custom-checkbox-lg ~ .custom-control-label:before {
      top: 0;
      left: -2.4rem;
      width: 2.4rem;
      height: 2.4rem; }
    .la-poste .custom-control-input.custom-checkbox-lg ~ .custom-control-label:after {
      top: 0;
      left: -2.4rem;
      width: 2.4rem;
      height: 2.4rem; }
  .la-poste .custom-control-input.custom-checkbox-xl ~ .custom-control-label {
    height: 3.6rem; }
    .la-poste .custom-control-input.custom-checkbox-xl ~ .custom-control-label:before {
      top: 0;
      left: -3.6rem;
      width: 3.6rem;
      height: 3.6rem; }
    .la-poste .custom-control-input.custom-checkbox-xl ~ .custom-control-label:after {
      top: 0;
      left: -3.6rem;
      width: 3.6rem;
      height: 3.6rem; }
  .la-poste .pac-container {
    z-index: 1051 !important; }
  @media (max-width: 1199.98px) {
    .la-poste .checkbox-container {
      width: 30px;
      height: 30px;
      /* Style the checkmark/indicator */ }
      .la-poste .checkbox-container .checkmark {
        height: 18px;
        width: 18px;
        border: 2px solid #dee2e6; }
      .la-poste .checkbox-container .checkmark:after {
        width: 6px;
        height: 12px; }
      .la-poste .checkbox-container .checkmark-round {
        height: 25px;
        width: 25px; }
      .la-poste .checkbox-container input:checked ~ .checkmark-round {
        height: 30px;
        width: 30px; } }
  .la-poste .form-group {
    position: relative;
    margin-bottom: 3.6rem; }
    .la-poste .form-group select ~ label,
    .la-poste .form-group input ~ label {
      z-index: 4;
      color: #4b4e50;
      transition: opacity 0.15s linear;
      font-size: 12px;
      line-height: 0.8rem;
      position: absolute;
      top: 0;
      left: 0;
      margin-bottom: 40px;
      opacity: 0; }
      @media (prefers-reduced-motion: reduce) {
        .la-poste .form-group select ~ label,
        .la-poste .form-group input ~ label {
          transition: none; } }
    .la-poste .form-group select ~ label {
      opacity: 1;
      margin-top: -4px;
      border-bottom: 14px solid white;
      height: 9px;
      padding-left: 3px;
      padding-right: 3px;
      margin-left: 3px; }
    .la-poste .form-group select:valid ~ label {
      opacity: 1;
      margin-top: -12px;
      height: 9px;
      padding-left: 3px;
      padding-right: 3px;
      margin-left: 3px;
      line-height: 1.1em;
      background-color: #FFF; }
    .la-poste .form-group input:not(:placeholder-shown) ~ label {
      opacity: 1;
      margin-top: -12px;
      height: 9px;
      padding-left: 3px;
      padding-right: 3px;
      margin-left: 3px;
      line-height: 1.1em;
      border-bottom: 14px solid white; }
    .la-poste .form-group input:disabled ~ label, .la-poste .form-group input[readonly] ~ label {
      border-bottom-color: transparent; }
    .la-poste .form-group:not(.was-validated) .form-control:not(:placeholder-shown):not(.is-invalid):not(:invalid):not(.input-error):not(:disabled):not([readonly]) {
      color: #423f3f;
      border-color: #4b4e50; }
    .la-poste .form-group:not(.was-validated) .form-control:not(:placeholder-shown):disabled, .la-poste .form-group:not(.was-validated) .form-control:not(:placeholder-shown)[readonly] {
      color: #6c757d;
      opacity: 0.7; }
    .la-poste .form-group.group-ei .label-radio {
      text-align: left;
      color: #423f3f;
      background: #fff;
      display: block;
      width: 100%;
      font-size: 1.2rem;
      padding: 1rem;
      margin-bottom: 0.5rem; }
    .la-poste .form-group select.custom-select {
      line-height: 1.5;
      transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      display: block;
      width: 100%;
      text-align: left;
      position: relative;
      height: calc(1.5em + 3rem + 2px);
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("/img/newSite/arrow-down-grey.png");
      background-repeat: no-repeat;
      background-position: 97% 55%;
      background-size: 18px 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      padding-right: 36px;
      white-space: nowrap; }
      .la-poste .form-group select.custom-select:disabled ~ label, .la-poste .form-group select.custom-select[readonly] ~ label {
        border-bottom-color: transparent; }
      .la-poste .form-group select.custom-select:not(:disabled):not([readonly]) {
        color: #423f3f;
        background-color: transparent; }
      .la-poste .form-group select.custom-select:focus {
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent url("/img/newSite/arrow-up-grey.png") no-repeat 97% 55%;
        background-size: 18px 10px; }
      .la-poste .form-group select.custom-select.input-ei {
        line-height: 1.5;
        border-radius: 0.6rem;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        display: block;
        width: 100%;
        margin-bottom: 0.8rem !important;
        padding: 1.6rem !important;
        text-align: left !important;
        color: #423f3f !important;
        font-size: 1.2rem;
        position: relative;
        margin-top: 0.5rem;
        height: 51.98px;
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent url("/img/newSite/arrow-down-grey.png") no-repeat 97% 55%;
        background-size: 18px 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 36px !important;
        white-space: nowrap; }
        .la-poste .form-group select.custom-select.input-ei:focus {
          box-shadow: none;
          appearance: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          background: transparent url("/img/newSite/arrow-up-grey.png") no-repeat 97% 55%;
          background-size: 18px 10px; }
  .la-poste .input-group-text {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0; }
  .la-poste .custom-select.input-error .eye-password,
  .la-poste #zone_mdp_old .eye-password, .la-poste #zone_mdp_new .eye-password, .la-poste #zone_mdp_new_confirm .eye-password {
    background-image: url("/img/stych/icon/eye-regular-grey.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer; }
  .la-poste .custom-select.input-error .eye-password:hover,
  .la-poste #zone_mdp_old .eye-password:hover, .la-poste #zone_mdp_new .eye-password:hover, .la-poste #zone_mdp_new_confirm .eye-password:hover {
    background-image: url("/img/stych/icon/eye-regular-black.svg"); }
  .la-poste .custom-select.input-error .eye-password.showed,
  .la-poste #zone_mdp_old .eye-password.showed, .la-poste #zone_mdp_new .eye-password.showed, .la-poste #zone_mdp_new_confirm .eye-password.showed {
    background-image: url("/img/stych/icon/eye-slash-regular-grey.svg"); }
  .la-poste .custom-select.input-error .eye-password.showed:hover,
  .la-poste #zone_mdp_old .eye-password.showed:hover, .la-poste #zone_mdp_new .eye-password.showed:hover, .la-poste #zone_mdp_new_confirm .eye-password.showed:hover {
    background-image: url("/img/stych/icon/eye-slash-regular-black.svg"); }
  .la-poste .mdp-old-container #zone_mdp_old {
    margin-bottom: 5px; }
  .la-poste .mdp-old-container #forgot_pwd {
    float: right;
    color: black;
    text-decoration: underline;
    font-weight: 400;
    font-size: 15px;
    line-height: 14px; }
  .la-poste .form-group select ~ label {
    opacity: 0; }
  .la-poste .form-group select:not(:placeholder-shown) ~ label {
    opacity: 0;
    border-bottom: 14px solid white; }
  .la-poste .form-group select:valid ~ label {
    opacity: 1;
    margin-top: -12px;
    height: 9px;
    padding-left: 3px;
    padding-right: 3px;
    margin-left: 3px;
    line-height: 1.1em;
    background-color: #FFF; }
  .la-poste.in-elearning {
    background-color: #fff;
    border-radius: 40px; }
  .la-poste .circlesParent {
    position: relative;
    color: #423f3f;
    height: 140px;
    margin: auto;
    width: 340px; }
    @media (max-width: 767.98px) {
      .la-poste .circlesParent {
        height: 100px;
        width: 280px; } }
    .la-poste .circlesParent .circle {
      border-radius: 50%;
      box-shadow: 0 15px 30px 0 rgba(76, 76, 221, 0.23);
      background-color: white;
      display: table;
      vertical-align: middle;
      text-align: center;
      line-height: 1;
      position: absolute;
      top: 0;
      width: 140px;
      height: 140px; }
      @media (max-width: 767.98px) {
        .la-poste .circlesParent .circle {
          height: 100px;
          width: 100px; } }
      .la-poste .circlesParent .circle .circle-number {
        font-size: 46px;
        height: auto;
        padding-top: 28px; }
        @media (max-width: 767.98px) {
          .la-poste .circlesParent .circle .circle-number {
            font-size: 26px; } }
      .la-poste .circlesParent .circle .circle-libelle {
        font-size: 15px; }
        @media (max-width: 767.98px) {
          .la-poste .circlesParent .circle .circle-libelle {
            font-size: 11px; } }
      .la-poste .circlesParent .circle .number_centre_examen {
        color: #3366ff; }
      .la-poste .circlesParent .circle img {
        height: 70px; }
        @media (max-width: 767.98px) {
          .la-poste .circlesParent .circle img {
            height: 50px; } }
    .la-poste .circlesParent #circle1 {
      left: 0;
      z-index: 1; }
      .la-poste .circlesParent #circle1 .circle-libelle {
        padding-top: 5px; }
        @media (max-width: 767.98px) {
          .la-poste .circlesParent #circle1 .circle-libelle {
            padding-top: 1px; } }
    .la-poste .circlesParent #circle2 {
      left: 130px;
      z-index: 2; }
      @media (max-width: 767.98px) {
        .la-poste .circlesParent #circle2 {
          left: 90px; } }
      .la-poste .circlesParent #circle2 .circle-libelle {
        padding-top: 9px; }
        @media (max-width: 767.98px) {
          .la-poste .circlesParent #circle2 .circle-libelle {
            padding-top: 5px; } }
    .la-poste .circlesParent #circle3 {
      left: 260px;
      z-index: 3; }
      @media (max-width: 767.98px) {
        .la-poste .circlesParent #circle3 {
          left: 180px; } }
      .la-poste .circlesParent #circle3 .circle-libelle {
        padding-top: 9px; }
        @media (max-width: 767.98px) {
          .la-poste .circlesParent #circle3 .circle-libelle {
            padding-top: 5px; } }
  .la-poste #zone_google_zip,
  .la-poste #zone_date {
    margin-bottom: 0px; }
    .la-poste #zone_google_zip label,
    .la-poste #zone_date label {
      display: none; }
  .la-poste .bloc-infos label {
    display: none; }
  .la-poste #connexion input[type="submit"],
  .la-poste #btn-new-inscription,
  .la-poste #btn-change-mdp,
  .la-poste #btn-change-mdp {
    padding: 10px 35px;
    border-radius: 36px;
    font-family: 'CircularStd';
    margin-bottom: 20px;
    background-color: var(--primary); }
  .la-poste .geoloc-btn {
    background-color: #3366ff;
    height: 29px !important;
    padding: 4px;
    border-radius: 5px;
    margin-top: 7px;
    cursor: pointer; }
  .la-poste #cross-bg-js,
  .la-poste #date_laposte,
  .la-poste #form-connexion-container input:not([type="submit"]),
  .la-poste #inscription input:not([type="submit"]),
  .la-poste #laposte-required-field input:not([type="submit"]),
  .la-poste #laposte-required-field select,
  .la-poste #inscription select {
    display: block;
    width: 100%;
    height: calc(1.5em + 2rem + 2px);
    padding: 1rem 2.5rem;
    padding-left: 4rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: #495057;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #cbcdcf;
    border-radius: 0.6rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (max-width: 991.98px) {
      .la-poste #cross-bg-js,
      .la-poste #date_laposte,
      .la-poste #form-connexion-container input:not([type="submit"]),
      .la-poste #inscription input:not([type="submit"]),
      .la-poste #laposte-required-field input:not([type="submit"]),
      .la-poste #laposte-required-field select,
      .la-poste #inscription select {
        font-size: 1.2rem; } }
    .la-poste #cross-bg-js.placeholder,
    .la-poste #date_laposte.placeholder,
    .la-poste #form-connexion-container input:not([type="submit"]).placeholder,
    .la-poste #inscription input:not([type="submit"]).placeholder,
    .la-poste #laposte-required-field input:not([type="submit"]).placeholder,
    .la-poste #laposte-required-field select.placeholder,
    .la-poste #inscription select.placeholder {
      color: #495057;
      opacity: 0.9; }
  @media (max-width: 991.98px) {
    .la-poste #form-connexion-container input:not([type="submit"]),
    .la-poste #inscription input:not([type="submit"]),
    .la-poste #laposte-required-field input:not([type="submit"]),
    .la-poste #laposte-required-field select,
    .la-poste #inscription select {
      padding-left: 2rem; } }
  .la-poste #laposte-required-field select + label {
    display: none; }
  .la-poste #laposte-required-field select:valid + label {
    display: block; }
  .la-poste .col-search-localisation-laposte i,
  .la-poste .col-search-horaire-laposte i {
    color: #858585;
    font-size: 25px;
    position: absolute;
    top: 9px;
    left: 27px; }
  .la-poste #inscription label {
    cursor: pointer; }
  .la-poste #inscription #lbl-check-read-contrat {
    font-family: 'CircularStd';
    letter-spacing: normal; }
  .la-poste #lbl-laposte-pmr {
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    font-size: 14px; }
    @media (max-width: 767.98px) {
      .la-poste #lbl-laposte-pmr {
        width: 190px; } }
    .la-poste #lbl-laposte-pmr i {
      color: #3366ff; }
    .la-poste #lbl-laposte-pmr.custom-control-label::before, .la-poste #lbl-laposte-pmr.custom-control-label::after {
      top: 0.4rem;
      left: -3rem;
      width: 2rem;
      height: 2rem; }
      @media (max-width: 767.98px) {
        .la-poste #lbl-laposte-pmr.custom-control-label::before, .la-poste #lbl-laposte-pmr.custom-control-label::after {
          top: 1.5rem; } }
  .la-poste .info-neph-content {
    background-color: #F8F8F8;
    padding-top: 2rem;
    padding-bottom: 2rem; }
    .la-poste .info-neph-content a {
      text-decoration: underline; }
    .la-poste .info-neph-content i {
      color: #3366ff;
      font-size: 25px;
      padding-top: 2rem; }
  .la-poste .group-results-centres-laposte {
    display: inline-flex;
    margin: auto;
    margin-bottom: 2rem; }
  .la-poste .type-results-centres-laposte {
    border: 3px solid #3366ff;
    min-width: 100px;
    padding-top: 1px;
    padding-bottom: 0;
    height: 40px;
    color: #3366ff; }
  .la-poste .type-results-centres-laposte.btn-carte {
    border-radius: 40px 0 0 40px; }
  .la-poste .type-results-centres-laposte.btn-liste {
    border-radius: 0 40px 40px 0; }
  .la-poste .type-results-centres-laposte.btn-primary {
    color: #fff; }
  .la-poste #container-map {
    overflow: hidden;
    text-align: center; }
    .la-poste #container-map .englobe-map {
      border: 3px solid #3366ff;
      border-radius: 40px;
      margin-bottom: 20px; }
      .la-poste #container-map .englobe-map #map {
        border-radius: 40px;
        min-height: 600px; }
        @media (max-width: 1199.98px) {
          .la-poste #container-map .englobe-map #map {
            min-height: 400px; } }
        @media (max-width: 991.98px) {
          .la-poste #container-map .englobe-map #map {
            min-height: 400px; } }
        .la-poste #container-map .englobe-map #map.blur {
          filter: blur(0.2em);
          pointer-events: none; }
  .la-poste .session-bloc {
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    padding-top: 4px;
    min-width: 150px;
    max-width: 200px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 2rem; }
    .la-poste .session-bloc .horaire {
      color: #1c1d21;
      font-size: 20px;
      height: 20px; }
    .la-poste .session-bloc .places {
      padding-top: 1rem;
      padding-bottom: 0.5rem; }
    .la-poste .session-bloc .ellipse {
      width: 23px;
      height: 23px;
      border: solid 1px #bcbcbc;
      border-radius: 50%;
      background-color: var(--white);
      position: absolute;
      top: 4px;
      right: 4px; }
    .la-poste .session-bloc.active .ellipse {
      background-color: #3366FF; }
    .la-poste .session-bloc.active .ellipse:before {
      content: '\2713';
      display: inline-block;
      color: var(--white);
      position: absolute;
      top: -5px;
      right: 3px; }
      @media (max-width: 991.98px) {
        .la-poste .session-bloc.active .ellipse:before {
          top: 1px; } }
  .la-poste.in-elearning .session-bloc .ellipse:before {
    top: 0;
    right: 4px; }
  .la-poste.in-elearning #lbl-laposte-pmr.custom-control-label::before, .la-poste.in-elearning #lbl-laposte-pmr.custom-control-label::after {
    top: -0.3rem; }
  .la-poste .infos-laposte {
    padding-bottom: 6rem; }
  .la-poste .centre-laposte {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 2rem;
    padding: 10px 20px 10px 30px;
    border-bottom: 1px solid #d9dade;
    text-align: left;
    border-radius: 40px;
    box-shadow: 0 15px 30px 0 rgba(76, 76, 221, 0.23);
    width: 340px;
    font-size: 16px; }
    .la-poste .centre-laposte .intitule {
      color: #3366ff; }
      .la-poste .centre-laposte .intitule i {
        float: right;
        margin-top: 6px; }
    .la-poste .centre-laposte button {
      background-color: #fff;
      color: #3366ff;
      border: 1px solid #3366ff; }
    @media (max-width: 1199.98px) {
      .la-poste .centre-laposte {
        box-shadow: none;
        border-radius: 0;
        width: 90%;
        position: relative; }
        .la-poste .centre-laposte .choose {
          position: absolute;
          top: 40px;
          right: 40px; } }
    @media (max-width: 1199.98px) and (max-width: 767.98px) {
      .la-poste .centre-laposte .choose {
        position: relative;
        top: 0;
        right: 0; } }
    .la-poste .centre-laposte:hover, .la-poste .centre-laposte.chosen {
      background-color: #fff;
      cursor: auto; }
      .la-poste .centre-laposte:hover .adresse, .la-poste .centre-laposte.chosen .adresse {
        color: #423f3f; }
      .la-poste .centre-laposte:hover button, .la-poste .centre-laposte.chosen button {
        background-color: #3366ff;
        color: #fff;
        cursor: pointer; }
  .la-poste .btn-rounded-small {
    font-size: 12px;
    padding: 0.9rem 2.3rem; }
  .la-poste #zone_neph {
    margin-bottom: 0; }
  .la-poste .info_neph {
    margin-bottom: 18px; }
    .la-poste .info_neph a {
      font-size: 12px; }
  .la-poste #form-inscription-laposte {
    max-width: 650px;
    margin: auto; }
  .la-poste .form-finalisation-resa {
    max-width: 650px;
    margin: auto; }
  .la-poste #accordionWorkflow .card {
    border: 0;
    border-radius: 0;
    border-top: 0;
    border-bottom: 0;
    padding: 0; }
    .la-poste #accordionWorkflow .card:first-child {
      border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .la-poste #accordionWorkflow .card .collapse {
      border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .la-poste #accordionWorkflow .card-header {
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 0.75rem 1.25rem; }
    .la-poste #accordionWorkflow .card-header .ellipse {
      background: url(/img/partenaire/la_poste/la-poste-icon-counter.png) no-repeat scroll;
      background-size: 30px;
      background-position: center;
      width: 30px;
      height: 30px;
      margin-left: 2rem;
      float: left;
      text-align: center;
      margin-top: 12px;
      padding-top: 3px;
      padding-left: 1px; }
      @media (max-width: 991.98px) {
        .la-poste #accordionWorkflow .card-header .ellipse {
          padding-top: 5px; } }
    .la-poste #accordionWorkflow .card-header button {
      text-transform: initial; }
      .la-poste #accordionWorkflow .card-header button:focus {
        box-shadow: none; }
  @media (max-width: 767.98px) {
    .la-poste #accordionWorkflow .card-body {
      padding: 0px; } }
  .la-poste #accordionFAQ .card {
    border: 0; }
    .la-poste #accordionFAQ .card .card-header {
      background-color: #fff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
    .la-poste #accordionFAQ .card button {
      text-transform: initial;
      text-align: left;
      width: 100%;
      position: relative; }
      .la-poste #accordionFAQ .card button:focus {
        box-shadow: none; }
    .la-poste #accordionFAQ .card button:before {
      border-style: solid;
      border-width: 0.25em 0.25em 0 0;
      content: '';
      display: inline-block;
      height: 12px;
      position: absolute;
      vertical-align: top;
      width: 12px;
      right: 1rem;
      top: 21px;
      transform: rotate(135deg); }
    .la-poste #accordionFAQ .card button.collapsed:before {
      transform: rotate(45deg); }
  .la-poste .infos-resa-finish {
    background-color: #3366ff;
    color: white;
    border-radius: 40px;
    max-width: 800px; }
  .la-poste .container-fluid, .la-poste .container-xl {
    padding-top: 0 !important; }
  .la-poste .floating-action-button-wrapper {
    padding-bottom: 10px; }
    .la-poste .floating-action-button-wrapper input {
      margin-bottom: 0px !important; }

.smart-app-banner {
  transition-duration: 500ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  background: white;
  height: 65px;
  top: 0;
  z-index: 10000;
  font-size: 1.8rem; }
  .smart-app-banner img {
    height: 45px;
    width: 45px; }
  .smart-app-banner span {
    font-size: 13px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    text-align: left;
    color: #222529;
    font-family: 'CircularStd'; }
  .smart-app-banner a {
    padding: 10px 15px;
    font-size: 1.4rem;
    text-transform: initial;
    font-weight: 700;
    font-family: CircularStd; }
  .smart-app-banner.secondary {
    background: #380098 !important;
    color: white; }
    .smart-app-banner.secondary span {
      color: white !important; }
    .smart-app-banner.secondary a {
      color: #212529;
      background-color: #edff00;
      border-color: #edff00; }

.fz-11 {
  font-size: 1.1rem !important; }

.fz-12 {
  font-size: 1.2rem !important; }

.fz-14 {
  font-size: 1.4rem !important; }
  @media (max-width: 1200px) {
    .fz-14 {
      font-size: calc(1.265rem + 0.18vw)  !important; } }
.fz-16 {
  font-size: 1.6rem !important; }
  @media (max-width: 1200px) {
    .fz-16 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
.fz-18 {
  font-size: 1.8rem !important; }
  @media (max-width: 1200px) {
    .fz-18 {
      font-size: calc(1.305rem + 0.66vw)  !important; } }
.fz-20 {
  font-size: 2rem !important; }
  @media (max-width: 1200px) {
    .fz-20 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
.fz-22 {
  font-size: 2.2rem !important; }
  @media (max-width: 1200px) {
    .fz-22 {
      font-size: calc(1.345rem + 1.14vw)  !important; } }
.fz-28 {
  font-size: 2.8rem !important; }
  @media (max-width: 1200px) {
    .fz-28 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
.fz-h1 {
  font-size: 4rem !important; }
  @media (max-width: 1200px) {
    .fz-h1 {
      font-size: calc(1.525rem + 3.3vw)  !important; } }
.fz-h2 {
  font-size: 3.2rem !important; }
  @media (max-width: 1200px) {
    .fz-h2 {
      font-size: calc(1.445rem + 2.34vw)  !important; } }
.fz-h3 {
  font-size: 2.8rem !important; }
  @media (max-width: 1200px) {
    .fz-h3 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
.fz-h4 {
  font-size: 2.4rem !important; }
  @media (max-width: 1200px) {
    .fz-h4 {
      font-size: calc(1.365rem + 1.38vw)  !important; } }
.fz-h5 {
  font-size: 2rem !important; }
  @media (max-width: 1200px) {
    .fz-h5 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
.fz-h6 {
  font-size: 1.6rem !important; }
  @media (max-width: 1200px) {
    .fz-h6 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-11 {
    font-size: 1.1rem !important; }
  .fz-sm-12 {
    font-size: 1.2rem !important; }
  .fz-sm-14 {
    font-size: 1.4rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-14 {
      font-size: calc(1.265rem + 0.18vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-16 {
    font-size: 1.6rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-16 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-18 {
    font-size: 1.8rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-18 {
      font-size: calc(1.305rem + 0.66vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-20 {
    font-size: 2rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-20 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-22 {
    font-size: 2.2rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-22 {
      font-size: calc(1.345rem + 1.14vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-28 {
    font-size: 2.8rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-28 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-h1 {
    font-size: 4rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-h1 {
      font-size: calc(1.525rem + 3.3vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-h2 {
    font-size: 3.2rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-h2 {
      font-size: calc(1.445rem + 2.34vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-h3 {
    font-size: 2.8rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-h3 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-h4 {
    font-size: 2.4rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-h4 {
      font-size: calc(1.365rem + 1.38vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-h5 {
    font-size: 2rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-h5 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 576px) {
  .fz-sm-h6 {
    font-size: 1.6rem !important; } }
  @media (min-width: 576px) and (max-width: 1200px) {
    .fz-sm-h6 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-11 {
    font-size: 1.1rem !important; }
  .fz-md-12 {
    font-size: 1.2rem !important; }
  .fz-md-14 {
    font-size: 1.4rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-14 {
      font-size: calc(1.265rem + 0.18vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-16 {
    font-size: 1.6rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-16 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-18 {
    font-size: 1.8rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-18 {
      font-size: calc(1.305rem + 0.66vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-20 {
    font-size: 2rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-20 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-22 {
    font-size: 2.2rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-22 {
      font-size: calc(1.345rem + 1.14vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-28 {
    font-size: 2.8rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-28 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-h1 {
    font-size: 4rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-h1 {
      font-size: calc(1.525rem + 3.3vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-h2 {
    font-size: 3.2rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-h2 {
      font-size: calc(1.445rem + 2.34vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-h3 {
    font-size: 2.8rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-h3 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-h4 {
    font-size: 2.4rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-h4 {
      font-size: calc(1.365rem + 1.38vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-h5 {
    font-size: 2rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-h5 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 768px) {
  .fz-md-h6 {
    font-size: 1.6rem !important; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .fz-md-h6 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-11 {
    font-size: 1.1rem !important; }
  .fz-lg-12 {
    font-size: 1.2rem !important; }
  .fz-lg-14 {
    font-size: 1.4rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-14 {
      font-size: calc(1.265rem + 0.18vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-16 {
    font-size: 1.6rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-16 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-18 {
    font-size: 1.8rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-18 {
      font-size: calc(1.305rem + 0.66vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-20 {
    font-size: 2rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-20 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-22 {
    font-size: 2.2rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-22 {
      font-size: calc(1.345rem + 1.14vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-28 {
    font-size: 2.8rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-28 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-h1 {
    font-size: 4rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-h1 {
      font-size: calc(1.525rem + 3.3vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-h2 {
    font-size: 3.2rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-h2 {
      font-size: calc(1.445rem + 2.34vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-h3 {
    font-size: 2.8rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-h3 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-h4 {
    font-size: 2.4rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-h4 {
      font-size: calc(1.365rem + 1.38vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-h5 {
    font-size: 2rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-h5 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 992px) {
  .fz-lg-h6 {
    font-size: 1.6rem !important; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .fz-lg-h6 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-11 {
    font-size: 1.1rem !important; }
  .fz-xl-12 {
    font-size: 1.2rem !important; }
  .fz-xl-14 {
    font-size: 1.4rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-14 {
      font-size: calc(1.265rem + 0.18vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-16 {
    font-size: 1.6rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-16 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-18 {
    font-size: 1.8rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-18 {
      font-size: calc(1.305rem + 0.66vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-20 {
    font-size: 2rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-20 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-22 {
    font-size: 2.2rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-22 {
      font-size: calc(1.345rem + 1.14vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-28 {
    font-size: 2.8rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-28 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-h1 {
    font-size: 4rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-h1 {
      font-size: calc(1.525rem + 3.3vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-h2 {
    font-size: 3.2rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-h2 {
      font-size: calc(1.445rem + 2.34vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-h3 {
    font-size: 2.8rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-h3 {
      font-size: calc(1.405rem + 1.86vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-h4 {
    font-size: 2.4rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-h4 {
      font-size: calc(1.365rem + 1.38vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-h5 {
    font-size: 2rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-h5 {
      font-size: calc(1.325rem + 0.9vw)  !important; } }
@media (min-width: 1200px) {
  .fz-xl-h6 {
    font-size: 1.6rem !important; } }
  @media (min-width: 1200px) and (max-width: 1200px) {
    .fz-xl-h6 {
      font-size: calc(1.285rem + 0.42vw)  !important; } }
/*!
 * Bootstrap v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #380099;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #edff00;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #3366ff;
  --secondary: #edff00;
  --success: #5ec997;
  --info: #00e8ff;
  --warning: #edff00;
  --danger: #db2727;
  --light: white;
  --lightest: #fff;
  --dark: #423f3f;
  --darker: #212529;
  --dark-primary: #380098;
  --purple: #380099;
  --charcoal-grey: #4b4e50;
  --light-grey: #f3f3f3;
  --brown-grey: #9f9f9f;
  --dark-grey: #423f3f;
  --stych-grey: #C7C4BA;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; }
  @media (max-width: 1200px) {
    body {
      font-size: calc(1.285rem + 0.42vw) ; } }
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #3366ff;
  text-decoration: none;
  background-color: transparent; }
  a:hover {
    color: #0039e6;
    text-decoration: underline; }

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none; }

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

svg {
  overflow: hidden;
  vertical-align: middle; }

table {
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

label {
  display: inline-block;
  margin-bottom: 0.5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }
  @media (max-width: 1200px) {
    legend {
      font-size: calc(1.275rem + 0.3vw) ; } }
progress {
  vertical-align: baseline; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

summary {
  display: list-item;
  cursor: pointer; }

template {
  display: none; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2; }

h1, .h1 {
  font-size: 4rem; }
  @media (max-width: 1200px) {
    h1, .h1 {
      font-size: calc(1.525rem + 3.3vw) ; } }
h2, .h2 {
  font-size: 3.2rem; }
  @media (max-width: 1200px) {
    h2, .h2 {
      font-size: calc(1.445rem + 2.34vw) ; } }
h3, .h3 {
  font-size: 2.8rem; }
  @media (max-width: 1200px) {
    h3, .h3 {
      font-size: calc(1.405rem + 1.86vw) ; } }
h4, .h4 {
  font-size: 2.4rem; }
  @media (max-width: 1200px) {
    h4, .h4 {
      font-size: calc(1.365rem + 1.38vw) ; } }
h5, .h5 {
  font-size: 2rem; }
  @media (max-width: 1200px) {
    h5, .h5 {
      font-size: calc(1.325rem + 0.9vw) ; } }
h6, .h6 {
  font-size: 1.6rem; }
  @media (max-width: 1200px) {
    h6, .h6 {
      font-size: calc(1.285rem + 0.42vw) ; } }
.lead {
  font-size: 2rem;
  font-weight: 300; }
  @media (max-width: 1200px) {
    .lead {
      font-size: calc(1.325rem + 0.9vw) ; } }
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2; }
  @media (max-width: 1200px) {
    .display-1 {
      font-size: calc(1.725rem + 5.7vw) ; } }
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2; }
  @media (max-width: 1200px) {
    .display-2 {
      font-size: calc(1.675rem + 5.1vw) ; } }
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2; }
  @media (max-width: 1200px) {
    .display-3 {
      font-size: calc(1.575rem + 3.9vw) ; } }
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2; }
  @media (max-width: 1200px) {
    .display-4 {
      font-size: calc(1.475rem + 2.7vw) ; } }
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: 400; }

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 2rem; }
  @media (max-width: 1200px) {
    .blockquote {
      font-size: calc(1.325rem + 0.9vw) ; } }
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.3rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 90%;
  color: #6c757d; }

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem; }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700; }

pre {
  display: block;
  font-size: 87.5%;
  color: #212529; }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container,
.container-fluid,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1365px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.3333333333%; }
  .offset-sm-2 {
    margin-left: 16.6666666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.3333333333%; }
  .offset-sm-5 {
    margin-left: 41.6666666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.3333333333%; }
  .offset-sm-8 {
    margin-left: 66.6666666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.3333333333%; }
  .offset-sm-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.3333333333%; }
  .offset-md-2 {
    margin-left: 16.6666666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.3333333333%; }
  .offset-md-5 {
    margin-left: 41.6666666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.3333333333%; }
  .offset-md-8 {
    margin-left: 66.6666666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.3333333333%; }
  .offset-md-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.3333333333%; }
  .offset-lg-2 {
    margin-left: 16.6666666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.3333333333%; }
  .offset-lg-5 {
    margin-left: 41.6666666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.3333333333%; }
  .offset-lg-8 {
    margin-left: 66.6666666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.3333333333%; }
  .offset-lg-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.3333333333%; }
  .offset-xl-2 {
    margin-left: 16.6666666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.3333333333%; }
  .offset-xl-5 {
    margin-left: 41.6666666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.3333333333%; }
  .offset-xl-8 {
    margin-left: 66.6666666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.3333333333%; }
  .offset-xl-11 {
    margin-left: 91.6666666667%; } }

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6; }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6; }

.table-sm th,
.table-sm td {
  padding: 0.3rem; }

.table-bordered {
  border: 1px solid #dee2e6; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05); }

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075); }

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c6d4ff; }

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #95afff; }

.table-hover .table-primary:hover {
  background-color: #adc1ff; }
  .table-hover .table-primary:hover > td,
  .table-hover .table-primary:hover > th {
    background-color: #adc1ff; }

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #faffb8; }

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #f6ff7a; }

.table-hover .table-secondary:hover {
  background-color: #f8ff9f; }
  .table-hover .table-secondary:hover > td,
  .table-hover .table-secondary:hover > th {
    background-color: #f8ff9f; }

.table-success,
.table-success > th,
.table-success > td {
  background-color: #d2f0e2; }

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #abe3c9; }

.table-hover .table-success:hover {
  background-color: #bfead6; }
  .table-hover .table-success:hover > td,
  .table-hover .table-success:hover > th {
    background-color: #bfead6; }

.table-info,
.table-info > th,
.table-info > td {
  background-color: #b8f9ff; }

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #7af3ff; }

.table-hover .table-info:hover {
  background-color: #9ff7ff; }
  .table-hover .table-info:hover > td,
  .table-hover .table-info:hover > th {
    background-color: #9ff7ff; }

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #faffb8; }

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #f6ff7a; }

.table-hover .table-warning:hover {
  background-color: #f8ff9f; }
  .table-hover .table-warning:hover > td,
  .table-hover .table-warning:hover > th {
    background-color: #f8ff9f; }

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c3c3; }

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ec8f8f; }

.table-hover .table-danger:hover {
  background-color: #f1adad; }
  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #f1adad; }

.table-light,
.table-light > th,
.table-light > td {
  background-color: white; }

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: white; }

.table-hover .table-light:hover {
  background-color: #f2f2f2; }
  .table-hover .table-light:hover > td,
  .table-hover .table-light:hover > th {
    background-color: #f2f2f2; }

.table-lightest,
.table-lightest > th,
.table-lightest > td {
  background-color: white; }

.table-lightest th,
.table-lightest td,
.table-lightest thead th,
.table-lightest tbody + tbody {
  border-color: white; }

.table-hover .table-lightest:hover {
  background-color: #f2f2f2; }
  .table-hover .table-lightest:hover > td,
  .table-hover .table-lightest:hover > th {
    background-color: #f2f2f2; }

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #cac9c9; }

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #9d9b9b; }

.table-hover .table-dark:hover {
  background-color: #bdbcbc; }
  .table-hover .table-dark:hover > td,
  .table-hover .table-dark:hover > th {
    background-color: #bdbcbc; }

.table-darker,
.table-darker > th,
.table-darker > td {
  background-color: #c1c2c3; }

.table-darker th,
.table-darker td,
.table-darker thead th,
.table-darker tbody + tbody {
  border-color: #8c8e90; }

.table-hover .table-darker:hover {
  background-color: #b4b5b6; }
  .table-hover .table-darker:hover > td,
  .table-hover .table-darker:hover > th {
    background-color: #b4b5b6; }

.table-dark-primary,
.table-dark-primary > th,
.table-dark-primary > td {
  background-color: #c7b8e2; }

.table-dark-primary th,
.table-dark-primary td,
.table-dark-primary thead th,
.table-dark-primary tbody + tbody {
  border-color: #987ac9; }

.table-hover .table-dark-primary:hover {
  background-color: #b9a6db; }
  .table-hover .table-dark-primary:hover > td,
  .table-hover .table-dark-primary:hover > th {
    background-color: #b9a6db; }

.table-purple,
.table-purple > th,
.table-purple > td {
  background-color: #c7b8e2; }

.table-purple th,
.table-purple td,
.table-purple thead th,
.table-purple tbody + tbody {
  border-color: #987aca; }

.table-hover .table-purple:hover {
  background-color: #b9a6db; }
  .table-hover .table-purple:hover > td,
  .table-hover .table-purple:hover > th {
    background-color: #b9a6db; }

.table-charcoal-grey,
.table-charcoal-grey > th,
.table-charcoal-grey > td {
  background-color: #cdcdce; }

.table-charcoal-grey th,
.table-charcoal-grey td,
.table-charcoal-grey thead th,
.table-charcoal-grey tbody + tbody {
  border-color: #a1a3a4; }

.table-hover .table-charcoal-grey:hover {
  background-color: #c0c0c1; }
  .table-hover .table-charcoal-grey:hover > td,
  .table-hover .table-charcoal-grey:hover > th {
    background-color: #c0c0c1; }

.table-light-grey,
.table-light-grey > th,
.table-light-grey > td {
  background-color: #fcfcfc; }

.table-light-grey th,
.table-light-grey td,
.table-light-grey thead th,
.table-light-grey tbody + tbody {
  border-color: #f9f9f9; }

.table-hover .table-light-grey:hover {
  background-color: #efefef; }
  .table-hover .table-light-grey:hover > td,
  .table-hover .table-light-grey:hover > th {
    background-color: #efefef; }

.table-brown-grey,
.table-brown-grey > th,
.table-brown-grey > td {
  background-color: #e4e4e4; }

.table-brown-grey th,
.table-brown-grey td,
.table-brown-grey thead th,
.table-brown-grey tbody + tbody {
  border-color: #cdcdcd; }

.table-hover .table-brown-grey:hover {
  background-color: #d7d7d7; }
  .table-hover .table-brown-grey:hover > td,
  .table-hover .table-brown-grey:hover > th {
    background-color: #d7d7d7; }

.table-dark-grey,
.table-dark-grey > th,
.table-dark-grey > td {
  background-color: #cac9c9; }

.table-dark-grey th,
.table-dark-grey td,
.table-dark-grey thead th,
.table-dark-grey tbody + tbody {
  border-color: #9d9b9b; }

.table-hover .table-dark-grey:hover {
  background-color: #bdbcbc; }
  .table-hover .table-dark-grey:hover > td,
  .table-hover .table-dark-grey:hover > th {
    background-color: #bdbcbc; }

.table-stych-grey,
.table-stych-grey > th,
.table-stych-grey > td {
  background-color: #efeeec; }

.table-stych-grey th,
.table-stych-grey td,
.table-stych-grey thead th,
.table-stych-grey tbody + tbody {
  border-color: #e2e0db; }

.table-hover .table-stych-grey:hover {
  background-color: #e3e2de; }
  .table-hover .table-stych-grey:hover > td,
  .table-hover .table-stych-grey:hover > th {
    background-color: #e3e2de; }

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075); }

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075); }
  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075); }

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55; }

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6; }

.table-dark {
  color: #fff;
  background-color: #343a40; }
  .table-dark th,
  .table-dark td,
  .table-dark thead th {
    border-color: #454d55; }
  .table-dark.table-bordered {
    border: 0; }
  .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05); }
  .table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.075); }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-sm > .table-bordered {
      border: 0; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-md > .table-bordered {
      border: 0; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-lg > .table-bordered {
      border: 0; } }

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-xl > .table-bordered {
      border: 0; } }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .table-responsive > .table-bordered {
    border: 0; }

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 3rem + 2px);
  padding: 1.5rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (max-width: 1200px) {
    .form-control {
      font-size: calc(1.285rem + 0.42vw) ; } }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057; }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #b3c6ff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
  .form-control::placeholder {
    color: #6c757d;
    text-transform: none;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; }

input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  appearance: none; }

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff; }

.form-control-file,
.form-control-range {
  display: block;
  width: 100%; }

.col-form-label {
  padding-top: calc(1.5rem + 1px);
  padding-bottom: calc(1.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5; }

.col-form-label-lg {
  padding-top: calc(1.9rem + 1px);
  padding-bottom: calc(1.9rem + 1px);
  font-size: 2rem;
  line-height: 1.5; }
  @media (max-width: 1200px) {
    .col-form-label-lg {
      font-size: calc(1.325rem + 0.9vw) ; } }
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 1.4rem;
  line-height: 1.5; }
  @media (max-width: 1200px) {
    .col-form-label-sm {
      font-size: calc(1.265rem + 0.18vw) ; } }
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 1.5rem 0;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  @media (max-width: 1200px) {
    .form-control-plaintext {
      font-size: calc(1.285rem + 0.42vw) ; } }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 0.2rem; }
  @media (max-width: 1200px) {
    .form-control-sm {
      font-size: calc(1.265rem + 0.18vw) ; } }
.form-control-lg {
  height: calc(1.5em + 3.8rem + 2px);
  padding: 1.9rem 4.3rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 3rem; }
  @media (max-width: 1200px) {
    .form-control-lg {
      font-size: calc(1.325rem + 0.9vw) ; } }
select.form-control[size], select.form-control[multiple] {
  height: auto; }

textarea.form-control {
  height: auto; }

.form-group {
  margin-bottom: 1rem; }

.form-text {
  display: block;
  margin-top: 0.25rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }
  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem; }

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem; }
  .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
    color: #6c757d; }

.form-check-label {
  margin-bottom: 0; }

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem; }
  .form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #5ec997; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(94, 201, 151, 0.9);
  border-radius: 0.3rem; }
  @media (max-width: 1200px) {
    .valid-tooltip {
      font-size: calc(1.265rem + 0.18vw) ; } }
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #5ec997;
  padding-right: calc(1.5em + 3rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%235ec997' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.75rem) center;
  background-size: calc(0.75em + 1.5rem) calc(0.75em + 1.5rem); }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #5ec997;
    box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.25); }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 3rem);
  background-position: top calc(0.375em + 0.75rem) right calc(0.375em + 0.75rem); }

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #5ec997;
  padding-right: calc(0.75em + 6.45rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 3.2rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%235ec997' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 4.2rem/calc(0.75em + 1.5rem) calc(0.75em + 1.5rem); }
  .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #5ec997;
    box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.25); }

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #5ec997; }

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #5ec997; }
  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #5ec997; }

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #84d6b0;
  background-color: #84d6b0; }

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.25); }

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #5ec997; }

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #5ec997; }

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #5ec997;
  box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.25); }

.invalid-feedback, .la-poste .form-error {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #db2727; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(219, 39, 39, 0.9);
  border-radius: 0.3rem; }
  @media (max-width: 1200px) {
    .invalid-tooltip {
      font-size: calc(1.265rem + 0.18vw) ; } }
.was-validated :invalid ~ .invalid-feedback, .was-validated .la-poste :invalid ~ .form-error, .la-poste .was-validated :invalid ~ .form-error,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.la-poste .is-invalid ~ .form-error,
.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #db2727;
  padding-right: calc(1.5em + 3rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23db2727' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23db2727' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.75rem) center;
  background-size: calc(0.75em + 1.5rem) calc(0.75em + 1.5rem); }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #db2727;
    box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.25); }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 3rem);
  background-position: top calc(0.375em + 0.75rem) right calc(0.375em + 0.75rem); }

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #db2727;
  padding-right: calc(0.75em + 6.45rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 3.2rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23db2727' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23db2727' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 4.2rem/calc(0.75em + 1.5rem) calc(0.75em + 1.5rem); }
  .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #db2727;
    box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.25); }

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #db2727; }

.was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .la-poste .form-check-input:invalid ~ .form-error, .la-poste .was-validated .form-check-input:invalid ~ .form-error,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .la-poste .form-check-input.is-invalid ~ .form-error,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #db2727; }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #db2727; }

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e25353;
  background-color: #e25353; }

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.25); }

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #db2727; }

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #db2727; }

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #db2727;
  box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.25); }

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center; }
  .form-inline .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .form-inline label {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0; }
    .form-inline .form-group {
      display: flex;
      flex: 0 0 auto;
      flex-flow: row wrap;
      align-items: center;
      margin-bottom: 0; }
    .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .form-inline .form-control-plaintext {
      display: inline-block; }
    .form-inline .input-group,
    .form-inline .custom-select {
      width: auto; }
    .form-inline .form-check {
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      padding-left: 0; }
    .form-inline .form-check-input {
      position: relative;
      flex-shrink: 0;
      margin-top: 0;
      margin-right: 0.25rem;
      margin-left: 0; }
    .form-inline .custom-control {
      align-items: center;
      justify-content: center; }
    .form-inline .custom-control-label {
      margin-bottom: 0; } }
.btn, .nav-tabs .nav-link, .msg_container .btn-cta {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 1.5rem 3.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (max-width: 1200px) {
    .btn, .nav-tabs .nav-link, .msg_container .btn-cta {
      font-size: calc(1.285rem + 0.42vw) ; } }
  @media (prefers-reduced-motion: reduce) {
    .btn, .nav-tabs .nav-link, .msg_container .btn-cta {
      transition: none; } }
  .btn:hover, .nav-tabs .nav-link:hover, .msg_container .btn-cta:hover {
    color: #212529;
    text-decoration: none; }
  .btn:focus, .nav-tabs .nav-link:focus, .msg_container .btn-cta:focus, .btn.focus, .nav-tabs .focus.nav-link, .msg_container .focus.btn-cta {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
  .btn.disabled, .nav-tabs .disabled.nav-link, .msg_container .disabled.btn-cta, .btn:disabled, .nav-tabs .nav-link:disabled, .msg_container .btn-cta:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled), .nav-tabs .nav-link:not(:disabled):not(.disabled), .msg_container .btn-cta:not(:disabled):not(.disabled) {
    cursor: pointer; }

a.btn.disabled, .nav-tabs a.disabled.nav-link, .msg_container a.disabled.btn-cta,
fieldset:disabled a.btn,
fieldset:disabled .nav-tabs a.nav-link,
.nav-tabs fieldset:disabled a.nav-link,
fieldset:disabled .msg_container a.btn-cta,
.msg_container fieldset:disabled a.btn-cta {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #3366ff;
  border-color: #3366ff; }
  .btn-primary:hover {
    color: #fff;
    background-color: #0d49ff;
    border-color: #0040ff; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0d49ff;
    border-color: #0040ff;
    box-shadow: 0 0 0 0.2rem rgba(82, 125, 255, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #3366ff;
    border-color: #3366ff; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0040ff;
    border-color: #003df2; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(82, 125, 255, 0.5); }

.btn-secondary {
  color: #212529;
  background-color: #edff00;
  border-color: #edff00; }
  .btn-secondary:hover {
    color: #212529;
    background-color: #c9d900;
    border-color: #becc00; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #212529;
    background-color: #c9d900;
    border-color: #becc00;
    box-shadow: 0 0 0 0.2rem rgba(206, 222, 6, 0.5); }
  .btn-secondary.disabled, .btn-secondary:disabled {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #212529;
    background-color: #becc00;
    border-color: #b2bf00; }
    .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(206, 222, 6, 0.5); }

.btn-success {
  color: #212529;
  background-color: #5ec997;
  border-color: #5ec997; }
  .btn-success:hover {
    color: #fff;
    background-color: #41bf84;
    border-color: #3db77e; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #41bf84;
    border-color: #3db77e;
    box-shadow: 0 0 0 0.2rem rgba(85, 176, 135, 0.5); }
  .btn-success.disabled, .btn-success:disabled {
    color: #212529;
    background-color: #5ec997;
    border-color: #5ec997; }
  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #3db77e;
    border-color: #3aad77; }
    .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(85, 176, 135, 0.5); }

.btn-info {
  color: #212529;
  background-color: #00e8ff;
  border-color: #00e8ff; }
  .btn-info:hover {
    color: #fff;
    background-color: #00c5d9;
    border-color: #00bacc; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #00c5d9;
    border-color: #00bacc;
    box-shadow: 0 0 0 0.2rem rgba(5, 203, 223, 0.5); }
  .btn-info.disabled, .btn-info:disabled {
    color: #212529;
    background-color: #00e8ff;
    border-color: #00e8ff; }
  .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #00bacc;
    border-color: #00aebf; }
    .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(5, 203, 223, 0.5); }

.btn-warning {
  color: #212529;
  background-color: #edff00;
  border-color: #edff00; }
  .btn-warning:hover {
    color: #212529;
    background-color: #c9d900;
    border-color: #becc00; }
  .btn-warning:focus, .btn-warning.focus {
    color: #212529;
    background-color: #c9d900;
    border-color: #becc00;
    box-shadow: 0 0 0 0.2rem rgba(206, 222, 6, 0.5); }
  .btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
  .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #becc00;
    border-color: #b2bf00; }
    .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(206, 222, 6, 0.5); }

.btn-danger {
  color: #fff;
  background-color: #db2727;
  border-color: #db2727; }
  .btn-danger:hover {
    color: #fff;
    background-color: #bc1f1f;
    border-color: #b11e1e; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #bc1f1f;
    border-color: #b11e1e;
    box-shadow: 0 0 0 0.2rem rgba(224, 71, 71, 0.5); }
  .btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #db2727;
    border-color: #db2727; }
  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b11e1e;
    border-color: #a71c1c; }
    .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(224, 71, 71, 0.5); }

.btn-light {
  color: #212529;
  background-color: white;
  border-color: white; }
  .btn-light:hover {
    color: #212529;
    background-color: #ececec;
    border-color: #e6e6e6; }
  .btn-light:focus, .btn-light.focus {
    color: #212529;
    background-color: #ececec;
    border-color: #e6e6e6;
    box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
  .btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: white;
    border-color: white; }
  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #e6e6e6;
    border-color: #dfdfdf; }
    .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }

.btn-lightest {
  color: #212529;
  background-color: #fff;
  border-color: #fff; }
  .btn-lightest:hover {
    color: #212529;
    background-color: #ececec;
    border-color: #e6e6e6; }
  .btn-lightest:focus, .btn-lightest.focus {
    color: #212529;
    background-color: #ececec;
    border-color: #e6e6e6;
    box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }
  .btn-lightest.disabled, .btn-lightest:disabled {
    color: #212529;
    background-color: #fff;
    border-color: #fff; }
  .btn-lightest:not(:disabled):not(.disabled):active, .btn-lightest:not(:disabled):not(.disabled).active, .show > .btn-lightest.dropdown-toggle {
    color: #212529;
    background-color: #e6e6e6;
    border-color: #dfdfdf; }
    .btn-lightest:not(:disabled):not(.disabled):active:focus, .btn-lightest:not(:disabled):not(.disabled).active:focus, .show > .btn-lightest.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5); }

.btn-dark {
  color: #fff;
  background-color: #423f3f;
  border-color: #423f3f; }
  .btn-dark:hover {
    color: #fff;
    background-color: #2e2c2c;
    border-color: #282626; }
  .btn-dark:focus, .btn-dark.focus {
    color: #fff;
    background-color: #2e2c2c;
    border-color: #282626;
    box-shadow: 0 0 0 0.2rem rgba(94, 92, 92, 0.5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #423f3f;
    border-color: #423f3f; }
  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #282626;
    border-color: #212020; }
    .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(94, 92, 92, 0.5); }

.btn-darker {
  color: #fff;
  background-color: #212529;
  border-color: #212529; }
  .btn-darker:hover {
    color: #fff;
    background-color: #101214;
    border-color: #0a0c0d; }
  .btn-darker:focus, .btn-darker.focus {
    color: #fff;
    background-color: #101214;
    border-color: #0a0c0d;
    box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5); }
  .btn-darker.disabled, .btn-darker:disabled {
    color: #fff;
    background-color: #212529;
    border-color: #212529; }
  .btn-darker:not(:disabled):not(.disabled):active, .btn-darker:not(:disabled):not(.disabled).active, .show > .btn-darker.dropdown-toggle {
    color: #fff;
    background-color: #0a0c0d;
    border-color: #050506; }
    .btn-darker:not(:disabled):not(.disabled):active:focus, .btn-darker:not(:disabled):not(.disabled).active:focus, .show > .btn-darker.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5); }

.btn-dark-primary {
  color: #fff;
  background-color: #380098;
  border-color: #380098; }
  .btn-dark-primary:hover {
    color: #fff;
    background-color: #2a0072;
    border-color: #250065; }
  .btn-dark-primary:focus, .btn-dark-primary.focus {
    color: #fff;
    background-color: #2a0072;
    border-color: #250065;
    box-shadow: 0 0 0 0.2rem rgba(86, 38, 167, 0.5); }
  .btn-dark-primary.disabled, .btn-dark-primary:disabled {
    color: #fff;
    background-color: #380098;
    border-color: #380098; }
  .btn-dark-primary:not(:disabled):not(.disabled):active, .btn-dark-primary:not(:disabled):not(.disabled).active, .show > .btn-dark-primary.dropdown-toggle {
    color: #fff;
    background-color: #250065;
    border-color: #210058; }
    .btn-dark-primary:not(:disabled):not(.disabled):active:focus, .btn-dark-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-dark-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(86, 38, 167, 0.5); }

.btn-purple {
  color: #fff;
  background-color: #380099;
  border-color: #380099; }
  .btn-purple:hover {
    color: #fff;
    background-color: #2a0073;
    border-color: #250066; }
  .btn-purple:focus, .btn-purple.focus {
    color: #fff;
    background-color: #2a0073;
    border-color: #250066;
    box-shadow: 0 0 0 0.2rem rgba(86, 38, 168, 0.5); }
  .btn-purple.disabled, .btn-purple:disabled {
    color: #fff;
    background-color: #380099;
    border-color: #380099; }
  .btn-purple:not(:disabled):not(.disabled):active, .btn-purple:not(:disabled):not(.disabled).active, .show > .btn-purple.dropdown-toggle {
    color: #fff;
    background-color: #250066;
    border-color: #210059; }
    .btn-purple:not(:disabled):not(.disabled):active:focus, .btn-purple:not(:disabled):not(.disabled).active:focus, .show > .btn-purple.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(86, 38, 168, 0.5); }

.btn-charcoal-grey {
  color: #fff;
  background-color: #4b4e50;
  border-color: #4b4e50; }
  .btn-charcoal-grey:hover {
    color: #fff;
    background-color: #383b3c;
    border-color: #323436; }
  .btn-charcoal-grey:focus, .btn-charcoal-grey.focus {
    color: #fff;
    background-color: #383b3c;
    border-color: #323436;
    box-shadow: 0 0 0 0.2rem rgba(102, 105, 106, 0.5); }
  .btn-charcoal-grey.disabled, .btn-charcoal-grey:disabled {
    color: #fff;
    background-color: #4b4e50;
    border-color: #4b4e50; }
  .btn-charcoal-grey:not(:disabled):not(.disabled):active, .btn-charcoal-grey:not(:disabled):not(.disabled).active, .show > .btn-charcoal-grey.dropdown-toggle {
    color: #fff;
    background-color: #323436;
    border-color: #2c2e2f; }
    .btn-charcoal-grey:not(:disabled):not(.disabled):active:focus, .btn-charcoal-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-charcoal-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(102, 105, 106, 0.5); }

.btn-light-grey {
  color: #212529;
  background-color: #f3f3f3;
  border-color: #f3f3f3; }
  .btn-light-grey:hover {
    color: #212529;
    background-color: #e0e0e0;
    border-color: #dadada; }
  .btn-light-grey:focus, .btn-light-grey.focus {
    color: #212529;
    background-color: #e0e0e0;
    border-color: #dadada;
    box-shadow: 0 0 0 0.2rem rgba(212, 212, 213, 0.5); }
  .btn-light-grey.disabled, .btn-light-grey:disabled {
    color: #212529;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
  .btn-light-grey:not(:disabled):not(.disabled):active, .btn-light-grey:not(:disabled):not(.disabled).active, .show > .btn-light-grey.dropdown-toggle {
    color: #212529;
    background-color: #dadada;
    border-color: lightgray; }
    .btn-light-grey:not(:disabled):not(.disabled):active:focus, .btn-light-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-light-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(212, 212, 213, 0.5); }

.btn-brown-grey {
  color: #212529;
  background-color: #9f9f9f;
  border-color: #9f9f9f; }
  .btn-brown-grey:hover {
    color: #fff;
    background-color: #8c8c8c;
    border-color: #868686; }
  .btn-brown-grey:focus, .btn-brown-grey.focus {
    color: #fff;
    background-color: #8c8c8c;
    border-color: #868686;
    box-shadow: 0 0 0 0.2rem rgba(140, 141, 141, 0.5); }
  .btn-brown-grey.disabled, .btn-brown-grey:disabled {
    color: #212529;
    background-color: #9f9f9f;
    border-color: #9f9f9f; }
  .btn-brown-grey:not(:disabled):not(.disabled):active, .btn-brown-grey:not(:disabled):not(.disabled).active, .show > .btn-brown-grey.dropdown-toggle {
    color: #fff;
    background-color: #868686;
    border-color: #7f7f7f; }
    .btn-brown-grey:not(:disabled):not(.disabled):active:focus, .btn-brown-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-brown-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(140, 141, 141, 0.5); }

.btn-dark-grey {
  color: #fff;
  background-color: #423f3f;
  border-color: #423f3f; }
  .btn-dark-grey:hover {
    color: #fff;
    background-color: #2e2c2c;
    border-color: #282626; }
  .btn-dark-grey:focus, .btn-dark-grey.focus {
    color: #fff;
    background-color: #2e2c2c;
    border-color: #282626;
    box-shadow: 0 0 0 0.2rem rgba(94, 92, 92, 0.5); }
  .btn-dark-grey.disabled, .btn-dark-grey:disabled {
    color: #fff;
    background-color: #423f3f;
    border-color: #423f3f; }
  .btn-dark-grey:not(:disabled):not(.disabled):active, .btn-dark-grey:not(:disabled):not(.disabled).active, .show > .btn-dark-grey.dropdown-toggle {
    color: #fff;
    background-color: #282626;
    border-color: #212020; }
    .btn-dark-grey:not(:disabled):not(.disabled):active:focus, .btn-dark-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-dark-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(94, 92, 92, 0.5); }

.btn-stych-grey {
  color: #212529;
  background-color: #C7C4BA;
  border-color: #C7C4BA; }
  .btn-stych-grey:hover {
    color: #212529;
    background-color: #b6b2a5;
    border-color: #b0ac9e; }
  .btn-stych-grey:focus, .btn-stych-grey.focus {
    color: #212529;
    background-color: #b6b2a5;
    border-color: #b0ac9e;
    box-shadow: 0 0 0 0.2rem rgba(174, 172, 164, 0.5); }
  .btn-stych-grey.disabled, .btn-stych-grey:disabled {
    color: #212529;
    background-color: #C7C4BA;
    border-color: #C7C4BA; }
  .btn-stych-grey:not(:disabled):not(.disabled):active, .btn-stych-grey:not(:disabled):not(.disabled).active, .show > .btn-stych-grey.dropdown-toggle {
    color: #212529;
    background-color: #b0ac9e;
    border-color: #aaa697; }
    .btn-stych-grey:not(:disabled):not(.disabled):active:focus, .btn-stych-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-stych-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(174, 172, 164, 0.5); }

.btn-outline-primary {
  color: #3366ff;
  border-color: #3366ff; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #3366ff;
    border-color: #3366ff; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #3366ff;
    background-color: transparent; }
  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #3366ff;
    border-color: #3366ff; }
    .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }

.btn-outline-secondary {
  color: #edff00;
  border-color: #edff00; }
  .btn-outline-secondary:hover {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(237, 255, 0, 0.5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #edff00;
    background-color: transparent; }
  .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
    .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(237, 255, 0, 0.5); }

.btn-outline-success {
  color: #5ec997;
  border-color: #5ec997; }
  .btn-outline-success:hover {
    color: #212529;
    background-color: #5ec997;
    border-color: #5ec997; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.5); }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #5ec997;
    background-color: transparent; }
  .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
    color: #212529;
    background-color: #5ec997;
    border-color: #5ec997; }
    .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.5); }

.btn-outline-info {
  color: #00e8ff;
  border-color: #00e8ff; }
  .btn-outline-info:hover {
    color: #212529;
    background-color: #00e8ff;
    border-color: #00e8ff; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 232, 255, 0.5); }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #00e8ff;
    background-color: transparent; }
  .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
    color: #212529;
    background-color: #00e8ff;
    border-color: #00e8ff; }
    .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(0, 232, 255, 0.5); }

.btn-outline-warning {
  color: #edff00;
  border-color: #edff00; }
  .btn-outline-warning:hover {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(237, 255, 0, 0.5); }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #edff00;
    background-color: transparent; }
  .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
    .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(237, 255, 0, 0.5); }

.btn-outline-danger {
  color: #db2727;
  border-color: #db2727; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #db2727;
    border-color: #db2727; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #db2727;
    background-color: transparent; }
  .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #db2727;
    border-color: #db2727; }
    .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.5); }

.btn-outline-light {
  color: white;
  border-color: white; }
  .btn-outline-light:hover {
    color: #212529;
    background-color: white;
    border-color: white; }
  .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: white;
    background-color: transparent; }
  .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: white;
    border-color: white; }
    .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }

.btn-outline-lightest {
  color: #fff;
  border-color: #fff; }
  .btn-outline-lightest:hover {
    color: #212529;
    background-color: #fff;
    border-color: #fff; }
  .btn-outline-lightest:focus, .btn-outline-lightest.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .btn-outline-lightest.disabled, .btn-outline-lightest:disabled {
    color: #fff;
    background-color: transparent; }
  .btn-outline-lightest:not(:disabled):not(.disabled):active, .btn-outline-lightest:not(:disabled):not(.disabled).active, .show > .btn-outline-lightest.dropdown-toggle {
    color: #212529;
    background-color: #fff;
    border-color: #fff; }
    .btn-outline-lightest:not(:disabled):not(.disabled):active:focus, .btn-outline-lightest:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lightest.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }

.btn-outline-dark {
  color: #423f3f;
  border-color: #423f3f; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #423f3f;
    border-color: #423f3f; }
  .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 63, 63, 0.5); }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #423f3f;
    background-color: transparent; }
  .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #423f3f;
    border-color: #423f3f; }
    .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(66, 63, 63, 0.5); }

.btn-outline-darker {
  color: #212529;
  border-color: #212529; }
  .btn-outline-darker:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529; }
  .btn-outline-darker:focus, .btn-outline-darker.focus {
    box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5); }
  .btn-outline-darker.disabled, .btn-outline-darker:disabled {
    color: #212529;
    background-color: transparent; }
  .btn-outline-darker:not(:disabled):not(.disabled):active, .btn-outline-darker:not(:disabled):not(.disabled).active, .show > .btn-outline-darker.dropdown-toggle {
    color: #fff;
    background-color: #212529;
    border-color: #212529; }
    .btn-outline-darker:not(:disabled):not(.disabled):active:focus, .btn-outline-darker:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darker.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5); }

.btn-outline-dark-primary {
  color: #380098;
  border-color: #380098; }
  .btn-outline-dark-primary:hover {
    color: #fff;
    background-color: #380098;
    border-color: #380098; }
  .btn-outline-dark-primary:focus, .btn-outline-dark-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(56, 0, 152, 0.5); }
  .btn-outline-dark-primary.disabled, .btn-outline-dark-primary:disabled {
    color: #380098;
    background-color: transparent; }
  .btn-outline-dark-primary:not(:disabled):not(.disabled):active, .btn-outline-dark-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-dark-primary.dropdown-toggle {
    color: #fff;
    background-color: #380098;
    border-color: #380098; }
    .btn-outline-dark-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-dark-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(56, 0, 152, 0.5); }

.btn-outline-purple {
  color: #380099;
  border-color: #380099; }
  .btn-outline-purple:hover {
    color: #fff;
    background-color: #380099;
    border-color: #380099; }
  .btn-outline-purple:focus, .btn-outline-purple.focus {
    box-shadow: 0 0 0 0.2rem rgba(56, 0, 153, 0.5); }
  .btn-outline-purple.disabled, .btn-outline-purple:disabled {
    color: #380099;
    background-color: transparent; }
  .btn-outline-purple:not(:disabled):not(.disabled):active, .btn-outline-purple:not(:disabled):not(.disabled).active, .show > .btn-outline-purple.dropdown-toggle {
    color: #fff;
    background-color: #380099;
    border-color: #380099; }
    .btn-outline-purple:not(:disabled):not(.disabled):active:focus, .btn-outline-purple:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-purple.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(56, 0, 153, 0.5); }

.btn-outline-charcoal-grey {
  color: #4b4e50;
  border-color: #4b4e50; }
  .btn-outline-charcoal-grey:hover {
    color: #fff;
    background-color: #4b4e50;
    border-color: #4b4e50; }
  .btn-outline-charcoal-grey:focus, .btn-outline-charcoal-grey.focus {
    box-shadow: 0 0 0 0.2rem rgba(75, 78, 80, 0.5); }
  .btn-outline-charcoal-grey.disabled, .btn-outline-charcoal-grey:disabled {
    color: #4b4e50;
    background-color: transparent; }
  .btn-outline-charcoal-grey:not(:disabled):not(.disabled):active, .btn-outline-charcoal-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-charcoal-grey.dropdown-toggle {
    color: #fff;
    background-color: #4b4e50;
    border-color: #4b4e50; }
    .btn-outline-charcoal-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-charcoal-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-charcoal-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(75, 78, 80, 0.5); }

.btn-outline-light-grey {
  color: #f3f3f3;
  border-color: #f3f3f3; }
  .btn-outline-light-grey:hover {
    color: #212529;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
  .btn-outline-light-grey:focus, .btn-outline-light-grey.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); }
  .btn-outline-light-grey.disabled, .btn-outline-light-grey:disabled {
    color: #f3f3f3;
    background-color: transparent; }
  .btn-outline-light-grey:not(:disabled):not(.disabled):active, .btn-outline-light-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-light-grey.dropdown-toggle {
    color: #212529;
    background-color: #f3f3f3;
    border-color: #f3f3f3; }
    .btn-outline-light-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-light-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); }

.btn-outline-brown-grey {
  color: #9f9f9f;
  border-color: #9f9f9f; }
  .btn-outline-brown-grey:hover {
    color: #212529;
    background-color: #9f9f9f;
    border-color: #9f9f9f; }
  .btn-outline-brown-grey:focus, .btn-outline-brown-grey.focus {
    box-shadow: 0 0 0 0.2rem rgba(159, 159, 159, 0.5); }
  .btn-outline-brown-grey.disabled, .btn-outline-brown-grey:disabled {
    color: #9f9f9f;
    background-color: transparent; }
  .btn-outline-brown-grey:not(:disabled):not(.disabled):active, .btn-outline-brown-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-brown-grey.dropdown-toggle {
    color: #212529;
    background-color: #9f9f9f;
    border-color: #9f9f9f; }
    .btn-outline-brown-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-brown-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-brown-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(159, 159, 159, 0.5); }

.btn-outline-dark-grey {
  color: #423f3f;
  border-color: #423f3f; }
  .btn-outline-dark-grey:hover {
    color: #fff;
    background-color: #423f3f;
    border-color: #423f3f; }
  .btn-outline-dark-grey:focus, .btn-outline-dark-grey.focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 63, 63, 0.5); }
  .btn-outline-dark-grey.disabled, .btn-outline-dark-grey:disabled {
    color: #423f3f;
    background-color: transparent; }
  .btn-outline-dark-grey:not(:disabled):not(.disabled):active, .btn-outline-dark-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-dark-grey.dropdown-toggle {
    color: #fff;
    background-color: #423f3f;
    border-color: #423f3f; }
    .btn-outline-dark-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-dark-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(66, 63, 63, 0.5); }

.btn-outline-stych-grey {
  color: #C7C4BA;
  border-color: #C7C4BA; }
  .btn-outline-stych-grey:hover {
    color: #212529;
    background-color: #C7C4BA;
    border-color: #C7C4BA; }
  .btn-outline-stych-grey:focus, .btn-outline-stych-grey.focus {
    box-shadow: 0 0 0 0.2rem rgba(199, 196, 186, 0.5); }
  .btn-outline-stych-grey.disabled, .btn-outline-stych-grey:disabled {
    color: #C7C4BA;
    background-color: transparent; }
  .btn-outline-stych-grey:not(:disabled):not(.disabled):active, .btn-outline-stych-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-stych-grey.dropdown-toggle {
    color: #212529;
    background-color: #C7C4BA;
    border-color: #C7C4BA; }
    .btn-outline-stych-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-stych-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-stych-grey.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(199, 196, 186, 0.5); }

.btn-link {
  font-weight: 400;
  color: #3366ff;
  text-decoration: none; }
  .btn-link:hover {
    color: #0039e6;
    text-decoration: underline; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none; }

.btn-lg, .btn-group-lg > .btn, .nav-tabs .btn-group-lg > .nav-link, .msg_container .btn-group-lg > .btn-cta {
  padding: 1.9rem 4.3rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 3rem; }
  @media (max-width: 1200px) {
    .btn-lg, .btn-group-lg > .btn, .nav-tabs .btn-group-lg > .nav-link, .msg_container .btn-group-lg > .btn-cta {
      font-size: calc(1.325rem + 0.9vw) ; } }
.btn-sm, .btn-group-sm > .btn, .nav-tabs .btn-group-sm > .nav-link, .msg_container .btn-group-sm > .btn-cta {
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 0.2rem; }
  @media (max-width: 1200px) {
    .btn-sm, .btn-group-sm > .btn, .nav-tabs .btn-group-sm > .nav-link, .msg_container .btn-group-sm > .btn-cta {
      font-size: calc(1.265rem + 0.18vw) ; } }
.btn-block, .msg_container .btn-cta {
  display: block;
  width: 100%; }
  .btn-block + .btn-block, .msg_container .btn-cta + .btn-block, .msg_container .btn-block + .btn-cta, .msg_container .btn-cta + .btn-cta {
    margin-top: 0.5rem; }

input[type="submit"].btn-block, .msg_container [type="submit"].btn-cta,
input[type="reset"].btn-block,
.msg_container [type="reset"].btn-cta,
input[type="button"].btn-block,
.msg_container [type="button"].btn-cta {
  width: 100%; }

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  .dropdown-toggle:empty::after {
    margin-left: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1.6rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.3rem; }
  @media (max-width: 1200px) {
    .dropdown-menu {
      font-size: calc(1.285rem + 0.42vw) ; } }
.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0; }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto; } }

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0; }
  .dropdown-menu-md-right {
    right: 0;
    left: auto; } }

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0; }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto; } }

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0; }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto; } }

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem; }

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent; }

.dropup .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem; }

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid; }

.dropright .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-toggle::after {
  vertical-align: 0; }

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem; }

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ""; }

.dropleft .dropdown-toggle::after {
  display: none; }

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent; }

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropleft .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto; }

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #3366ff; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #6c757d;
  white-space: nowrap; }
  @media (max-width: 1200px) {
    .dropdown-header {
      font-size: calc(1.265rem + 0.18vw) ; } }
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn, .nav-tabs .btn-group > .nav-link, .msg_container .btn-group > .btn-cta,
  .btn-group-vertical > .btn,
  .nav-tabs .btn-group-vertical > .nav-link,
  .msg_container .btn-group-vertical > .btn-cta {
    position: relative;
    flex: 1 1 auto; }
    .btn-group > .btn:hover, .nav-tabs .btn-group > .nav-link:hover, .msg_container .btn-group > .btn-cta:hover,
    .btn-group-vertical > .btn:hover,
    .nav-tabs .btn-group-vertical > .nav-link:hover,
    .msg_container .btn-group-vertical > .btn-cta:hover {
      z-index: 1; }
    .btn-group > .btn:focus, .nav-tabs .btn-group > .nav-link:focus, .msg_container .btn-group > .btn-cta:focus, .btn-group > .btn:active, .nav-tabs .btn-group > .nav-link:active, .msg_container .btn-group > .btn-cta:active, .btn-group > .btn.active, .nav-tabs .btn-group > .active.nav-link, .msg_container .btn-group > .active.btn-cta,
    .btn-group-vertical > .btn:focus,
    .nav-tabs .btn-group-vertical > .nav-link:focus,
    .msg_container .btn-group-vertical > .btn-cta:focus,
    .btn-group-vertical > .btn:active,
    .nav-tabs .btn-group-vertical > .nav-link:active,
    .msg_container .btn-group-vertical > .btn-cta:active,
    .btn-group-vertical > .btn.active,
    .nav-tabs .btn-group-vertical > .active.nav-link,
    .msg_container .btn-group-vertical > .active.btn-cta {
      z-index: 1; }

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:not(:first-child), .nav-tabs .btn-group > .nav-link:not(:first-child), .msg_container .btn-group > .btn-cta:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .nav-tabs .btn-group > .nav-link:not(:last-child):not(.dropdown-toggle), .msg_container .btn-group > .btn-cta:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.nav-tabs .btn-group > .btn-group:not(:last-child) > .nav-link,
.msg_container .btn-group > .btn-group:not(:last-child) > .btn-cta {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:not(:first-child), .nav-tabs .btn-group > .nav-link:not(:first-child), .msg_container .btn-group > .btn-cta:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.nav-tabs .btn-group > .btn-group:not(:first-child) > .nav-link,
.msg_container .btn-group > .btn-group:not(:first-child) > .btn-cta {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: 2.4rem;
  padding-left: 2.4rem; }
  .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
    margin-left: 0; }
  .dropleft .dropdown-toggle-split::before {
    margin-right: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .nav-tabs .btn-group-sm > .nav-link + .dropdown-toggle-split, .msg_container .btn-group-sm > .btn-cta + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .nav-tabs .btn-group-lg > .nav-link + .dropdown-toggle-split, .msg_container .btn-group-lg > .btn-cta + .dropdown-toggle-split {
  padding-right: 3.225rem;
  padding-left: 3.225rem; }

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }
  .btn-group-vertical > .btn, .nav-tabs .btn-group-vertical > .nav-link, .msg_container .btn-group-vertical > .btn-cta,
  .btn-group-vertical > .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn:not(:first-child), .nav-tabs .btn-group-vertical > .nav-link:not(:first-child), .msg_container .btn-group-vertical > .btn-cta:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px; }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .nav-tabs .btn-group-vertical > .nav-link:not(:last-child):not(.dropdown-toggle), .msg_container .btn-group-vertical > .btn-cta:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn,
  .nav-tabs .btn-group-vertical > .btn-group:not(:last-child) > .nav-link,
  .msg_container .btn-group-vertical > .btn-group:not(:last-child) > .btn-cta {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .btn-group-vertical > .btn:not(:first-child), .nav-tabs .btn-group-vertical > .nav-link:not(:first-child), .msg_container .btn-group-vertical > .btn-cta:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) > .btn,
  .nav-tabs .btn-group-vertical > .btn-group:not(:first-child) > .nav-link,
  .msg_container .btn-group-vertical > .btn-group:not(:first-child) > .btn-cta {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.btn-group-toggle > .btn, .nav-tabs .btn-group-toggle > .nav-link, .msg_container .btn-group-toggle > .btn-cta,
.btn-group-toggle > .btn-group > .btn,
.nav-tabs .btn-group-toggle > .btn-group > .nav-link,
.msg_container .btn-group-toggle > .btn-group > .btn-cta {
  margin-bottom: 0; }
  .btn-group-toggle > .btn input[type="radio"], .nav-tabs .btn-group-toggle > .nav-link input[type="radio"], .msg_container .btn-group-toggle > .btn-cta input[type="radio"],
  .btn-group-toggle > .btn input[type="checkbox"],
  .nav-tabs .btn-group-toggle > .nav-link input[type="checkbox"],
  .msg_container .btn-group-toggle > .btn-cta input[type="checkbox"],
  .btn-group-toggle > .btn-group > .btn input[type="radio"],
  .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
  .input-group > .form-control-plaintext,
  .input-group > .custom-select,
  .input-group > .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0; }
    .input-group > .form-control + .form-control,
    .input-group > .form-control + .custom-select,
    .input-group > .form-control + .custom-file,
    .input-group > .form-control-plaintext + .form-control,
    .input-group > .form-control-plaintext + .custom-select,
    .input-group > .form-control-plaintext + .custom-file,
    .input-group > .custom-select + .form-control,
    .input-group > .custom-select + .custom-select,
    .input-group > .custom-select + .custom-file,
    .input-group > .custom-file + .form-control,
    .input-group > .custom-file + .custom-select,
    .input-group > .custom-file + .custom-file {
      margin-left: -1px; }
  .input-group > .form-control:focus,
  .input-group > .custom-select:focus,
  .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3; }
  .input-group > .custom-file .custom-file-input:focus {
    z-index: 4; }
  .input-group > .form-control:not(:last-child),
  .input-group > .custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .input-group > .form-control:not(:first-child),
  .input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .input-group > .custom-file {
    display: flex;
    align-items: center; }
    .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .input-group > .custom-file:not(:first-child) .custom-file-label {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

.input-group-prepend,
.input-group-append {
  display: flex; }
  .input-group-prepend .btn, .input-group-prepend .nav-tabs .nav-link, .nav-tabs .input-group-prepend .nav-link, .input-group-prepend .msg_container .btn-cta, .msg_container .input-group-prepend .btn-cta,
  .input-group-append .btn,
  .input-group-append .nav-tabs .nav-link,
  .nav-tabs .input-group-append .nav-link,
  .input-group-append .msg_container .btn-cta,
  .msg_container .input-group-append .btn-cta {
    position: relative;
    z-index: 2; }
    .input-group-prepend .btn:focus, .input-group-prepend .nav-tabs .nav-link:focus, .nav-tabs .input-group-prepend .nav-link:focus, .input-group-prepend .msg_container .btn-cta:focus, .msg_container .input-group-prepend .btn-cta:focus,
    .input-group-append .btn:focus,
    .input-group-append .nav-tabs .nav-link:focus,
    .nav-tabs .input-group-append .nav-link:focus,
    .input-group-append .msg_container .btn-cta:focus,
    .msg_container .input-group-append .btn-cta:focus {
      z-index: 3; }
  .input-group-prepend .btn + .btn, .input-group-prepend .nav-tabs .nav-link + .btn, .nav-tabs .input-group-prepend .nav-link + .btn, .input-group-prepend .nav-tabs .btn + .nav-link, .nav-tabs .input-group-prepend .btn + .nav-link, .input-group-prepend .nav-tabs .nav-link + .nav-link, .nav-tabs .input-group-prepend .nav-link + .nav-link, .input-group-prepend .msg_container .btn-cta + .btn, .input-group-prepend .msg_container .nav-tabs .btn-cta + .nav-link, .nav-tabs .input-group-prepend .msg_container .btn-cta + .nav-link, .msg_container .input-group-prepend .btn-cta + .btn, .msg_container .input-group-prepend .nav-tabs .btn-cta + .nav-link, .nav-tabs .msg_container .input-group-prepend .btn-cta + .nav-link, .input-group-prepend .msg_container .btn + .btn-cta, .input-group-prepend .msg_container .nav-tabs .nav-link + .btn-cta, .nav-tabs .input-group-prepend .msg_container .nav-link + .btn-cta, .msg_container .input-group-prepend .btn + .btn-cta, .msg_container .input-group-prepend .nav-tabs .nav-link + .btn-cta, .nav-tabs .msg_container .input-group-prepend .nav-link + .btn-cta, .input-group-prepend .msg_container .btn-cta + .btn-cta, .msg_container .input-group-prepend .btn-cta + .btn-cta,
  .input-group-prepend .btn + .input-group-text,
  .input-group-prepend .nav-tabs .nav-link + .input-group-text,
  .nav-tabs .input-group-prepend .nav-link + .input-group-text,
  .input-group-prepend .msg_container .btn-cta + .input-group-text,
  .msg_container .input-group-prepend .btn-cta + .input-group-text,
  .input-group-prepend .input-group-text + .input-group-text,
  .input-group-prepend .input-group-text + .btn,
  .input-group-prepend .nav-tabs .input-group-text + .nav-link,
  .nav-tabs .input-group-prepend .input-group-text + .nav-link,
  .input-group-prepend .msg_container .input-group-text + .btn-cta,
  .msg_container .input-group-prepend .input-group-text + .btn-cta,
  .input-group-append .btn + .btn,
  .input-group-append .nav-tabs .nav-link + .btn,
  .nav-tabs .input-group-append .nav-link + .btn,
  .input-group-append .nav-tabs .btn + .nav-link,
  .nav-tabs .input-group-append .btn + .nav-link,
  .input-group-append .nav-tabs .nav-link + .nav-link,
  .nav-tabs .input-group-append .nav-link + .nav-link,
  .input-group-append .msg_container .btn-cta + .btn,
  .input-group-append .msg_container .nav-tabs .btn-cta + .nav-link,
  .nav-tabs .input-group-append .msg_container .btn-cta + .nav-link,
  .msg_container .input-group-append .btn-cta + .btn,
  .msg_container .input-group-append .nav-tabs .btn-cta + .nav-link,
  .nav-tabs .msg_container .input-group-append .btn-cta + .nav-link,
  .input-group-append .msg_container .btn + .btn-cta,
  .input-group-append .msg_container .nav-tabs .nav-link + .btn-cta,
  .nav-tabs .input-group-append .msg_container .nav-link + .btn-cta,
  .msg_container .input-group-append .btn + .btn-cta,
  .msg_container .input-group-append .nav-tabs .nav-link + .btn-cta,
  .nav-tabs .msg_container .input-group-append .nav-link + .btn-cta,
  .input-group-append .msg_container .btn-cta + .btn-cta,
  .msg_container .input-group-append .btn-cta + .btn-cta,
  .input-group-append .btn + .input-group-text,
  .input-group-append .nav-tabs .nav-link + .input-group-text,
  .nav-tabs .input-group-append .nav-link + .input-group-text,
  .input-group-append .msg_container .btn-cta + .input-group-text,
  .msg_container .input-group-append .btn-cta + .input-group-text,
  .input-group-append .input-group-text + .input-group-text,
  .input-group-append .input-group-text + .btn,
  .input-group-append .nav-tabs .input-group-text + .nav-link,
  .nav-tabs .input-group-append .input-group-text + .nav-link,
  .input-group-append .msg_container .input-group-text + .btn-cta,
  .msg_container .input-group-append .input-group-text + .btn-cta {
    margin-left: -1px; }

.input-group-prepend {
  margin-right: -1px; }

.input-group-append {
  margin-left: -1px; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 1.5rem 3.2rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.3rem; }
  @media (max-width: 1200px) {
    .input-group-text {
      font-size: calc(1.285rem + 0.42vw) ; } }
  .input-group-text input[type="radio"],
  .input-group-text input[type="checkbox"] {
    margin-top: 0; }

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 3.8rem + 2px); }

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.nav-tabs .input-group-lg > .input-group-prepend > .nav-link,
.msg_container .input-group-lg > .input-group-prepend > .btn-cta,
.input-group-lg > .input-group-append > .btn,
.nav-tabs .input-group-lg > .input-group-append > .nav-link,
.msg_container .input-group-lg > .input-group-append > .btn-cta {
  padding: 1.9rem 4.3rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 3rem; }
  @media (max-width: 1200px) {
    .input-group-lg > .form-control,
    .input-group-lg > .custom-select,
    .input-group-lg > .input-group-prepend > .input-group-text,
    .input-group-lg > .input-group-append > .input-group-text,
    .input-group-lg > .input-group-prepend > .btn,
    .nav-tabs .input-group-lg > .input-group-prepend > .nav-link,
    .msg_container .input-group-lg > .input-group-prepend > .btn-cta,
    .input-group-lg > .input-group-append > .btn,
    .nav-tabs .input-group-lg > .input-group-append > .nav-link,
    .msg_container .input-group-lg > .input-group-append > .btn-cta {
      font-size: calc(1.325rem + 0.9vw) ; } }
.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px); }

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.nav-tabs .input-group-sm > .input-group-prepend > .nav-link,
.msg_container .input-group-sm > .input-group-prepend > .btn-cta,
.input-group-sm > .input-group-append > .btn,
.nav-tabs .input-group-sm > .input-group-append > .nav-link,
.msg_container .input-group-sm > .input-group-append > .btn-cta {
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 0.2rem; }
  @media (max-width: 1200px) {
    .input-group-sm > .form-control,
    .input-group-sm > .custom-select,
    .input-group-sm > .input-group-prepend > .input-group-text,
    .input-group-sm > .input-group-append > .input-group-text,
    .input-group-sm > .input-group-prepend > .btn,
    .nav-tabs .input-group-sm > .input-group-prepend > .nav-link,
    .msg_container .input-group-sm > .input-group-prepend > .btn-cta,
    .input-group-sm > .input-group-append > .btn,
    .nav-tabs .input-group-sm > .input-group-append > .nav-link,
    .msg_container .input-group-sm > .input-group-append > .btn-cta {
      font-size: calc(1.265rem + 0.18vw) ; } }
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 4.2rem; }

.input-group > .input-group-prepend > .btn, .nav-tabs .input-group > .input-group-prepend > .nav-link, .msg_container .input-group > .input-group-prepend > .btn-cta,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.nav-tabs .input-group > .input-group-append:not(:last-child) > .nav-link,
.msg_container .input-group > .input-group-append:not(:last-child) > .btn-cta,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.nav-tabs .input-group > .input-group-append:last-child > .nav-link:not(:last-child):not(.dropdown-toggle),
.msg_container .input-group > .input-group-append:last-child > .btn-cta:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .btn, .nav-tabs .input-group > .input-group-append > .nav-link, .msg_container .input-group > .input-group-append > .btn-cta,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.nav-tabs .input-group > .input-group-prepend:not(:first-child) > .nav-link,
.msg_container .input-group > .input-group-prepend:not(:first-child) > .btn-cta,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.nav-tabs .input-group > .input-group-prepend:first-child > .nav-link:not(:first-child),
.msg_container .input-group > .input-group-prepend:first-child > .btn-cta:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 2.4rem;
  padding-left: 1.5rem;
  color-adjust: exact; }

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem; }

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.7rem;
  opacity: 0; }
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #3366ff;
    background-color: #3366ff; }
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
  .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #b3c6ff; }
  .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #e6ecff;
    border-color: #e6ecff; }
  .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d; }
    .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
      background-color: #e9ecef; }

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top; }
  .custom-control-label::before {
    position: absolute;
    top: 0.7rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px; }
  .custom-control-label::after {
    position: absolute;
    top: 0.7rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%; }

.custom-checkbox .custom-control-label::before {
  border-radius: 0.3rem; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #3366ff;
  background-color: #3366ff; }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); }

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(51, 102, 255, 0.5); }

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(51, 102, 255, 0.5); }

.custom-radio .custom-control-label::before {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(51, 102, 255, 0.5); }

.custom-switch {
  padding-left: 2.25rem; }
  .custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem; }
  .custom-switch .custom-control-label::after {
    top: calc(0.7rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .custom-switch .custom-control-label::after {
        transition: none; } }
  .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    transform: translateX(0.75rem); }
  .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(51, 102, 255, 0.5); }

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 3rem + 2px);
  padding: 1.5rem 4.2rem 1.5rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 3.2rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  appearance: none; }
  @media (max-width: 1200px) {
    .custom-select {
      font-size: calc(1.285rem + 0.42vw) ; } }
  .custom-select:focus {
    border-color: #b3c6ff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
    .custom-select:focus::-ms-value {
      color: #495057;
      background-color: #fff; }
  .custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 3.2rem;
    background-image: none; }
  .custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef; }
  .custom-select::-ms-expand {
    display: none; }
  .custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057; }

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 1.4rem; }
  @media (max-width: 1200px) {
    .custom-select-sm {
      font-size: calc(1.265rem + 0.18vw) ; } }
.custom-select-lg {
  height: calc(1.5em + 3.8rem + 2px);
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
  padding-left: 4.3rem;
  font-size: 2rem; }
  @media (max-width: 1200px) {
    .custom-select-lg {
      font-size: calc(1.325rem + 0.9vw) ; } }
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 3rem + 2px);
  margin-bottom: 0; }

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 3rem + 2px);
  margin: 0;
  opacity: 0; }
  .custom-file-input:focus ~ .custom-file-label {
    border-color: #b3c6ff;
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
  .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef; }
  .custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse"; }
  .custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse); }

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 3rem + 2px);
  padding: 1.5rem 3.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.3rem; }
  .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 3rem);
    padding: 1.5rem 3.2rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.3rem 0.3rem 0; }

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none; }
  .custom-range:focus {
    outline: none; }
    .custom-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
    .custom-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
    .custom-range:focus::-ms-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }
  .custom-range::-moz-focus-outer {
    border: 0; }
  .custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #3366ff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .custom-range::-webkit-slider-thumb {
        transition: none; } }
    .custom-range::-webkit-slider-thumb:active {
      background-color: #e6ecff; }
  .custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem; }
  .custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #3366ff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .custom-range::-moz-range-thumb {
        transition: none; } }
    .custom-range::-moz-range-thumb:active {
      background-color: #e6ecff; }
  .custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem; }
  .custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #3366ff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .custom-range::-ms-thumb {
        transition: none; } }
    .custom-range::-ms-thumb:active {
      background-color: #e6ecff; }
  .custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem; }
  .custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem; }
  .custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem; }
  .custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd; }
  .custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default; }
  .custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd; }
  .custom-range:disabled::-moz-range-track {
    cursor: default; }
  .custom-range:disabled::-ms-thumb {
    background-color: #adb5bd; }

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
      transition: none; } }
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem; }
  .nav-link:hover, .nav-link:focus {
    text-decoration: none; }
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  border-bottom: 1px solid #dee2e6; }
  .nav-tabs .nav-item {
    margin-bottom: -1px; }
  .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      border-color: #e9ecef #e9ecef #dee2e6; }
    .nav-tabs .nav-link.disabled {
      color: #6c757d;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff; }
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills .nav-link {
  border-radius: 0.3rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #3366ff; }

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center; }

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 0; }
  .navbar .container,
  .navbar .container-fluid,
  .navbar .container-xl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  margin-right: 0;
  font-size: 2rem;
  line-height: inherit;
  white-space: nowrap; }
  @media (max-width: 1200px) {
    .navbar-brand {
      font-size: calc(1.325rem + 0.9vw) ; } }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none; }

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 2rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.3rem; }
  @media (max-width: 1200px) {
    .navbar-toggler {
      font-size: calc(1.325rem + 0.9vw) ; } }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%; }

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid,
    .navbar-expand-sm > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; } }

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid,
    .navbar-expand-md > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; } }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid,
    .navbar-expand-lg > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid,
    .navbar-expand-xl > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; } }

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid,
  .navbar-expand > .container-xl {
    padding-right: 0;
    padding-left: 0; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid,
  .navbar-expand > .container-xl {
    flex-wrap: nowrap; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9); }
    .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
      color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-text a {
    color: #fff; }
    .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
      color: #fff; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.3rem; }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: calc(0.3rem - 1px);
      border-top-right-radius: calc(0.3rem - 1px); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: calc(0.3rem - 1px);
      border-bottom-left-radius: calc(0.3rem - 1px); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem; }

.card-title {
  margin-bottom: 0.75rem; }

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: none; }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .card-header:first-child {
    border-radius: calc(0.3rem - 1px) calc(0.3rem - 1px) 0 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.3rem - 1px) calc(0.3rem - 1px); }

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.3rem - 1px); }

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px); }

.card-deck .card {
  margin-bottom: 15px; }

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px; }
    .card-deck .card {
      flex: 1 0 0%;
      margin-right: 15px;
      margin-bottom: 0;
      margin-left: 15px; } }

.card-group > .card {
  margin-bottom: 15px; }

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.card-columns .card {
  margin-bottom: 0.75rem; }

@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1; }
    .card-columns .card {
      display: inline-block;
      width: 100%; } }

.accordion {
  overflow-anchor: none; }
  .accordion > .card {
    overflow: hidden; }
    .accordion > .card:not(:last-of-type) {
      border-bottom: 0;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
    .accordion > .card:not(:first-of-type) {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
    .accordion > .card > .card-header {
      border-radius: 0;
      margin-bottom: -1px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.3rem; }

.breadcrumb-item {
  display: flex; }
  .breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem; }
    .breadcrumb-item + .breadcrumb-item::before {
      display: inline-block;
      padding-right: 0.5rem;
      color: #6c757d;
      content: "/"; }
  .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline; }
  .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none; }
  .breadcrumb-item.active {
    color: #6c757d; }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.3rem; }

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #3366ff;
  background-color: #fff;
  border: 1px solid #dee2e6; }
  .page-link:hover {
    z-index: 2;
    color: #0039e6;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6; }
  .page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); }

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem; }

.page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem; }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #3366ff;
  border-color: #3366ff; }

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 2rem;
  line-height: 1.5; }
  @media (max-width: 1200px) {
    .pagination-lg .page-link {
      font-size: calc(1.325rem + 0.9vw) ; } }
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5; }
  @media (max-width: 1200px) {
    .pagination-sm .page-link {
      font-size: calc(1.265rem + 0.18vw) ; } }
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.3rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .badge {
      transition: none; } }
  a.badge:hover, a.badge:focus {
    text-decoration: none; }
  .badge:empty {
    display: none; }

.btn .badge, .nav-tabs .nav-link .badge, .msg_container .btn-cta .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: #3366ff; }
  a.badge-primary:hover, a.badge-primary:focus {
    color: #fff;
    background-color: #0040ff; }
  a.badge-primary:focus, a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }

.badge-secondary {
  color: #212529;
  background-color: #edff00; }
  a.badge-secondary:hover, a.badge-secondary:focus {
    color: #212529;
    background-color: #becc00; }
  a.badge-secondary:focus, a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(237, 255, 0, 0.5); }

.badge-success {
  color: #212529;
  background-color: #5ec997; }
  a.badge-success:hover, a.badge-success:focus {
    color: #212529;
    background-color: #3db77e; }
  a.badge-success:focus, a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(94, 201, 151, 0.5); }

.badge-info {
  color: #212529;
  background-color: #00e8ff; }
  a.badge-info:hover, a.badge-info:focus {
    color: #212529;
    background-color: #00bacc; }
  a.badge-info:focus, a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 232, 255, 0.5); }

.badge-warning {
  color: #212529;
  background-color: #edff00; }
  a.badge-warning:hover, a.badge-warning:focus {
    color: #212529;
    background-color: #becc00; }
  a.badge-warning:focus, a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(237, 255, 0, 0.5); }

.badge-danger {
  color: #fff;
  background-color: #db2727; }
  a.badge-danger:hover, a.badge-danger:focus {
    color: #fff;
    background-color: #b11e1e; }
  a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(219, 39, 39, 0.5); }

.badge-light {
  color: #212529;
  background-color: white; }
  a.badge-light:hover, a.badge-light:focus {
    color: #212529;
    background-color: #e6e6e6; }
  a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }

.badge-lightest {
  color: #212529;
  background-color: #fff; }
  a.badge-lightest:hover, a.badge-lightest:focus {
    color: #212529;
    background-color: #e6e6e6; }
  a.badge-lightest:focus, a.badge-lightest.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }

.badge-dark {
  color: #fff;
  background-color: #423f3f; }
  a.badge-dark:hover, a.badge-dark:focus {
    color: #fff;
    background-color: #282626; }
  a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(66, 63, 63, 0.5); }

.badge-darker {
  color: #fff;
  background-color: #212529; }
  a.badge-darker:hover, a.badge-darker:focus {
    color: #fff;
    background-color: #0a0c0d; }
  a.badge-darker:focus, a.badge-darker.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5); }

.badge-dark-primary {
  color: #fff;
  background-color: #380098; }
  a.badge-dark-primary:hover, a.badge-dark-primary:focus {
    color: #fff;
    background-color: #250065; }
  a.badge-dark-primary:focus, a.badge-dark-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(56, 0, 152, 0.5); }

.badge-purple {
  color: #fff;
  background-color: #380099; }
  a.badge-purple:hover, a.badge-purple:focus {
    color: #fff;
    background-color: #250066; }
  a.badge-purple:focus, a.badge-purple.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(56, 0, 153, 0.5); }

.badge-charcoal-grey {
  color: #fff;
  background-color: #4b4e50; }
  a.badge-charcoal-grey:hover, a.badge-charcoal-grey:focus {
    color: #fff;
    background-color: #323436; }
  a.badge-charcoal-grey:focus, a.badge-charcoal-grey.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(75, 78, 80, 0.5); }

.badge-light-grey {
  color: #212529;
  background-color: #f3f3f3; }
  a.badge-light-grey:hover, a.badge-light-grey:focus {
    color: #212529;
    background-color: #dadada; }
  a.badge-light-grey:focus, a.badge-light-grey.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); }

.badge-brown-grey {
  color: #212529;
  background-color: #9f9f9f; }
  a.badge-brown-grey:hover, a.badge-brown-grey:focus {
    color: #212529;
    background-color: #868686; }
  a.badge-brown-grey:focus, a.badge-brown-grey.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(159, 159, 159, 0.5); }

.badge-dark-grey {
  color: #fff;
  background-color: #423f3f; }
  a.badge-dark-grey:hover, a.badge-dark-grey:focus {
    color: #fff;
    background-color: #282626; }
  a.badge-dark-grey:focus, a.badge-dark-grey.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(66, 63, 63, 0.5); }

.badge-stych-grey {
  color: #212529;
  background-color: #C7C4BA; }
  a.badge-stych-grey:hover, a.badge-stych-grey:focus {
    color: #212529;
    background-color: #b0ac9e; }
  a.badge-stych-grey:focus, a.badge-stych-grey.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(199, 196, 186, 0.5); }

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 3rem; }
  @media (min-width: 576px) {
    .jumbotron {
      padding: 4rem 2rem; } }
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.3rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 700; }

.alert-dismissible {
  padding-right: 4.9rem; }
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.75rem 1.25rem;
    color: inherit; }

.alert-primary {
  color: #1b3585;
  background-color: #d6e0ff;
  border-color: #c6d4ff; }
  .alert-primary hr {
    border-top-color: #adc1ff; }
  .alert-primary .alert-link {
    color: #12245b; }

.alert-secondary {
  color: #7b8500;
  background-color: #fbffcc;
  border-color: #faffb8; }
  .alert-secondary hr {
    border-top-color: #f8ff9f; }
  .alert-secondary .alert-link {
    color: #4c5200; }

.alert-success {
  color: #31694f;
  background-color: #dff4ea;
  border-color: #d2f0e2; }
  .alert-success hr {
    border-top-color: #bfead6; }
  .alert-success .alert-link {
    color: #214635; }

.alert-info {
  color: #007985;
  background-color: #ccfaff;
  border-color: #b8f9ff; }
  .alert-info hr {
    border-top-color: #9ff7ff; }
  .alert-info .alert-link {
    color: #004b52; }

.alert-warning {
  color: #7b8500;
  background-color: #fbffcc;
  border-color: #faffb8; }
  .alert-warning hr {
    border-top-color: #f8ff9f; }
  .alert-warning .alert-link {
    color: #4c5200; }

.alert-danger {
  color: #721414;
  background-color: #f8d4d4;
  border-color: #f5c3c3; }
  .alert-danger hr {
    border-top-color: #f1adad; }
  .alert-danger .alert-link {
    color: #470c0c; }

.alert-light {
  color: #858585;
  background-color: white;
  border-color: white; }
  .alert-light hr {
    border-top-color: #f2f2f2; }
  .alert-light .alert-link {
    color: #6c6c6c; }

.alert-lightest {
  color: #858585;
  background-color: white;
  border-color: white; }
  .alert-lightest hr {
    border-top-color: #f2f2f2; }
  .alert-lightest .alert-link {
    color: #6c6c6c; }

.alert-dark {
  color: #222121;
  background-color: #d9d9d9;
  border-color: #cac9c9; }
  .alert-dark hr {
    border-top-color: #bdbcbc; }
  .alert-dark .alert-link {
    color: #080808; }

.alert-darker {
  color: #111315;
  background-color: #d3d3d4;
  border-color: #c1c2c3; }
  .alert-darker hr {
    border-top-color: #b4b5b6; }
  .alert-darker .alert-link {
    color: black; }

.alert-dark-primary {
  color: #1d004f;
  background-color: #d7ccea;
  border-color: #c7b8e2; }
  .alert-dark-primary hr {
    border-top-color: #b9a6db; }
  .alert-dark-primary .alert-link {
    color: #0a001c; }

.alert-purple {
  color: #1d0050;
  background-color: #d7cceb;
  border-color: #c7b8e2; }
  .alert-purple hr {
    border-top-color: #b9a6db; }
  .alert-purple .alert-link {
    color: #0b001d; }

.alert-charcoal-grey {
  color: #27292a;
  background-color: #dbdcdc;
  border-color: #cdcdce; }
  .alert-charcoal-grey hr {
    border-top-color: #c0c0c1; }
  .alert-charcoal-grey .alert-link {
    color: #0e0f10; }

.alert-light-grey {
  color: #7e7e7e;
  background-color: #fdfdfd;
  border-color: #fcfcfc; }
  .alert-light-grey hr {
    border-top-color: #efefef; }
  .alert-light-grey .alert-link {
    color: #656565; }

.alert-brown-grey {
  color: #535353;
  background-color: #ececec;
  border-color: #e4e4e4; }
  .alert-brown-grey hr {
    border-top-color: #d7d7d7; }
  .alert-brown-grey .alert-link {
    color: #3a3a3a; }

.alert-dark-grey {
  color: #222121;
  background-color: #d9d9d9;
  border-color: #cac9c9; }
  .alert-dark-grey hr {
    border-top-color: #bdbcbc; }
  .alert-dark-grey .alert-link {
    color: #080808; }

.alert-stych-grey {
  color: #676661;
  background-color: #f4f3f1;
  border-color: #efeeec; }
  .alert-stych-grey hr {
    border-top-color: #e3e2de; }
  .alert-stych-grey .alert-link {
    color: #4d4c48; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 1.2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem; }

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #3366ff;
  transition: width 0.6s ease; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      animation: none; } }
.media {
  display: flex;
  align-items: flex-start; }

.media-body {
  flex: 1; }

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.3rem; }

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa; }
  .list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #3366ff;
    border-color: #3366ff; }
  .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
      margin-top: -1px;
      border-top-width: 1px; }

.list-group-horizontal {
  flex-direction: row; }
  .list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0; }
  .list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0; }
  .list-group-horizontal > .list-group-item.active {
    margin-top: 0; }
  .list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item.active {
      margin-left: -1px;
      border-left-width: 1px; }

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm > .list-group-item:first-child {
      border-bottom-left-radius: 0.3rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-sm > .list-group-item:last-child {
      border-top-right-radius: 0.3rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-sm > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md > .list-group-item:first-child {
      border-bottom-left-radius: 0.3rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-md > .list-group-item:last-child {
      border-top-right-radius: 0.3rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-md > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg > .list-group-item:first-child {
      border-bottom-left-radius: 0.3rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-lg > .list-group-item:last-child {
      border-top-right-radius: 0.3rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-lg > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl > .list-group-item:first-child {
      border-bottom-left-radius: 0.3rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-xl > .list-group-item:last-child {
      border-top-right-radius: 0.3rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

.list-group-flush {
  border-radius: 0; }
  .list-group-flush > .list-group-item {
    border-width: 0 0 1px; }
    .list-group-flush > .list-group-item:last-child {
      border-bottom-width: 0; }

.list-group-item-primary {
  color: #1b3585;
  background-color: #c6d4ff; }
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #1b3585;
    background-color: #adc1ff; }
  .list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #1b3585;
    border-color: #1b3585; }

.list-group-item-secondary {
  color: #7b8500;
  background-color: #faffb8; }
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #7b8500;
    background-color: #f8ff9f; }
  .list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #7b8500;
    border-color: #7b8500; }

.list-group-item-success {
  color: #31694f;
  background-color: #d2f0e2; }
  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #31694f;
    background-color: #bfead6; }
  .list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #31694f;
    border-color: #31694f; }

.list-group-item-info {
  color: #007985;
  background-color: #b8f9ff; }
  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #007985;
    background-color: #9ff7ff; }
  .list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #007985;
    border-color: #007985; }

.list-group-item-warning {
  color: #7b8500;
  background-color: #faffb8; }
  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #7b8500;
    background-color: #f8ff9f; }
  .list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #7b8500;
    border-color: #7b8500; }

.list-group-item-danger {
  color: #721414;
  background-color: #f5c3c3; }
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #721414;
    background-color: #f1adad; }
  .list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721414;
    border-color: #721414; }

.list-group-item-light {
  color: #858585;
  background-color: white; }
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #858585;
    background-color: #f2f2f2; }
  .list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #858585;
    border-color: #858585; }

.list-group-item-lightest {
  color: #858585;
  background-color: white; }
  .list-group-item-lightest.list-group-item-action:hover, .list-group-item-lightest.list-group-item-action:focus {
    color: #858585;
    background-color: #f2f2f2; }
  .list-group-item-lightest.list-group-item-action.active {
    color: #fff;
    background-color: #858585;
    border-color: #858585; }

.list-group-item-dark {
  color: #222121;
  background-color: #cac9c9; }
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #222121;
    background-color: #bdbcbc; }
  .list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #222121;
    border-color: #222121; }

.list-group-item-darker {
  color: #111315;
  background-color: #c1c2c3; }
  .list-group-item-darker.list-group-item-action:hover, .list-group-item-darker.list-group-item-action:focus {
    color: #111315;
    background-color: #b4b5b6; }
  .list-group-item-darker.list-group-item-action.active {
    color: #fff;
    background-color: #111315;
    border-color: #111315; }

.list-group-item-dark-primary {
  color: #1d004f;
  background-color: #c7b8e2; }
  .list-group-item-dark-primary.list-group-item-action:hover, .list-group-item-dark-primary.list-group-item-action:focus {
    color: #1d004f;
    background-color: #b9a6db; }
  .list-group-item-dark-primary.list-group-item-action.active {
    color: #fff;
    background-color: #1d004f;
    border-color: #1d004f; }

.list-group-item-purple {
  color: #1d0050;
  background-color: #c7b8e2; }
  .list-group-item-purple.list-group-item-action:hover, .list-group-item-purple.list-group-item-action:focus {
    color: #1d0050;
    background-color: #b9a6db; }
  .list-group-item-purple.list-group-item-action.active {
    color: #fff;
    background-color: #1d0050;
    border-color: #1d0050; }

.list-group-item-charcoal-grey {
  color: #27292a;
  background-color: #cdcdce; }
  .list-group-item-charcoal-grey.list-group-item-action:hover, .list-group-item-charcoal-grey.list-group-item-action:focus {
    color: #27292a;
    background-color: #c0c0c1; }
  .list-group-item-charcoal-grey.list-group-item-action.active {
    color: #fff;
    background-color: #27292a;
    border-color: #27292a; }

.list-group-item-light-grey {
  color: #7e7e7e;
  background-color: #fcfcfc; }
  .list-group-item-light-grey.list-group-item-action:hover, .list-group-item-light-grey.list-group-item-action:focus {
    color: #7e7e7e;
    background-color: #efefef; }
  .list-group-item-light-grey.list-group-item-action.active {
    color: #fff;
    background-color: #7e7e7e;
    border-color: #7e7e7e; }

.list-group-item-brown-grey {
  color: #535353;
  background-color: #e4e4e4; }
  .list-group-item-brown-grey.list-group-item-action:hover, .list-group-item-brown-grey.list-group-item-action:focus {
    color: #535353;
    background-color: #d7d7d7; }
  .list-group-item-brown-grey.list-group-item-action.active {
    color: #fff;
    background-color: #535353;
    border-color: #535353; }

.list-group-item-dark-grey {
  color: #222121;
  background-color: #cac9c9; }
  .list-group-item-dark-grey.list-group-item-action:hover, .list-group-item-dark-grey.list-group-item-action:focus {
    color: #222121;
    background-color: #bdbcbc; }
  .list-group-item-dark-grey.list-group-item-action.active {
    color: #fff;
    background-color: #222121;
    border-color: #222121; }

.list-group-item-stych-grey {
  color: #676661;
  background-color: #efeeec; }
  .list-group-item-stych-grey.list-group-item-action:hover, .list-group-item-stych-grey.list-group-item-action:focus {
    color: #676661;
    background-color: #e3e2de; }
  .list-group-item-stych-grey.list-group-item-action.active {
    color: #fff;
    background-color: #676661;
    border-color: #676661; }

.close {
  float: right;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  @media (max-width: 1200px) {
    .close {
      font-size: calc(1.365rem + 1.38vw) ; } }
  .close:hover {
    color: #000;
    text-decoration: none; }
  .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: .75; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0; }

a.close.disabled {
  pointer-events: none; }

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem; }
  .toast:not(:last-child) {
    margin-bottom: 0.75rem; }
  .toast.showing {
    opacity: 1; }
  .toast.show {
    display: block;
    opacity: 1; }
  .toast.hide {
    display: none; }

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px); }

.toast-body {
  padding: 0.75rem; }

.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: none; }
  .modal.modal-static .modal-dialog {
    transform: scale(1.02); }

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden; }
  .modal-dialog-scrollable .modal-header,
  .modal-dialog-scrollable .modal-footer {
    flex-shrink: 0; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem); }
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: min-content;
    content: ""; }
  .modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%; }
    .modal-dialog-centered.modal-dialog-scrollable .modal-content {
      max-height: none; }
    .modal-dialog-centered.modal-dialog-scrollable::before {
      content: none; }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(3rem - 1px);
  border-top-right-radius: calc(3rem - 1px); }
  .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  margin-right: auto;
  margin-left: 25px;
  line-height: 1.5; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(3rem - 1px);
  border-bottom-left-radius: calc(3rem - 1px); }
  .modal-footer > * {
    margin: 0.25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem); }
    .modal-dialog-scrollable .modal-content {
      max-height: calc(100vh - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
    .modal-dialog-centered::before {
      height: calc(100vh - 3.5rem);
      height: min-content; }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px; } }

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.4rem;
  word-wrap: break-word;
  opacity: 0; }
  @media (max-width: 1200px) {
    .tooltip {
      font-size: calc(1.265rem + 0.18vw) ; } }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0; }
  .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0; }
    .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
      top: 0;
      border-width: 0.4rem 0.4rem 0;
      border-top-color: #000; }

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem; }
  .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
      right: 0;
      border-width: 0.4rem 0.4rem 0.4rem 0;
      border-right-color: #000; }

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0; }
  .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0; }
    .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
      bottom: 0;
      border-width: 0 0.4rem 0.4rem;
      border-bottom-color: #000; }

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem; }
  .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
      left: 0;
      border-width: 0.4rem 0 0.4rem 0.4rem;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.3rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.4rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3rem; }
  @media (max-width: 1200px) {
    .popover {
      font-size: calc(1.265rem + 0.18vw) ; } }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 3rem; }
    .popover .arrow::before, .popover .arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem; }
  .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
    bottom: calc(-0.5rem - 1px); }
    .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
      bottom: 0;
      border-width: 0.5rem 0.5rem 0;
      border-top-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
      bottom: 1px;
      border-width: 0.5rem 0.5rem 0;
      border-top-color: #fff; }

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem; }
  .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 3rem 0; }
    .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
      left: 0;
      border-width: 0.5rem 0.5rem 0.5rem 0;
      border-right-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
      left: 1px;
      border-width: 0.5rem 0.5rem 0.5rem 0;
      border-right-color: #fff; }

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem; }
  .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
    top: calc(-0.5rem - 1px); }
    .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
      top: 0;
      border-width: 0 0.5rem 0.5rem 0.5rem;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
      top: 1px;
      border-width: 0 0.5rem 0.5rem 0.5rem;
      border-bottom-color: #fff; }
  .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7; }

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem; }
  .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 3rem 0; }
    .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
      right: 0;
      border-width: 0.5rem 0 0.5rem 0.5rem;
      border-left-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
      right: 1px;
      border-width: 0.5rem 0 0.5rem 0.5rem;
      border-left-color: #fff; }

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(3rem - 1px);
  border-top-right-radius: calc(3rem - 1px); }
  @media (max-width: 1200px) {
    .popover-header {
      font-size: calc(1.285rem + 0.42vw) ; } }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529; }

.carousel {
  position: relative; }

.carousel.pointer-event {
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%); }

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1; }

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
      transition: none; } }
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 7px;
    margin-left: 7px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .carousel-indicators li {
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center; }

@keyframes spinner-border {
  to {
    transform: rotate(360deg); } }

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite; }

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em; }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow .75s linear infinite; }

.spinner-grow-sm {
  width: 1rem;
  height: 1rem; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-primary {
  background-color: #3366ff !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0040ff !important; }

.bg-secondary {
  background-color: #edff00 !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #becc00 !important; }

.bg-success {
  background-color: #5ec997 !important; }

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #3db77e !important; }

.bg-info {
  background-color: #00e8ff !important; }

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #00bacc !important; }

.bg-warning {
  background-color: #edff00 !important; }

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #becc00 !important; }

.bg-danger {
  background-color: #db2727 !important; }

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #b11e1e !important; }

.bg-light {
  background-color: white !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #e6e6e6 !important; }

.bg-lightest {
  background-color: #fff !important; }

a.bg-lightest:hover, a.bg-lightest:focus,
button.bg-lightest:hover,
button.bg-lightest:focus {
  background-color: #e6e6e6 !important; }

.bg-dark {
  background-color: #423f3f !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #282626 !important; }

.bg-darker {
  background-color: #212529 !important; }

a.bg-darker:hover, a.bg-darker:focus,
button.bg-darker:hover,
button.bg-darker:focus {
  background-color: #0a0c0d !important; }

.bg-dark-primary {
  background-color: #380098 !important; }

a.bg-dark-primary:hover, a.bg-dark-primary:focus,
button.bg-dark-primary:hover,
button.bg-dark-primary:focus {
  background-color: #250065 !important; }

.bg-purple {
  background-color: #380099 !important; }

a.bg-purple:hover, a.bg-purple:focus,
button.bg-purple:hover,
button.bg-purple:focus {
  background-color: #250066 !important; }

.bg-charcoal-grey {
  background-color: #4b4e50 !important; }

a.bg-charcoal-grey:hover, a.bg-charcoal-grey:focus,
button.bg-charcoal-grey:hover,
button.bg-charcoal-grey:focus {
  background-color: #323436 !important; }

.bg-light-grey {
  background-color: #f3f3f3 !important; }

a.bg-light-grey:hover, a.bg-light-grey:focus,
button.bg-light-grey:hover,
button.bg-light-grey:focus {
  background-color: #dadada !important; }

.bg-brown-grey {
  background-color: #9f9f9f !important; }

a.bg-brown-grey:hover, a.bg-brown-grey:focus,
button.bg-brown-grey:hover,
button.bg-brown-grey:focus {
  background-color: #868686 !important; }

.bg-dark-grey {
  background-color: #423f3f !important; }

a.bg-dark-grey:hover, a.bg-dark-grey:focus,
button.bg-dark-grey:hover,
button.bg-dark-grey:focus {
  background-color: #282626 !important; }

.bg-stych-grey {
  background-color: #C7C4BA !important; }

a.bg-stych-grey:hover, a.bg-stych-grey:focus,
button.bg-stych-grey:hover,
button.bg-stych-grey:focus {
  background-color: #b0ac9e !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.border-top {
  border-top: 1px solid #dee2e6 !important; }

.border-right {
  border-right: 1px solid #dee2e6 !important; }

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important; }

.border-left {
  border-left: 1px solid #dee2e6 !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #3366ff !important; }

.border-secondary {
  border-color: #edff00 !important; }

.border-success {
  border-color: #5ec997 !important; }

.border-info {
  border-color: #00e8ff !important; }

.border-warning {
  border-color: #edff00 !important; }

.border-danger {
  border-color: #db2727 !important; }

.border-light {
  border-color: white !important; }

.border-lightest {
  border-color: #fff !important; }

.border-dark {
  border-color: #423f3f !important; }

.border-darker {
  border-color: #212529 !important; }

.border-dark-primary {
  border-color: #380098 !important; }

.border-purple {
  border-color: #380099 !important; }

.border-charcoal-grey {
  border-color: #4b4e50 !important; }

.border-light-grey {
  border-color: #f3f3f3 !important; }

.border-brown-grey {
  border-color: #9f9f9f !important; }

.border-dark-grey {
  border-color: #423f3f !important; }

.border-stych-grey {
  border-color: #C7C4BA !important; }

.border-white {
  border-color: #fff !important; }

.rounded-sm {
  border-radius: 0.2rem !important; }

.rounded {
  border-radius: 0.3rem !important; }

.rounded-top {
  border-top-left-radius: 0.3rem !important;
  border-top-right-radius: 0.3rem !important; }

.rounded-right {
  border-top-right-radius: 0.3rem !important;
  border-bottom-right-radius: 0.3rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important; }

.rounded-left {
  border-top-left-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important; }

.rounded-lg {
  border-radius: 3rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: 50rem !important; }

.rounded-0 {
  border-radius: 0 !important; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive::before {
    display: block;
    content: ""; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.user-select-all {
  user-select: all !important; }

.user-select-auto {
  user-select: auto !important; }

.user-select-none {
  user-select: none !important; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.vw-100 {
  width: 100vw !important; }

.vh-100 {
  height: 100vh !important; }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.m-6 {
  margin: 6rem !important; }

.mt-6,
.my-6 {
  margin-top: 6rem !important; }

.mr-6,
.mx-6 {
  margin-right: 6rem !important; }

.mb-6,
.my-6 {
  margin-bottom: 6rem !important; }

.ml-6,
.mx-6 {
  margin-left: 6rem !important; }

.m-7 {
  margin: 10rem !important; }

.mt-7,
.my-7 {
  margin-top: 10rem !important; }

.mr-7,
.mx-7 {
  margin-right: 10rem !important; }

.mb-7,
.my-7 {
  margin-bottom: 10rem !important; }

.ml-7,
.mx-7 {
  margin-left: 10rem !important; }

.m-10 {
  margin: 20rem !important; }

.mt-10,
.my-10 {
  margin-top: 20rem !important; }

.mr-10,
.mx-10 {
  margin-right: 20rem !important; }

.mb-10,
.my-10 {
  margin-bottom: 20rem !important; }

.ml-10,
.mx-10 {
  margin-left: 20rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.p-6 {
  padding: 6rem !important; }

.pt-6,
.py-6 {
  padding-top: 6rem !important; }

.pr-6,
.px-6 {
  padding-right: 6rem !important; }

.pb-6,
.py-6 {
  padding-bottom: 6rem !important; }

.pl-6,
.px-6 {
  padding-left: 6rem !important; }

.p-7 {
  padding: 10rem !important; }

.pt-7,
.py-7 {
  padding-top: 10rem !important; }

.pr-7,
.px-7 {
  padding-right: 10rem !important; }

.pb-7,
.py-7 {
  padding-bottom: 10rem !important; }

.pl-7,
.px-7 {
  padding-left: 10rem !important; }

.p-10 {
  padding: 20rem !important; }

.pt-10,
.py-10 {
  padding-top: 20rem !important; }

.pr-10,
.px-10 {
  padding-right: 20rem !important; }

.pb-10,
.py-10 {
  padding-bottom: 20rem !important; }

.pl-10,
.px-10 {
  padding-left: 20rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

.mt-n3,
.my-n3 {
  margin-top: -1rem !important; }

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important; }

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important; }

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important; }

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

.mt-n5,
.my-n5 {
  margin-top: -3rem !important; }

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important; }

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-n6 {
  margin: -6rem !important; }

.mt-n6,
.my-n6 {
  margin-top: -6rem !important; }

.mr-n6,
.mx-n6 {
  margin-right: -6rem !important; }

.mb-n6,
.my-n6 {
  margin-bottom: -6rem !important; }

.ml-n6,
.mx-n6 {
  margin-left: -6rem !important; }

.m-n7 {
  margin: -10rem !important; }

.mt-n7,
.my-n7 {
  margin-top: -10rem !important; }

.mr-n7,
.mx-n7 {
  margin-right: -10rem !important; }

.mb-n7,
.my-n7 {
  margin-bottom: -10rem !important; }

.ml-n7,
.mx-n7 {
  margin-left: -10rem !important; }

.m-n10 {
  margin: -20rem !important; }

.mt-n10,
.my-n10 {
  margin-top: -20rem !important; }

.mr-n10,
.mx-n10 {
  margin-right: -20rem !important; }

.mb-n10,
.my-n10 {
  margin-bottom: -20rem !important; }

.ml-n10,
.mx-n10 {
  margin-left: -20rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .m-sm-6 {
    margin: 6rem !important; }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 6rem !important; }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 6rem !important; }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 6rem !important; }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 6rem !important; }
  .m-sm-7 {
    margin: 10rem !important; }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 10rem !important; }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 10rem !important; }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 10rem !important; }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 10rem !important; }
  .m-sm-10 {
    margin: 20rem !important; }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 20rem !important; }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 20rem !important; }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 20rem !important; }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 20rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .p-sm-6 {
    padding: 6rem !important; }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 6rem !important; }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 6rem !important; }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 6rem !important; }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 6rem !important; }
  .p-sm-7 {
    padding: 10rem !important; }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 10rem !important; }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 10rem !important; }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 10rem !important; }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 10rem !important; }
  .p-sm-10 {
    padding: 20rem !important; }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 20rem !important; }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 20rem !important; }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 20rem !important; }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 20rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-n6 {
    margin: -6rem !important; }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -6rem !important; }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -6rem !important; }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -6rem !important; }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -6rem !important; }
  .m-sm-n7 {
    margin: -10rem !important; }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -10rem !important; }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -10rem !important; }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -10rem !important; }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -10rem !important; }
  .m-sm-n10 {
    margin: -20rem !important; }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -20rem !important; }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -20rem !important; }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -20rem !important; }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -20rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .m-md-6 {
    margin: 6rem !important; }
  .mt-md-6,
  .my-md-6 {
    margin-top: 6rem !important; }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 6rem !important; }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 6rem !important; }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 6rem !important; }
  .m-md-7 {
    margin: 10rem !important; }
  .mt-md-7,
  .my-md-7 {
    margin-top: 10rem !important; }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 10rem !important; }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 10rem !important; }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 10rem !important; }
  .m-md-10 {
    margin: 20rem !important; }
  .mt-md-10,
  .my-md-10 {
    margin-top: 20rem !important; }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 20rem !important; }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 20rem !important; }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 20rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .p-md-6 {
    padding: 6rem !important; }
  .pt-md-6,
  .py-md-6 {
    padding-top: 6rem !important; }
  .pr-md-6,
  .px-md-6 {
    padding-right: 6rem !important; }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 6rem !important; }
  .pl-md-6,
  .px-md-6 {
    padding-left: 6rem !important; }
  .p-md-7 {
    padding: 10rem !important; }
  .pt-md-7,
  .py-md-7 {
    padding-top: 10rem !important; }
  .pr-md-7,
  .px-md-7 {
    padding-right: 10rem !important; }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 10rem !important; }
  .pl-md-7,
  .px-md-7 {
    padding-left: 10rem !important; }
  .p-md-10 {
    padding: 20rem !important; }
  .pt-md-10,
  .py-md-10 {
    padding-top: 20rem !important; }
  .pr-md-10,
  .px-md-10 {
    padding-right: 20rem !important; }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 20rem !important; }
  .pl-md-10,
  .px-md-10 {
    padding-left: 20rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-n6 {
    margin: -6rem !important; }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -6rem !important; }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -6rem !important; }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -6rem !important; }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -6rem !important; }
  .m-md-n7 {
    margin: -10rem !important; }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -10rem !important; }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -10rem !important; }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -10rem !important; }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -10rem !important; }
  .m-md-n10 {
    margin: -20rem !important; }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -20rem !important; }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -20rem !important; }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -20rem !important; }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -20rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .m-lg-6 {
    margin: 6rem !important; }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 6rem !important; }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 6rem !important; }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 6rem !important; }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 6rem !important; }
  .m-lg-7 {
    margin: 10rem !important; }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 10rem !important; }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 10rem !important; }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 10rem !important; }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 10rem !important; }
  .m-lg-10 {
    margin: 20rem !important; }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 20rem !important; }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 20rem !important; }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 20rem !important; }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 20rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .p-lg-6 {
    padding: 6rem !important; }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 6rem !important; }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 6rem !important; }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 6rem !important; }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 6rem !important; }
  .p-lg-7 {
    padding: 10rem !important; }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 10rem !important; }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 10rem !important; }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 10rem !important; }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 10rem !important; }
  .p-lg-10 {
    padding: 20rem !important; }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 20rem !important; }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 20rem !important; }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 20rem !important; }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 20rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-n6 {
    margin: -6rem !important; }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -6rem !important; }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -6rem !important; }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -6rem !important; }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -6rem !important; }
  .m-lg-n7 {
    margin: -10rem !important; }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -10rem !important; }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -10rem !important; }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -10rem !important; }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -10rem !important; }
  .m-lg-n10 {
    margin: -20rem !important; }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -20rem !important; }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -20rem !important; }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -20rem !important; }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -20rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .m-xl-6 {
    margin: 6rem !important; }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 6rem !important; }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 6rem !important; }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 6rem !important; }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 6rem !important; }
  .m-xl-7 {
    margin: 10rem !important; }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 10rem !important; }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 10rem !important; }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 10rem !important; }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 10rem !important; }
  .m-xl-10 {
    margin: 20rem !important; }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 20rem !important; }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 20rem !important; }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 20rem !important; }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 20rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .p-xl-6 {
    padding: 6rem !important; }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 6rem !important; }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 6rem !important; }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 6rem !important; }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 6rem !important; }
  .p-xl-7 {
    padding: 10rem !important; }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 10rem !important; }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 10rem !important; }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 10rem !important; }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 10rem !important; }
  .p-xl-10 {
    padding: 20rem !important; }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 20rem !important; }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 20rem !important; }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 20rem !important; }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 20rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-n6 {
    margin: -6rem !important; }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -6rem !important; }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -6rem !important; }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -6rem !important; }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -6rem !important; }
  .m-xl-n7 {
    margin: -10rem !important; }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -10rem !important; }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -10rem !important; }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -10rem !important; }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -10rem !important; }
  .m-xl-n10 {
    margin: -20rem !important; }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -20rem !important; }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -20rem !important; }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -20rem !important; }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -20rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0); }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

.text-justify {
  text-align: justify !important; }

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-lighter {
  font-weight: lighter !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-weight-boldest {
  font-weight: 900 !important; }

.font-weight-bolder {
  font-weight: bolder !important; }

.font-italic {
  font-style: italic !important; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #3366ff !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #0039e6 !important; }

.text-secondary {
  color: #edff00 !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #a6b300 !important; }

.text-success {
  color: #5ec997 !important; }

a.text-success:hover, a.text-success:focus {
  color: #37a471 !important; }

.text-info {
  color: #00e8ff !important; }

a.text-info:hover, a.text-info:focus {
  color: #00a2b3 !important; }

.text-warning {
  color: #edff00 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #a6b300 !important; }

.text-danger {
  color: #db2727 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #9c1a1a !important; }

.text-light {
  color: white !important; }

a.text-light:hover, a.text-light:focus {
  color: #d9d9d9 !important; }

.text-lightest {
  color: #fff !important; }

a.text-lightest:hover, a.text-lightest:focus {
  color: #d9d9d9 !important; }

.text-dark {
  color: #423f3f !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #1b1a1a !important; }

.text-darker {
  color: #212529 !important; }

a.text-darker:hover, a.text-darker:focus {
  color: black !important; }

.text-dark-primary {
  color: #380098 !important; }

a.text-dark-primary:hover, a.text-dark-primary:focus {
  color: #1c004c !important; }

.text-purple {
  color: #380099 !important; }

a.text-purple:hover, a.text-purple:focus {
  color: #1c004d !important; }

.text-charcoal-grey {
  color: #4b4e50 !important; }

a.text-charcoal-grey:hover, a.text-charcoal-grey:focus {
  color: #262829 !important; }

.text-light-grey {
  color: #f3f3f3 !important; }

a.text-light-grey:hover, a.text-light-grey:focus {
  color: #cdcdcd !important; }

.text-brown-grey {
  color: #9f9f9f !important; }

a.text-brown-grey:hover, a.text-brown-grey:focus {
  color: #797979 !important; }

.text-dark-grey {
  color: #423f3f !important; }

a.text-dark-grey:hover, a.text-dark-grey:focus {
  color: #1b1a1a !important; }

.text-stych-grey {
  color: #C7C4BA !important; }

a.text-stych-grey:hover, a.text-stych-grey:focus {
  color: #a5a090 !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #6c757d !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.text-decoration-none {
  text-decoration: none !important; }

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important; }

.text-reset {
  color: inherit !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .badge {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important; }
  .table-dark {
    color: inherit; }
    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
      border-color: #dee2e6; }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6; } }

.navbar.sticky-top {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease; }
  @media (max-width: 991.98px) {
    .navbar.sticky-top .dropdown-menu {
      background-color: transparent !important;
      font-size: 1.6rem !important; }
      .navbar.sticky-top .dropdown-menu .dropdown-item {
        color: white; }
        .navbar.sticky-top .dropdown-menu .dropdown-item:hover {
          color: #edff00;
          background-color: transparent  !important;
          border-radius: 12px; } }
  @media (min-width: 992px) {
    .navbar.sticky-top .dropdown-menu .dropdown-item:active {
      background-color: transparent  !important; } }
  .navbar.sticky-top .custom-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OSIgdmlld0JveD0iMCAwIDQ4IDQ5Ij4KICAgIDxkZWZzPgogICAgICAgIDxzdHlsZT4KICAgICAgICAgICAgLmNscy0ye2ZpbGw6I2ZmZn0KICAgICAgICA8L3N0eWxlPgogICAgPC9kZWZzPgogICAgPGcgaWQ9Imljb24tYnVyZ2VyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzE0IC04MTYpIj4KICAgICAgICA8cGF0aCBpZD0iVHJhY8OpXzEyNDciIGQ9Ik01My40IDEuMjV2NC41MjFhMS4yNSAxLjI1IDAgMSAwIDIuNSAwVi0yMC43NUExLjI1IDEuMjUgMCAwIDAgNTQuNjUyLTIyYTEuMjUgMS4yNSAwIDAgMC0xLjI1IDEuMjUiIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoMTM1IDIwLjU0NiA0NzUuNTYzKSIvPgogICAgICAgIDxwYXRoIGlkPSJUcmFjw6lfNTgyMSIgZD0iTTUzLjQgMS4yNXY0LjUyMWExLjI1IDEuMjUgMCAxIDAgMi41IDBWLTIwLjc1QTEuMjUgMS4yNSAwIDAgMCA1NC42NTItMjJhMS4yNSAxLjI1IDAgMCAwLTEuMjUgMS4yNSIgY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtMTM1IDM3Mi4xMDUgMzU4LjE5NykiLz4KICAgIDwvZz4KPC9zdmc+Cg=="); }
  .navbar.sticky-top .custom-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }
  .navbar.sticky-top .custom-toggler .navbar-toggler {
    border-color: white; }
  .navbar.sticky-top .navbar-nav {
    width: 100%;
    justify-content: space-evenly; }
  .navbar.sticky-top .navbar-dark .navbar-toggler {
    border: 0; }
  .navbar.sticky-top .nav-item {
    margin-left: 3rem;
    margin-bottom: 1rem; }
    @media (min-width: 992px) {
      .navbar.sticky-top .nav-item {
        margin-left: 0;
        margin-bottom: 0; } }
  .navbar.sticky-top a.nav-link {
    outline: none;
    color: #fff; }
    .navbar.sticky-top a.nav-link:hover {
      outline: none;
      color: #edff00; }
  .navbar.sticky-top .login {
    display: block;
    font-size: 16px;
    color: #fff;
    background-color: #3366ff;
    border: 2px solid #fff;
    border-radius: 999px;
    cursor: pointer;
    line-height: 45px;
    margin: auto;
    width: 168px; }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .navbar.sticky-top .login {
        width: 148px; } }
    @media (min-width: 992px) {
      .navbar.sticky-top .login {
        margin-right: 15px;
        margin-left: auto; } }
    @media (max-width: 991.98px) {
      .navbar.sticky-top .login {
        margin: 2rem auto 2rem;
        width: 250px; } }
    .navbar.sticky-top .login a, .navbar.sticky-top .login a.nav-link {
      color: #fff; }
      @media (min-width: 992px) {
        .navbar.sticky-top .login a, .navbar.sticky-top .login a.nav-link {
          color: #fff;
          margin-left: 0; } }
    .navbar.sticky-top .login:hover {
      background-color: #fff; }
      .navbar.sticky-top .login:hover a {
        color: #3366ff; }
  .navbar.sticky-top .menu-complet {
    padding-top: 7px; }
    .navbar.sticky-top .menu-complet .collapsing {
      transition: none !important; }
    .navbar.sticky-top .menu-complet .dropdown-item:active {
      color: #423f3f; }
    .navbar.sticky-top .menu-complet a {
      display: flex !important;
      justify-content: space-between;
      align-items: center; }
      .navbar.sticky-top .menu-complet a i {
        margin-left: 4rem; }
    .navbar.sticky-top .menu-complet .menu-complet-icon {
      display: inline-block;
      width: 1.5em;
      height: 1.5em;
      vertical-align: middle;
      content: "";
      background: no-repeat center center;
      background-size: 150% 150%;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }
    .navbar.sticky-top .menu-complet.show .menu-complet-icon {
      background-size: 45px;
      background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OSIgdmlld0JveD0iMCAwIDQ4IDQ5Ij4KICAgIDxkZWZzPgogICAgICAgIDxzdHlsZT4KICAgICAgICAgICAgLmNscy0ye2ZpbGw6I2ZmZn0KICAgICAgICA8L3N0eWxlPgogICAgPC9kZWZzPgogICAgPGcgaWQ9Imljb24tYnVyZ2VyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzE0IC04MTYpIj4KICAgICAgICA8cGF0aCBpZD0iVHJhY8OpXzEyNDciIGQ9Ik01My40IDEuMjV2NC41MjFhMS4yNSAxLjI1IDAgMSAwIDIuNSAwVi0yMC43NUExLjI1IDEuMjUgMCAwIDAgNTQuNjUyLTIyYTEuMjUgMS4yNSAwIDAgMC0xLjI1IDEuMjUiIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoMTM1IDIwLjU0NiA0NzUuNTYzKSIvPgogICAgICAgIDxwYXRoIGlkPSJUcmFjw6lfNTgyMSIgZD0iTTUzLjQgMS4yNXY0LjUyMWExLjI1IDEuMjUgMCAxIDAgMi41IDBWLTIwLjc1QTEuMjUgMS4yNSAwIDAgMCA1NC42NTItMjJhMS4yNSAxLjI1IDAgMCAwLTEuMjUgMS4yNSIgY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtMTM1IDM3Mi4xMDUgMzU4LjE5NykiLz4KICAgIDwvZz4KPC9zdmc+Cg=="); }
  .navbar.sticky-top .dropdown-downleft .dropdown-menu {
    left: auto;
    right: 0; }
  .navbar.sticky-top .inscription {
    display: block;
    font-size: 16px;
    border-radius: 999px;
    color: #fff;
    background-color: #3366ff;
    border: 2px solid #fff;
    cursor: pointer;
    line-height: 45px;
    margin: auto;
    width: 168px; }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .navbar.sticky-top .inscription {
        width: 148px; } }
    @media (min-width: 992px) {
      .navbar.sticky-top .inscription {
        margin-right: 22px;
        margin-left: auto; } }
    @media (max-width: 991.98px) {
      .navbar.sticky-top .inscription {
        width: 250px;
        margin: 0 auto 2rem; } }
    .navbar.sticky-top .inscription a, .navbar.sticky-top .inscription a.nav-link {
      color: #fff; }
      @media (min-width: 992px) {
        .navbar.sticky-top .inscription a, .navbar.sticky-top .inscription a.nav-link {
          margin-left: 0; } }
    .navbar.sticky-top .inscription:hover {
      background-color: #fff; }
      .navbar.sticky-top .inscription:hover a {
        color: #3366ff; }
    @media (max-width: 991.98px) {
      .navbar.sticky-top .inscription .nav-item {
        padding-left: 1rem;
        padding-top: 0;
        padding-bottom: 0; }
        .navbar.sticky-top .inscription .nav-item.dropdown.show {
          background-color: #2851CB;
          border: solid 1px #707070; } }
  .navbar.sticky-top.scrolled, .navbar.sticky-top.white-menu {
    background-color: #fff !important;
    box-shadow: 0 10px 20px 0 rgba(164, 164, 166, 0.15);
    color: #423f3f !important; }
    .navbar.sticky-top.scrolled .smart-app-banner, .navbar.sticky-top.white-menu .smart-app-banner {
      background: #380098 !important;
      color: white; }
      .navbar.sticky-top.scrolled .smart-app-banner span, .navbar.sticky-top.white-menu .smart-app-banner span {
        color: white !important; }
      .navbar.sticky-top.scrolled .smart-app-banner a, .navbar.sticky-top.white-menu .smart-app-banner a {
        color: #212529;
        background-color: #edff00;
        border-color: #edff00; }
    .navbar.sticky-top.scrolled #logo-stych-header path, .navbar.sticky-top.white-menu #logo-stych-header path {
      fill: #3366FF !important; }
    .navbar.sticky-top.scrolled #logo, .navbar.sticky-top.white-menu #logo {
      filter: brightness(0) saturate(100%) invert(33%) sepia(31%) saturate(7194%) hue-rotate(220deg) brightness(102%) contrast(101%); }
    .navbar.sticky-top.scrolled a.nav-link, .navbar.sticky-top.white-menu a.nav-link {
      color: #423f3f !important; }
      .navbar.sticky-top.scrolled a.nav-link:hover, .navbar.sticky-top.white-menu a.nav-link:hover {
        color: #3366ff !important; }
    .navbar.sticky-top.scrolled .dropdown-menu:not(.dropdown-menu-stych-md) a, .navbar.sticky-top.white-menu .dropdown-menu:not(.dropdown-menu-stych-md) a {
      color: #423f3f !important; }
    .navbar.sticky-top.scrolled .dropdown-menu.dropdown-menu-stych-md a, .navbar.sticky-top.white-menu .dropdown-menu.dropdown-menu-stych-md a {
      color: #3366ff !important; }
    .navbar.sticky-top.scrolled .navbar-toggler-icon, .navbar.sticky-top.white-menu .navbar-toggler-icon {
      filter: brightness(0) saturate(100%) invert(33%) sepia(94%) saturate(3350%) hue-rotate(220deg) brightness(102%) contrast(104%); }
    .navbar.sticky-top.scrolled .subtitle-logo, .navbar.sticky-top.white-menu .subtitle-logo {
      color: #3366ff; }
    .navbar.sticky-top.scrolled .login, .navbar.sticky-top.white-menu .login {
      background-color: #fff;
      border: 1px solid #3366ff; }
      .navbar.sticky-top.scrolled .login a, .navbar.sticky-top.white-menu .login a {
        color: #3366ff !important; }
      .navbar.sticky-top.scrolled .login:hover, .navbar.sticky-top.white-menu .login:hover {
        background-color: #3366ff;
        border-color: #fff; }
        .navbar.sticky-top.scrolled .login:hover a, .navbar.sticky-top.white-menu .login:hover a {
          color: #fff !important; }
    .navbar.sticky-top.scrolled .menu-complet .dropdown-item:active, .navbar.sticky-top.white-menu .menu-complet .dropdown-item:active {
      color: #423f3f; }
    .navbar.sticky-top.scrolled .menu-complet .collapsing, .navbar.sticky-top.white-menu .menu-complet .collapsing {
      transition: none !important; }
    .navbar.sticky-top.scrolled .menu-complet .menu-complet-icon, .navbar.sticky-top.white-menu .menu-complet .menu-complet-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(66, 63, 63, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }
    .navbar.sticky-top.scrolled .menu-complet .menu-complet-icon:hover, .navbar.sticky-top.white-menu .menu-complet .menu-complet-icon:hover {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(51, 102, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }
    .navbar.sticky-top.scrolled .menu-complet.show .menu-complet-icon, .navbar.sticky-top.white-menu .menu-complet.show .menu-complet-icon {
      background-size: 45px;
      background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OSIgdmlld0JveD0iMCAwIDQ4IDQ5Ij4KICAgIDxkZWZzPgogICAgICAgIDxzdHlsZT4KICAgICAgICAgICAgLmNscy0ye2ZpbGw6IzMzNjZmZn0KICAgICAgICA8L3N0eWxlPgogICAgPC9kZWZzPgogICAgPGcgaWQ9Imljb24tYnVyZ2VyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzE0IC04MTYpIj4KICAgICAgICA8cGF0aCBpZD0iVHJhY8OpXzEyNDciIGQ9Ik01My40IDEuMjV2NC41MjFhMS4yNSAxLjI1IDAgMSAwIDIuNSAwVi0yMC43NUExLjI1IDEuMjUgMCAwIDAgNTQuNjUyLTIyYTEuMjUgMS4yNSAwIDAgMC0xLjI1IDEuMjUiIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoMTM1IDIwLjU0NiA0NzUuNTYzKSIvPgogICAgICAgIDxwYXRoIGlkPSJUcmFjw6lfNTgyMSIgZD0iTTUzLjQgMS4yNXY0LjUyMWExLjI1IDEuMjUgMCAxIDAgMi41IDBWLTIwLjc1QTEuMjUgMS4yNSAwIDAgMCA1NC42NTItMjJhMS4yNSAxLjI1IDAgMCAwLTEuMjUgMS4yNSIgY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtMTM1IDM3Mi4xMDUgMzU4LjE5NykiLz4KICAgIDwvZz4KPC9zdmc+Cg=="); }
    .navbar.sticky-top.scrolled .inscription, .navbar.sticky-top.white-menu .inscription {
      background-color: #3366ff; }
      .navbar.sticky-top.scrolled .inscription a, .navbar.sticky-top.white-menu .inscription a {
        color: #fff !important; }
      .navbar.sticky-top.scrolled .inscription:hover, .navbar.sticky-top.white-menu .inscription:hover {
        background-color: #fff;
        border: 1px solid #3366ff; }
        .navbar.sticky-top.scrolled .inscription:hover a, .navbar.sticky-top.white-menu .inscription:hover a {
          color: #3366ff; }
    @media (max-width: 991.98px) {
      .navbar.sticky-top.scrolled .nav-item.dropdown.show, .navbar.sticky-top.white-menu .nav-item.dropdown.show {
        background-color: #f3f3f3; } }
    @media (max-width: 991.98px) {
      .navbar.sticky-top.scrolled .nav-item a i.fa, .navbar.sticky-top.white-menu .nav-item a i.fa {
        color: #3366ff !important; }
      .navbar.sticky-top.scrolled .nav-item a.dropdown-item i.fas, .navbar.sticky-top.white-menu .nav-item a.dropdown-item i.fas {
        color: #3366ff !important; }
      .navbar.sticky-top.scrolled .dropdown-menu .dropdown-item, .navbar.sticky-top.white-menu .dropdown-menu .dropdown-item {
        color: #423f3f; }
        .navbar.sticky-top.scrolled .dropdown-menu .dropdown-item:hover, .navbar.sticky-top.white-menu .dropdown-menu .dropdown-item:hover {
          color: #3366ff !important; }
      .navbar.sticky-top.scrolled .nav-item, .navbar.sticky-top.white-menu .nav-item {
        padding-left: 1rem;
        padding-top: 0;
        padding-bottom: 0; }
        .navbar.sticky-top.scrolled .nav-item.dropdown.show, .navbar.sticky-top.white-menu .nav-item.dropdown.show {
          background-color: #f8f8f8;
          border: none; } }
  @media (max-width: 991.98px) {
    .navbar.sticky-top.white-menu .dropdown-menu .dropdown-item {
      color: #3366ff; } }
  @media (min-width: 992px) {
    .navbar.sticky-top.white-menu .dropdown-menu .dropdown-item:hover {
      color: #3366ff !important; } }
  @media (max-width: 991.98px) {
    .navbar.sticky-top.scrolled .dropdown-menu .dropdown-item {
      color: white; } }
  @media (max-width: 991.98px) {
    .navbar.sticky-top.white-menu.scrolled .dropdown-menu .dropdown-item {
      color: #3366ff; } }
  .navbar.sticky-top.scrolled .icon-white {
    display: none; }
  .navbar.sticky-top.scrolled .icon-black {
    display: block; }
  .navbar.sticky-top:not(.scrolled) .icon-black {
    display: none; }
  .navbar.sticky-top:not(.scrolled) .icon-white {
    display: block; }

.bcontent {
  margin-top: 8rem; }

.header-top {
  z-index: 11;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background-color: #423f3f;
  color: #fff;
  font-size: 10px; }
  .header-top picture img {
    margin-right: 5px;
    height: 10px; }

.top-bar {
  background-color: #3366ff; }
  .top-bar ul {
    background-color: #3366ff; }

.main-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 11;
  width: 100%;
  background-color: #3366ff; }
  .main-header .header-bottom {
    display: flex;
    margin-bottom: 0;
    width: 100%;
    height: 38px;
    align-items: center;
    justify-content: space-between; }
    .main-header .header-bottom picture img {
      display: block;
      width: 100px; }
    .main-header .header-bottom i {
      display: block;
      color: #fff; }
    .main-header .header-bottom .menu-icon {
      font-size: 20px; }
    .main-header .header-bottom .log-icon {
      font-size: 22px; }
    .main-header .header-bottom .top-bar-left ul li:first-child {
      margin-right: 50px; }
    .main-header .header-bottom .top-bar-left ul li:nth-child(n + 2) {
      margin-right: 25px; }
    .main-header .header-bottom ul {
      list-style-type: none;
      margin-left: 20px; }
      .main-header .header-bottom ul li {
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 0.2px;
        text-align: center; }
        .main-header .header-bottom ul li span.lien-menu,
        .main-header .header-bottom ul li a {
          color: #fff; }
        .main-header .header-bottom ul li.active a {
          color: red; }
    .main-header .header-bottom .login {
      display: block;
      font-size: 16px;
      color: #fff;
      margin-right: 22px;
      margin-left: auto;
      background-color: #3366ff;
      border: 1px solid #fff;
      border-radius: 999px;
      cursor: pointer;
      padding: 10px;
      width: 168px; }
      .main-header .header-bottom .login:hover {
        background-color: #fff; }
        .main-header .header-bottom .login:hover a {
          color: #3366ff; }
    .main-header .header-bottom .inscription {
      display: block;
      font-size: 16px;
      margin-right: 22px;
      margin-left: auto;
      border-radius: 999px;
      background-color: #fff;
      cursor: pointer;
      padding: 10px;
      width: 168px; }
      .main-header .header-bottom .inscription:hover {
        background-color: #3366ff;
        border: 1px solid #fff; }
        .main-header .header-bottom .inscription:hover a {
          color: #fff; }
    .main-header .header-bottom .inscription a {
      color: #3366ff; }
    .main-header .header-bottom .dropdown-pane {
      box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2); }
      .main-header .header-bottom .dropdown-pane .login {
        display: block;
        text-align: center;
        height: 50px;
        line-height: 50px;
        margin: 0; }
      .main-header .header-bottom .dropdown-pane .btn, .main-header .header-bottom .dropdown-pane .nav-tabs .nav-link, .nav-tabs .main-header .header-bottom .dropdown-pane .nav-link, .main-header .header-bottom .dropdown-pane .msg_container .btn-cta, .msg_container .main-header .header-bottom .dropdown-pane .btn-cta {
        display: block; }

.chevron::after {
  content: "\2039";
  color: white; }

@media (min-width: 992px) {
  .main-header .header-bottom {
    height: auto;
    padding: 20px 0; }
    .main-header .header-bottom .row {
      padding: 0; }
  .main-header ul {
    margin-left: 0; }
  #mobile-menu ul:last-child li {
    margin-right: 20px; } }

@media (max-width: 991.98px) {
  .nav-link {
    padding-top: 0;
    padding-bottom: 0; } }

@media (max-width: 991.98px) {
  .menu-toggle {
    display: none; }
  .main-header {
    z-index: 100; }
    .main-header .header-top {
      height: 30px;
      font-size: 12px; }
      .main-header .header-top picture img {
        margin-right: 10px;
        height: 14px; }
      .main-header .header-top .row {
        text-align: center; }
        .main-header .header-top .row p {
          margin-right: auto;
          line-height: 5px; }
    .main-header .header-bottom.row {
      padding: 0 30px;
      justify-content: initial;
      height: 80px; }
      .main-header .header-bottom.row picture img {
        max-width: 120px;
        margin-right: auto; }
      .main-header .header-bottom.row ul {
        display: flex; }
        .main-header .header-bottom.row ul li {
          font-size: 11px; }
      .main-header .header-bottom.row i {
        display: none; } }

@media (min-width: 992px) {
  .main-header .header-bottom.row {
    padding: 0 60px; }
    .main-header .header-bottom.row ul {
      display: flex; }
      .main-header .header-bottom.row ul li {
        font-size: 12px; } }

.navbar .collapse {
  margin-left: 0; }

#navbarCollapse.collapse,
#navbarCollapseMobile.collapse {
  margin-left: 0; }
  #navbarCollapse.collapse .open,
  #navbarCollapseMobile.collapse .open {
    margin-left: 0; }

#navbarCollapseMobile .login, #navbarCollapseMobile .inscription {
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: #3366ff;
  border: 1px solid #fff;
  border-radius: 999px;
  cursor: pointer;
  line-height: 45px;
  margin: 2rem auto 2rem;
  width: 250px;
  padding-left: 1rem;
  padding-top: 0;
  padding-bottom: 0; }
  #navbarCollapseMobile .login a, #navbarCollapseMobile .inscription a {
    line-height: 45px;
    justify-content: space-evenly; }
  #navbarCollapseMobile .login:hover, #navbarCollapseMobile .inscription:hover {
    background-color: #fff;
    color: #3366ff; }
    #navbarCollapseMobile .login:hover a, #navbarCollapseMobile .inscription:hover a {
      color: #3366ff; }

#navbarCollapseMobile .inscription a {
  color: #fff !important; }
  #navbarCollapseMobile .inscription a:hover {
    color: #3366ff !important; }

.navbar.sticky-top .dropdown-item,
.navbar.sticky-top.scrolled .dropdown-item,
.navbar.sticky-top.white-menu .dropdown-item {
  padding: 1rem 1.5rem 0.75rem 1.5rem; }

.navbar.sticky-top .menu-complet .dropdown-item,
.navbar.sticky-top.scrolled .menu-complet .dropdown-item,
.navbar.sticky-top.white-menu .menu-complet .dropdown-item {
  display: flex !important;
  justify-content: space-between;
  align-items: center; }
  .navbar.sticky-top .menu-complet .dropdown-item.level-1,
  .navbar.sticky-top.scrolled .menu-complet .dropdown-item.level-1,
  .navbar.sticky-top.white-menu .menu-complet .dropdown-item.level-1 {
    padding-left: 4rem; }
  .navbar.sticky-top .menu-complet .dropdown-item.level-2,
  .navbar.sticky-top.scrolled .menu-complet .dropdown-item.level-2,
  .navbar.sticky-top.white-menu .menu-complet .dropdown-item.level-2 {
    padding-left: 8rem; }
  .navbar.sticky-top .menu-complet .dropdown-item.level-3,
  .navbar.sticky-top.scrolled .menu-complet .dropdown-item.level-3,
  .navbar.sticky-top.white-menu .menu-complet .dropdown-item.level-3 {
    padding-left: 12rem; }

.navbar.sticky-top a.btn-deconnexion,
.navbar.sticky-top.scrolled a.btn-deconnexion,
.navbar.sticky-top.white-menu a.btn-deconnexion {
  text-decoration: underline; }

.navbar.sticky-top .login.border-navy,
.navbar.sticky-top.scrolled .login.border-navy,
.navbar.sticky-top.white-menu .login.border-navy {
  border-color: #00e8ff !important; }

.navbar.sticky-top.scrolled .open, .navbar.sticky-top.scrolled .dropdown-item:focus,
.navbar.sticky-top.white-menu .open,
.navbar.sticky-top.white-menu .dropdown-item:focus {
  background-color: #f3f3f3; }

.navbar.sticky-top.scrolled .dropdown-item:hover,
.navbar.sticky-top.white-menu .dropdown-item:hover {
  background-color: #f8f8f8; }

.navbar.sticky-top.scrolled #navbarCollapseMobile,
.navbar.sticky-top.white-menu #navbarCollapseMobile {
  background-color: #fff; }
  .navbar.sticky-top.scrolled #navbarCollapseMobile .inscription a,
  .navbar.sticky-top.white-menu #navbarCollapseMobile .inscription a {
    border: 1px solid transparent; }
  .navbar.sticky-top.scrolled #navbarCollapseMobile .inscription:hover,
  .navbar.sticky-top.white-menu #navbarCollapseMobile .inscription:hover {
    color: #3366ff !important;
    border: 1px solid #3366ff;
    border-radius: 999px; }
  .navbar.sticky-top.scrolled #navbarCollapseMobile .open, .navbar.sticky-top.scrolled #navbarCollapseMobile .dropdown-item:focus,
  .navbar.sticky-top.white-menu #navbarCollapseMobile .open,
  .navbar.sticky-top.white-menu #navbarCollapseMobile .dropdown-item:focus {
    background-color: #f8f8f8; }
  .navbar.sticky-top.scrolled #navbarCollapseMobile .dropdown-item:hover,
  .navbar.sticky-top.white-menu #navbarCollapseMobile .dropdown-item:hover {
    background-color: #f3f3f3; }
  .navbar.sticky-top.scrolled #navbarCollapseMobile .login,
  .navbar.sticky-top.white-menu #navbarCollapseMobile .login {
    color: #3366ff;
    background-color: #fff;
    border: 1px solid #3366ff; }
    .navbar.sticky-top.scrolled #navbarCollapseMobile .login a,
    .navbar.sticky-top.white-menu #navbarCollapseMobile .login a {
      color: #3366ff !important; }
    .navbar.sticky-top.scrolled #navbarCollapseMobile .login:hover,
    .navbar.sticky-top.white-menu #navbarCollapseMobile .login:hover {
      background-color: #3366ff;
      color: #fff; }
      .navbar.sticky-top.scrolled #navbarCollapseMobile .login:hover a,
      .navbar.sticky-top.white-menu #navbarCollapseMobile .login:hover a {
        color: #fff !important; }

.navbar.sticky-top.scrolled a.nav-link.btn-mon-compte-menu-stych,
.navbar.sticky-top.white-menu a.nav-link.btn-mon-compte-menu-stych {
  color: #3366ff !important;
  background-color: #fff !important; }

.navbar.sticky-top.scrolled a.nav-link.btn-mon-compte-menu-stych:hover,
.navbar.sticky-top.white-menu a.nav-link.btn-mon-compte-menu-stych:hover {
  color: #fff !important;
  background-color: #3366ff !important;
  border-color: #fff !important; }

.navbar.sticky-top #navbarCollapseMobile {
  background-color: #3366ff;
  margin-left: 0; }
  .navbar.sticky-top #navbarCollapseMobile .dropdown-item {
    color: #fff !important; }
    .navbar.sticky-top #navbarCollapseMobile .dropdown-item:hover {
      color: white;
      background-color: #3366ff !important;
      opacity: 0.5 !important; }
  .navbar.sticky-top #navbarCollapseMobile .open, .navbar.sticky-top #navbarCollapseMobile .dropdown-item:focus {
    background-color: #3366ff;
    opacity: 1; }
  .navbar.sticky-top #navbarCollapseMobile .dropdown-item.dropdown-child:hover {
    background-color: #3366ff;
    opacity: 0.5; }

.navbar.sticky-top .dropdown-item {
  color: #3366ff !important; }

.navbar.sticky-top a.nav-link.btn-mon-compte-menu-stych {
  font-size: 16px;
  color: #fff;
  background-color: #3366ff;
  border: 1px solid #fff !important;
  border-radius: 999px;
  cursor: pointer;
  line-height: 45px;
  margin: 2rem auto 2rem;
  padding: 0 3rem;
  text-align: center; }
  .navbar.sticky-top a.nav-link.btn-mon-compte-menu-stych.cybermonday {
    border: unset !important; }

.navbar.sticky-top a.nav-link.btn-mon-compte-menu-stych:hover {
  color: #3366ff !important;
  background-color: #fff !important; }

.navbar.sticky-top a.nav-link.border-navy {
  border-color: #00e8ff !important; }

.navbar.sticky-top .dropdown-top-menu .dropdown-item {
  padding-left: 4rem; }

.navbar.sticky-top .dropdown-top-menu .dropdown-item.level-3 {
  padding-left: 8rem; }

.navbar.sticky-top.white-menu a.nav-link.btn-mon-compte-menu-stych,
.navbar.sticky-top.scrolled a.nav-link.btn-mon-compte-menu-stych {
  border: 2pt solid #3366ff !important; }

.navbar.sticky-top.white-menu #navbarCollapseMobile .dropdown-item,
.navbar.sticky-top.scrolled #navbarCollapseMobile .dropdown-item {
  color: #3366ff !important; }
  .navbar.sticky-top.white-menu #navbarCollapseMobile .dropdown-item:hover,
  .navbar.sticky-top.scrolled #navbarCollapseMobile .dropdown-item:hover {
    color: #fff !important; }

.navbar_menu_top .element-hide {
  display: none; }

@media (min-width: 992px) {
  .navbar_menu_top .element-1,
  .navbar_menu_top .element-2,
  .navbar_menu_top .element-3 {
    display: block; } }

@media (min-width: 1200px) {
  .navbar_menu_top .element-4 {
    display: block; } }

@media (min-width: 1450px) {
  .navbar_menu_top .element-5 {
    display: block; } }

@media (min-width: 1700px) {
  .navbar_menu_top .element-hide {
    display: block; } }

.dropdown-menu-stych {
  padding: 1.5rem 0 !important; }
  .dropdown-menu-stych .dropdown-item {
    display: flex !important;
    justify-content: space-between;
    align-items: center; }

.dropdown-menu {
  border: none; }

@media (max-width: 991.98px) {
  .dropdown-item {
    padding: .5rem 0 .5rem 2.8rem;
    color: rgba(0, 0, 0, 0.5); } }

.dropdown-item .fas {
  font-size: 0.7em;
  padding-right: 20px;
  vertical-align: 0.1em; }

.ico-nav {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: -0.5em; }

.ico-no-submenu {
  margin-left: 15px; }

.ico-nav-permis {
  background-image: url("/img/stych/menu-mobile/Icon_Permis_BlueBG.svg"); }

.white-menu .ico-nav-permis {
  background-image: url("/img/stych/menu-mobile/Icon_Permis_WhiteBG.svg"); }

.ico-nav-code {
  background-image: url("/img/stych/menu-mobile/Icon_Code_BlueBG.svg"); }

.white-menu .ico-nav-code {
  background-image: url("/img/stych/menu-mobile/Icon_Code_WhiteBG.svg"); }

.ico-nav-assu {
  background-image: url("/img/stych/menu-mobile/Icon_Assu_BlueBG.svg"); }

.white-menu .ico-nav-assu {
  background-image: url("/img/stych/menu-mobile/Icon_Assu_WhiteBG.svg"); }

.ico-nav-autres {
  background-image: url("/img/stych/menu-mobile/Icon_Autres_BlueBG.svg"); }

.white-menu .ico-nav-autres {
  background-image: url("/img/stych/menu-mobile/Icon_Autres_WhiteBG.svg"); }

.ico-nav-contact {
  background-image: url("/img/stych/menu-mobile/Icon_Contact_BlueBG.svg"); }

.white-menu .ico-nav-contact {
  background-image: url("/img/stych/menu-mobile/Icon_Contact_WhiteBG.svg"); }

.ico-nav-moto {
  background-image: url("/img/stych/menu-mobile/Icon_Moto_BlueBG.svg"); }

.white-menu .ico-nav-moto {
  background-image: url("/img/stych/menu-mobile/Icon_Moto_WhiteBG.svg"); }

.offres {
  background-color: #f8f8f8; }

.rectangle-home-first {
  margin-right: 0.5rem; }

.rectangle-home-second {
  margin-left: 0.5rem; }

.rectangle-home {
  background-color: white;
  color: #423f3f;
  border-radius: 30px;
  padding: 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px 0 rgba(164, 164, 166, 0.16);
  min-height: 15rem; }
  .rectangle-home img {
    width: 90%;
    margin-top: -50px; }

.offres-home-first {
  margin-right: 0.7rem; }

.offres-home-second {
  margin-left: 0.7rem; }

.offres-home {
  background-color: white;
  color: #423f3f;
  border-radius: 30px;
  padding: 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px 0 rgba(164, 164, 166, 0.16);
  min-height: 15rem; }
  .offres-home img {
    width: 90%;
    margin-top: -50px; }
  @media (max-width: 575.98px) {
    .offres-home .btn-rounded, .offres-home .msg_container .btn-cta, .msg_container .offres-home .btn-cta {
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      padding-left: 5px;
      padding-right: 5px; } }
.avis ul {
  list-style-type: none; }

@media (max-width: 991.98px) {
  .avis {
    background-color: #fff;
    background-size: 100% 70%;
    background-position: top center;
    background-image: url(/img/stych/background/fond-bleu_3.webp);
    background-repeat: no-repeat; } }

.avisSansBackground ul {
  list-style-type: none; }

.bulle-indigo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 3rem;
  box-shadow: 0 10px 30px 0 rgba(56, 0, 153, 0.3);
  background-color: #380099;
  color: white;
  border-radius: 30px 30px 0 30px;
  position: relative; }
  .bulle-indigo:after {
    position: absolute;
    content: "";
    bottom: -29px;
    right: 0;
    display: inline-block;
    height: 0;
    width: 0;
    border-top: 30px solid #380099;
    border-left: 30px solid transparent; }
  .bulle-indigo .ville {
    opacity: 0.5; }

.bulle-left {
  height: auto;
  padding: 4rem 4rem 6rem;
  box-shadow: 0 10px 30px 0 rgba(56, 0, 153, 0.3);
  background-color: #380099;
  color: white;
  border-radius: 30px 30px 30px 0; }
  .bulle-left:after {
    position: absolute;
    content: "";
    bottom: -29px;
    display: inline-block;
    height: 0;
    width: 0;
    border-top: 30px solid #380099;
    border-right: 30px solid transparent;
    clear: both; }
    @media (min-width: 768px) {
      .bulle-left:after {
        left: calc(6rem + 15px); } }
    @media (max-width: 767.98px) {
      .bulle-left:after {
        left: calc(15px); } }
  .bulle-left .ville {
    opacity: 0.5; }

.bulle-background-primary {
  background-color: #3366ff; }
  .bulle-background-primary:after {
    border-top-color: #3366ff; }

.packs {
  background-color: #380099;
  color: white !important; }
  .packs .h1 {
    color: white; }
  .packs .col-pack {
    color: #212529; }
  .packs .pack {
    color: #212529;
    font-size: 1.2rem;
    line-height: 2.3;
    font-weight: bold;
    letter-spacing: 1.2px;
    background-color: #edff00;
    display: inline-block;
    padding: 0.3rem 0 0.1rem; }
  @media (min-width: 992px) {
    .packs .carousel-packs {
      margin: 0 auto; } }
  @media (max-width: 991.98px) {
    .packs .carousel-packs {
      overflow: hidden; } }
  .packs .pack-rectangle {
    background-color: white;
    color: #423f3f;
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 15px 30px 0 rgba(164, 164, 166, 0.16); }
    .packs .pack-rectangle .pack-rectangle-title {
      font-size: 2.4rem;
      font-weight: bold; }
    .packs .pack-rectangle ul {
      list-style-type: none;
      margin-left: -35px; }
      .packs .pack-rectangle ul li i {
        font-size: 0.8rem;
        color: #3366ff;
        padding-right: 10px; }

.plaisir {
  font-family: 'PlaydatesHandwriting';
  font-size: 3rem;
  color: white;
  line-height: 0.8;
  font-weight: normal; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .plaisir {
      font-size: 5rem; } }
  @media (min-width: 1200px) {
    .plaisir {
      font-size: 7rem; } }
#home {
  /*    .star-left {
        position: relative;    
        &:before {
            height: 100%;
            display: block;
            background-image: url(/img/stych/homepage/star-blue-right.png);
            background-repeat: no-repeat;
            background-position: right center;
            background-size: auto 100%;
            position: absolute;
            right:0;
            top:0;    
        }
    }*/
  /*    .rectangle-with-shape {
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 200px;
        border-top: none;
        border-bottom: none;
        position: relative;
//        overflow: hidden;
        z-index: 1;
        background-color: $primary;
        &:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            border-radius: 80%;
            left: 0;
            top: -100px;
            z-index: 2;
            background-color: $white;
        }
        &:after {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            border-radius: 80%;
            left: 0;
            bottom: 100px;
            z-index: 2;
            background-color: $white;
        }
    }*/
  /*    .embed-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }
    .embed-container iframe, .embed-container object, .embed-container embed {
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .embed-container:hover + .video-control {
        opacity: 0.5;
    }
*/
  /* video button style */ }
  #home .plaisir {
    font-family: 'PlaydatesHandwriting';
    font-size: 3rem;
    color: white;
    line-height: 0.8;
    font-weight: normal; }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      #home .plaisir {
        font-size: 5rem; } }
    @media (min-width: 1200px) {
      #home .plaisir {
        font-size: 7rem; } }
  #home .section-welcome .plaisir {
    line-height: normal; }
  @media (max-width: 767.98px) {
    #home .bg-purple-mobile {
      background-color: #6f42c1 !important; }
    #home .bg-secondary-mobile {
      background-color: #00e8ff !important; } }
  @media (min-width: 992px) {
    #home .decouverte-desktop {
      margin-top: 100px; }
      #home .decouverte-desktop img {
        margin-top: -30px;
        width: 100%;
        height: auto; } }
  @media (max-width: 991.98px) {
    #home .decouverte {
      margin-top: 5rem; } }
  #home .decouverte .star {
    width: 200px; }
    @media (min-width: 992px) {
      #home .decouverte .star {
        margin-top: 15rem; } }
    @media (max-width: 767.98px) {
      #home .decouverte .star {
        max-width: 20rem; } }
  #home .decouverte .col-img {
    max-width: 382px;
    flex-basis: 100%; }
    @media (min-width: 576px) {
      #home .decouverte .col-img {
        flex-basis: 33.33333%; } }
  #home .decouverte .img-legend {
    max-height: 20.255vw;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: white; }
  #home .decouverte ul.vertical-bar li:before {
    margin-left: 1.5rem; }
    @media (min-width: 992px) {
      #home .decouverte ul.vertical-bar li:before {
        margin-left: 0; } }
  #home .apprentissage {
    position: relative; }
    @media (max-width: 991.98px) {
      #home .apprentissage {
        color: white;
        background-color: #fff;
        background-repeat: no-repeat;
        background-image: url(/img/stych/background/fond-bleu_3.webp);
        background-size: 100% 100%; } }
  #home .section-engagement {
    position: relative;
    margin-top: 6rem;
    color: black;
    background-color: #fff;
    background-repeat: no-repeat;
    background-image: url(/img/stych/background/fond-bleu-clair.png);
    background-size: 100% 72%; }
    @media (max-width: 991.98px) {
      #home .section-engagement {
        background-size: 100% 68%; } }
  #home .section-info-promo .newLink {
    width: 80%; }
  #home .section-avis .newLink, #home .section-coach-virtuel .newLink {
    width: unset; }
  @media (min-width: 992px) {
    #home .section-enseignants .list-enseignant {
      height: 200px;
      position: relative;
      color: black;
      background-color: #fff;
      background-repeat: no-repeat;
      background-image: url(/img/stych/background/fond-gris-clair.png);
      background-size: 100% 61%; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    #home .section-enseignants .list-enseignant {
      background-size: 100% 75%; } }
  @media (max-width: 991.98px) {
    #home .section-mobile {
      background-color: #3366ff;
      background-repeat: no-repeat;
      background-image: url(/img/stych/background/fond-blanc.png);
      background-size: 100% 90%;
      background-position: top center; } }
  #home .plateforme {
    background-color: #f8f8f8; }
    @media (min-width: 992px) {
      #home .plateforme {
        border-top-left-radius: 82px;
        border-top-right-radius: 82px; } }
    @media (max-width: 991.98px) {
      #home .plateforme {
        border-radius: 0 0 50% 50% / 18% 18%;
        overflow: hidden;
        color: white;
        background: #3366ff; } }
  @media (max-width: 991.98px) {
    #home .moniteur {
      background-color: #3366ff;
      background-repeat: no-repeat;
      background-image: url(/img/stych/background/fond-blanc.png);
      background-size: 100% 80%;
      background-position: top center; } }
  @media (max-width: 991.98px) {
    #home .experts {
      padding-top: 6rem;
      color: white;
      background-color: #fff;
      background-repeat: no-repeat;
      background-image: url(/img/stych/background/fond-bleu-image.webp);
      background-size: 100% 90%;
      background-position: top center; } }
  @media (max-width: 991.98px) {
    #home .vehicules {
      background-color: #3366ff;
      background-repeat: no-repeat;
      background-image: url(/img/stych/background/fond-blanc.png);
      background-size: 100% auto;
      background-position: bottom center; } }
  @media (max-width: 991.98px) {
    #home .localisation {
      color: white;
      background-color: #fff;
      background-repeat: no-repeat;
      background-image: url(/img/stych/background/fond-bleu_3.webp);
      background-size: 100% 100%;
      background-position: bottom center; } }
  @media (min-width: 992px) {
    #home .avis .stych-carouseul-item:first-child {
      position: absolute;
      top: 200px;
      left: 0; }
    #home .avis .stych-carouseul-item:nth-child(2) {
      position: absolute;
      top: 0px;
      left: 50%; }
    #home .avis .stych-carouseul-item:nth-child(3) {
      position: absolute;
      top: 400px;
      left: 50%; } }
  @media (max-width: 991.98px) {
    #home .btn-localisation {
      background-color: #edff00;
      color: #423f3f;
      padding: 2.1rem 8.4rem; } }
  @media (min-width: 992px) {
    #home .btn-localisation {
      background-color: #3366ff; } }
  @media (max-width: 991.98px) {
    #home .fond-peinture-mobile {
      background-image: url(/img/stych/fond-peinture.svg);
      background-repeat: no-repeat;
      background-size: 80%;
      background-position: center center; } }
  @media (min-width: 992px) {
    #home .fond-peinture {
      background-image: url(/img/stych/fond-peinture.svg);
      background-repeat: no-repeat;
      background-size: 278px 224px;
      background-position: bottom right; } }
  #home .oval {
    height: 50px;
    width: 100%;
    background-color: #3366ff;
    border-radius: 50%;
    top: -25px;
    position: absolute; }
  #home .logo-presse {
    object-fit: scale-down; }
  #home .apprentissage-icon {
    height: 180px;
    position: relative; }
    #home .apprentissage-icon img {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto; }
  #home .rectangle .card-body {
    padding: 0; }
  #home .rectangle p {
    min-height: 19rem; }
  #home .star-blue-left {
    background-image: url(/img/stych/homepage/star-blue-right.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
    position: absolute;
    left: 50%;
    top: 0;
    display: block; }
  #home .star-left {
    background-image: url(/img/stych/homepage/star-blue-right.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
    height: 80rem; }
  @media (min-width: 992px) {
    #home .star-left-left {
      background-image: url(/img/stych/homepage/star-blue-left.png);
      background-repeat: no-repeat;
      background-position: right top;
      background-size: auto 100%;
      height: 80rem; } }
  #home .mobile-left {
    position: relative; }
    #home .mobile-left .image-mobile {
      position: absolute;
      right: 10%;
      height: 64rem; }
      @media (min-width: 768px) {
        #home .mobile-left .image-mobile {
          margin-top: 5%; } }
      @media (max-width: 767.98px) {
        #home .mobile-left .image-mobile {
          top: 10%; } }
  #home .montage {
    height: 100%;
    overflow: hidden;
    background-image: url(/img/stych/homepage/Montage2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    position: relative; }
    @media (min-width: 768px) and (max-width: 991.98px) {
      #home .montage {
        height: 400px; } }
    @media (min-width: 992px) {
      #home .montage {
        height: 800px; } }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      #home .montage {
        height: 500px; } }
    #home .montage img {
      position: absolute;
      right: 15%;
      top: 25%;
      max-height: 50%; }
  #home .videos {
    position: relative;
    max-width: 780px; }
    @media (min-width: 1200px) {
      #home .videos {
        height: 800px; }
        #home .videos img {
          width: 100%; } }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      #home .videos {
        height: 600px; }
        #home .videos img {
          width: 100%; } }
    @media (min-width: 768px) and (max-width: 991.98px) {
      #home .videos {
        height: 500px; }
        #home .videos img {
          width: 200px; } }
    @media (max-width: 767.98px) {
      #home .videos {
        height: 500px; }
        #home .videos img {
          width: 150px; } }
    @media (max-width: 1199.98px) {
      #home .videos .unevideo {
        max-height: 150px;
        max-width: 60%; } }
    @media (min-width: 992px) {
      #home .videos .unevideo {
        max-width: 80%; } }
    #home .videos .unevideo p {
      font-size: 14px;
      padding-top: 1rem;
      line-height: 1.8rem; }
    #home .videos #video1 {
      position: absolute; }
      @media (min-width: 1200px) {
        #home .videos #video1 {
          left: 0%;
          top: 20%;
          max-height: 30%; } }
      @media (min-width: 992px) and (max-width: 1199.98px) {
        #home .videos #video1 {
          left: 3%;
          top: 10%; } }
      @media (min-width: 768px) and (max-width: 991.98px) {
        #home .videos #video1 {
          left: 35%;
          top: 10%; } }
      @media (max-width: 767.98px) {
        #home .videos #video1 {
          left: 50%;
          top: 10%; } }
    #home .videos #video2 {
      position: absolute; }
      @media (min-width: 1200px) {
        #home .videos #video2 {
          right: 20%;
          top: 25%;
          max-height: 30%; } }
      @media (min-width: 992px) and (max-width: 1199.98px) {
        #home .videos #video2 {
          left: 0%;
          bottom: 0%; } }
      @media (max-width: 991.98px) {
        #home .videos #video2 {
          left: 0%;
          top: 25%; } }
    #home .videos #video3 {
      position: absolute; }
      @media (min-width: 1200px) {
        #home .videos #video3 {
          left: 10%;
          top: 60%;
          max-height: 30%; } }
      @media (min-width: 992px) and (max-width: 1199.98px) {
        #home .videos #video3 {
          right: 2%;
          top: 40%; } }
      @media (min-width: 768px) and (max-width: 991.98px) {
        #home .videos #video3 {
          right: 5%;
          top: 20%; } }
      @media (max-width: 767.98px) {
        #home .videos #video3 {
          right: 15%;
          top: 50%; } }
    #home .videos .play {
      position: absolute;
      background-color: #fff;
      height: 30px;
      width: 30px;
      border-radius: 50px;
      left: 10px;
      bottom: 10px;
      vertical-align: middle; }
      #home .videos .play i {
        line-height: 30px;
        color: #3366ff; }
  #home #voiture {
    position: relative;
    overflow: hidden; }
    #home #voiture img {
      height: 80rem;
      position: absolute;
      left: 0%;
      top: 20%;
      max-height: 60%; }
  #home #voiture-mobile {
    padding-bottom: 5rem; }
    @media (max-width: 991.98px) {
      #home #voiture-mobile img {
        margin-left: -15px;
        float: left; } }
    @media (min-width: 992px) {
      #home #voiture-mobile img {
        margin-left: -60px; } }
  #home .eleves .list-group-item {
    border: none; }
  #home .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
  #home .logo {
    flex-basis: 20%;
    margin-bottom: 50px; }
    #home .logo img {
      max-width: 130px; }
  #home .bulleViolette {
    height: 100%;
    display: flex;
    flex-direction: column; }
  #home .bulle-left {
    padding: 4rem 4rem 6rem;
    box-shadow: 0 10px 30px 0 rgba(56, 0, 153, 0.3);
    background-color: #380099;
    color: white;
    border-radius: 60px 60px 60px 0;
    position: relative; }
    #home .bulle-left:after {
      position: absolute;
      content: "";
      bottom: -29px;
      display: inline-block;
      height: 0;
      width: 0;
      border-top: 30px solid #380099;
      border-right: 30px solid transparent;
      clear: both;
      left: 0; }
    #home .bulle-left .ville {
      opacity: 0.5; }
  #home #bulle-right1, #home #bulle-right2 {
    width: 100%;
    padding: 4rem 4rem 6rem;
    box-shadow: 0 10px 30px 0 rgba(56, 0, 153, 0.3);
    background-color: #380099;
    color: white;
    border-radius: 60px 60px 0 60px;
    position: relative; }
    #home #bulle-right1:after, #home #bulle-right2:after {
      position: absolute;
      content: "";
      bottom: -29px;
      right: 0;
      display: inline-block;
      height: 0;
      width: 0;
      border-top: 30px solid #380099;
      border-left: 30px solid transparent; }
    #home #bulle-right1 .ville, #home #bulle-right2 .ville {
      opacity: 0.5; }
  #home #france .star-map {
    transform-origin: left top; }
  @media (min-width: 1200px) {
    #home #france img, #home #france svg {
      position: absolute;
      right: 10%;
      top: 20%;
      height: 60%;
      overflow: hidden; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #home #france img, #home #france svg {
      position: absolute;
      right: 14%;
      top: 20%;
      height: 60%;
      overflow: hidden; } }
  @media (max-width: 991.98px) {
    #home #france {
      min-height: 250px;
      position: relative;
      width: 75%;
      left: 10%;
      margin-top: 50px;
      background-color: #3366ff;
      margin-bottom: 50px; }
      #home #france img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden; }
      #home #france svg {
        height: 100%;
        width: 100%; } }
  #home .card-presse {
    width: 100%;
    height: 100%;
    padding: 45px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 30px 0 rgba(164, 164, 166, 0.2);
    text-align: left; }
    #home .card-presse p {
      line-height: 1.33;
      color: #3366ff;
      font-size: 2.4rem;
      margin-top: 4rem; }
    #home .card-presse img {
      max-width: 130px;
      max-height: 25px; }
  @media (min-width: 992px) {
    #home #bulle1 {
      position: absolute;
      top: 5%;
      padding: 1.7rem 3rem 1.9rem;
      width: 233px;
      text-align: left;
      height: auto;
      left: 5%;
      background-color: #3366ff;
      color: white;
      border-radius: 40px 40px 0 40px; }
      #home #bulle1:after {
        position: absolute;
        content: "";
        bottom: -29px;
        right: 0px;
        display: inline-block;
        height: 0;
        width: 0;
        border-top: 30px solid #3366ff;
        border-left: 30px solid transparent;
        clear: both; }
    #home #bulle2 {
      position: absolute;
      right: 15%;
      top: 0;
      width: 248px;
      text-align: left;
      height: auto;
      padding: 1.2rem 2rem 1.5rem 3.5rem;
      background-color: #3366ff;
      color: white;
      border-radius: 40px 40px 0 40px; }
      #home #bulle2:after {
        position: absolute;
        content: "";
        bottom: -29px;
        right: 0px;
        display: inline-block;
        height: 0;
        width: 0;
        border-top: 30px solid #3366ff;
        border-left: 30px solid transparent;
        clear: both; }
    #home #bulle3 {
      position: absolute;
      left: 23%;
      top: 0;
      width: 233px;
      text-align: left;
      height: auto;
      padding: 1.7rem 3.3rem;
      background-color: #3366ff;
      color: white;
      border-radius: 40px 40px 40px 0; }
      #home #bulle3:after {
        position: absolute;
        content: "";
        bottom: -29px;
        left: 0px;
        display: inline-block;
        height: 0;
        width: 0;
        border-top: 30px solid #3366ff;
        border-right: 30px solid transparent;
        clear: both; } }
  @media (min-width: 992px) {
    #home .stars-list {
      max-width: 70%;
      margin-left: 15%; } }
  @media (max-width: 991.98px) {
    #home .stars-list {
      max-width: 90%;
      margin-left: 5%; }
      #home .stars-list .list-group-item {
        padding: 0.5rem; } }
  @media (max-width: 991.98px) {
    #home .rectangle-with-shape-blue {
      background-image: url("../../../img/stych/background/fond-bleu-mobile.svg");
      background-repeat: no-repeat;
      background-size: 100% 60%;
      background-position: top center; }
    #home .rectangle-with-shape-white {
      background-image: url("../../../img/stych/background/fond-blanc-mobile.svg");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-color: #3366ff; } }
  #home .video-control {
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    width: 100%; }
  #home .video-control:hover {
    opacity: 1; }
  #home .video-control-show {
    opacity: 0.5; }
  @media (min-width: 992px) {
    #home .stych-carousel-items.bulle-carousel {
      flex-direction: column;
      align-items: flex-end; }
      #home .stych-carousel-items.bulle-carousel .stych-carousel-item, #home .stych-carousel-items.bulle-carousel .stych-carousel-item-avis {
        display: flex;
        max-width: calc(50% - 55px);
        margin: 0 27.5px;
        padding: 0; }
        #home .stych-carousel-items.bulle-carousel .stych-carousel-item:nth-child(2), #home .stych-carousel-items.bulle-carousel .stych-carousel-item-avis:nth-child(2) {
          margin-top: -100px;
          margin-bottom: -100px;
          align-self: flex-start; }
        #home .stych-carousel-items.bulle-carousel .stych-carousel-item .bulleViolette, #home .stych-carousel-items.bulle-carousel .stych-carousel-item-avis .bulleViolette {
          height: auto; } }
  #home .underline {
    text-decoration: underline;
    text-underline-offset: 0.2rem; }
  #home .star {
    width: 236.3px;
    height: 234.1px;
    left: -100px; }
  #home .svg-container {
    position: absolute; }
  #home .star-right-container {
    position: absolute;
    right: -40px;
    top: -10px; }
    #home .star-right-container .yellow-star-right {
      width: 236.3px;
      height: 234.1px; }

#codeDeLaRoute .presentation {
  color: white;
  background-color: white;
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    #codeDeLaRoute .presentation {
      background-image: url(/img/stych/background/fond-bleu_3.webp); } }
  @media (min-width: 992px) {
    #codeDeLaRoute .presentation {
      background-image: none;
      background: white;
      color: #423f3f; } }
  @media (max-width: 991.98px) {
    #codeDeLaRoute .presentation .container {
      padding: 0 !important; } }
  #codeDeLaRoute .presentation ul {
    list-style-type: none; }
  @media (min-width: 992px) {
    #codeDeLaRoute .presentation #codeDeLaRoute-mainimage {
      max-width: 55%;
      max-height: 100%;
      object-fit: contain;
      position: absolute;
      top: 85px;
      right: 3%; } }
#codeDeLaRoute .avis {
  background: none; }
  #codeDeLaRoute .avis ul {
    list-style-type: none; }

#codeDeLaRoute .expert {
  background-image: url(/img/stych/code/points_4.png);
  background-repeat: no-repeat;
  background-position: 40% top;
  background-size: auto auto;
  height: 185px; }

#codeDeLaRoute .post-expert {
  margin-top: -50px; }

#codeDeLaRoute .points-haut-droit {
  background-image: url(/img/stych/code/test.png), url(/img/stych/code/points_3.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto auto;
  height: 700px; }

@media (min-width: 992px) {
  #codeDeLaRoute .packs .carousel-packs {
    max-width: 80%;
    margin: 0 auto; } }

@media (min-width: 992px) {
  #codeDeLaRoute .star-right-code {
    overflow: visible;
    position: relative;
    height: 100%; }
    #codeDeLaRoute .star-right-code img {
      position: absolute;
      top: 5%;
      left: 30%;
      transform: translateX(-50%); } }

#codeDeLaRoute .pack-rectangle-first {
  margin-right: 0.5rem;
  align-items: center; }

#codeDeLaRoute .pack-rectangle-second {
  margin-left: 0.5rem;
  align-items: center; }

#codeDeLaRoute #fond-peinture-code {
  background-image: url(/img/stych/fond-peinture.svg);
  background-repeat: no-repeat;
  background-position: left center; }
  @media (min-width: 768px) {
    #codeDeLaRoute #fond-peinture-code {
      background-size: auto 100%; } }
  @media (max-width: 767.98px) {
    #codeDeLaRoute #fond-peinture-code {
      background-size: auto 100%; } }
#codeDeLaRoute .pack {
  width: 4rem;
  font-size: 1.2rem;
  line-height: 2.3;
  font-weight: bold;
  letter-spacing: 1.2px;
  background-color: #edff00; }

@media (min-width: 768px) {
  #codeDeLaRoute .img-points-inscription {
    margin-top: -70px; } }

@media (min-width: 768px) {
  #codeDeLaRoute .img-points-examen {
    margin-left: -20px; } }

@media (min-width: 576px) {
  #codeDeLaRoute .carousel-indicators {
    display: none; } }

#codeDeLaRoute .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.carousel-indicators li.active {
  background-color: #edff00 !important; }

@media (min-width: 992px) {
  #permisB-mainimage {
    max-width: 53%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%; }
  #permisBcpf-mainimage {
    max-width: 50%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    top: 120px;
    right: 3%; } }

#permisB .section-title {
  font-family: 'PlaydatesHandwriting';
  font-size: 3.5rem;
  color: white;
  line-height: 0.8;
  font-weight: normal; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #permisB .section-title {
      font-size: 5.5rem; } }
  @media (min-width: 1200px) {
    #permisB .section-title {
      font-size: 7.5rem; } }
#permisB .revolution {
  background-color: #3366ff;
  color: white; }

#permisB #wrapper-presentation {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%; }

#permisB .presentation {
  color: white;
  background-color: white;
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    #permisB .presentation {
      background-image: url(/img/stych/background/fond-bleu_3.webp); } }
  @media (min-width: 992px) {
    #permisB .presentation {
      background-image: none;
      background: white;
      color: #423f3f; } }
  @media (max-width: 991.98px) {
    #permisB .presentation .container {
      padding: 0 !important; } }
  #permisB .presentation ul {
    list-style-type: none; }
  @media (max-width: 991.98px) {
    #permisB .presentation .image-mobile {
      margin-left: -110px;
      overflow: hidden; } }
@media (max-width: 991.98px) {
  #permisB .revolution {
    background-color: #fff;
    background-size: auto 100%;
    background-position: bottom center;
    background-image: url(/img/stych/background/fond-bleu_3.webp);
    background-repeat: no-repeat; }
    #permisB .revolution h2, #permisB .revolution p {
      text-align: center; } }

#permisB .cours-points {
  background-image: url(/img/stych/code/points_4.png);
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: auto auto;
  height: 18.5rem; }

#permisB .avis ul {
  list-style-type: none; }

@media (max-width: 767.98px) {
  #permisB .avis {
    background: none; } }

#permisB .expert {
  background-image: url(/img/stych/code/points_4.png);
  background-repeat: no-repeat;
  background-position: 40% top;
  background-size: auto auto;
  height: 18.5rem; }

#permisB .post-expert {
  margin-top: -5rem; }

#permisB .points-haut-droit {
  background-image: url(/img/stych/code/test.png), url(/img/stych/code/points_3.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto auto;
  height: 70rem; }

@media (min-width: 992px) {
  #permisB .packs .carousel {
    max-width: 80%;
    margin: 0 auto; } }

@media (min-width: 992px) {
  #permisB .star-right-code {
    overflow: visible;
    background-image: url(/img/stych/stars/star-blue-left.png);
    background-repeat: no-repeat;
    background-position: left 90% center;
    background-size: 40% auto;
    position: relative; } }

#permisB #fond-peinture-code {
  background-image: url(/img/stych/fond-peinture.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center; }

#permisB .play {
  position: absolute;
  background-color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  vertical-align: middle; }
  @media (min-width: 992px) {
    #permisB .play {
      margin: auto;
      display: block;
      top: 0;
      right: 25px;
      bottom: 0; } }
  @media (max-width: 991.98px) {
    #permisB .play {
      margin: auto;
      display: block;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; } }
  #permisB .play i {
    line-height: 50px;
    color: #3366ff; }

@media (min-width: 992px) {
  #permisB .img-examen {
    margin-left: -100px; } }

@media (min-width: 992px) {
  #permisB .img-rdv {
    margin-left: -50px; } }

@media (min-width: 992px) {
  #permisB .img-points-rdv {
    margin-top: -50px; } }

@media (min-width: 992px) {
  #permisB .img-points-inscription {
    margin-top: -40px; } }

@media (min-width: 992px) {
  #permisB .img-points-examen {
    margin-left: -20px; } }

@media (max-width: 991.98px) {
  #permisB .carousel-inner .carousel-item > div {
    display: none; }
  #permisB .carousel-inner .carousel-item > div:first-child {
    display: block; }
  #permisB .carousel-indicators {
    bottom: -20px; } }

#permisB .carousel-inner .carousel-item.active,
#permisB .carousel-inner .carousel-item-start,
#permisB .carousel-inner .carousel-item-next,
#permisB .carousel-inner .carousel-item-prev {
  display: flex; }

@media (min-width: 992px) {
  #permisB .carousel-inner .carousel-item-right.active,
  #permisB .carousel-inner .carousel-item-next {
    transform: translateX(50%) !important; }
  #permisB .carousel-inner .carousel-item-left.active,
  #permisB .active.carousel-item-prev {
    transform: translateX(-50%) !important; }
  #permisB .carousel-indicators {
    display: none; } }

#permisB .carousel-inner .carousel-item-right,
#permisB .carousel-inner .carousel-item-left {
  transform: translateX(0); }

#permisB #france img {
  position: absolute;
  overflow: hidden; }
  @media (min-width: 992px) {
    #permisB #france img {
      left: 0%;
      top: 26%;
      height: 60%; } }
  @media (max-width: 991.98px) {
    #permisB #france img {
      left: 10%;
      top: 26%;
      width: 80%; } }
#permisB .bulle-jaune {
  padding: 2rem 3.4rem;
  background-color: #edff00;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.25;
  white-space: nowrap;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.23); }

#permisB #horaires {
  border-radius: 99px 99px 0 99px; }
  @media (max-width: 991.98px) {
    #permisB #horaires {
      position: absolute;
      left: 3%;
      top: 20%; } }
  @media (min-width: 992px) {
    #permisB #horaires {
      position: absolute;
      left: 0%;
      top: 57%; } }
@media (max-width: 991.98px) {
  #permisB #villes-france {
    border-radius: 99px 0 99px 99px;
    position: absolute;
    left: 2%;
    bottom: 5%; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  #permisB #villes-france {
    border-radius: 99px 99px 99px 0;
    position: absolute;
    left: 50%;
    top: 20%; } }

@media (min-width: 1200px) {
  #permisB #villes-france {
    border-radius: 99px 99px 99px 0;
    position: absolute;
    left: 50%;
    top: 30%; } }

#permisB .support {
  width: 100%; }

#permisB .stych-emoji {
  right: -55px; }
  @media (min-width: 330px) {
    #permisB .stych-emoji {
      right: -20px; } }
#permisB .underline {
  text-decoration: underline;
  text-underline-offset: 0.2rem; }

@media (min-width: 992px) {
  #permisBcpf .agrement-fixed {
    bottom: -15%; } }

@media (max-width: 991.98px) {
  #permisBcpf .section-conseiller h2 {
    color: white; } }

.points-rdv #points-rdv-ville,
.points-rdv-page #points-rdv-ville,
.seo-point-de-rdv #points-rdv-ville,
.points-rdv-liste #points-rdv-ville,
.section-agences-points-rdv #points-rdv-ville {
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 34.5px; }

.points-rdv .results-rdv,
.points-rdv-page .results-rdv,
.seo-point-de-rdv .results-rdv,
.points-rdv-liste .results-rdv,
.section-agences-points-rdv .results-rdv {
  height: calc(100vh - 181px); }
  @media (max-width: 991.98px) {
    .points-rdv .results-rdv,
    .points-rdv-page .results-rdv,
    .seo-point-de-rdv .results-rdv,
    .points-rdv-liste .results-rdv,
    .section-agences-points-rdv .results-rdv {
      height: auto;
      max-height: calc(100vh - 181px); } }
.points-rdv .results-laposte,
.points-rdv-page .results-laposte,
.seo-point-de-rdv .results-laposte,
.points-rdv-liste .results-laposte,
.section-agences-points-rdv .results-laposte {
  height: calc(100vh - 181px); }
  @media (max-width: 991.98px) {
    .points-rdv .results-laposte,
    .points-rdv-page .results-laposte,
    .seo-point-de-rdv .results-laposte,
    .points-rdv-liste .results-laposte,
    .section-agences-points-rdv .results-laposte {
      height: auto;
      max-height: calc(70vh - 181px); } }
.points-rdv .results-desktop > h1,
.points-rdv-page .results-desktop > h1,
.seo-point-de-rdv .results-desktop > h1,
.points-rdv-liste .results-desktop > h1,
.section-agences-points-rdv .results-desktop > h1 {
  padding: 30px 20px 20px; }

.points-rdv .results-desktop #tab-rdv,
.points-rdv .results-desktop #tab-laposte,
.points-rdv-page .results-desktop #tab-rdv,
.points-rdv-page .results-desktop #tab-laposte,
.seo-point-de-rdv .results-desktop #tab-rdv,
.seo-point-de-rdv .results-desktop #tab-laposte,
.points-rdv-liste .results-desktop #tab-rdv,
.points-rdv-liste .results-desktop #tab-laposte,
.section-agences-points-rdv .results-desktop #tab-rdv,
.section-agences-points-rdv .results-desktop #tab-laposte {
  font-size: 16px;
  line-height: 2;
  padding: 20px 43px;
  border-top-left-radius: 34.5px; }
  @media (max-width: 1199.98px) {
    .points-rdv .results-desktop #tab-rdv,
    .points-rdv .results-desktop #tab-laposte,
    .points-rdv-page .results-desktop #tab-rdv,
    .points-rdv-page .results-desktop #tab-laposte,
    .seo-point-de-rdv .results-desktop #tab-rdv,
    .seo-point-de-rdv .results-desktop #tab-laposte,
    .points-rdv-liste .results-desktop #tab-rdv,
    .points-rdv-liste .results-desktop #tab-laposte,
    .section-agences-points-rdv .results-desktop #tab-rdv,
    .section-agences-points-rdv .results-desktop #tab-laposte {
      border-top-left-radius: 34.5px;
      border-top-right-radius: 34.5px; } }
.points-rdv .bloc-detail-content,
.points-rdv-page .bloc-detail-content,
.seo-point-de-rdv .bloc-detail-content,
.points-rdv-liste .bloc-detail-content,
.section-agences-points-rdv .bloc-detail-content {
  line-height: 1.4;
  color: #fff; }
  @media (min-width: 992px) {
    .points-rdv .bloc-detail-content,
    .points-rdv-page .bloc-detail-content,
    .seo-point-de-rdv .bloc-detail-content,
    .points-rdv-liste .bloc-detail-content,
    .section-agences-points-rdv .bloc-detail-content {
      padding: 3rem 1rem 1rem; }
      .points-rdv .bloc-detail-content .meet-name,
      .points-rdv-page .bloc-detail-content .meet-name,
      .seo-point-de-rdv .bloc-detail-content .meet-name,
      .points-rdv-liste .bloc-detail-content .meet-name,
      .section-agences-points-rdv .bloc-detail-content .meet-name {
        font-size: 18px;
        font-weight: bold;
        text-align: left;
        width: 90%; }
      .points-rdv .bloc-detail-content .meet-adresse,
      .points-rdv-page .bloc-detail-content .meet-adresse,
      .seo-point-de-rdv .bloc-detail-content .meet-adresse,
      .points-rdv-liste .bloc-detail-content .meet-adresse,
      .section-agences-points-rdv .bloc-detail-content .meet-adresse {
        font-size: 14px;
        line-height: 1.43;
        text-align: left; } }
    @media (min-width: 992px) and (max-width: 767.98px) {
      .points-rdv .bloc-detail-content .meet-adresse p,
      .points-rdv-page .bloc-detail-content .meet-adresse p,
      .seo-point-de-rdv .bloc-detail-content .meet-adresse p,
      .points-rdv-liste .bloc-detail-content .meet-adresse p,
      .section-agences-points-rdv .bloc-detail-content .meet-adresse p {
        margin-bottom: 0; } }
  @media (max-width: 991.98px) {
    .points-rdv .bloc-detail-content,
    .points-rdv-page .bloc-detail-content,
    .seo-point-de-rdv .bloc-detail-content,
    .points-rdv-liste .bloc-detail-content,
    .section-agences-points-rdv .bloc-detail-content {
      padding: 2rem 1rem 1.9rem 1.6rem;
      min-height: 210px;
      background-color: white; }
      .points-rdv .bloc-detail-content .meet-name,
      .points-rdv-page .bloc-detail-content .meet-name,
      .seo-point-de-rdv .bloc-detail-content .meet-name,
      .points-rdv-liste .bloc-detail-content .meet-name,
      .section-agences-points-rdv .bloc-detail-content .meet-name {
        font-weight: bold;
        width: 90%; }
      .points-rdv .bloc-detail-content #chevron,
      .points-rdv-page .bloc-detail-content #chevron,
      .seo-point-de-rdv .bloc-detail-content #chevron,
      .points-rdv-liste .bloc-detail-content #chevron,
      .section-agences-points-rdv .bloc-detail-content #chevron {
        position: absolute;
        right: 20px;
        top: 10px;
        color: #dcdcdc;
        cursor: pointer; } }
  @media (max-width: 1199.98px) {
    .points-rdv .bloc-detail-content,
    .points-rdv-page .bloc-detail-content,
    .seo-point-de-rdv .bloc-detail-content,
    .points-rdv-liste .bloc-detail-content,
    .section-agences-points-rdv .bloc-detail-content {
      background-color: #3366ff;
      color: #fff; } }
  .points-rdv .bloc-detail-content .wrapper-info,
  .points-rdv-page .bloc-detail-content .wrapper-info,
  .seo-point-de-rdv .bloc-detail-content .wrapper-info,
  .points-rdv-liste .bloc-detail-content .wrapper-info,
  .section-agences-points-rdv .bloc-detail-content .wrapper-info {
    font-size: 14px; }

.points-rdv .desktopMap,
.points-rdv-page .desktopMap,
.seo-point-de-rdv .desktopMap,
.points-rdv-liste .desktopMap,
.section-agences-points-rdv .desktopMap {
  min-height: 300px; }
  @media (min-width: 992px) {
    .points-rdv .desktopMap,
    .points-rdv-page .desktopMap,
    .seo-point-de-rdv .desktopMap,
    .points-rdv-liste .desktopMap,
    .section-agences-points-rdv .desktopMap {
      height: calc(100vh - 90px); } }
  @media (max-width: 1199.98px) {
    .points-rdv .desktopMap,
    .points-rdv-page .desktopMap,
    .seo-point-de-rdv .desktopMap,
    .points-rdv-liste .desktopMap,
    .section-agences-points-rdv .desktopMap {
      height: calc(100vh); } }
  @media (max-width: 991.98px) {
    .points-rdv .desktopMap,
    .points-rdv-page .desktopMap,
    .seo-point-de-rdv .desktopMap,
    .points-rdv-liste .desktopMap,
    .section-agences-points-rdv .desktopMap {
      height: calc(var(--origin-app-height, 100vh) - 306px); } }
  @media (max-width: 767.98px) {
    .points-rdv .desktopMap,
    .points-rdv-page .desktopMap,
    .seo-point-de-rdv .desktopMap,
    .points-rdv-liste .desktopMap,
    .section-agences-points-rdv .desktopMap {
      height: 350px; } }
.points-rdv .desktopMap:not(.map-home):not(.map-page-permis) > div,
.points-rdv-page .desktopMap:not(.map-home):not(.map-page-permis) > div,
.seo-point-de-rdv .desktopMap:not(.map-home):not(.map-page-permis) > div,
.points-rdv-liste .desktopMap:not(.map-home):not(.map-page-permis) > div,
.section-agences-points-rdv .desktopMap:not(.map-home):not(.map-page-permis) > div {
  border-radius: 40px; }

.points-rdv .desktopMap > div,
.points-rdv-page .desktopMap > div,
.seo-point-de-rdv .desktopMap > div,
.points-rdv-liste .desktopMap > div,
.section-agences-points-rdv .desktopMap > div {
  -webkit-mask-image: -webkit-radial-gradient(#798589, #798589);
  mask-image: -webkit-radial-gradient(#798589, #798589);
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

.points-rdv .rectangle-arrondi,
.points-rdv-page .rectangle-arrondi,
.seo-point-de-rdv .rectangle-arrondi,
.points-rdv-liste .rectangle-arrondi,
.section-agences-points-rdv .rectangle-arrondi {
  width: 100%;
  height: 8px;
  margin: 20px 0 50px;
  padding: 0;
  opacity: 0.2;
  border-radius: 4px;
  background-color: #f1f1f1; }

.points-rdv #staticMapWrapperRdv,
.points-rdv-page #staticMapWrapperRdv,
.seo-point-de-rdv #staticMapWrapperRdv,
.points-rdv-liste #staticMapWrapperRdv,
.section-agences-points-rdv #staticMapWrapperRdv {
  overflow: hidden; }
  .points-rdv #staticMapWrapperRdv > img,
  .points-rdv-page #staticMapWrapperRdv > img,
  .seo-point-de-rdv #staticMapWrapperRdv > img,
  .points-rdv-liste #staticMapWrapperRdv > img,
  .section-agences-points-rdv #staticMapWrapperRdv > img {
    width: 100%; }

.seo-point-de-rdv .seo-pdv-listInner ul, .agence-page .seo-pdv-listInner ul {
  list-style-type: none;
  margin-bottom: 0; }

.seo-point-de-rdv .seo-pdv-listInner a, .agence-page .seo-pdv-listInner a {
  color: #a4a4a6; }
  .seo-point-de-rdv .seo-pdv-listInner a:hover, .agence-page .seo-pdv-listInner a:hover {
    color: #007bff; }

@media (max-width: 767.98px) {
  .seo-point-de-rdv .map-intro, .agence-page .map-intro {
    max-width: 90%;
    margin: auto;
    margin-bottom: 15px; } }

@media (min-width: 768px) {
  .seo-point-de-rdv .map-intro, .agence-page .map-intro {
    max-width: 70%; } }

.bloc-result-point {
  margin-right: 0;
  padding: 20px 20px 20px 30px;
  border-bottom: 1px solid #d9dade;
  text-align: left;
  font-size: 16px;
  border-radius: 0;
  box-shadow: none; }
  .bloc-result-point .result-adresse {
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px; }
  .bloc-result-point .meet-name {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    width: 90%; }
  .bloc-result-point.hovered, .bloc-result-point:hover {
    background-color: #3366ff;
    color: white;
    cursor: pointer; }
    .bloc-result-point.hovered *, .bloc-result-point:hover * {
      cursor: pointer; }
  @media (min-width: 992px) {
    .bloc-result-point:last-child.hovered, .bloc-result-point:last-child:hover {
      border-bottom-left-radius: 34.5px; } }
.point-infos {
  background: linear-gradient(180deg, #3366ff 75%, white 75%, white 100%); }
  @media (min-width: 768px) {
    .point-infos .rdv {
      padding: 2rem; } }
  @media (max-width: 767.98px) {
    .point-infos .rdv {
      padding: 1rem; } }
  .point-infos .bloc-infos {
    position: relative;
    color: #423f3f;
    background-color: white;
    border-radius: 30px;
    outline: none;
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.2); }
    @media (min-width: 768px) {
      .point-infos .bloc-infos {
        margin: 0 4rem; } }
    @media (max-width: 767.98px) {
      .point-infos .bloc-infos {
        margin: 0; } }
    .point-infos .bloc-infos .infos {
      display: flex;
      justify-content: space-between;
      line-height: 26px;
      text-align: left; }
    .point-infos .bloc-infos .bloc-infos-bottom > .btn, .point-infos .bloc-infos .nav-tabs .bloc-infos-bottom > .nav-link, .nav-tabs .point-infos .bloc-infos .bloc-infos-bottom > .nav-link, .point-infos .bloc-infos .msg_container .bloc-infos-bottom > .btn-cta, .msg_container .point-infos .bloc-infos .bloc-infos-bottom > .btn-cta {
      margin-top: 20px;
      font-size: 16px; }
    .point-infos .bloc-infos .bloc-infos-bottom > .row.space-around {
      justify-content: space-around; }

@media (max-width: 991.98px) {
  .offres-home img {
    max-height: 10rem; } }

@media (max-width: 991.98px) {
  .offres-home-first {
    margin-right: 0; } }

.points-rdv-page,
.section-agences-points-rdv {
  /*
	.map-wrapper-mobile {
      .btn {
        display: flex;
        line-height: 11px;
        font-size: 12px;
        justify-content: center;
        align-items: center;
      }

		.pre-filters {
			z-index: 2;
			top: 0;
			left: 0;
			width: 100%;
			color: $white;
			text-align: center;

			> .container {
				position: relative;
				z-index: 1;
				height: 100%;
				display: flex;
				flex-direction: column;
				justify-content: center;

				&::after {
					content: '';
					position: absolute;
					z-index: 0;
					top: 0;
					left: 0;
					display: block;
					width: 100%;
					height: 50vh;
//					background: radial-gradient(circle, $blue-grey-light, $blue-grey 170px);
				}

				>.row {
					position: relative;
					z-index: 3;

					> h1 {
						margin-bottom: 15px;
						font-size: 28px;
					}

					> p {
						max-width: 80%;
						margin: 0 auto;
						font-size: 12px;
						line-height: 16px;
						font-weight: 300;
					}

					.btn {
						max-width: 70%;
						margin: 20px auto 0;

						> span {
							font-size: 16px;
							font-weight: 300;
						}
					}

					&.middle {
						display: flex;
						align-items: center;
						margin: 15px 0;

						> .line {
							flex: 1;
							height: 2px;
							background-color: rgba(#666666, 0.3);
						}

						> p {
							margin: 0 10px;
							text-transform: uppercase;
							font-size: 12px;
							font-weight: 600;
						}
					}
				}
			}

			& + .post-filter {
				display: none;
				height: 0;
				overflow: hidden;
			}

			&.hidden {
				display: none;

				& + .post-filter {
					display: block;
					height: 100%;
					//height: calc(100vh - 130px);
				}
			}
		}

		.options-wrapper {
			display: flex;
			height: 40px;
			background-color: $light-grey;
			border-bottom: 2px solid #d9dade;

			.option {
				flex: 1;
				flex-grow: 1;
				flex-basis: 50%;
				overflow: hidden;
				padding: 0 15px;
				line-height: 40px;
				background-color: $white;
			}

			.filters {
				position: relative;
				margin-right: 2px;

				> i {
					position: absolute;
					top: 10px;
					right: 10px;
					pointer-events: none;
				}

				> select {
					color: $red;
					font-size: 14px;
					font-weight: 600;
					width: 110%;
					height: 38px;
					line-height: 38px;
					
					-webkit-appearance: none;
  				-moz-appearance: none;
  				background-color: transparent;
  				border: none;
					outline: none;
				}
			}

			.switch-view {
				margin-left: 2px;

				> span {
					display: none;
					text-align: center;
					font-size: 14px;
					font-weight: 600;

					> i {
						padding-right: 7px;
						vertical-align: middle;
						font-size: 18px;
						line-height: 40px;
					}

					&.see-list {
						display: block;
					}
					&.see-map {
						display: none;
					}
				}

				&.listVisible {
					span.see-list {
						display: none;
					}
					span.see-map {
						display: block;
					}
				}
			}
		}

		.views-wrapper {
			overflow: hidden;

			.switch-wrapper {
				width: 200%;

				&::after {
					display: block;
					float: none;
					clear: both;
				}

				#mobileMap {
					float: left;
					width: 50%;
					height: calc(100vh - 185px);
				}

				.vertical-list-mobile {
					float: left;
					width: 50%;
					height: calc(100vh - 185px);
					overflow: hidden;

					#vertical-list-mobile-content {
						height: calc(100vh - 185px);
						overflow: hidden;
						overflow-y: scroll;
					}
				}

				&.show-list {
					transform: translateX(-50%);
				}
			}
		}

		.results-mobile {
			display: block;

			&.hide {
				display: none;
			}
		}
	}
*/ }
  .points-rdv-page h1,
  .section-agences-points-rdv h1 {
    color: white; }
  .points-rdv-page #results-list,
  .section-agences-points-rdv #results-list {
    min-height: 100px;
    overflow-y: scroll; }
  .points-rdv-page .search-wrapper,
  .section-agences-points-rdv .search-wrapper {
    display: flex; }
    .points-rdv-page .search-wrapper .search-input,
    .section-agences-points-rdv .search-wrapper .search-input {
      flex: 1;
      padding: 0 10px;
      height: 40px;
      line-height: 40px;
      background-color: #fff;
      border: 1px solid #bebebe;
      border-radius: 5px; }
      .points-rdv-page .search-wrapper .search-input::-webkit-input-placeholder,
      .section-agences-points-rdv .search-wrapper .search-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat';
        font-size: 14px; }
      .points-rdv-page .search-wrapper .search-input::-moz-placeholder,
      .section-agences-points-rdv .search-wrapper .search-input::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat';
        font-size: 14px; }
      .points-rdv-page .search-wrapper .search-input:-ms-input-placeholder,
      .section-agences-points-rdv .search-wrapper .search-input:-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat';
        font-size: 14px; }
      .points-rdv-page .search-wrapper .search-input:-moz-placeholder,
      .section-agences-points-rdv .search-wrapper .search-input:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat';
        font-size: 14px; }
  .points-rdv-page ~ .main-footer,
  .section-agences-points-rdv ~ .main-footer {
    display: none; }

#mobile-detail-point-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 300px;
  max-width: 100%;
  background-color: white;
  border-radius: 7px;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
  line-height: 1.6rem; }
  #mobile-detail-point-content img {
    max-width: 25px; }

.mobile-height-map {
  filter: blur(0rem);
  pointer-events: auto; }
  .mobile-height-map:not(.map-home) {
    border-radius: 40px; }
  @media (max-width: 991.98px) {
    .mobile-height-map {
      max-height: calc(var(--origin-app-height, 100vh) - 306px); } }
  @media (max-width: 767.98px) {
    .mobile-height-map {
      width: 100%;
      max-height: 350px; } }
.blur.mobile-height-map, .blur.map-location {
  filter: blur(0.2em);
  pointer-events: none; }

.agence-page .list-agences ul {
  list-style-type: none;
  margin-bottom: 0; }

.agence-page .list-agences a {
  color: #423f3f; }

@media (max-width: 991.98px) {
  .agence-page .background-mobile-agence {
    background: linear-gradient(0, white 0 50%, #3366ff 50% 100%); } }

.agence-page .desktopMap {
  min-height: 500px; }
  @media (min-width: 992px) {
    .agence-page .desktopMap {
      height: calc(100vh - 110px);
      border-radius: 0 60px 60px 0; } }
  @media (max-width: 991.98px) {
    .agence-page .desktopMap {
      height: calc(var(--origin-app-height, 100vh) - 306px); } }
.agence-page .points-rdv-liste {
  border-radius: 60px;
  box-shadow: 0 15px 30px 0 rgba(78, 78, 78, 0.16); }

.agence-page #results-desktop {
  height: calc(100vh - 110px);
  min-height: 600px;
  border-radius: 60px 0 0 60px !important;
  overflow: auto; }

.agence-page .bloc-result-point {
  margin-right: 0;
  padding: 20px 20px 20px 40px; }

@media (max-width: 991.98px) {
  .agence-page .agence-pourcentage-nb {
    font-size: 3.8rem;
    font-weight: bold; } }

@media (min-width: 992px) {
  .agence-page .agence-pourcentage-nb {
    font-size: 6.4rem;
    font-weight: bold;
    line-height: 50px; } }

@media (max-width: 991.98px) {
  .agence-page .agence-pourcentage-text {
    font-size: 2.4rem; } }

@media (min-width: 992px) {
  .agence-page .agence-pourcentage-text {
    font-size: 3rem; } }

.detail-point {
  position: absolute;
  z-index: 1000; }
  @media (min-width: 992px) {
    .detail-point {
      width: 400px;
      max-width: 400px;
      height: auto;
      top: 0;
      left: 10%;
      background-color: #3366ff;
      color: #3366ff;
      border-radius: 0 0 40px 40px; } }
  @media (max-width: 991.98px) {
    .detail-point {
      width: 100%;
      bottom: 0;
      margin: 0 auto;
      left: 0;
      right: 0;
      background-color: #3366ff;
      color: #a4a4a6; } }
  @media (max-width: 767.98px) {
    .detail-point {
      mask-image: radial-gradient(#798589, #798589);
      height: 100%;
      width: 100%;
      bottom: 0;
      margin: 0 auto;
      left: 0;
      right: 0;
      background-color: #3366ff;
      color: #a4a4a6;
      overflow-y: scroll;
      overflow-x: hidden; }
      .detail-point:not(.map-home) {
        border-radius: 40px; } }
  .detail-point #closeDetailPoint {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    cursor: pointer; }

#bulles-villes {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto; }
  @media (max-width: 767.98px) {
    #bulles-villes {
      width: 310px;
      bottom: -90px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #bulles-villes {
      width: 440px;
      bottom: -130px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #bulles-villes {
      width: 480px;
      bottom: -130px; } }
  @media (min-width: 1200px) {
    #bulles-villes {
      width: 560px;
      bottom: -140px; } }
#agences-et-points-rdv .bloc-detail-content {
  margin-bottom: 0; }

.detail-point .star-list {
  width: 15px; }

.bloc-detail-content {
  padding-bottom: 3rem; }
  @media (min-width: 576px) {
    .bloc-detail-content {
      border-radius: 0 0 40px 40px; } }
  @media (max-width: 767.98px) {
    .bloc-detail-content {
      border-radius: 40px;
      font-size: 0.8em; } }
@media (min-width: 768px) and (max-width: 1199.98px) {
  .map-home .bloc-detail-content {
    padding-bottom: 4rem !important; } }

.btn-detail-pdc a {
  width: 45%;
  padding: 1rem;
  padding-top: 1.2rem; }

.btn-detail-pdc a:first-child {
  margin-right: 2rem; }

.englobe_map {
  display: block;
  float: none;
  clear: both;
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: auto; }
  .englobe_map:not(.map-home) {
    border-top: 2px solid #f3f3f3;
    border-radius: 40px;
    mask-image: radial-gradient(#798589, #798589);
    border: 3px solid #3366ff;
    background-color: #3366ff; }

.englobe_map.blur {
  background-color: inherit; }

.infos.agence {
  text-align: left; }
  @media (max-width: 991.98px) {
    .infos.agence {
      display: block !important; }
      .infos.agence p:first-child:nth-last-child(n + 2),
      .infos.agence p:first-child:nth-last-child(n + 2) ~ p {
        width: 24%;
        padding-left: 0.2%;
        display: inline-block; } }
.infos.tel {
  text-align: left; }

#agences-et-points-rdv #desktop-search-rdv {
  max-width: 550px;
  border: 3px solid #3366ff;
  border-color: #3366ff;
  height: 50px;
  font-size: 1.6rem; }
  @media (max-width: 1199.98px) {
    #agences-et-points-rdv #desktop-search-rdv {
      max-width: 400px !important; } }
  @media (max-width: 767.98px) {
    #agences-et-points-rdv #desktop-search-rdv {
      max-width: 300px !important; } }
#desktop-search-wrapper img {
  background-color: #3366ff;
  height: 46px;
  padding: 6px;
  border-radius: 5px;
  margin-top: 1px; }

#desktop-search-wrapper img:hover {
  cursor: pointer; }

#desktop-filters .btn-group {
  margin-left: auto;
  margin-right: 4rem; }
  @media (max-width: 991.98px) {
    #desktop-filters .btn-group {
      margin-left: 0;
      margin-right: 0;
      margin: auto; } }
.local_type_search {
  border: 3px solid #3366ff;
  min-width: 120px;
  padding-top: 1px;
  padding-bottom: 0;
  height: 50px; }

.local_type_search.agence {
  border-radius: 40px 0 0 40px; }

.local_type_search.rdv {
  border-radius: 0 40px 40px 0; }

.fiches-pratiques {
  position: relative; }
  .fiches-pratiques .bg-bottom {
    background: #f8f8f8;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    height: 50%; }
  .fiches-pratiques .list-group-item {
    border: 0; }
  .fiches-pratiques .stych-list-group-item {
    padding: 0;
    border: 0; }
  .fiches-pratiques .list-group-root .list-group-item {
    border: 0; }

.liste-fiches .stych-list-group-item.collapsed .chevron-up {
  display: none; }

.liste-fiches .stych-list-group-item.collapsed .chevron-down {
  display: inline-block; }

.liste-fiches .stych-list-group-item:not(.collapsed) .chevron-up {
  display: inline-block; }

.liste-fiches .stych-list-group-item:not(.collapsed) .chevron-down {
  display: none; }

.liste-fiches a {
  color: #a4a4a6; }
  .liste-fiches a:hover {
    color: rgba(164, 164, 166, 0.6); }

.type-fiches.active {
  background-color: white;
  color: #3366ff; }

.filtre-fiche-active {
  border-bottom: 4px solid #3366ff; }

.fiches-code a {
  border: 0; }

.filtre-fiche-pratiques {
  background-color: white;
  padding: 5rem 1rem 0;
  color: #3366ff;
  margin-top: -30px;
  z-index: 1; }
  @media (min-width: 992px) {
    .filtre-fiche-pratiques {
      max-width: 720px;
      padding: 5rem 4rem 0;
      border-radius: 0 0 30px 30px; } }
@media (max-width: 991.98px) {
  .une-fiche-pratique, .fiches-code {
    line-height: 1;
    font-size: 1.4rem;
    margin-bottom: 1rem; } }

.fiche-code {
  text-align: left; }
  .fiche-code h1 {
    text-align: left !important; }
  .fiche-code p {
    font-size: 2rem;
    line-height: 1.6; }
  .fiche-code .img-responsive {
    max-width: 100%;
    height: auto; }
  .fiche-code .fiche-inscription {
    text-align: center;
    background-color: #3366ff;
    color: white;
    padding: 2rem 5rem;
    border-radius: 0 30px 0 30px; }
    .fiche-code .fiche-inscription .fiche-inscription-title {
      font-size: 3rem;
      font-weight: bold;
      line-height: 1.13; }
    .fiche-code .fiche-inscription img {
      position: absolute;
      right: -70px;
      bottom: -30px; }
  .fiche-code .enlightened {
    background-color: #f3f3f3;
    padding: 1rem 1rem 1rem 3rem; }
    .fiche-code .enlightened img {
      margin-right: 1rem;
      margin-left: -2rem; }

.recrutement-title {
  font-family: 'PlaydatesHandwriting';
  color: white;
  line-height: 1;
  font-weight: normal; }
  @media (max-width: 991.98px) {
    .recrutement-title {
      font-size: 5rem; } }
  @media (min-width: 992px) {
    .recrutement-title {
      font-size: 7rem; } }
.formulaire-recrutement-content {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 40px;
  position: relative; }
  @media (min-width: 992px) {
    .formulaire-recrutement-content {
      padding: 3rem 7rem;
      margin-bottom: 85px !important; } }
#recrutement-fleche-gauche {
  position: absolute;
  top: -22px;
  left: 27%; }

#recrutement-fleche-droite {
  position: absolute;
  top: -22px;
  right: 27%; }

#recrutement-close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer; }

#formulaire-recrutement {
  position: relative; }

#stych-tableau {
  position: absolute;
  left: -110px;
  bottom: -85px; }

.wrapper-cv {
  position: relative;
  width: 100%;
  text-align: center;
  color: #a4a4a6;
  background-color: #f8f8f8;
  padding: 2rem;
  border: dashed 1px #9a9a9c;
  cursor: pointer; }

#cv {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0px;
  bottom: 0px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  z-index: 1; }

.recrutement .background-blue-rounded-top {
  background-color: inherit; }

.recrutement .background-blue-rounded-avis {
  background-color: inherit; }

@media (min-width: 768px) {
  .recrutement .stych-independant {
    position: absolute;
    top: 4rem;
    right: 0;
    text-align: right;
    padding-right: 5rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  .recrutement .stych-independant img {
    width: 200px; } }

@media (min-width: 768px) {
  .recrutement .stych-independant img {
    width: 350px;
    padding-top: 4rem; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .recrutement .stych-independant img {
      padding-top: 0;
      width: 250px; } }
  @media screen and (min-width: 768px) and (min-width: 1400px) {
    .recrutement .stych-independant img {
      padding-top: 0;
      width: 450px; } }
.recrutement .icone-stych {
  position: absolute;
  height: 160px;
  top: -3rem;
  left: calc(50% - 80px); }

.recrutement .icone-stych-ingenieur {
  height: 175px;
  left: calc(50% - 87.5px); }

.recrutement .text-introduction {
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 768px) {
    .recrutement .text-introduction {
      padding-left: 15rem;
      padding-right: 15rem; } }
  @media (min-width: 992px) {
    .recrutement .text-introduction {
      padding-left: 26rem;
      padding-right: 26rem; } }
  @media screen and (min-width: 1400px) {
    .recrutement .text-introduction {
      padding-left: 33rem;
      padding-right: 33rem; } }
  @media screen and (min-width: 1600px) {
    .recrutement .text-introduction {
      padding-left: 50rem;
      padding-right: 50rem; } }
.recrutement .recrutement-type {
  border-radius: 40px;
  box-shadow: 0 15px 50px 0 rgba(164, 164, 166, 0.23);
  background-color: #ffffff;
  position: relative;
  margin: 16px; }

@media (min-width: 576px) {
  .recrutement .titre-recrutement {
    padding-top: 12rem; } }

.recrutement .formulaire-recrutement-content {
  border-radius: 40px;
  box-shadow: 0 15px 50px 0 rgba(164, 164, 166, 0.23);
  background-color: #ffffff;
  position: relative; }

.image-test-code-route {
  position: relative;
  height: 100vh;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.22);
  border-radius: 40px; }

.image-test-code-route:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #3366ff;
  opacity: 0.8;
  border-radius: 40px; }

.error404 {
  background-size: contain;
  padding: 130px 0;
  margin: 20px; }

.bloc-error-txt {
  text-align: left; }

.nbr-error {
  font-weight: bold; }
  @media (max-width: 991.98px) {
    .nbr-error {
      font-size: 4.5rem; } }
  @media (min-width: 992px) {
    .nbr-error {
      font-size: 12rem; } }
@media (max-width: 991.98px) {
  .error-sub-title {
    font-size: 1.8rem; } }

@media (min-width: 992px) {
  .error-sub-title {
    font-size: 4rem; } }

.error-body {
  border-radius: 40px; }

.subtitle-error {
  color: #333;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 30px; }

.error-direction {
  list-style-type: none; }
  @media (max-width: 991.98px) {
    .error-direction {
      padding-left: 1rem; }
      .error-direction li {
        line-height: 2; } }
.error-direction i {
  color: #e74c3c; }

@media (max-width: 991.98px) {
  .itineraire {
    font-size: 2rem;
    line-height: 20px; } }

@media (min-width: 992px) {
  .itineraire {
    font-size: 5rem;
    line-height: 40px;
    font-weight: bold; } }

#tous-les-avis .btn-group-toggle .btn-outline-light {
  padding: 0.75rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: 0.3rem; }
  @media (max-width: 1200px) {
    #tous-les-avis .btn-group-toggle .btn-outline-light {
      font-size: calc(1.285rem + 0.42vw) ; } }
  @media (min-width: 768px) {
    #tous-les-avis .btn-group-toggle .btn-outline-light {
      padding: 1.5rem 3.2rem;
      font-size: 1.6rem;
      line-height: 1.5;
      border-radius: 0.3rem; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    #tous-les-avis .btn-group-toggle .btn-outline-light {
      font-size: calc(1.285rem + 0.42vw) ; } }
  #tous-les-avis .btn-group-toggle .btn-outline-light.active {
    color: #3366ff; }
  #tous-les-avis .btn-group-toggle .btn-outline-light:hover {
    color: #3366ff; }

#tous-les-avis .background-blue-rounded-avis {
  background-color: #f8f8f8; }

#tous-les-avis #bulles-avis {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto; }
  @media (max-width: 767.98px) {
    #tous-les-avis #bulles-avis {
      width: 310px;
      bottom: -30px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #tous-les-avis #bulles-avis {
      width: 440px;
      bottom: -80px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #tous-les-avis #bulles-avis {
      width: 480px;
      bottom: -120px; } }
  @media (min-width: 1200px) {
    #tous-les-avis #bulles-avis {
      width: 560px;
      bottom: -120px; } }
@media (max-width: 991.98px) {
  #tous-les-avis .avis-pourcentage-text {
    font-size: 2.4rem; } }

@media (min-width: 992px) {
  #tous-les-avis .avis-pourcentage-text {
    font-size: 3rem; } }

@media (max-width: 991.98px) {
  #tous-les-avis .avis-pourcentage-nb {
    font-size: 3.8rem;
    font-weight: bold; } }

@media (min-width: 992px) {
  #tous-les-avis .avis-pourcentage-nb {
    font-size: 6.4rem;
    font-weight: bold; } }

#tous-les-avis .page-item {
  margin-right: 10px; }

#tous-les-avis .page-link {
  border-radius: 5px; }

#tous-les-avis .unAvis {
  border-radius: 20px;
  width: 100%; }

#tarifs .col-pack {
  flex-basis: 100%;
  max-width: 100%; }
  @media (min-width: 576px) {
    #tarifs .col-pack {
      flex-basis: 50%;
      max-width: 50%; } }
  @media (min-width: 768px) {
    #tarifs .col-pack {
      flex-basis: 33%;
      max-width: 33%; } }
#tarifs .row {
  justify-content: space-evenly; }

#tarifs .boite-auto {
  float: right;
  background-color: #EDFF00;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: bold;
  line-height: 2rem;
  margin-top: 0.3rem; }

#tarifs .boite-auto.by-line {
  height: 2.5rem;
  padding-top: 0.4rem;
  white-space: nowrap;
  display: inline-block;
  float: none;
  margin: 0;
  margin-left: 2rem; }

#tarifs .image-right-pack {
  position: absolute;
  top: 4rem;
  right: 10%; }

.permis-a .page-produit-card #page-produit-actions {
  right: -230px; }

.permis-a .bloc-image-title img {
  width: 80%; }
  @media (max-width: 1199.98px) {
    .permis-a .bloc-image-title img {
      width: auto; } }
.permis-a .image-right-pack img {
  height: 180px; }

.permis-a .disponibilites-permis-a-rows .departement {
  font-size: 0.7em; }

.navbar.promo-header {
  background-color: #423f3f;
  color: #fff;
  text-align: center;
  font-size: 1.6rem !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 64px; }
  @media (min-width: 768px) {
    .navbar.promo-header {
      padding-top: 2.2rem; } }
  @media (min-width: 992px) {
    .navbar.promo-header {
      padding-top: 1.7rem; } }
.navbar.promo-header.sticky-top.scrolled {
  background-color: #423f3f !important;
  color: #fff !important;
  box-shadow: none; }

.navbar.promo-header-christmas.sticky-top.scrolled {
  background-color: #00E6FF !important;
  color: black !important;
  box-shadow: none; }

.navbar.promo-header .btn-close {
  float: right;
  margin-right: 2rem;
  cursor: pointer; }
  @media (min-width: 768px) {
    .navbar.promo-header .btn-close {
      margin-top: 0.4rem; } }
  @media (min-width: 992px) {
    .navbar.promo-header .btn-close {
      margin-top: 0.7rem; } }
.promo-alert {
  position: relative;
  height: 300px;
  background-color: #200e82;
  background-image: url("/img/stych/promo/back2school/Back2school_StarPattern.svg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  /*background-blend-mode : overlay;*/ }
  @media (min-width: 992px) {
    .promo-alert {
      height: 250px; } }
  @media (min-width: 1200px) {
    .promo-alert {
      height: 200px; } }
  .promo-alert .btn-close {
    color: #200e82;
    background-color: white;
    display: block;
    border-radius: 26px;
    width: 26px;
    height: 26px;
    text-align: center;
    float: right;
    position: absolute;
    z-index: 999;
    top: 20px;
    right: 20px;
    font-size: 20px;
    /*
      margin-top: 20px;
      margin-bottom: -20px;
      margin-right: 20px;
      */
    padding-top: 3px;
    cursor: pointer; }
  .promo-alert .zone-scratch-full {
    height: 100%;
    background-image: url(/img/stych/promo/back2school/Back2school_FullTitle.svg), url(/img/stych/promo/back2school/Back2school_Scratch.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top -37% center, top -100% center;
    background-size: auto 71%, auto 85%; }
  .promo-alert .zone-scratch-restricted {
    height: 115px;
    background: none; }
  @media (min-width: 992px) {
    .promo-alert .zone-scratch-restricted {
      height: auto; }
    .promo-alert .zone-scratch-full {
      height: 100%;
      background-image: url(/img/stych/promo/back2school/Back2school_FullTitle.svg), url(/img/stych/promo/back2school/Back2school_Scratch.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: top 0% left 4%, top 90% left 0%;
      background-size: auto 85%, auto 116%; } }
  @media (min-width: 1200px) {
    .promo-alert .zone-scratch-full {
      height: 100%;
      background: none; }
    .promo-alert .zone-scratch-restricted {
      height: 100%;
      background-image: url("/img/stych/promo/back2school/Back2school_FullTitle.svg"), url("/img/stych/promo/back2school/Back2school_Scratch.svg");
      background-repeat: no-repeat, no-repeat;
      background-position: center left 25%, center left 15%;
      background-size: auto 150%, auto 200%; } }
  .promo-alert .zone-message {
    color: white;
    font-size: 1em;
    text-align: center;
    align-self: center;
    line-height: 1.1em;
    background-image: url(/img/stych/promo/back2school/Back2school_Sparkle_1.svg), url(/img/stych/promo/back2school/Back2school_Sparkle_2.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left -155% top -75%, right -160% top 222%;
    background-size: 80% 80%;
    padding-top: 20px;
    padding-bottom: 20px; }
    @media (min-width: 992px) {
      .promo-alert .zone-message {
        font-size: 1.5em; } }
    @media (min-width: 1200px) {
      .promo-alert .zone-message {
        font-size: 2em; } }
    .promo-alert .zone-message .price {
      color: #f1fd53; }
  .promo-alert .zone-cta {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-self: center;
    text-align: center; }
    .promo-alert .zone-cta .btn-cta {
      font-size: 1.3em;
      font-weight: normal;
      margin-bottom: 10px;
      padding: 0.1rem 0.0rem 0.1rem 0.2rem; }
      @media (min-width: 992px) {
        .promo-alert .zone-cta .btn-cta {
          padding: 0.7rem 2rem 0.7rem 2.5rem; } }
      @media (min-width: 1200px) {
        .promo-alert .zone-cta .btn-cta {
          margin-top: 60px;
          margin-bottom: 20px;
          padding: 1.1rem 2rem 1.1rem 2.5rem; } }
    .promo-alert .zone-cta .btn-cta img {
      width: 30px;
      vertical-align: text-bottom; }
    .promo-alert .zone-cta .deadline {
      font-size: 16px;
      color: white;
      background-color: #200e82; }
  .promo-alert.b2s {
    background: #3366ff;
    color: #fff;
    height: auto; }
    @media (min-width: 992px) {
      .promo-alert.b2s {
        height: 250px; } }
    @media (min-width: 1200px) {
      .promo-alert.b2s {
        height: 200px; } }
    @media (min-width: 768px) {
      .promo-alert.b2s {
        background: #fff;
        color: #423f3f; } }
    .promo-alert.b2s .col-img {
      display: flex;
      flex: 1;
      justify-content: center;
      align-items: center; }
      @media (min-width: 768px) {
        .promo-alert.b2s .col-img {
          flex: 1; } }
    .promo-alert.b2s .btn-close {
      top: 5px;
      background-color: #fff;
      color: #3366ff; }
      @media (min-width: 768px) {
        .promo-alert.b2s .btn-close {
          top: 20px;
          background-color: #380098;
          color: #fff; } }
    .promo-alert.b2s .legend {
      font-size: 2rem;
      padding-top: 2rem;
      display: flex;
      flex: 2;
      align-items: center;
      text-align: center;
      font-weight: 500; }
      @media (max-width: 1200px) {
        .promo-alert.b2s .legend {
          font-size: calc(1.325rem + 0.9vw) ; } }
      @media (min-width: 768px) {
        .promo-alert.b2s .legend {
          font-size: 2.6rem;
          flex: 2;
          padding-top: 0; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .promo-alert.b2s .legend {
      font-size: calc(1.385rem + 1.62vw) ; } }
    .promo-alert.b2s .zone-message {
      background: none;
      color: #fff;
      font-size: 2.2rem; }
      @media (max-width: 1200px) {
        .promo-alert.b2s .zone-message {
          font-size: calc(1.345rem + 1.14vw) ; } }
      @media (min-width: 768px) {
        .promo-alert.b2s .zone-message {
          color: #423f3f;
          font-size: 2.6rem; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .promo-alert.b2s .zone-message {
      font-size: calc(1.385rem + 1.62vw) ; } }
      .promo-alert.b2s .zone-message .price {
        font-size: inherit; }
        @media (min-width: 768px) {
          .promo-alert.b2s .zone-message .price {
            color: #3366ff; } }
    .promo-alert.b2s .zone-cta {
      font-size: 1rem; }
      .promo-alert.b2s .zone-cta .btn-cta {
        padding-left: 0;
        padding-right: 0;
        font-size: 2rem;
        margin-top: 0; }
        @media (max-width: 1200px) {
          .promo-alert.b2s .zone-cta .btn-cta {
            font-size: calc(1.325rem + 0.9vw) ; } }
        @media (min-width: 768px) {
          .promo-alert.b2s .zone-cta .btn-cta {
            font-size: 3rem; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .promo-alert.b2s .zone-cta .btn-cta {
      font-size: calc(1.425rem + 2.1vw) ; } }
        @media (min-width: 992px) {
          .promo-alert.b2s .zone-cta .btn-cta {
            padding: 0.7rem 2rem 0.7rem 2.5rem; } }
      .promo-alert.b2s .zone-cta .deadline {
        background: none;
        font-size: 1.5rem; }
        @media (max-width: 1200px) {
          .promo-alert.b2s .zone-cta .deadline {
            font-size: calc(1.275rem + 0.3vw) ; } }
        @media (min-width: 768px) {
          .promo-alert.b2s .zone-cta .deadline {
            font-size: 1.6rem;
            color: #423f3f; } }
  @media (min-width: 768px) and (max-width: 1200px) {
    .promo-alert.b2s .zone-cta .deadline {
      font-size: calc(1.285rem + 0.42vw) ; } }
.promo-text-event, .promo-text-event-inner {
  color: #fff;
  text-align: center;
  height: 56px;
  font-size: 14px; }

.promo-text-event-inner {
  position: absolute;
  top: 100px;
  width: 300px;
  left: -60%;
  height: 200px;
  padding-top: 120px; }

.promo-alert.halloween {
  background-color: #433f3f;
  background-image: url("/img/stych/promo/halloween/background-illu-2021.svg");
  font-size: 0.7em; }
  @media (min-width: 992px) {
    .promo-alert.halloween {
      height: 200px; } }
  .promo-alert.halloween .price {
    color: #db3b00;
    display: block;
    font-size: 2em;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .promo-alert.halloween .zone-scratch-full {
    background-image: none; }
  .promo-alert.halloween .zone-scratch-restricted {
    color: #f8f8f8;
    font-size: 2em;
    line-height: 42px;
    letter-spacing: 1.14px;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    height: auto; }
  @media (min-width: 992px) {
    .promo-alert.halloween .zone-scratch-restricted {
      background-image: url(/img/stych/promo/halloween/ghost_1.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: top 70% left 50%;
      background-size: 80px 80px;
      padding-top: 2.6rem; } }
  .promo-alert.halloween .zone-message {
    padding: 0;
    font-size: 2em;
    background-image: url(/img/stych/promo/halloween/ghost_1.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 0 left 10%;
    background-size: 60px 60px; }
  @media (min-width: 992px) {
    .promo-alert.halloween .zone-message {
      background-image: none; } }
  .promo-alert.halloween .zone-cta {
    background-image: url(/img/stych/promo/halloween/ghost_2.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 0 right 10%;
    background-size: 50px 50px;
    height: 100%; }
  .promo-alert.halloween .zone-cta .btn-cta {
    background-color: #db3b00;
    border: none;
    margin-top: 1rem;
    margin-bottom: 4rem;
    color: #433f3f;
    font-size: 1.6em; }
  @media (min-width: 992px) {
    .promo-alert.halloween .zone-cta {
      background-position: top 13rem left 80%; }
    .promo-alert.halloween .zone-cta .btn-cta {
      margin-top: 0rem;
      padding: 1.1rem 2rem 1.1rem 2.5rem; } }
  .promo-alert.halloween .btn-primary:active:focus {
    box-shadow: none; }
  .promo-alert.halloween .background-link {
    background-image: url(/img/stych/promo/halloween/CTA.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 100%;
    width: 200px;
    margin-top: 1.5rem; }
  @media (min-width: 992px) {
    .promo-alert.halloween .background-link {
      margin-top: 5.6rem; } }
  .promo-alert.halloween .deadline {
    font-size: 1rem;
    background-color: transparent; }
  @media (min-width: 992px) {
    .promo-alert.halloween .deadline {
      position: absolute;
      bottom: -3.5rem;
      left: 50%;
      margin-left: -10rem; } }
.background-black-rounded {
  color: #fff;
  background-size: 100% 100%;
  background-position: top center, top center, top center;
  background-image: url(/img/stych/promo/black-friday/fond-noir.png);
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .background-black-rounded .container {
      padding: 0 !important; } }
@media (min-width: 992px) {
  #tarifs section.black-friday,
  #produit.template-promo-special section.black-friday {
    background-size: 45rem, 45rem, auto, 100% 100%;
    background-position: left, left, left, top center, top center;
    background-image: url(/img/stych/promo/black-friday/halo-bleu.png), url(/img/stych/promo/black-friday/black-friday-logo.png), url(/img/stych/promo/black-friday/fond-noir-illu.png), url(/img/stych/promo/black-friday/fond-noir.png);
    background-repeat: no-repeat, no-repeat, repeat, no-repeat; } }

@media (max-width: 1199.98px) {
  #tarifs section.black-friday,
  #produit.template-promo-special section.black-friday {
    background-size: 35rem, 35rem, auto, 100% 100%;
    background-position: top -40px center, top -40px center, left, top center, top center;
    background-image: url(/img/stych/promo/black-friday/halo-bleu.png), url(/img/stych/promo/black-friday/black-friday-logo.png), url(/img/stych/promo/black-friday/fond-noir-illu.png), url(/img/stych/promo/black-friday/fond-noir.png);
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    padding-top: 17rem; } }

#tarifs section.black-friday .stych-icon,
#tarifs section.black-friday #stych-lecteur,
#produit.template-promo-special section.black-friday .stych-icon,
#produit.template-promo-special section.black-friday #stych-lecteur {
  display: none !important; }

.remise-intitule.black-friday {
  position: absolute;
  right: 4rem;
  top: 8rem;
  width: 60px;
  height: 60px;
  color: transparent;
  text-indent: -9999px;
  background-size: 100%;
  background-position: center;
  background-image: url(/img/stych/promo/black-friday/black_friday_logo_2024.png);
  background-repeat: no-repeat; }

.tarif-pack-column.black-friday {
  position: relative; }

.bg-black-friday {
  background-color: #000 !important;
  color: #fff !important; }

.btn-black-friday {
  color: #fff;
  background-color: #000;
  border-color: #000; }

.btn-black-friday-v2 {
  color: #fff;
  background-color: #3366FF;
  border-color: #3366FF; }
  .btn-black-friday-v2:hover {
    color: #fff !important; }

.navbar.sticky-top:not(.scrolled) .login.btn-black-friday {
  color: #fff;
  background-color: #000;
  border-color: #000;
  border: 1px solid #fff; }

.navbar.sticky-top:not(.scrolled) .inscription.btn-black-friday {
  color: #000;
  background-color: #fff;
  border-color: #fff;
  border: 1px solid #fff; }

.navbar.sticky-top:not(.scrolled) .inscription.btn-black-friday a {
  color: #000; }

.btn-black-friday:hover {
  color: #380099;
  background-color: #edff00;
  border-color: #edff00; }

.navbar.sticky-top:not(.scrolled) .btn-black-friday:hover {
  color: #000;
  background-color: #edff00;
  border-color: #edff00; }

.navbar.sticky-top:not(.scrolled) .login.btn-black-friday:hover a,
.navbar.sticky-top:not(.scrolled) .inscription.btn-black-friday:hover a {
  color: #000; }

.agrement-black-friday img {
  width: 8rem;
  padding-top: 10rem; }

.agrement-black-friday #bulle-agrement {
  background: #380099;
  background: linear-gradient(45deg, #380099 0%, #352dc7 50%, #335ef8 100%); }

.section-black-friday .text-black-friday {
  padding-top: 20rem;
  position: relative; }

.section-black-friday .text-black-friday img {
  position: absolute;
  width: 50rem;
  top: -15rem;
  left: -12rem;
  z-index: -1; }

.section-black-friday .offre-home-black-friday {
  position: relative;
  background: #380099;
  background: linear-gradient(45deg, #380099 0%, #352dc7 50%, #335ef8 100%);
  color: #fff; }

.section-black-friday .price-black-friday {
  color: #edff00;
  font-size: 2em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block; }

.section-black-friday .img-black-friday {
  position: relative;
  height: 20rem; }

.section-black-friday .img-black-friday img {
  z-index: 0;
  position: absolute;
  width: 35rem;
  top: -5rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.section-black-friday .boite-auto {
  font-size: 0.7em;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-black-friday .code-reussite {
  font-size: 0.7em;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-black-friday .code-star {
  top: 0.5rem;
  right: -3rem;
  color: #000; }

.section-black-friday .code-star img {
  width: 8rem;
  height: 8rem; }

.section-black-friday .code-star .number {
  top: -2.8rem;
  right: 2.2rem; }
  @media (max-width: 991.98px) {
    .section-black-friday .code-star .number {
      top: -3.3rem; } }
.section-black-friday .code-star .pourcent {
  top: -3.5rem;
  right: 1.3rem; }
  @media (max-width: 991.98px) {
    .section-black-friday .code-star .pourcent {
      top: -2.5rem; } }
.section-black-friday .code-star .text {
  top: -0.7rem;
  right: 2rem; }
  @media (max-width: 991.98px) {
    .section-black-friday .code-star .text {
      top: 0.2rem; } }
.section-black-friday .offres-home-first {
  margin-right: 0; }

@media (max-width: 767.98px) {
  .section-black-friday .offres-home-second {
    margin-left: 0; } }

.promo-alert.black-friday {
  background-color: #000;
  color: #fff;
  background-size: auto;
  background-position: left;
  background-image: url(/img/stych/promo/black-friday/fond-noir-illu.png);
  background-repeat: repeat;
  font-size: 0.7em; }
  @media (max-width: 991.98px) {
    .promo-alert.black-friday {
      background-size: 35rem, 35rem, auto, 100% 100%;
      background-position: top -40px center, top -40px center, left, top center;
      background-image: url(/img/stych/promo/black-friday/halo-bleu.png), url(/img/stych/promo/black-friday/black-friday-logo.png), url(/img/stych/promo/black-friday/fond-noir-illu.png);
      background-repeat: no-repeat, no-repeat, repeat;
      padding-top: 18rem;
      height: auto; } }
  @media (min-width: 992px) {
    .promo-alert.black-friday {
      height: 200px; } }
  .promo-alert.black-friday .price {
    color: #edff00;
    display: block;
    font-size: 3em;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .promo-alert.black-friday .zone-scratch-full {
    background-image: none; }
  .promo-alert.black-friday .zone-scratch-restricted {
    color: #f8f8f8;
    font-size: 2em;
    line-height: 42px;
    letter-spacing: 1.14px;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    height: auto; }
  @media (min-width: 992px) {
    .promo-alert.black-friday .zone-scratch-restricted {
      background-image: url(/img/stych/promo/black-friday/halo-bleu.png), url(/img/stych/promo/black-friday/black-friday-logo.png);
      background-repeat: no-repeat, no-repeat;
      background-position: center left 50%;
      background-size: 75%, 75%; } }
  .promo-alert.black-friday .zone-message {
    padding: 0;
    font-size: 1.5em;
    background: none; }
  @media (min-width: 992px) {
    .promo-alert.black-friday .zone-message {
      background-image: none; } }
  .promo-alert.black-friday .zone-cta .btn-cta {
    background-color: #edff00;
    border: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #433f3f;
    font-size: 1.6em;
    padding: 1.1rem 2rem 1.1rem 2.5rem; }
  .promo-alert.black-friday .zone-cta .btn-cta:hover {
    background-color: #000;
    border: 3px solid #edff00;
    color: #fff; }
  @media (min-width: 992px) {
    .promo-alert.black-friday .zone-cta {
      background-position: top 13rem left 80%; }
    .promo-alert.black-friday .zone-cta .btn-cta {
      margin-top: 0rem;
      margin-bottom: 4rem; } }
  .promo-alert.black-friday .btn-primary:active:focus {
    box-shadow: none; }
  @media (min-width: 992px) {
    .promo-alert.black-friday .background-link {
      margin-top: 5.6rem; } }
  .promo-alert.black-friday .deadline {
    font-size: 1rem;
    background-color: transparent; }
  @media (min-width: 992px) {
    .promo-alert.black-friday .deadline {
      position: absolute;
      bottom: -3.5rem;
      left: 50%;
      margin-left: -10rem; } }
.section-christmas.background-blue-rounded {
  color: #fff;
  background-position: left top, right bottom;
  background-size: auto, cover;
  background-repeat: repeat-x;
  background-color: #3366FF;
  background-image: url(/img/stych/promo/christmas/christmas-neige-1.png);
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 767.98px) {
    .section-christmas.background-blue-rounded {
      background-position: left, right bottom; }
      .section-christmas.background-blue-rounded .container {
        padding: 0 !important; } }
@media (min-width: 992px) {
  #tarifs section.christmas,
  #produit.template-promo-special section.christmas {
    background-size: 25%, auto, 100% 100%;
    background-position: 2rem, left, top center;
    background-image: url(/img/stych/promo/christmas/christmas-boule.png), url(/img/stych/promo/christmas/christmas-neige-background.png), url(/img/stych/promo/christmas/christmas-background.png);
    background-repeat: no-repeat, repeat, no-repeat; } }

@media (max-width: 1199.98px) {
  #tarifs section.christmas,
  #produit.template-promo-special section.christmas {
    background-size: 30rem, auto, 100% 100%;
    background-position: top center, left, top center;
    background-image: url(/img/stych/promo/christmas/christmas-boule.png), url(/img/stych/promo/christmas/christmas-neige-background.png), url(/img/stych/promo/christmas/christmas-background.png);
    background-repeat: no-repeat, repeat, no-repeat;
    padding-top: 17rem; } }

#tarifs section.christmas .stych-icon,
#tarifs section.christmas #stych-lecteur,
#produit.template-promo-special section.christmas .stych-icon,
#produit.template-promo-special section.christmas #stych-lecteur {
  display: none !important; }

.remise-intitule.christmas {
  position: absolute;
  right: 4rem;
  top: 8rem;
  width: 60px;
  height: 60px;
  color: transparent;
  text-indent: -9999px;
  background-size: 100%;
  background-position: center;
  background-image: url(/img/stych/promo/christmas/christmas-icone.png);
  background-repeat: no-repeat; }

.tarif-pack-column.christmas {
  position: relative; }

.bg-christmas {
  background-color: #000 !important;
  color: #fff !important; }

.btn-christmas {
  color: #fff;
  background-color: #3366ff;
  border-color: #3366ff; }

.btn-christmas:hover {
  color: #3366ff;
  background-color: #fff;
  border-color: #3366ff; }

.desc-christmas {
  text-shadow: 0 0 6px #380099; }

.section-christmas .text-christmas {
  padding-top: 23rem;
  position: relative; }

.section-christmas .plaisir {
  font-size: 72px; }
  @media (max-width: 991.98px) {
    .section-christmas .plaisir {
      font-size: 40px !important; } }
.section-christmas .text-christmas img {
  position: absolute;
  width: 35rem;
  top: -12rem;
  z-index: -1; }
  @media (max-width: 991.98px) {
    .section-christmas .text-christmas img {
      width: 25rem;
      top: -5rem; } }
.section-christmas .text-christmas.only-img img {
  top: -5rem; }

.section-christmas .text-offre-valable {
  font-size: 1.5rem; }

.section-christmas .offre-home-christmas {
  position: relative;
  color: #423f3f; }

.section-christmas .price-christmas {
  color: #3366ff;
  font-size: 2em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block; }

.section-christmas .img-christmas {
  position: relative;
  height: 20rem; }

.section-christmas .img-christmas img {
  z-index: 0;
  position: absolute;
  width: 25rem;
  top: -2rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.section-christmas .christmas-scratch {
  position: absolute;
  bottom: -6rem;
  right: -7rem;
  z-index: -1; }
  @media (max-width: 991.98px) {
    .section-christmas .christmas-scratch {
      right: 15rem;
      bottom: -4rem; } }
  @media (max-width: 767.98px) {
    .section-christmas .christmas-scratch {
      width: 34%;
      right: -2rem; } }
.section-christmas .christmas-scratch-2 {
  position: absolute;
  bottom: 20rem;
  right: -6rem;
  z-index: -1;
  width: 34%; }
  @media (max-width: 991.98px) {
    .section-christmas .christmas-scratch-2 {
      bottom: 25rem;
      right: 0; } }
  @media (max-width: 767.98px) {
    .section-christmas .christmas-scratch-2 {
      width: auto;
      bottom: -3rem;
      right: 14rem; } }
.section-christmas .boite-auto {
  font-size: 0.7em;
  background-color: #edff00;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-christmas .code-reussite {
  font-size: 0.7em;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-christmas .code-star {
  top: 0.5rem;
  right: -3rem;
  color: #000; }

.section-christmas .code-star img {
  width: 8rem;
  height: 8rem; }

.section-christmas .code-star .number {
  top: -2.8rem;
  right: 2.5rem; }
  @media (max-width: 991.98px) {
    .section-christmas .code-star .number {
      top: -3.3rem; } }
.section-christmas .code-star .pourcent {
  top: -3.5rem;
  right: 1.3rem; }
  @media (max-width: 991.98px) {
    .section-christmas .code-star .pourcent {
      top: -2.5rem; } }
.section-christmas .code-star .text {
  top: -0.7rem;
  right: 2.1rem; }
  @media (max-width: 991.98px) {
    .section-christmas .code-star .text {
      top: 0.2rem; } }
.section-christmas .offres-home-first {
  margin-right: 0; }

@media (max-width: 767.98px) {
  .section-christmas .offres-home-second {
    margin-left: 0; } }

.promo-alert.christmas {
  background-color: #3366ff;
  color: #fff;
  background-size: 70%;
  background-position: center;
  background-image: url(/img/stych/promo/christmas/christmas-neige-background.png);
  background-repeat: repeat;
  font-size: 0.7em; }
  @media (max-width: 991.98px) {
    .promo-alert.christmas {
      background-size: 190px, 70%;
      background-position: top center, center;
      background-image: url(/img/stych/promo/christmas/christmas-boule-stych.png), url(/img/stych/promo/christmas/christmas-neige-background.png);
      background-repeat: no-repeat, repeat;
      padding-top: 18rem;
      height: auto; } }
  @media (min-width: 992px) {
    .promo-alert.christmas {
      height: 200px; } }
  .promo-alert.christmas .price {
    color: #edff00;
    display: block;
    font-size: 3em;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .promo-alert.christmas .zone-scratch-full {
    background-image: none; }
  .promo-alert.christmas .zone-scratch-restricted {
    color: #f8f8f8;
    font-size: 2em;
    line-height: 42px;
    letter-spacing: 1.14px;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    height: auto; }
  @media (min-width: 992px) {
    .promo-alert.christmas .zone-scratch-restricted {
      background-image: url(/img/stych/promo/christmas/christmas-boule-stych.png);
      background-repeat: no-repeat;
      background-position: top center;
      background-size: 190px; } }
  .promo-alert.christmas .zone-message {
    padding: 0;
    font-size: 1.5em;
    background: none; }
  @media (min-width: 992px) {
    .promo-alert.christmas .zone-message {
      background-image: none; } }
  .promo-alert.christmas .zone-cta .btn-cta {
    background-color: #3366ff;
    border: 3px solid #fff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.6em;
    padding: 1.1rem 2rem 1.1rem 2.5rem; }
  .promo-alert.christmas .zone-cta .btn-cta:hover {
    background-color: #fff;
    border: 3px solid #fff;
    color: #3366ff; }
  @media (min-width: 992px) {
    .promo-alert.christmas .zone-cta {
      background-position: top 13rem left 80%; }
    .promo-alert.christmas .zone-cta .btn-cta {
      margin-top: 0rem;
      margin-bottom: 4rem; } }
  .promo-alert.christmas .btn-primary:active:focus {
    box-shadow: none; }
  @media (min-width: 992px) {
    .promo-alert.christmas .background-link {
      margin-top: 5.6rem; } }
  .promo-alert.christmas .deadline {
    font-size: 1rem;
    background-color: transparent; }
  @media (min-width: 992px) {
    .promo-alert.christmas .deadline {
      position: absolute;
      bottom: -3.5rem;
      left: 50%;
      margin-left: -10rem; } }
.section-soldes.background-blue-rounded {
  color: #fff;
  background-size: 250%, 100% 100%;
  background-position: left, top center, top center;
  background-image: url(/img/stych/promo/back2school/Back2school_StarPattern.svg), url(/img/stych/background/fond-bleu_3.webp);
  background-repeat: repeat, no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .section-soldes.background-blue-rounded .container {
      padding: 0 !important; } }
@media (min-width: 992px) {
  #tarifs section.soldes,
  #produit.template-promo-special section.soldes {
    background-size: 20%, 120%, 100% 100%;
    background-position: 9rem, left, top center;
    background-image: url(/img/stych/promo/soldes/soldes-logo-hd.png), url(/img/stych/promo/back2school/Back2school_StarPattern.svg), url(/img/stych/background/fond-bleu_3.webp);
    background-repeat: no-repeat, repeat, no-repeat; } }

@media (max-width: 1199.98px) {
  #tarifs section.soldes,
  #produit.template-promo-special section.soldes {
    background-size: 30rem, 120%, 100% 100%;
    background-position: center 4rem, left, top center;
    background-image: url(/img/stych/promo/soldes/soldes-logo-hd.png), url(/img/stych/promo/back2school/Back2school_StarPattern.svg), url(/img/stych/background/fond-bleu_3.webp);
    background-repeat: no-repeat, repeat, no-repeat;
    padding-top: 17rem; } }

#tarifs section.soldes .stych-icon,
#tarifs section.soldes #stych-lecteur,
#produit.template-promo-special section.soldes .stych-icon,
#produit.template-promo-special section.soldes #stych-lecteur {
  display: none !important; }

.remise-intitule.soldes {
  position: absolute;
  right: 4rem;
  top: 8rem;
  width: 60px;
  height: 60px;
  color: transparent;
  text-indent: -9999px;
  background-size: 100%;
  background-position: center;
  background-image: url(/img/stych/promo/soldes/soldes-logo-hd.png);
  background-repeat: no-repeat; }

.tarif-pack-column.soldes {
  position: relative; }

.bg-soldes {
  background-color: #000 !important;
  color: #fff !important; }

.btn-soldes {
  color: #fff;
  background-color: #3366ff;
  border-color: #3366ff; }

.btn-soldes:hover {
  color: #3366ff;
  background-color: #fff;
  border-color: #3366ff; }

.desc-soldes {
  text-shadow: 0 0 6px #380099; }

.section-soldes .text-soldes {
  padding-top: 23rem;
  position: relative; }

.section-soldes .text-soldes img {
  position: absolute;
  width: 40rem;
  top: 3rem;
  z-index: -1; }
  @media (max-width: 991.98px) {
    .section-soldes .text-soldes img {
      width: 25rem;
      top: 7rem; } }
.section-soldes .text-soldes.only-img img {
  top: 7rem; }

.section-soldes .text-offre-valable {
  font-size: 1.5rem; }

.section-soldes .offre-home-soldes {
  position: relative;
  color: #423f3f; }

.section-soldes .price-soldes {
  color: #3366ff;
  font-size: 2em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block; }

.section-soldes .img-soldes {
  position: relative;
  height: 16rem; }

.section-soldes .img-soldes img {
  z-index: 0;
  position: absolute;
  width: 25rem;
  top: 7rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.section-soldes .soldes-scratch {
  position: absolute;
  bottom: -7rem;
  right: -7rem;
  z-index: -1; }

.section-soldes .soldes-show {
  position: absolute;
  bottom: 0;
  left: -10rem;
  z-index: 1;
  width: 125px; }

.section-soldes .soldes-show-mobile img {
  width: 100px; }

.section-soldes .boite-auto {
  font-size: 0.7em;
  background-color: #edff00;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-soldes .code-reussite {
  font-size: 0.7em;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-soldes .code-star {
  top: 0.5rem;
  right: -3rem;
  color: #000; }

.section-soldes .code-star img {
  width: 8rem;
  height: 8rem; }

.section-soldes .code-star .number {
  top: -2.8rem;
  right: 2.5rem; }
  @media (max-width: 991.98px) {
    .section-soldes .code-star .number {
      top: -3.3rem; } }
.section-soldes .code-star .pourcent {
  top: -3.5rem;
  right: 1.3rem; }
  @media (max-width: 991.98px) {
    .section-soldes .code-star .pourcent {
      top: -2.5rem; } }
.section-soldes .code-star .text {
  top: -0.7rem;
  right: 2.1rem; }
  @media (max-width: 991.98px) {
    .section-soldes .code-star .text {
      top: 0.2rem; } }
.section-soldes .offres-home-first {
  margin-right: 0; }

@media (max-width: 767.98px) {
  .section-soldes .offres-home-second {
    margin-left: 0; } }

.promo-alert.soldes {
  background-color: #3366ff;
  color: #fff;
  font-size: 0.7em; }
  @media (max-width: 991.98px) {
    .promo-alert.soldes {
      background-size: 250px, 150%;
      background-position: center 7rem, center;
      background-image: url(/img/stych/promo/soldes/soldes-logo.png), url(/img/stych/promo/back2school/Back2school_StarPattern.svg);
      background-repeat: no-repeat, repeat;
      padding-top: 18rem;
      height: auto; } }
  @media (min-width: 992px) {
    .promo-alert.soldes {
      height: 200px; } }
  .promo-alert.soldes .price {
    color: #edff00;
    display: block;
    font-size: 3em;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .promo-alert.soldes .zone-scratch-full {
    background-image: none; }
  .promo-alert.soldes .zone-scratch-restricted {
    color: #f8f8f8;
    font-size: 2em;
    line-height: 42px;
    letter-spacing: 1.14px;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    height: auto; }
  @media (min-width: 992px) {
    .promo-alert.soldes .zone-scratch-restricted {
      background-image: url(/img/stych/promo/soldes/soldes-logo-hd.png);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 250px; } }
  .promo-alert.soldes .zone-message {
    padding: 0;
    font-size: 1.5em;
    background: none; }
  @media (min-width: 992px) {
    .promo-alert.soldes .zone-message {
      background-image: none; } }
  .promo-alert.soldes .zone-cta .btn-cta {
    background-color: #3366ff;
    border: 3px solid #fff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.6em;
    padding: 1.1rem 2rem 1.1rem 2.5rem; }
  .promo-alert.soldes .zone-cta .btn-cta:hover {
    background-color: #fff;
    border: 3px solid #fff;
    color: #3366ff; }
  @media (min-width: 992px) {
    .promo-alert.soldes .zone-cta {
      background-position: top 13rem left 80%; }
    .promo-alert.soldes .zone-cta .btn-cta {
      margin-top: 0rem;
      margin-bottom: 4rem; } }
  .promo-alert.soldes .btn-primary:active:focus {
    box-shadow: none; }
  @media (min-width: 992px) {
    .promo-alert.soldes .background-link {
      margin-top: 5.6rem; } }
  .promo-alert.soldes .deadline {
    font-size: 1rem;
    background-color: transparent; }
  @media (min-width: 992px) {
    .promo-alert.soldes .deadline {
      position: absolute;
      bottom: -3.5rem;
      left: 50%;
      margin-left: -10rem; } }
.section-ventes-privees.background-blue-rounded {
  color: #fff;
  background-size: 100% 100%;
  background-position: top center;
  background-image: url(/img/stych/background/fond-bleu_3.webp);
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .section-ventes-privees.background-blue-rounded .container {
      padding: 0 !important; } }
@media (min-width: 992px) {
  #tarifs section.ventes-privees,
  #produit.template-promo-special section.ventes-privees {
    background-size: 20%, 100% 100%;
    background-position: 9rem, top center;
    background-image: url(/img/stych/promo/ventes-privees/ventes-privees-logo-hd.png), url(/img/stych/background/fond-bleu_3.webp);
    background-repeat: no-repeat, no-repeat; } }

@media (max-width: 1199.98px) {
  #tarifs section.ventes-privees,
  #produit.template-promo-special section.ventes-privees {
    background-size: 30rem, 100% 100%;
    background-position: center 4rem, top center;
    background-image: url(/img/stych/promo/ventes-privees/ventes-privees-logo-hd.png), url(/img/stych/background/fond-bleu_3.webp);
    background-repeat: no-repeat, no-repeat;
    padding-top: 17rem; } }

#tarifs section.ventes-privees .stych-icon,
#tarifs section.ventes-privees #stych-lecteur,
#produit.template-promo-special section.ventes-privees .stych-icon,
#produit.template-promo-special section.ventes-privees #stych-lecteur {
  display: none !important; }

.remise-intitule.ventes-privees {
  position: absolute;
  right: 4rem;
  top: 8rem;
  width: 60px;
  height: 60px;
  color: transparent;
  text-indent: -9999px;
  background-size: 100%;
  background-position: center;
  background-image: url(/img/stych/promo/ventes-privees/ventes-privees-logo-hd.png);
  background-repeat: no-repeat; }

.tarif-pack-column.ventes-privees {
  position: relative; }

.bg-ventes-privees {
  background-color: #000 !important;
  color: #fff !important; }

.btn-ventes-privees {
  color: #fff;
  background-color: #3366ff;
  border-color: #3366ff;
  background-size: 15px, 15px;
  background-position: left 1rem top 50%, right 1rem top 50%;
  background-image: url(/img/stych/promo/ventes-privees/ventes-privees-star.png), url(/img/stych/promo/ventes-privees/ventes-privees-star.png);
  background-repeat: no-repeat, no-repeat; }

.btn-ventes-privees:hover {
  color: #3366ff;
  background-color: #fff;
  border-color: #3366ff; }

@media (max-width: 991.98px) {
  .offres-home .btn-rounded.btn-ventes-privees, .offres-home .msg_container .btn-ventes-privees.btn-cta, .msg_container .offres-home .btn-ventes-privees.btn-cta {
    font-size: 1.6rem; } }

.desc-ventes-privees {
  text-shadow: 0 0 6px #380099; }

.section-ventes-privees .text-ventes-privees {
  padding-top: 23rem;
  position: relative; }

.section-ventes-privees .text-ventes-privees img {
  position: absolute;
  width: 36rem;
  top: 0rem;
  z-index: -1; }
  @media (max-width: 991.98px) {
    .section-ventes-privees .text-ventes-privees img {
      width: 25rem;
      top: 7rem; } }
  @media (max-width: 991.98px) {
    .section-ventes-privees .text-ventes-privees img {
      width: 25rem;
      top: 7rem; } }
.section-ventes-privees .text-ventes-privees.only-img img {
  top: 5rem; }

.section-ventes-privees .text-offre-valable {
  font-size: 1.5rem; }

.section-ventes-privees .offre-home-ventes-privees {
  position: relative;
  color: #423f3f; }

.section-ventes-privees .price-ventes-privees {
  color: #3366ff;
  font-size: 2em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block; }

.section-ventes-privees .img-ventes-privees {
  position: relative;
  height: 16rem; }

.section-ventes-privees .img-ventes-privees img {
  z-index: 0;
  position: absolute;
  width: 25rem;
  top: 3rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.section-ventes-privees .ventes-privees-scratch {
  position: absolute;
  bottom: -7rem;
  right: -7rem;
  z-index: -1; }

.section-ventes-privees .ventes-privees-show {
  position: absolute;
  bottom: 0;
  left: -10rem;
  z-index: 1;
  width: 125px; }

.section-ventes-privees .ventes-privees-show-mobile img {
  width: 100px; }

.section-ventes-privees .boite-auto {
  font-size: 0.7em;
  background-color: #edff00;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-ventes-privees .code-reussite {
  font-size: 0.7em;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  padding-top: 0.6rem;
  text-transform: uppercase; }

.section-ventes-privees .code-star {
  top: 0.5rem;
  right: -3rem;
  color: #000; }

.section-ventes-privees .code-star img {
  width: 8rem;
  height: 8rem; }

.section-ventes-privees .code-star .number {
  top: -2.8rem;
  right: 2.5rem; }
  @media (max-width: 991.98px) {
    .section-ventes-privees .code-star .number {
      top: -3.3rem; } }
.section-ventes-privees .code-star .pourcent {
  top: -3.5rem;
  right: 1.3rem; }
  @media (max-width: 991.98px) {
    .section-ventes-privees .code-star .pourcent {
      top: -2.5rem; } }
.section-ventes-privees .code-star .text {
  top: -0.7rem;
  right: 2.1rem; }
  @media (max-width: 991.98px) {
    .section-ventes-privees .code-star .text {
      top: 0.2rem; } }
.section-ventes-privees .offres-home-first {
  margin-right: 0; }

@media (max-width: 767.98px) {
  .section-ventes-privees .offres-home-second {
    margin-left: 0; } }

@media (max-width: 575.98px) {
  .section-ventes-privees .svg-container {
    display: none; } }

.promo-alert.ventes-privees {
  background-color: #3366ff;
  color: #fff;
  font-size: 0.7em;
  background-image: none; }
  @media (max-width: 991.98px) {
    .promo-alert.ventes-privees {
      background-size: 250px;
      background-position: center 4rem;
      background-image: url(/img/stych/promo/ventes-privees/ventes-privees-logo.png);
      background-repeat: no-repeat;
      padding-top: 18rem;
      height: auto; } }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees {
      height: 200px; } }
  .promo-alert.ventes-privees .price {
    color: #edff00;
    display: block;
    font-size: 3em;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .promo-alert.ventes-privees .zone-scratch-full {
    background-image: none; }
  .promo-alert.ventes-privees .zone-scratch-restricted {
    color: #f8f8f8;
    font-size: 2em;
    line-height: 42px;
    letter-spacing: 1.14px;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    height: auto; }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees .zone-scratch-restricted {
      background-image: url(/img/stych/promo/ventes-privees/ventes-privees-logo-hd.png);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 250px; } }
  .promo-alert.ventes-privees .zone-message {
    padding: 0;
    font-size: 1.5em;
    background: none; }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees .zone-message {
      background-image: none; } }
  .promo-alert.ventes-privees .zone-cta .btn-cta {
    background-color: #3366ff;
    border: 3px solid #fff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.6em;
    padding: 1.1rem 3.5rem 1.1rem 3.4rem; }
  .promo-alert.ventes-privees .zone-cta .btn-cta:hover {
    background-color: #fff;
    border: 3px solid #fff;
    color: #3366ff; }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees .zone-cta {
      background-position: top 13rem left 80%; }
    .promo-alert.ventes-privees .zone-cta .btn-cta {
      margin-top: 0rem;
      margin-bottom: 4rem; } }
  .promo-alert.ventes-privees .btn-primary:active:focus {
    box-shadow: none; }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees .background-link {
      margin-top: 5.6rem; } }
  .promo-alert.ventes-privees .deadline {
    font-size: 1rem;
    background-color: transparent; }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees .deadline {
      position: absolute;
      bottom: -3.5rem;
      left: 50%;
      margin-left: -10rem; } }
.promo-alert.week-end {
  background-color: #3366ff;
  color: #fff;
  font-size: 0.7em;
  background-image: none; }
  @media (max-width: 991.98px) {
    .promo-alert.week-end {
      background-size: 250px, 200px;
      background-position: 90% 0rem, 20% 4rem;
      background-image: url(/img/stych/promo/week-end/week-end-logo-code.png), url(/img/stych/promo/week-end/week-end-scratch.svg);
      background-repeat: no-repeat, no-repeat;
      padding-top: 24rem;
      height: auto; } }
  @media (max-width: 991.98px) {
    .promo-alert.week-end {
      background-position: 95% 0rem, 20% 4rem; } }
  @media (max-width: 450px) {
    .promo-alert.week-end {
      background-position: 95% 0rem, 0% 4rem; } }
  @media (min-width: 992px) {
    .promo-alert.week-end {
      height: 200px; } }
  .promo-alert.week-end .price {
    color: #edff00;
    display: block;
    font-size: 3em;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .promo-alert.week-end .title-gras {
    display: block;
    font-size: 1.6em;
    font-weight: bold;
    padding-bottom: 2rem; }
  .promo-alert.week-end .zone-scratch-full {
    background-image: none; }
  .promo-alert.week-end .zone-scratch-restricted {
    height: auto; }
  .promo-alert.week-end .text-scratch {
    color: #3366ff;
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    padding-top: 65px;
    padding-left: 90px;
    position: absolute; }
    @media (max-width: 991.98px) {
      .promo-alert.week-end .text-scratch {
        padding-top: 0;
        padding-left: 0;
        top: 11rem;
        left: 22%; } }
    @media (max-width: 450px) {
      .promo-alert.week-end .text-scratch {
        left: 12%; } }
  @media (min-width: 768px) {
    .promo-alert.week-end .zone-scratch-restricted {
      background-image: url(/img/stych/promo/week-end/week-end-logo-code.png), url(/img/stych/promo/week-end/week-end-scratch.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: 150px 40%, 50px;
      background-size: 70%, 200px; } }
  .promo-alert.week-end .zone-message {
    padding: 0;
    font-size: 1.5em;
    background: none; }
  @media (min-width: 992px) {
    .promo-alert.week-end .zone-message {
      background-image: none; } }
  .promo-alert.week-end .zone-cta .btn-cta {
    background-color: #3366ff;
    border: 3px solid #fff;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.6em;
    padding: 1.1rem 3.5rem 1.1rem 3.4rem; }
  .promo-alert.week-end .zone-cta .btn-cta:hover {
    background-color: #fff;
    border: 3px solid #fff;
    color: #3366ff; }
  @media (min-width: 992px) {
    .promo-alert.week-end .zone-cta {
      background-position: top 13rem left 80%; }
    .promo-alert.week-end .zone-cta .btn-cta {
      margin-top: 0rem;
      margin-bottom: 4rem; } }
  .promo-alert.week-end .btn-primary:active:focus {
    box-shadow: none; }
  @media (min-width: 992px) {
    .promo-alert.week-end .background-link {
      margin-top: 5.6rem; } }
  .promo-alert.week-end .deadline {
    font-size: 1rem;
    background-color: transparent; }
  @media (min-width: 992px) {
    .promo-alert.week-end .deadline {
      position: absolute;
      bottom: -3.5rem;
      left: 50%;
      margin-left: -9rem; } }
@media (max-width: 991.98px) {
  .promo-alert.week-end.permis {
    background-image: url(/img/stych/promo/week-end/week-end-logo-permis.png), url(/img/stych/promo/week-end/week-end-scratch.svg); } }

@media (min-width: 768px) {
  .promo-alert.week-end.permis .zone-scratch-restricted {
    background-image: url(/img/stych/promo/week-end/week-end-logo-permis.png), url(/img/stych/promo/week-end/week-end-scratch.svg); } }

.remise-intitule.ventes-privees {
  background-image: url(/img/stych/promo/french-days/french_days.png); }

@media (max-width: 991.98px) {
  .promo-alert.ventes-privees.french-days {
    background-image: url(/img/stych/promo/french-days/french_days.png); } }

@media (min-width: 992px) {
  .promo-alert.ventes-privees.french-days .zone-scratch-restricted {
    background-image: url(/img/stych/promo/french-days/french_days.png); } }

.section-soldes-juillet .btn-soldes-juillet {
  color: #fff;
  background-color: #3366ff;
  border-color: #3366ff;
  min-width: 200px; }

.section-soldes-juillet .btn-soldes-juillet:hover {
  color: #3366ff;
  background-color: #fff;
  border-color: #3366ff; }

@media (max-width: 991.98px) {
  .section-soldes-juillet .offres-home .btn-rounded.btn-soldes-juillet, .section-soldes-juillet .offres-home .msg_container .btn-soldes-juillet.btn-cta, .msg_container .section-soldes-juillet .offres-home .btn-soldes-juillet.btn-cta {
    font-size: 1.6rem; } }

.section-soldes-juillet .text-ventes-privees {
  padding-top: 19rem; }

.section-soldes-juillet .text-soldes-juillet img {
  width: 40rem; }
  @media (max-width: 1199.98px) {
    .section-soldes-juillet .text-soldes-juillet img {
      width: 36rem; } }
  @media (max-width: 991.98px) {
    .section-soldes-juillet .text-soldes-juillet img {
      width: 30rem; } }
.section-soldes-juillet .img-soldes-juillet {
  width: 30rem; }
  @media (min-width: 992px) {
    .section-soldes-juillet .img-soldes-juillet {
      max-height: 17rem; } }
  @media (min-width: 768px) {
    .section-soldes-juillet .img-soldes-juillet img {
      width: 45rem; } }
.section-soldes-juillet .btn-smiley img {
  margin-top: -5px;
  margin-left: 3px;
  width: 25px; }

.section-soldes-juillet.background-blue-rounded {
  color: #fff;
  background: #01c6f0;
  background: linear-gradient(0deg, #01c6f0 0%, #00099f 100%); }
  @media (max-width: 991.98px) {
    .section-soldes-juillet.background-blue-rounded .container {
      padding: 0 !important; } }
.section-soldes-juillet .desc-ventes-privees {
  padding-right: 1rem;
  padding-left: 1rem; }

.soldes-juillet .promo-text-event-inner {
  background-size: 80%;
  background-position: top center;
  background-image: url(/img/stych/promo/soldes-juillet/soldes-juillet.png);
  background-repeat: no-repeat, no-repeat; }

@media (min-width: 992px) {
  #tarifs section.soldes-juillet,
  #produit.template-promo-special section.soldes-juillet {
    background-size: 100% 100%;
    background-position: top center;
    background-image: linear-gradient(0deg, #01c6f0 0%, #00099f 100%);
    background-repeat: no-repeat; } }

@media (max-width: 1199.98px) {
  #tarifs section.soldes-juillet,
  #produit.template-promo-special section.soldes-juillet {
    background-size: 30rem, 100% 100%;
    background-position: center 4rem, top center;
    background-image: url(/img/stych/promo/soldes-juillet/soldes-juillet.png), linear-gradient(0deg, #01c6f0 0%, #00099f 100%);
    background-repeat: no-repeat, no-repeat;
    padding-top: 17rem; } }

#tarifs section.soldes-juillet .stych-icon,
#tarifs section.soldes-juillet #stych-lecteur,
#produit.template-promo-special section.soldes-juillet .stych-icon,
#produit.template-promo-special section.soldes-juillet #stych-lecteur {
  display: none !important; }

.promo-alert.ventes-privees.soldes-juillet .zone-cta .btn-cta {
  font-size: 1.4rem; }

.promo-alert.ventes-privees.soldes-juillet .price-yellow {
  color: #f1fd53;
  font-weight: bold; }

.promo-alert.ventes-privees.soldes-juillet .btn-soldes-juillet {
  padding: 0.3rem 3.5rem 0 3.5rem; }

@media (max-width: 991.98px) {
  .promo-alert.ventes-privees.soldes-juillet {
    background-image: url(/img/stych/promo/soldes-juillet/soldes-juillet.png);
    padding-top: 6rem;
    background-size: 150px;
    background-position: center 0.7rem; } }

@media (min-width: 992px) {
  .promo-alert.ventes-privees.soldes-juillet {
    height: 70px; }
    .promo-alert.ventes-privees.soldes-juillet .deadline {
      bottom: -3.5rem;
      font-weight: normal; }
    .promo-alert.ventes-privees.soldes-juillet .zone-scratch-restricted {
      background-image: url(/img/stych/promo/soldes-juillet/soldes-juillet.png);
      background-size: 130px;
      background-position: center 0.8rem; }
    .promo-alert.ventes-privees.soldes-juillet .zone-message {
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 26px; }
    .promo-alert.ventes-privees.soldes-juillet .background-link {
      margin-top: 0rem; }
      .promo-alert.ventes-privees.soldes-juillet .background-link span {
        margin-bottom: 0rem; } }

.section-ventes-privees.section-promo-octobre {
  background-image: url(/img/stych/promo/promo-octobre/promo-octobre-background.png); }
  .section-ventes-privees.section-promo-octobre h2 {
    font-size: 5rem; }
    @media (max-width: 991.98px) {
      .section-ventes-privees.section-promo-octobre h2 {
        font-size: 3.2rem;
        text-align: center; } }
  .section-ventes-privees.section-promo-octobre .text-ventes-privees {
    padding-top: 20rem; }
    @media (max-width: 991.98px) {
      .section-ventes-privees.section-promo-octobre .text-ventes-privees {
        padding-top: 18rem; } }
    .section-ventes-privees.section-promo-octobre .text-ventes-privees img {
      width: 30rem; }
      @media (max-width: 991.98px) {
        .section-ventes-privees.section-promo-octobre .text-ventes-privees img {
          width: 24rem;
          top: 0rem; } }
  .section-ventes-privees.section-promo-octobre .img-ventes-privees img {
    width: 22rem;
    margin-bottom: 2rem; }
    @media (max-width: 991.98px) {
      .section-ventes-privees.section-promo-octobre .img-ventes-privees img {
        top: 1rem; } }
  @media (max-width: 991.98px) {
    .section-ventes-privees.section-promo-octobre .img-ventes-privees {
      height: 14rem; } }
  .section-ventes-privees.section-promo-octobre .promo-pack .nom {
    color: #423f3f; }
  .section-ventes-privees.section-promo-octobre .promo-pack .a-partir {
    display: block;
    font-weight: normal;
    padding-top: 0.5rem; }
  .section-ventes-privees.section-promo-octobre .btn-ventes-privees {
    background-image: none; }
    .section-ventes-privees.section-promo-octobre .btn-ventes-privees img {
      width: 15px;
      margin-top: -4px;
      margin-left: 4px; }

.promo-alert.ventes-privees.promo-octobre {
  background-image: url(/img/stych/promo/promo-octobre/promo-octobre-background.png); }
  @media (max-width: 991.98px) {
    .promo-alert.ventes-privees.promo-octobre {
      background-image: url(/img/stych/promo/promo-octobre/promo-octobre-logo.png), url(/img/stych/promo/promo-octobre/promo-octobre-background.png);
      background-size: 20rem, 200%;
      background-position: center 3.5rem, 100% 0rem; }
      .promo-alert.ventes-privees.promo-octobre .zone-scratch-full {
        height: auto; }
      .promo-alert.ventes-privees.promo-octobre .btn-close {
        top: 30px; } }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees.promo-octobre .zone-scratch-restricted {
      background-image: url(/img/stych/promo/promo-octobre/promo-octobre-logo.png); } }
.section-promo .svg-container {
  position: absolute;
  top: 15px;
  right: -60px; }

.section-promo .promo-pack {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  color: #3366ff;
  margin-bottom: 2rem;
  cursor: pointer; }
  .section-promo .promo-pack .nom {
    font-size: 23px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
  .section-promo .promo-pack .bloc-boite-auto {
    display: inline-block; }
  .section-promo .promo-pack .a-partir {
    font-size: 20px;
    color: #423f3f; }
    .section-promo .promo-pack .a-partir .price {
      color: #3366ff;
      font-size: 20px;
      font-weight: bold; }
  .section-promo .promo-pack.mobile .nom {
    font-size: 16px; }
  .section-promo .promo-pack.mobile .a-partir {
    font-size: 14px; }
    .section-promo .promo-pack.mobile .a-partir .price {
      font-size: 14px; }
  .section-promo .promo-pack.mobile.welcome-stych .a-partir {
    font-size: 16px; }
  .section-promo .promo-pack.mobile.welcome-stych .price {
    font-size: 16px;
    text-transform: uppercase; }
  .section-promo .promo-pack.welcome-stych {
    font-weight: bold;
    font-size: 16px; }
    .section-promo .promo-pack.welcome-stych .arrow img {
      width: 2rem;
      height: 2rem; }
  .section-promo .promo-pack .arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  @media (max-width: 991.98px) {
    .section-promo .promo-pack {
      border: 1px solid #3366ff;
      box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } }
.promo-alert-header {
  height: 50px; }
  .promo-alert-header .btn-close {
    top: 13px; }
  .promo-alert-header .zone-message {
    font-size: 1em;
    padding: 0; }
    .promo-alert-header .zone-message .price {
      font-size: 1em; }

.promo-alert-header.promo-design-2023 {
  background-image: url("/img/stych/promo/promo-octobre/promo-octobre-background.png"); }

.promo-no-style {
  font-size: 5rem !important;
  font-family: inherit !important; }
  @media (max-width: 991.98px) {
    .promo-no-style {
      font-size: 3.2rem !important;
      text-align: center !important; } }
.text-offre-valable {
  text-align: center; }

@media (max-width: 991.98px) {
  .desc-promo {
    display: none; } }

#header.promo-octobre {
  background-image: url("/img/stych/promo/promo-octobre/promo-octobre-background.png"); }

.column-left.promo-octobre {
  align-items: center; }
  .column-left.promo-octobre img {
    width: 300px;
    margin-top: 3rem;
    margin-bottom: 3rem; }

.section-ventes-privees.section-black-november {
  background-color: #000;
  background-image: url(/img/stych/promo/black-november/background-black-november-horizontal.png);
  background-repeat: no-repeat;
  background-size: 1200px;
  background-position: 40% 20%; }
  @media (max-width: 991.98px) {
    .section-ventes-privees.section-black-november {
      background-image: url(/img/stych/promo/black-november/background-black-november-horizontal.png);
      background-size: 1200px;
      background-position: 20% 0%; } }
  .section-ventes-privees.section-black-november h2 {
    font-size: 5rem; }
    @media (max-width: 991.98px) {
      .section-ventes-privees.section-black-november h2 {
        font-size: 3.2rem;
        text-align: center; } }
  .section-ventes-privees.section-black-november .desc-ventes-privees {
    padding-top: 2rem;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    text-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25); }
    @media (max-width: 1199.98px) {
      .section-ventes-privees.section-black-november .desc-ventes-privees {
        padding-top: 1rem;
        font-size: 20px; } }
  .section-ventes-privees.section-black-november .text-offre-valable {
    background-color: #3366ff;
    color: #fff;
    width: 300px;
    margin: auto;
    border-radius: 5px; }
  .section-ventes-privees.section-black-november .offres-home-first,
  .section-ventes-privees.section-black-november .offres-home-second,
  .section-ventes-privees.section-black-november .promo-pack {
    border: 2px solid #3366ff;
    box-shadow: 0px 0px 20px 5px #3366ff; }
  .section-ventes-privees.section-black-november .text-ventes-privees {
    padding-top: 20rem; }
    @media (max-width: 991.98px) {
      .section-ventes-privees.section-black-november .text-ventes-privees {
        padding-top: 18rem; } }
    .section-ventes-privees.section-black-november .text-ventes-privees img {
      width: 50rem; }
      @media (max-width: 1199.98px) {
        .section-ventes-privees.section-black-november .text-ventes-privees img {
          width: 38rem; } }
      @media (max-width: 991.98px) {
        .section-ventes-privees.section-black-november .text-ventes-privees img {
          width: 36rem;
          top: 0rem; } }
  .section-ventes-privees.section-black-november .img-ventes-privees img {
    width: 38rem;
    margin-bottom: 2rem; }
    @media (max-width: 991.98px) {
      .section-ventes-privees.section-black-november .img-ventes-privees img {
        top: 0rem;
        width: 34rem; } }
  @media (max-width: 991.98px) {
    .section-ventes-privees.section-black-november .img-ventes-privees {
      height: 14rem; } }
  .section-ventes-privees.section-black-november .promo-pack .nom {
    color: #423f3f; }
  .section-ventes-privees.section-black-november .promo-pack .a-partir {
    display: block;
    font-weight: normal;
    padding-top: 0.5rem; }
  .section-ventes-privees.section-black-november .btn-ventes-privees {
    background-image: none; }
    .section-ventes-privees.section-black-november .btn-ventes-privees img {
      width: 15px;
      margin-top: -4px;
      margin-left: 4px; }

.promo-alert.ventes-privees.black-november {
  background-image: url(/img/stych/promo/black-november/background-black-november-horizontal.png); }
  @media (max-width: 991.98px) {
    .promo-alert.ventes-privees.black-november {
      background-image: url(/img/stych/promo/black-november/black-november-logo.png), url(/img/stych/promo/black-november/background-black-november-vertical.png);
      background-size: 36rem, 100%;
      background-position: center 3.5rem, 100% 0rem; }
      .promo-alert.ventes-privees.black-november .zone-scratch-full {
        height: auto; }
      .promo-alert.ventes-privees.black-november .btn-close {
        top: 30px; } }
  @media (min-width: 992px) {
    .promo-alert.ventes-privees.black-november .zone-scratch-restricted {
      background-image: url(/img/stych/promo/black-november/black-november-logo.png); } }
#header.black-november {
  background-color: #000 !important;
  background-image: url("/img/stych/promo/black-november/background-black-november-horizontal.png") !important;
  background-repeat: no-repeat;
  background-position: 10% 20%;
  background-size: 1400px; }
  @media (max-width: 991.98px) {
    #header.black-november {
      background-size: auto;
      background-position: 10% 0%; } }
.column-left.black-november {
  align-items: center; }
  .column-left.black-november img {
    width: 400px;
    margin-top: 3rem; }
    @media (max-width: 991.98px) {
      .column-left.black-november img {
        margin-top: 0; } }
  .column-left.black-november .text-offre-valable {
    background-color: #3366ff;
    color: #fff;
    width: 300px;
    font-size: 1.4rem;
    padding-bottom: 0.3rem;
    border-radius: 5px; }
    @media (max-width: 1199.98px) {
      .column-left.black-november .text-offre-valable {
        margin-bottom: 2rem; } }
  .column-left.black-november .desc-ventes-privees {
    padding-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    text-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25); }
    @media (max-width: 1199.98px) {
      .column-left.black-november .desc-ventes-privees {
        font-size: 20px;
        padding-bottom: 1rem; } }
.promo-alert-header.promo-design-2023.black-november {
  background-image: none;
  background-color: #1C1D21; }
  .promo-alert-header.promo-design-2023.black-november .logo img {
    height: 50px; }
  .promo-alert-header.promo-design-2023.black-november button {
    background-color: #1C1D21;
    border: 1px solid yellow;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    width: 130px; }
  .promo-alert-header.promo-design-2023.black-november .zone-message {
    font-size: 0.8em; }
    .promo-alert-header.promo-design-2023.black-november .zone-message img {
      vertical-align: -0.4rem; }
    .promo-alert-header.promo-design-2023.black-november .zone-message .yellow {
      color: yellow; }
  @media (max-width: 991.98px) {
    .promo-alert-header.promo-design-2023.black-november {
      height: 190px; }
      .promo-alert-header.promo-design-2023.black-november .logo img {
        height: 100px; }
      .promo-alert-header.promo-design-2023.black-november .zone-message {
        font-size: 1em; } }
  @media (max-width: 767.98px) {
    .promo-alert-header.promo-design-2023.black-november .zone-message {
      font-size: 0.8em; } }
#axeptio_overlay_website {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 50000; }

.axeptio_widget {
  align-items: center; }

.section-permis-b,
.section-info-agence,
.section-info-region-dept-ville,
.section-info-header,
.section-info-landing-page,
.section-info-code-de-la-route,
.section-header-permis-cpf {
  background-color: #3366ff;
  color: white; }
  @media (max-width: 991.98px) {
    .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b), .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b),
    .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) {
      background-color: transparent;
      color: #423f3f; }
      .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:first-child,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:first-child {
        background-color: #fff;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 15px 30px 0 rgba(78, 78, 78, 0.16);
        font-weight: bold; }
      .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before, .section-permis-b:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-agence:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-region-dept-ville:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-header:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-landing-page:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-info-code-de-la-route:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-permis-b:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-agence:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-region-dept-ville:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-header:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-landing-page:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-info-code-de-la-route:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-permis-b:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-agence:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-region-dept-ville:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-header:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-landing-page:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-info-code-de-la-route:not(.section-permis-b) .container:before,
      .section-header-permis-cpf:not(.section-header-permis-cpf) .section-header-permis-cpf:not(.section-welcome) .section-header-permis-cpf:not(.section-permis-b) .container:before {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        content: "";
        background-color: #3366ff; } }
  @media (max-width: 991.98px) {
    .section-permis-b .card_header,
    .section-info-agence .card_header,
    .section-info-region-dept-ville .card_header,
    .section-info-header .card_header,
    .section-info-landing-page .card_header,
    .section-info-code-de-la-route .card_header,
    .section-header-permis-cpf .card_header {
      position: relative;
      display: flex;
      flex-direction: column;
      min-width: 0;
      word-wrap: break-word;
      background-color: #fff;
      background-clip: border-box;
      border: 1px solid rgba(0, 0, 0, 0.125);
      border-radius: 20px;
      color: black;
      padding: 20px; } }
  .section-permis-b h1,
  .section-info-agence h1,
  .section-info-region-dept-ville h1,
  .section-info-header h1,
  .section-info-landing-page h1,
  .section-info-code-de-la-route h1,
  .section-header-permis-cpf h1 {
    font-size: 30px;
    margin-bottom: 3rem; }
  .section-permis-b h2,
  .section-info-agence h2,
  .section-info-region-dept-ville h2,
  .section-info-header h2,
  .section-info-landing-page h2,
  .section-info-code-de-la-route h2,
  .section-header-permis-cpf h2 {
    font-size: 18px;
    margin-bottom: 3rem;
    font-weight: normal; }
  .section-permis-b .info-lieu,
  .section-permis-b .info-adresse,
  .section-permis-b .info-delai,
  .section-permis-b .info-agrement,
  .section-permis-b .info-contact,
  .section-info-agence .info-lieu,
  .section-info-agence .info-adresse,
  .section-info-agence .info-delai,
  .section-info-agence .info-agrement,
  .section-info-agence .info-contact,
  .section-info-region-dept-ville .info-lieu,
  .section-info-region-dept-ville .info-adresse,
  .section-info-region-dept-ville .info-delai,
  .section-info-region-dept-ville .info-agrement,
  .section-info-region-dept-ville .info-contact,
  .section-info-header .info-lieu,
  .section-info-header .info-adresse,
  .section-info-header .info-delai,
  .section-info-header .info-agrement,
  .section-info-header .info-contact,
  .section-info-landing-page .info-lieu,
  .section-info-landing-page .info-adresse,
  .section-info-landing-page .info-delai,
  .section-info-landing-page .info-agrement,
  .section-info-landing-page .info-contact,
  .section-info-code-de-la-route .info-lieu,
  .section-info-code-de-la-route .info-adresse,
  .section-info-code-de-la-route .info-delai,
  .section-info-code-de-la-route .info-agrement,
  .section-info-code-de-la-route .info-contact,
  .section-header-permis-cpf .info-lieu,
  .section-header-permis-cpf .info-adresse,
  .section-header-permis-cpf .info-delai,
  .section-header-permis-cpf .info-agrement,
  .section-header-permis-cpf .info-contact {
    font-size: 18px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center; }
    .section-permis-b .info-lieu img.icon,
    .section-permis-b .info-adresse img.icon,
    .section-permis-b .info-delai img.icon,
    .section-permis-b .info-agrement img.icon,
    .section-permis-b .info-contact img.icon,
    .section-info-agence .info-lieu img.icon,
    .section-info-agence .info-adresse img.icon,
    .section-info-agence .info-delai img.icon,
    .section-info-agence .info-agrement img.icon,
    .section-info-agence .info-contact img.icon,
    .section-info-region-dept-ville .info-lieu img.icon,
    .section-info-region-dept-ville .info-adresse img.icon,
    .section-info-region-dept-ville .info-delai img.icon,
    .section-info-region-dept-ville .info-agrement img.icon,
    .section-info-region-dept-ville .info-contact img.icon,
    .section-info-header .info-lieu img.icon,
    .section-info-header .info-adresse img.icon,
    .section-info-header .info-delai img.icon,
    .section-info-header .info-agrement img.icon,
    .section-info-header .info-contact img.icon,
    .section-info-landing-page .info-lieu img.icon,
    .section-info-landing-page .info-adresse img.icon,
    .section-info-landing-page .info-delai img.icon,
    .section-info-landing-page .info-agrement img.icon,
    .section-info-landing-page .info-contact img.icon,
    .section-info-code-de-la-route .info-lieu img.icon,
    .section-info-code-de-la-route .info-adresse img.icon,
    .section-info-code-de-la-route .info-delai img.icon,
    .section-info-code-de-la-route .info-agrement img.icon,
    .section-info-code-de-la-route .info-contact img.icon,
    .section-header-permis-cpf .info-lieu img.icon,
    .section-header-permis-cpf .info-adresse img.icon,
    .section-header-permis-cpf .info-delai img.icon,
    .section-header-permis-cpf .info-agrement img.icon,
    .section-header-permis-cpf .info-contact img.icon {
      margin-right: 1.5rem; }
    @media (max-width: 767.98px) {
      .section-permis-b .info-lieu,
      .section-permis-b .info-adresse,
      .section-permis-b .info-delai,
      .section-permis-b .info-agrement,
      .section-permis-b .info-contact,
      .section-info-agence .info-lieu,
      .section-info-agence .info-adresse,
      .section-info-agence .info-delai,
      .section-info-agence .info-agrement,
      .section-info-agence .info-contact,
      .section-info-region-dept-ville .info-lieu,
      .section-info-region-dept-ville .info-adresse,
      .section-info-region-dept-ville .info-delai,
      .section-info-region-dept-ville .info-agrement,
      .section-info-region-dept-ville .info-contact,
      .section-info-header .info-lieu,
      .section-info-header .info-adresse,
      .section-info-header .info-delai,
      .section-info-header .info-agrement,
      .section-info-header .info-contact,
      .section-info-landing-page .info-lieu,
      .section-info-landing-page .info-adresse,
      .section-info-landing-page .info-delai,
      .section-info-landing-page .info-agrement,
      .section-info-landing-page .info-contact,
      .section-info-code-de-la-route .info-lieu,
      .section-info-code-de-la-route .info-adresse,
      .section-info-code-de-la-route .info-delai,
      .section-info-code-de-la-route .info-agrement,
      .section-info-code-de-la-route .info-contact,
      .section-header-permis-cpf .info-lieu,
      .section-header-permis-cpf .info-adresse,
      .section-header-permis-cpf .info-delai,
      .section-header-permis-cpf .info-agrement,
      .section-header-permis-cpf .info-contact {
        font-size: 14px; }
        .section-permis-b .info-lieu .text-lieu,
        .section-permis-b .info-adresse .text-lieu,
        .section-permis-b .info-delai .text-lieu,
        .section-permis-b .info-agrement .text-lieu,
        .section-permis-b .info-contact .text-lieu,
        .section-info-agence .info-lieu .text-lieu,
        .section-info-agence .info-adresse .text-lieu,
        .section-info-agence .info-delai .text-lieu,
        .section-info-agence .info-agrement .text-lieu,
        .section-info-agence .info-contact .text-lieu,
        .section-info-region-dept-ville .info-lieu .text-lieu,
        .section-info-region-dept-ville .info-adresse .text-lieu,
        .section-info-region-dept-ville .info-delai .text-lieu,
        .section-info-region-dept-ville .info-agrement .text-lieu,
        .section-info-region-dept-ville .info-contact .text-lieu,
        .section-info-header .info-lieu .text-lieu,
        .section-info-header .info-adresse .text-lieu,
        .section-info-header .info-delai .text-lieu,
        .section-info-header .info-agrement .text-lieu,
        .section-info-header .info-contact .text-lieu,
        .section-info-landing-page .info-lieu .text-lieu,
        .section-info-landing-page .info-adresse .text-lieu,
        .section-info-landing-page .info-delai .text-lieu,
        .section-info-landing-page .info-agrement .text-lieu,
        .section-info-landing-page .info-contact .text-lieu,
        .section-info-code-de-la-route .info-lieu .text-lieu,
        .section-info-code-de-la-route .info-adresse .text-lieu,
        .section-info-code-de-la-route .info-delai .text-lieu,
        .section-info-code-de-la-route .info-agrement .text-lieu,
        .section-info-code-de-la-route .info-contact .text-lieu,
        .section-header-permis-cpf .info-lieu .text-lieu,
        .section-header-permis-cpf .info-adresse .text-lieu,
        .section-header-permis-cpf .info-delai .text-lieu,
        .section-header-permis-cpf .info-agrement .text-lieu,
        .section-header-permis-cpf .info-contact .text-lieu {
          max-width: 75%; } }
  .section-permis-b .info-agrement,
  .section-info-agence .info-agrement,
  .section-info-region-dept-ville .info-agrement,
  .section-info-header .info-agrement,
  .section-info-landing-page .info-agrement,
  .section-info-code-de-la-route .info-agrement,
  .section-header-permis-cpf .info-agrement {
    margin-bottom: 3rem; }
    .section-permis-b .info-agrement img.label-ekomi,
    .section-info-agence .info-agrement img.label-ekomi,
    .section-info-region-dept-ville .info-agrement img.label-ekomi,
    .section-info-header .info-agrement img.label-ekomi,
    .section-info-landing-page .info-agrement img.label-ekomi,
    .section-info-code-de-la-route .info-agrement img.label-ekomi,
    .section-header-permis-cpf .info-agrement img.label-ekomi {
      height: 30px;
      margin-left: 1rem;
      margin-right: 1rem; }
  .section-permis-b .info-contact .link,
  .section-info-agence .info-contact .link,
  .section-info-region-dept-ville .info-contact .link,
  .section-info-header .info-contact .link,
  .section-info-landing-page .info-contact .link,
  .section-info-code-de-la-route .info-contact .link,
  .section-header-permis-cpf .info-contact .link {
    text-decoration: underline;
    color: #fff;
    font-size: 16px;
    margin-left: 4rem; }
  .section-permis-b .info-contact .link:hover,
  .section-info-agence .info-contact .link:hover,
  .section-info-region-dept-ville .info-contact .link:hover,
  .section-info-header .info-contact .link:hover,
  .section-info-landing-page .info-contact .link:hover,
  .section-info-code-de-la-route .info-contact .link:hover,
  .section-header-permis-cpf .info-contact .link:hover {
    text-decoration: none; }
  @media (max-width: 991.98px) {
    .section-permis-b .info-contact,
    .section-info-agence .info-contact,
    .section-info-region-dept-ville .info-contact,
    .section-info-header .info-contact,
    .section-info-landing-page .info-contact,
    .section-info-code-de-la-route .info-contact,
    .section-header-permis-cpf .info-contact {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      .section-permis-b .info-contact .link,
      .section-info-agence .info-contact .link,
      .section-info-region-dept-ville .info-contact .link,
      .section-info-header .info-contact .link,
      .section-info-landing-page .info-contact .link,
      .section-info-code-de-la-route .info-contact .link,
      .section-header-permis-cpf .info-contact .link {
        margin-left: 0px;
        margin-top: 1.5rem;
        color: #423f3f;
        font-weight: bold; } }
  .section-permis-b .promo-pack,
  .section-info-agence .promo-pack,
  .section-info-region-dept-ville .promo-pack,
  .section-info-header .promo-pack,
  .section-info-landing-page .promo-pack,
  .section-info-code-de-la-route .promo-pack,
  .section-header-permis-cpf .promo-pack {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 1rem 2rem;
    color: #3366ff;
    margin-bottom: 2rem;
    cursor: pointer; }
    .section-permis-b .promo-pack .nom,
    .section-info-agence .promo-pack .nom,
    .section-info-region-dept-ville .promo-pack .nom,
    .section-info-header .promo-pack .nom,
    .section-info-landing-page .promo-pack .nom,
    .section-info-code-de-la-route .promo-pack .nom,
    .section-header-permis-cpf .promo-pack .nom {
      font-size: 23px;
      font-weight: bold; }
    .section-permis-b .promo-pack .a-partir,
    .section-info-agence .promo-pack .a-partir,
    .section-info-region-dept-ville .promo-pack .a-partir,
    .section-info-header .promo-pack .a-partir,
    .section-info-landing-page .promo-pack .a-partir,
    .section-info-code-de-la-route .promo-pack .a-partir,
    .section-header-permis-cpf .promo-pack .a-partir {
      font-size: 20px;
      color: #423f3f; }
      .section-permis-b .promo-pack .a-partir .price,
      .section-info-agence .promo-pack .a-partir .price,
      .section-info-region-dept-ville .promo-pack .a-partir .price,
      .section-info-header .promo-pack .a-partir .price,
      .section-info-landing-page .promo-pack .a-partir .price,
      .section-info-code-de-la-route .promo-pack .a-partir .price,
      .section-header-permis-cpf .promo-pack .a-partir .price {
        color: #3366ff;
        font-size: 20px;
        font-weight: bold; }
    .section-permis-b .promo-pack.mobile .nom,
    .section-info-agence .promo-pack.mobile .nom,
    .section-info-region-dept-ville .promo-pack.mobile .nom,
    .section-info-header .promo-pack.mobile .nom,
    .section-info-landing-page .promo-pack.mobile .nom,
    .section-info-code-de-la-route .promo-pack.mobile .nom,
    .section-header-permis-cpf .promo-pack.mobile .nom {
      font-size: 16px; }
    .section-permis-b .promo-pack.mobile .a-partir,
    .section-info-agence .promo-pack.mobile .a-partir,
    .section-info-region-dept-ville .promo-pack.mobile .a-partir,
    .section-info-header .promo-pack.mobile .a-partir,
    .section-info-landing-page .promo-pack.mobile .a-partir,
    .section-info-code-de-la-route .promo-pack.mobile .a-partir,
    .section-header-permis-cpf .promo-pack.mobile .a-partir {
      font-size: 14px; }
      .section-permis-b .promo-pack.mobile .a-partir .price,
      .section-info-agence .promo-pack.mobile .a-partir .price,
      .section-info-region-dept-ville .promo-pack.mobile .a-partir .price,
      .section-info-header .promo-pack.mobile .a-partir .price,
      .section-info-landing-page .promo-pack.mobile .a-partir .price,
      .section-info-code-de-la-route .promo-pack.mobile .a-partir .price,
      .section-header-permis-cpf .promo-pack.mobile .a-partir .price {
        font-size: 14px; }
    .section-permis-b .promo-pack.mobile.welcome-stych .a-partir,
    .section-info-agence .promo-pack.mobile.welcome-stych .a-partir,
    .section-info-region-dept-ville .promo-pack.mobile.welcome-stych .a-partir,
    .section-info-header .promo-pack.mobile.welcome-stych .a-partir,
    .section-info-landing-page .promo-pack.mobile.welcome-stych .a-partir,
    .section-info-code-de-la-route .promo-pack.mobile.welcome-stych .a-partir,
    .section-header-permis-cpf .promo-pack.mobile.welcome-stych .a-partir {
      font-size: 16px; }
    .section-permis-b .promo-pack.mobile.welcome-stych .price,
    .section-info-agence .promo-pack.mobile.welcome-stych .price,
    .section-info-region-dept-ville .promo-pack.mobile.welcome-stych .price,
    .section-info-header .promo-pack.mobile.welcome-stych .price,
    .section-info-landing-page .promo-pack.mobile.welcome-stych .price,
    .section-info-code-de-la-route .promo-pack.mobile.welcome-stych .price,
    .section-header-permis-cpf .promo-pack.mobile.welcome-stych .price {
      font-size: 16px;
      text-transform: uppercase; }
    .section-permis-b .promo-pack.welcome-stych,
    .section-info-agence .promo-pack.welcome-stych,
    .section-info-region-dept-ville .promo-pack.welcome-stych,
    .section-info-header .promo-pack.welcome-stych,
    .section-info-landing-page .promo-pack.welcome-stych,
    .section-info-code-de-la-route .promo-pack.welcome-stych,
    .section-header-permis-cpf .promo-pack.welcome-stych {
      font-weight: bold;
      font-size: 16px; }
      .section-permis-b .promo-pack.welcome-stych .arrow img,
      .section-info-agence .promo-pack.welcome-stych .arrow img,
      .section-info-region-dept-ville .promo-pack.welcome-stych .arrow img,
      .section-info-header .promo-pack.welcome-stych .arrow img,
      .section-info-landing-page .promo-pack.welcome-stych .arrow img,
      .section-info-code-de-la-route .promo-pack.welcome-stych .arrow img,
      .section-header-permis-cpf .promo-pack.welcome-stych .arrow img {
        width: 2rem;
        height: 2rem; }
    .section-permis-b .promo-pack .arrow,
    .section-info-agence .promo-pack .arrow,
    .section-info-region-dept-ville .promo-pack .arrow,
    .section-info-header .promo-pack .arrow,
    .section-info-landing-page .promo-pack .arrow,
    .section-info-code-de-la-route .promo-pack .arrow,
    .section-header-permis-cpf .promo-pack .arrow {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
    @media (max-width: 991.98px) {
      .section-permis-b .promo-pack,
      .section-info-agence .promo-pack,
      .section-info-region-dept-ville .promo-pack,
      .section-info-header .promo-pack,
      .section-info-landing-page .promo-pack,
      .section-info-code-de-la-route .promo-pack,
      .section-header-permis-cpf .promo-pack {
        border: 1px solid #3366ff;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); } }
  .section-permis-b .bloc-faq,
  .section-permis-b .bloc-horaire,
  .section-info-agence .bloc-faq,
  .section-info-agence .bloc-horaire,
  .section-info-region-dept-ville .bloc-faq,
  .section-info-region-dept-ville .bloc-horaire,
  .section-info-header .bloc-faq,
  .section-info-header .bloc-horaire,
  .section-info-landing-page .bloc-faq,
  .section-info-landing-page .bloc-horaire,
  .section-info-code-de-la-route .bloc-faq,
  .section-info-code-de-la-route .bloc-horaire,
  .section-header-permis-cpf .bloc-faq,
  .section-header-permis-cpf .bloc-horaire {
    font-size: 18px; }
    @media (max-width: 767.98px) {
      .section-permis-b .bloc-faq,
      .section-permis-b .bloc-horaire,
      .section-info-agence .bloc-faq,
      .section-info-agence .bloc-horaire,
      .section-info-region-dept-ville .bloc-faq,
      .section-info-region-dept-ville .bloc-horaire,
      .section-info-header .bloc-faq,
      .section-info-header .bloc-horaire,
      .section-info-landing-page .bloc-faq,
      .section-info-landing-page .bloc-horaire,
      .section-info-code-de-la-route .bloc-faq,
      .section-info-code-de-la-route .bloc-horaire,
      .section-header-permis-cpf .bloc-faq,
      .section-header-permis-cpf .bloc-horaire {
        font-size: 14px; } }
    .section-permis-b .bloc-faq .hide,
    .section-permis-b .bloc-horaire .hide,
    .section-info-agence .bloc-faq .hide,
    .section-info-agence .bloc-horaire .hide,
    .section-info-region-dept-ville .bloc-faq .hide,
    .section-info-region-dept-ville .bloc-horaire .hide,
    .section-info-header .bloc-faq .hide,
    .section-info-header .bloc-horaire .hide,
    .section-info-landing-page .bloc-faq .hide,
    .section-info-landing-page .bloc-horaire .hide,
    .section-info-code-de-la-route .bloc-faq .hide,
    .section-info-code-de-la-route .bloc-horaire .hide,
    .section-header-permis-cpf .bloc-faq .hide,
    .section-header-permis-cpf .bloc-horaire .hide {
      display: none; }
    .section-permis-b .bloc-faq .row,
    .section-permis-b .bloc-horaire .row,
    .section-info-agence .bloc-faq .row,
    .section-info-agence .bloc-horaire .row,
    .section-info-region-dept-ville .bloc-faq .row,
    .section-info-region-dept-ville .bloc-horaire .row,
    .section-info-header .bloc-faq .row,
    .section-info-header .bloc-horaire .row,
    .section-info-landing-page .bloc-faq .row,
    .section-info-landing-page .bloc-horaire .row,
    .section-info-code-de-la-route .bloc-faq .row,
    .section-info-code-de-la-route .bloc-horaire .row,
    .section-header-permis-cpf .bloc-faq .row,
    .section-header-permis-cpf .bloc-horaire .row {
      align-items: center;
      padding-bottom: 1.5rem; }
  .section-permis-b .link-cpf,
  .section-info-agence .link-cpf,
  .section-info-region-dept-ville .link-cpf,
  .section-info-header .link-cpf,
  .section-info-landing-page .link-cpf,
  .section-info-code-de-la-route .link-cpf,
  .section-header-permis-cpf .link-cpf {
    color: white;
    text-decoration: underline; }
    .section-permis-b .link-cpf:hover,
    .section-info-agence .link-cpf:hover,
    .section-info-region-dept-ville .link-cpf:hover,
    .section-info-header .link-cpf:hover,
    .section-info-landing-page .link-cpf:hover,
    .section-info-code-de-la-route .link-cpf:hover,
    .section-header-permis-cpf .link-cpf:hover {
      text-decoration: none; }

.section-header-permis-cpf,
.section-permis-b,
.section-welcome {
  position: relative;
  overflow: hidden; }
  .section-header-permis-cpf .svg-container,
  .section-permis-b .svg-container,
  .section-welcome .svg-container {
    position: absolute;
    top: -65px;
    right: -60px; }
    @media (max-width: 991.98px) {
      .section-header-permis-cpf .svg-container,
      .section-permis-b .svg-container,
      .section-welcome .svg-container {
        top: -50px;
        right: -100px; } }
    @media (max-width: 767.98px) {
      .section-header-permis-cpf .svg-container,
      .section-permis-b .svg-container,
      .section-welcome .svg-container {
        top: -40px;
        right: -120px; } }
    @media (max-width: 370px) {
      .section-header-permis-cpf .svg-container,
      .section-permis-b .svg-container,
      .section-welcome .svg-container {
        display: none; } }
    @media (max-width: 991.98px) {
      .section-header-permis-cpf .svg-container img,
      .section-permis-b .svg-container img,
      .section-welcome .svg-container img {
        width: 75%; } }
    @media (max-width: 767.98px) {
      .section-header-permis-cpf .svg-container img,
      .section-permis-b .svg-container img,
      .section-welcome .svg-container img {
        width: 60%; } }
.section-permis-b {
  padding-top: 5rem;
  padding-bottom: 3rem; }
  @media (min-width: 992px) {
    .section-permis-b {
      padding-top: 10rem; } }
  @media (max-width: 575.98px) {
    .section-permis-b .svg-container {
      display: none; } }
  .section-permis-b .link-head {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px; }

.section-info-pdc h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 2rem; }

.section-info-pdc .block-title h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 3rem; }

@media (max-width: 991.98px) {
  .section-info-pdc .block-title {
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    margin: 0 4rem; }
    .section-info-pdc .block-title h1 {
      color: #423f3f;
      padding: 2rem;
      font-size: 26px;
      margin-bottom: 0; }
    .section-info-pdc .block-title h2 {
      color: #423f3f;
      margin-bottom: 0;
      padding: 0 2rem; } }

@media (max-width: 767.98px) {
  .section-info-pdc .block-title {
    margin: 0; } }

.section-info-pdc .bloc-infos {
  border-radius: 10px; }
  @media (max-width: 991.98px) {
    .section-info-pdc .bloc-infos {
      border-radius: 0 0 10px 10px;
      box-shadow: none; } }
.section-info-pdc #staticMapWrapperRdv {
  border-radius: 10px; }

.section-info-pdc .bloc-double-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.section-info-pdc .info-adresse,
.section-info-pdc .info-supplementaires {
  font-size: 18px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center; }
  .section-info-pdc .info-adresse img.icon,
  .section-info-pdc .info-supplementaires img.icon {
    margin-right: 1.5rem; }
  @media (max-width: 767.98px) {
    .section-info-pdc .info-adresse,
    .section-info-pdc .info-supplementaires {
      font-size: 14px; } }
.section-info-pdc .link {
  text-decoration: underline;
  color: #423f3f;
  font-size: 16px; }

.section-info-pdc .link:hover {
  text-decoration: none; }

.section-faq,
.section-horaire {
  padding-top: 4rem; }
  .section-faq .bloc-faq,
  .section-horaire .bloc-faq {
    margin-bottom: 1rem; }
  .section-faq .bloc-faq,
  .section-faq .bloc-horaire,
  .section-horaire .bloc-faq,
  .section-horaire .bloc-horaire {
    background-color: #EAEFFF;
    font-weight: bold;
    border-radius: 10px; }
    .section-faq .bloc-faq .faq-header,
    .section-faq .bloc-horaire .faq-header,
    .section-horaire .bloc-faq .faq-header,
    .section-horaire .bloc-horaire .faq-header {
      cursor: pointer; }
    .section-faq .bloc-faq .row,
    .section-faq .bloc-horaire .row,
    .section-horaire .bloc-faq .row,
    .section-horaire .bloc-horaire .row {
      display: flex;
      padding-bottom: 1.5rem; }
      .section-faq .bloc-faq .row.current,
      .section-faq .bloc-horaire .row.current,
      .section-horaire .bloc-faq .row.current,
      .section-horaire .bloc-horaire .row.current {
        padding-top: 1.5rem; }
    .section-faq .bloc-faq .row.hide,
    .section-faq .bloc-horaire .row.hide,
    .section-horaire .bloc-faq .row.hide,
    .section-horaire .bloc-horaire .row.hide {
      display: none; }
    .section-faq .bloc-faq .arrow-down,
    .section-faq .bloc-horaire .arrow-down,
    .section-horaire .bloc-faq .arrow-down,
    .section-horaire .bloc-horaire .arrow-down {
      color: #3366ff; }

.section-faq {
  overflow: hidden;
  position: relative;
  padding-top: 1rem; }
  .section-faq .star {
    position: absolute;
    right: -100px;
    top: -45px; }
  @media (max-width: 991.98px) {
    .section-faq {
      margin-bottom: 3rem; } }
  .section-faq .bloc-faq:not(.opened) .truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }

.section-proche-de-vous,
.section-paragraphe-libre {
  padding-top: 5rem; }
  .section-proche-de-vous h2,
  .section-paragraphe-libre h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 2rem; }
  @media (max-width: 991.98px) {
    .section-proche-de-vous,
    .section-paragraphe-libre {
      padding-top: 3rem; } }
.section-rdv {
  padding-top: 4rem; }
  .section-rdv #desktopMap {
    border: 3px solid #3366ff;
    border-radius: 40px;
    max-height: 600px; }
  @media (max-width: 991.98px) {
    .section-rdv {
      padding-left: 0;
      padding-right: 0; }
      .section-rdv .points-rdv-liste {
        border-radius: 0;
        box-shadow: none; }
      .section-rdv #desktopMap {
        border: 0;
        border-radius: 0; }
      .section-rdv #desktopMap > div {
        border-radius: 0; }
      .section-rdv .detail-point {
        height: auto;
        min-height: 0px;
        overflow-y: inherit;
        overflow-x: inherit; }
      .section-rdv .detail-point:has(.meet-name) {
        height: auto;
        min-height: 200px;
        overflow-y: inherit;
        overflow-x: inherit;
        border-radius: 40px; }
      .section-rdv .detail-point .bloc-detail-content {
        border-radius: 0; } }
  .section-rdv .btn-localisations {
    white-space: initial; }
  .section-rdv .row-inscription a {
    font-size: 16px;
    min-width: 200px; }

.section-info-promo h2 {
  font-size: 24px;
  font-weight: bold; }

.section-info-promo .info-app-mobile {
  display: flex;
  flex-direction: column; }
  .section-info-promo .info-app-mobile:not(.right-section) {
    padding-left: 5rem; }
  .section-info-promo .info-app-mobile img {
    margin-bottom: 1rem; }
  .section-info-promo .info-app-mobile p {
    margin-top: 2rem;
    margin-bottom: 2rem; }
  .section-info-promo .info-app-mobile ul {
    padding: 0; }
  .section-info-promo .info-app-mobile li {
    list-style-type: none; }
  .section-info-promo .info-app-mobile a, .section-info-promo .info-app-mobile span {
    width: 200px; }
  .section-info-promo .info-app-mobile .link-app-lg span {
    width: 80%; }

.section-info-promo .row-service {
  margin-top: 10rem !important; }
  @media (max-width: 991.98px) {
    .section-info-promo .row-service {
      margin-top: 6rem !important;
      display: flex;
      flex-direction: column-reverse;
      align-items: center; }
      .section-info-promo .row-service h2 {
        margin-bottom: 3rem; }
      .section-info-promo .row-service img {
        margin-bottom: 3rem; } }
  @media (max-width: 767.98px) {
    .section-info-promo .row-service {
      margin-top: 4rem !important; } }
@media (max-width: 767.98px) {
  .section-info-promo .promo-image img {
    width: 100%; }
  .section-info-promo .promo-image video {
    width: 100%; } }

@media (max-width: 991.98px) {
  .section-info-promo .service-image {
    padding-right: 0;
    padding-left: 0; } }

.section-info-promo .service-image img {
  width: 100%; }

.section-info-promo .englobe_map {
  width: 100%;
  height: 100%;
  border-color: #f3f3f3; }
  .section-info-promo .englobe_map #desktopMap.map-home {
    max-height: 480px; }
    @media (min-width: 992px) {
      .section-info-promo .englobe_map #desktopMap.map-home {
        max-height: 550px; } }
    @media (min-width: 1200px) {
      .section-info-promo .englobe_map #desktopMap.map-home {
        max-height: 550px; } }
@media (min-width: 992px) {
  .section-info-promo .right-section {
    padding-left: 8%; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    .section-info-promo .right-section {
      display: flex;
      flex-direction: column;
      max-width: 85%; } }
@media (min-width: 992px) {
  .section-info-promo .left-section {
    padding-left: 11%; } }
  @media (min-width: 992px) and (min-width: 1200px) {
    .section-info-promo .left-section {
      padding-left: 12%;
      display: flex;
      flex-direction: column;
      max-width: 85%; } }
.section-engagement .carousel-indicators li,
.section-presse .carousel-indicators li,
.section-forfait .carousel-indicators li,
.section-avis .carousel-indicators li {
  background-color: #cecece !important; }
  .section-engagement .carousel-indicators li.active,
  .section-presse .carousel-indicators li.active,
  .section-forfait .carousel-indicators li.active,
  .section-avis .carousel-indicators li.active {
    background-color: #3366ff !important; }

.section-engagement .bloc-satisfaction,
.section-presse .bloc-satisfaction,
.section-forfait .bloc-satisfaction,
.section-avis .bloc-satisfaction {
  margin-left: 10px;
  margin-right: 10px; }
  @media (min-width: 992px) {
    .section-engagement .bloc-satisfaction,
    .section-presse .bloc-satisfaction,
    .section-forfait .bloc-satisfaction,
    .section-avis .bloc-satisfaction {
      flex-basis: 29.6%;
      margin-left: 22.5px;
      margin-right: 22.5px; } }
.section-engagement .carousel-container,
.section-presse .carousel-container,
.section-forfait .carousel-container,
.section-avis .carousel-container {
  padding: 0; }
  @media (max-width: 991.98px) {
    .section-engagement .carousel-container .stych-carousel-items,
    .section-presse .carousel-container .stych-carousel-items,
    .section-forfait .carousel-container .stych-carousel-items,
    .section-avis .carousel-container .stych-carousel-items {
      padding-left: 2rem;
      padding-right: 2rem; } }
  .section-engagement .carousel-container .stych-carousel-items .carousel-scroll,
  .section-presse .carousel-container .stych-carousel-items .carousel-scroll,
  .section-forfait .carousel-container .stych-carousel-items .carousel-scroll,
  .section-avis .carousel-container .stych-carousel-items .carousel-scroll {
    cursor: grab; }

@media screen and (max-width: 767.98px) and (min-width: 380px) {
  .section-app h3 {
    margin: 0 3rem; } }

.section-enseignants {
  display: flex;
  justify-content: center; }
  .section-enseignants .section-right {
    align-self: self-start; }
  @media (min-width: 576px) {
    .section-enseignants .service-image {
      display: flex;
      justify-content: center; }
      .section-enseignants .service-image img {
        width: 70%; } }
    @media (min-width: 576px) and (min-width: 768px) {
      .section-enseignants .service-image img {
        width: 80%; } }
  .section-enseignants .list-enseignant {
    margin-bottom: 2rem;
    margin-top: 2rem; }
    @media (min-width: 576px) {
      .section-enseignants .list-enseignant {
        max-width: 80%; } }
    .section-enseignants .list-enseignant .single-profil {
      text-align: center;
      line-height: 1.5rem; }
      .section-enseignants .list-enseignant .single-profil span {
        font-size: 14px; }
      .section-enseignants .list-enseignant .single-profil img {
        margin-bottom: 1rem; }
    .section-enseignants .list-enseignant .profil1 {
      max-width: 30%;
      margin-top: 10%; }
      @media (min-width: 768px) {
        .section-enseignants .list-enseignant .profil1 {
          max-width: 25%; } }
      @media (min-width: 576px) {
        .section-enseignants .list-enseignant .profil1 {
          margin-top: 9%; } }
      @media (min-width: 768px) {
        .section-enseignants .list-enseignant .profil1 {
          margin-top: 7.5%; } }
      @media (min-width: 992px) {
        .section-enseignants .list-enseignant .profil1 {
          margin-left: 1rem; } }
    .section-enseignants .list-enseignant .profil2 {
      align-self: flex-start;
      max-width: 40%;
      margin: 0.5rem 0.5rem 0 0.5rem; }
      @media (min-width: 768px) {
        .section-enseignants .list-enseignant .profil2 {
          max-width: 30%;
          margin: 1rem 1rem 0 1rem; } }
      @media (min-width: 992px) {
        .section-enseignants .list-enseignant .profil2 {
          margin: 1rem 1rem 0 0; } }
    .section-enseignants .list-enseignant .profil3 {
      max-width: 30%;
      margin-top: 10%; }
      @media (min-width: 768px) {
        .section-enseignants .list-enseignant .profil3 {
          max-width: 25%; } }
      @media (min-width: 576px) {
        .section-enseignants .list-enseignant .profil3 {
          margin-top: 9%; } }
      @media (min-width: 768px) {
        .section-enseignants .list-enseignant .profil3 {
          margin-top: 7.5%; } }
.section-avis h2 {
  font-size: 24px; }

.section-avis .img_stars {
  width: 80%; }
  @media (max-width: 991.98px) {
    .section-avis .img_stars {
      width: 60%; } }
.section-avis .col-experts {
  display: flex;
  justify-content: center;
  align-items: center; }

.section-avis .ville {
  margin-left: 0 !important; }

.section-avis .bulle-ekomi {
  border-radius: 10px 10px 0 10px;
  box-shadow: none; }

@media screen and (min-width: 400px) {
  .section-avis .stych-carousel-item, .section-avis .stych-carousel-item-avis {
    flex-basis: 300px; } }

.section-avis .link-avis {
  color: #3366ff; }

.section-avis .carousel-indicators {
  margin-bottom: -2.5rem; }

.section-liste-agence h2,
.section-liste-pdc h2 {
  font-size: 24px; }

.section-liste-agence .hide,
.section-liste-pdc .hide {
  display: none; }

.section-liste-agence .content-list,
.section-liste-pdc .content-list {
  background-color: #EAEFFF; }
  .section-liste-agence .content-list ul,
  .section-liste-pdc .content-list ul {
    line-height: 1.5;
    list-style-type: none;
    margin-bottom: 0; }
  .section-liste-agence .content-list a,
  .section-liste-pdc .content-list a {
    color: #423f3f;
    text-decoration: none;
    background-color: transparent;
    font-size: 1.6rem;
    line-height: 1.5; }
    .section-liste-agence .content-list a:hover,
    .section-liste-pdc .content-list a:hover {
      opacity: 0.8; }
  @media (min-width: 992px) {
    .section-liste-agence .content-list,
    .section-liste-pdc .content-list {
      border-radius: 10px; } }
.section-liste-agence .show-all-agence,
.section-liste-pdc .show-all-agence {
  cursor: pointer; }
  .section-liste-agence .show-all-agence i,
  .section-liste-pdc .show-all-agence i {
    color: #3366ff; }

.section-descriptif-seo {
  margin-top: 2rem; }
  .section-descriptif-seo h2, .section-descriptif-seo h3 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 24px; }
  .section-descriptif-seo h3 {
    margin-top: 3rem; }
  .section-descriptif-seo .open-en-savoir-plus {
    cursor: pointer; }

.section-forfait .stych-carousel-items {
  padding-bottom: 0; }
  @media (min-width: 768px) {
    .section-forfait .stych-carousel-items.stych-spin-carousel-items {
      justify-content: center;
      align-items: center;
      margin: auto; }
      .section-forfait .stych-carousel-items.stych-spin-carousel-items .stych-carousel-item, .section-forfait .stych-carousel-items.stych-spin-carousel-items .stych-carousel-item-avis {
        max-width: 400px; } }
.section-forfait .carousel-indicators {
  margin-bottom: -6rem; }

.section-forfait .stych-carousel-item, .section-forfait .stych-carousel-item-avis {
  border: 3px solid #3366ff;
  border-radius: 20px;
  color: #423f3f;
  padding: 2rem;
  position: relative;
  background-color: #fff; }
  .section-forfait .stych-carousel-item .carousel-type-boite, .section-forfait .stych-carousel-item-avis .carousel-type-boite {
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 10px 10px 0 0;
    background-color: #3366ff;
    width: 200px;
    font-size: 16px;
    position: absolute;
    top: -42px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center; }
    @media (max-width: 991.98px) {
      .section-forfait .stych-carousel-item .carousel-type-boite, .section-forfait .stych-carousel-item-avis .carousel-type-boite {
        top: -35px; } }
  .section-forfait .stych-carousel-item .favoris, .section-forfait .stych-carousel-item-avis .favoris {
    position: absolute;
    top: -13px;
    right: 2rem;
    background-color: #3366ff;
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    width: 80px;
    line-height: 12px; }
  @media screen and (min-width: 400px) {
    .section-forfait .stych-carousel-item, .section-forfait .stych-carousel-item-avis {
      flex-basis: 300px; } }
  .section-forfait .stych-carousel-item.show-type-boite, .section-forfait .stych-carousel-item-avis.show-type-boite {
    margin-top: 40px; }
  .section-forfait .stych-carousel-item.boite-automatique, .section-forfait .stych-carousel-item-avis.boite-automatique {
    border-color: #380099; }
    .section-forfait .stych-carousel-item.boite-automatique .carousel-type-boite, .section-forfait .stych-carousel-item-avis.boite-automatique .carousel-type-boite {
      background-color: #380099; }
    .section-forfait .stych-carousel-item.boite-automatique .bloc-nb-cours .nb-cours.active,
    .section-forfait .stych-carousel-item.boite-automatique .bloc-nb-cours .nb-cours:hover, .section-forfait .stych-carousel-item-avis.boite-automatique .bloc-nb-cours .nb-cours.active,
    .section-forfait .stych-carousel-item-avis.boite-automatique .bloc-nb-cours .nb-cours:hover {
      border-color: #380099;
      color: #380099; }
      .section-forfait .stych-carousel-item.boite-automatique .bloc-nb-cours .nb-cours.active .cours,
      .section-forfait .stych-carousel-item.boite-automatique .bloc-nb-cours .nb-cours:hover .cours, .section-forfait .stych-carousel-item-avis.boite-automatique .bloc-nb-cours .nb-cours.active .cours,
      .section-forfait .stych-carousel-item-avis.boite-automatique .bloc-nb-cours .nb-cours:hover .cours {
        color: #380099; }
    .section-forfait .stych-carousel-item.boite-automatique .bloc-prix, .section-forfait .stych-carousel-item-avis.boite-automatique .bloc-prix {
      background-color: #EBE5F5; }
      .section-forfait .stych-carousel-item.boite-automatique .bloc-prix .prix-effectif, .section-forfait .stych-carousel-item-avis.boite-automatique .bloc-prix .prix-effectif {
        color: #380099; }

.section-forfait h2 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 24px; }

.section-forfait .title-forfait {
  font-size: 26px;
  font-weight: bold; }

.section-forfait .description-forfait,
.section-forfait .sous-description-forfait {
  font-size: 18px; }

.section-forfait .sous-description-forfait {
  height: 40px; }
  @media (max-width: 1199.98px) {
    .section-forfait .sous-description-forfait {
      height: 60px; } }
.section-forfait .bloc-nb-cours {
  display: flex;
  justify-content: center;
  align-items: flex-end; }
  .section-forfait .bloc-nb-cours .nb-cours {
    border: 3px solid #fff;
    font-size: 33px;
    padding: 1rem;
    cursor: pointer;
    min-width: 60px;
    border-radius: 5px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: all 0.2s ease-in-out; }
    .section-forfait .bloc-nb-cours .nb-cours .cours {
      opacity: 0;
      line-height: 0px;
      transition: all 0.2s ease-in-out;
      font-size: 0px; }
    .section-forfait .bloc-nb-cours .nb-cours.active, .section-forfait .bloc-nb-cours .nb-cours:hover {
      border: 3px solid #3366ff;
      color: #3366ff; }
      .section-forfait .bloc-nb-cours .nb-cours.active .cours, .section-forfait .bloc-nb-cours .nb-cours:hover .cours {
        display: block;
        opacity: 1;
        font-size: 14px;
        line-height: 14px;
        color: #3366ff;
        padding-top: 5px; }
    @media (max-width: 1199.98px) {
      .section-forfait .bloc-nb-cours .nb-cours {
        font-size: 26px;
        padding: 0.6rem;
        min-width: 50px; }
        .section-forfait .bloc-nb-cours .nb-cours.active .cours, .section-forfait .bloc-nb-cours .nb-cours:hover .cours {
          font-size: 12px;
          padding-top: 0px; } }
.section-forfait .bloc-prix {
  background-color: #EAEFFF;
  border-radius: 10px;
  margin: 0;
  font-size: 12px;
  padding-top: 1.5rem;
  padding-bottom: 1rem; }
  .section-forfait .bloc-prix .prix-effectif {
    color: #3366ff;
    font-size: 50px;
    line-height: 50px;
    font-weight: bold; }
    @media (max-width: 1199.98px) {
      .section-forfait .bloc-prix .prix-effectif {
        font-size: 40px;
        line-height: 40px; } }
  .section-forfait .bloc-prix .info-prix-public {
    display: flex;
    flex-direction: column;
    justify-content: center; }

.section-forfait .button-inscription a,
.section-forfait .button-inscription span {
  font-size: 15px;
  width: 200px;
  margin: auto; }

.section-forfait .link {
  text-decoration: underline;
  color: #423f3f;
  font-size: 16px; }

.section-forfait .link:hover {
  text-decoration: none; }

.section-forfait .tous-les-tarifs .link {
  font-size: 20px;
  font-weight: bold; }

.section-forfait .modal .modal-body a, .section-forfait .modal .modal-body span.linktoggle {
  font-size: 15px;
  width: 200px;
  margin: auto; }

.section-info-principale {
  background-color: #EAEFFF;
  font-size: 18px;
  line-height: 2.5rem; }
  @media (min-width: 992px) {
    .section-info-principale {
      border-radius: 10px;
      width: 100%; } }
  @media (min-width: 992px) {
    .section-info-principale .baniere-agrement {
      padding-left: 4rem !important; } }
  @media (max-width: 767.98px) {
    .section-info-principale .baniere-agrement {
      padding-bottom: 3rem !important; } }
  .section-info-principale .baniere-agrement img {
    height: 30px; }
    @media (min-width: 992px) {
      .section-info-principale .baniere-agrement img {
        height: 43px; } }
  .section-info-principale .baniere-agrement .info-agrement,
  .section-info-principale .baniere-agrement .info-ekomi {
    display: flex;
    flex-direction: row;
    align-items: center; }
  @media (min-width: 992px) {
    .section-info-principale .baniere-agrement .info-ekomi {
      padding-left: 2rem !important; }
    .section-info-principale .baniere-agrement .info-agrement {
      padding-right: 4rem !important; } }
.renseignement #text-renseignement h2 {
  font-size: 3.2rem;
  font-weight: bold; }

.renseignement #text-renseignement h1 {
  font-size: 4rem;
  font-weight: bold; }

.spin #text-renseignement h1, .spin #text-renseignement h2, .spin #text-renseignement h3 {
  padding-top: 10px;
  padding-bottom: 10px; }

.section-info-etude .min {
  font-size: 0.8em; }

@media (min-width: 992px) {
  .section-info-etude {
    width: 80%; } }

.section-info-asterisque {
  font-size: 16px; }
  @media (min-width: 992px) {
    .section-info-asterisque {
      width: 80%; } }
.section-promo-price .link {
  text-decoration: underline;
  color: #423f3f;
  font-size: 20px;
  font-weight: bold; }
  .section-promo-price .link:hover {
    text-decoration: none; }

.section-promo-price .promo-pack {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  color: #3366ff;
  margin-bottom: 2rem;
  cursor: pointer;
  border: 3px solid #3366ff; }
  .section-promo-price .promo-pack .nom {
    font-size: 23px;
    font-weight: bold; }
  .section-promo-price .promo-pack .a-partir {
    font-size: 20px;
    color: #423f3f; }
    .section-promo-price .promo-pack .a-partir .price {
      color: #3366ff;
      font-size: 20px;
      font-weight: bold; }
  .section-promo-price .promo-pack .favoris {
    position: absolute;
    top: -13px;
    right: 3rem;
    background-color: #3366ff;
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    width: 80px;
    line-height: 12px; }
  @media (max-width: 1199.98px) {
    .section-promo-price .promo-pack .nom {
      font-size: 17px; }
    .section-promo-price .promo-pack .a-partir {
      font-size: 16px; }
      .section-promo-price .promo-pack .a-partir .price {
        font-size: 16px; } }
  .section-promo-price .promo-pack .arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end; }

.section-info-landing-page .icon {
  width: 25px; }

.section-info-landing-page .info-promo {
  font-size: 18px;
  margin-bottom: 2rem;
  display: flex; }
  .section-info-landing-page .info-promo .libelle {
    padding-top: 3px; }

.section-info-landing-page .price {
  font-size: 24px;
  color: #3366ff; }
  @media (min-width: 992px) {
    .section-info-landing-page .price {
      color: #edff00; } }
.section-agrement .section-info-principale {
  font-size: 16px;
  border-radius: 1rem; }
  @media (min-width: 992px) {
    .section-agrement .section-info-principale {
      font-size: 18px; } }
.section-engagement .stych-carousel-items .stych-carousel-item, .section-engagement .stych-carousel-items .stych-carousel-item-avis {
  max-width: 290px; }
  @media (max-width: 767.98px) {
    .section-engagement .stych-carousel-items .stych-carousel-item, .section-engagement .stych-carousel-items .stych-carousel-item-avis {
      flex-basis: 220px; } }
  @media (min-width: 992px) {
    .section-engagement .stych-carousel-items .stych-carousel-item, .section-engagement .stych-carousel-items .stych-carousel-item-avis {
      flex-basis: 278px;
      margin-left: 10px;
      margin-right: 10px; } }
  @media (min-width: 1200px) {
    .section-engagement .stych-carousel-items .stych-carousel-item, .section-engagement .stych-carousel-items .stych-carousel-item-avis {
      flex-basis: 290px; } }
  @media (max-width: 767.98px) {
    .section-engagement .stych-carousel-items .stych-carousel-item p, .section-engagement .stych-carousel-items .stych-carousel-item-avis p {
      font-size: 12px; } }
  .section-engagement .stych-carousel-items .stych-carousel-item .card, .section-engagement .stych-carousel-items .stych-carousel-item-avis .card {
    border-radius: 12px; }
    .section-engagement .stych-carousel-items .stych-carousel-item .card .card-body .lh-2, .section-engagement .stych-carousel-items .stych-carousel-item-avis .card .card-body .lh-2 {
      line-height: 27px; }
    @media (max-width: 767.98px) {
      .section-engagement .stych-carousel-items .stych-carousel-item .card, .section-engagement .stych-carousel-items .stych-carousel-item-avis .card {
        padding-top: 0; }
        .section-engagement .stych-carousel-items .stych-carousel-item .card .card-header, .section-engagement .stych-carousel-items .stych-carousel-item-avis .card .card-header {
          padding: 0; } }
    @media (min-width: 576px) {
      .section-engagement .stych-carousel-items .stych-carousel-item .card, .section-engagement .stych-carousel-items .stych-carousel-item-avis .card {
        padding: 20px; } }
.section-code-explique {
  background-color: #EAEFFF;
  padding-bottom: 2rem; }
  .section-code-explique .title-code-explique {
    font-family: 'PlaydatesHandwriting';
    color: #3366ff;
    font-size: 40px; }
  .section-code-explique .points-argument {
    text-align: left; }
    .section-code-explique .points-argument ul li {
      list-style-type: none;
      display: flex;
      margin-top: 1rem;
      font-weight: bold; }
      .section-code-explique .points-argument ul li .icon {
        margin-right: 10px; }
  .section-code-explique .informations-pre-texte {
    margin-top: 2rem; }
  @media (max-width: 1199.98px) {
    .section-code-explique .row-informations {
      display: flex;
      flex-direction: column-reverse; }
      .section-code-explique .row-informations .informations-texte {
        margin-top: 2rem;
        margin-bottom: 1rem; }
    .section-code-explique .img-fluid {
      margin: auto; }
    .section-code-explique #iframe-video {
      max-height: 438px !important; }
    .section-code-explique .englobe-all-video {
      max-width: 580px;
      margin: auto; } }
@media (max-width: 991.98px) {
  .section-tarifs .stych-carousel-item, .section-tarifs .stych-carousel-item-avis {
    max-width: 400px;
    margin: auto;
    margin-top: 40px; }
  .section-tarifs .carousel-indicators {
    display: none; } }

.section-tarifs .description-forfait, .section-tarifs .sous-description-forfait {
  font-weight: bold; }

.section-info-tarifs h1 {
  font-size: 40px;
  font-weight: bold; }
  @media (max-width: 991.98px) {
    .section-info-tarifs h1 {
      font-size: 30px; } }
  .section-info-tarifs h1.title-stych {
    font-family: 'PlaydatesHandwriting';
    font-size: 70px;
    color: #3366ff;
    font-weight: normal; }
    @media (max-width: 991.98px) {
      .section-info-tarifs h1.title-stych {
        font-size: 50px; } }
.section-info-tarifs ul {
  margin-left: 0;
  padding-left: 0; }
  .section-info-tarifs ul li {
    list-style-type: none; }
    .section-info-tarifs ul li.minus {
      font-size: 0.8em; }

.section-info-tarifs .btn-group button {
  width: 120px;
  border: 2px solid #3366ff; }
  .section-info-tarifs .btn-group button:first-child {
    border-radius: 40px 0 0 40px; }
  .section-info-tarifs .btn-group button:last-child {
    border-radius: 0 40px 40px 0; }
    .section-info-tarifs .btn-group button:last-child.btn-primary {
      background-color: #380099;
      border-color: #380099; }

.section-info-code-de-la-route {
  position: relative;
  overflow: hidden; }
  @media (max-width: 991.98px) {
    .section-info-code-de-la-route {
      background-image: none;
      background-color: #3366ff;
      color: #fff; }
      .section-info-code-de-la-route .container:first-child {
        background-color: #3366ff;
        box-shadow: none; } }
  .section-info-code-de-la-route .engloble-tel-stych {
    position: relative;
    text-align: left;
    width: 278px; }
    @media (max-width: 991.98px) {
      .section-info-code-de-la-route .engloble-tel-stych {
        margin: auto; } }
    .section-info-code-de-la-route .engloble-tel-stych .img-tel {
      position: relative;
      height: 250px;
      z-index: 2; }
    .section-info-code-de-la-route .engloble-tel-stych .img-stych {
      position: absolute;
      z-index: 1;
      height: 190px;
      left: 107px;
      top: 20px; }
    .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite {
      position: absolute;
      top: 30px;
      left: 154px;
      font-weight: normal; }
      .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite .englobe-info-tel-stych {
        z-index: 3;
        position: relative; }
        .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite .englobe-info-tel-stych .number {
          position: absolute;
          left: 18px;
          font-size: 60px;
          top: 50px; }
          @media (max-width: 991.98px) {
            .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite .englobe-info-tel-stych .number {
              top: 15px; } }
        .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite .englobe-info-tel-stych .pourcent {
          position: absolute;
          left: 72px;
          font-size: 30px;
          top: 40px; }
          @media (max-width: 991.98px) {
            .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite .englobe-info-tel-stych .pourcent {
              top: 30px;
              left: 72px; } }
        .section-info-code-de-la-route .engloble-tel-stych .bloc_reussite .englobe-info-tel-stych .reussite {
          position: absolute;
          top: 100px;
          left: 12px;
          font-size: 16px;
          top: 88px; }
  .section-info-code-de-la-route .promo-pack {
    padding: 2rem; }
    .section-info-code-de-la-route .promo-pack .nom {
      font-size: 20px; }
    @media (max-width: 991.98px) {
      .section-info-code-de-la-route .promo-pack {
        max-width: 500px;
        margin: auto;
        margin-bottom: 2rem; }
        .section-info-code-de-la-route .promo-pack .nom {
          font-size: 16px; } }
  .section-info-code-de-la-route .btn-app-store {
    display: flex;
    padding-top: 10px; }
    .section-info-code-de-la-route .btn-app-store a img {
      height: 50px; }
    .section-info-code-de-la-route .btn-app-store a:first-child {
      margin-right: 10px; }
    @media (max-width: 991.98px) {
      .section-info-code-de-la-route .btn-app-store {
        justify-content: space-evenly; } }
  .section-info-code-de-la-route h1 {
    font-family: 'PlaydatesHandwriting';
    font-weight: initial; }
    @media (min-width: 768px) {
      .section-info-code-de-la-route h1 {
        font-size: 5rem; } }
.section-tarif-forfait .background-blue,
.section-tarif-carte .background-blue {
  background-color: #EAEFFF; }

.section-tarif-forfait .background-indigo,
.section-tarif-carte .background-indigo {
  background-color: #EBE5F5; }

.section-tarif-forfait .info h2,
.section-tarif-carte .info h2 {
  font-size: 24px;
  font-weight: bold; }

.section-tarif-forfait .info ul,
.section-tarif-carte .info ul {
  padding-left: 0; }
  .section-tarif-forfait .info ul li,
  .section-tarif-carte .info ul li {
    list-style-type: none;
    padding-bottom: 1rem; }

.section-tarif-forfait .info .conseils,
.section-tarif-carte .info .conseils {
  text-decoration: underline;
  font-weight: bold; }
  .section-tarif-forfait .info .conseils a,
  .section-tarif-carte .info .conseils a {
    color: inherit; }

.section-tarif-forfait .section-forfait,
.section-tarif-carte .section-forfait {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.section-tarif-forfait .bloc_article_carte,
.section-tarif-carte .bloc_article_carte {
  background-color: #fff; }
  .section-tarif-forfait .bloc_article_carte.background-blue,
  .section-tarif-carte .bloc_article_carte.background-blue {
    background-color: #EAEFFF; }
  .section-tarif-forfait .bloc_article_carte .info-price,
  .section-tarif-carte .bloc_article_carte .info-price {
    color: #3366ff; }

.section-comment-ca-marche {
  background-color: rgba(51, 102, 255, 0.1); }
  @media (max-width: 991.98px) {
    .section-comment-ca-marche {
      background-color: white; } }
  @media (max-width: 991.98px) {
    .section-comment-ca-marche .container {
      background-color: rgba(51, 102, 255, 0.1);
      border-radius: 20px; } }
.link {
  text-decoration: underline;
  color: black;
  font-weight: bold;
  text-decoration: none; }

.link:hover {
  color: black; }

.section-header-permis-cpf .a-partir {
  display: block; }
  @media (max-width: 991.98px) {
    .section-header-permis-cpf .a-partir {
      display: none; } }
@media (max-width: 991.98px) {
  .section-header-permis-cpf .nom {
    font-size: 16px !important; } }

.collapse-plus-button {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px; }
  .collapse-plus-button:before, .collapse-plus-button:after {
    content: "";
    position: absolute;
    background-color: #3366ff;
    transition: transform 0.25s ease-out; }
  .collapse-plus-button:before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    margin-left: -2px; }
  .collapse-plus-button:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    margin-top: -2px; }
  .collapse-plus-button.opened:before {
    transform: rotate(90deg); }
  .collapse-plus-button.opened:after {
    transform: rotate(180deg); }

.accordion-collapse.collapse, .accordion-collapse.collapsing {
  margin-left: 30px; }

.accordion-title {
  color: black; }

.accordion-title:before {
  float: left !important;
  font-size: 40px; }

.accordion-title {
  display: flex;
  align-items: center; }
  .accordion-title:hover {
    color: black; }

.bloc-title-methode h2 {
  font-family: 'PlaydatesHandwriting';
  font-size: 30px;
  line-height: 0.8;
  font-weight: normal;
  color: #3366ff;
  margin-bottom: 0; }

.star-right-container {
  position: absolute;
  right: -40px;
  top: -10px; }
  .star-right-container .yellow-star-right {
    width: 236.3px;
    height: 234.1px; }

#permis-accelere #header, #permis-pas-cher #header, #permisBCPF #header, #conduite-accompagnee #header {
  background-color: #3366ff;
  color: white; }
  #permis-accelere #header h1, #permis-pas-cher #header h1, #permisBCPF #header h1, #conduite-accompagnee #header h1 {
    font-family: 'PlaydatesHandwriting';
    font-size: 80px; }
    @media screen and (max-width: 770px) {
      #permis-accelere #header h1, #permis-pas-cher #header h1, #permisBCPF #header h1, #conduite-accompagnee #header h1 {
        font-size: 40px;
        text-align: center; } }
  #permis-accelere #header .aide-conseiller, #permis-pas-cher #header .aide-conseiller, #permisBCPF #header .aide-conseiller, #conduite-accompagnee #header .aide-conseiller {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px; }
  #permis-accelere #header .star-forfait, #permis-pas-cher #header .star-forfait, #permisBCPF #header .star-forfait, #conduite-accompagnee #header .star-forfait {
    right: -50px;
    top: -40px;
    width: 235px;
    height: 235px; }
  #permis-accelere #header .section-forfait, #permis-pas-cher #header .section-forfait, #permisBCPF #header .section-forfait, #conduite-accompagnee #header .section-forfait {
    padding-top: unset !important;
    padding-bottom: unset !important; }
    #permis-accelere #header .section-forfait .forfait-title, #permis-accelere #header .section-forfait .tous-les-tarifs, #permis-pas-cher #header .section-forfait .forfait-title, #permis-pas-cher #header .section-forfait .tous-les-tarifs, #permisBCPF #header .section-forfait .forfait-title, #permisBCPF #header .section-forfait .tous-les-tarifs, #conduite-accompagnee #header .section-forfait .forfait-title, #conduite-accompagnee #header .section-forfait .tous-les-tarifs {
      display: none; }
    #permis-accelere #header .section-forfait .title-forfait, #permis-pas-cher #header .section-forfait .title-forfait, #permisBCPF #header .section-forfait .title-forfait, #conduite-accompagnee #header .section-forfait .title-forfait {
      font-size: 18px; }
    #permis-accelere #header .section-forfait .stych-carousel-item, #permis-accelere #header .section-forfait .stych-carousel-item-avis, #permis-pas-cher #header .section-forfait .stych-carousel-item, #permis-pas-cher #header .section-forfait .stych-carousel-item-avis, #permisBCPF #header .section-forfait .stych-carousel-item, #permisBCPF #header .section-forfait .stych-carousel-item-avis, #conduite-accompagnee #header .section-forfait .stych-carousel-item, #conduite-accompagnee #header .section-forfait .stych-carousel-item-avis {
      background-color: white;
      color: black;
      box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
      border: solid 2px #3366ff;
      z-index: 1; }
    #permis-accelere #header .section-forfait .modal, #permis-pas-cher #header .section-forfait .modal, #permisBCPF #header .section-forfait .modal, #conduite-accompagnee #header .section-forfait .modal {
      color: black; }
    @media (max-width: 991.98px) {
      #permis-accelere #header .section-forfait .carousel-container .stych-carousel-items, #permis-pas-cher #header .section-forfait .carousel-container .stych-carousel-items, #permisBCPF #header .section-forfait .carousel-container .stych-carousel-items, #conduite-accompagnee #header .section-forfait .carousel-container .stych-carousel-items {
        padding-left: 5rem;
        padding-right: 5rem; } }
#permis-accelere #les-plus, #permis-pas-cher #les-plus, #permisBCPF #les-plus, #conduite-accompagnee #les-plus {
  background-color: white;
  color: black; }
  #permis-accelere #les-plus h2, #permis-pas-cher #les-plus h2, #permisBCPF #les-plus h2, #conduite-accompagnee #les-plus h2 {
    text-align: center; }
  #permis-accelere #les-plus #content, #permis-pas-cher #les-plus #content, #permisBCPF #les-plus #content, #conduite-accompagnee #les-plus #content {
    background-color: rgba(51, 102, 255, 0.1); }
  #permis-accelere #les-plus #link-classique-accompagnee, #permis-pas-cher #les-plus #link-classique-accompagnee, #permisBCPF #les-plus #link-classique-accompagnee, #conduite-accompagnee #les-plus #link-classique-accompagnee {
    text-align: center;
    color: black;
    text-decoration: underline;
    text-decoration-color: black;
    text-underline-offset: 4px; }
  @media screen and (max-width: 770px) {
    #permis-accelere #les-plus #content, #permis-pas-cher #les-plus #content, #permisBCPF #les-plus #content, #conduite-accompagnee #les-plus #content {
      border-radius: 10px;
      margin-left: 15px;
      margin-right: 15px; } }
#permis-accelere #financement, #permis-pas-cher #financement, #permisBCPF #financement, #conduite-accompagnee #financement {
  text-align: center; }
  @media screen and (max-width: 770px) {
    #permis-accelere #financement, #permis-pas-cher #financement, #permisBCPF #financement, #conduite-accompagnee #financement {
      text-align: center;
      padding: 3rem; } }
#permis-accelere .FAQ .collapse-plus-button, #permis-pas-cher .FAQ .collapse-plus-button, #permisBCPF .FAQ .collapse-plus-button, #conduite-accompagnee .FAQ .collapse-plus-button {
  position: relative;
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 15px; }
  #permis-accelere .FAQ .collapse-plus-button:before, #permis-accelere .FAQ .collapse-plus-button:after, #permis-pas-cher .FAQ .collapse-plus-button:before, #permis-pas-cher .FAQ .collapse-plus-button:after, #permisBCPF .FAQ .collapse-plus-button:before, #permisBCPF .FAQ .collapse-plus-button:after, #conduite-accompagnee .FAQ .collapse-plus-button:before, #conduite-accompagnee .FAQ .collapse-plus-button:after {
    content: "";
    position: absolute;
    background-color: #3366ff;
    transition: transform 0.25s ease-out; }
  #permis-accelere .FAQ .collapse-plus-button:before, #permis-pas-cher .FAQ .collapse-plus-button:before, #permisBCPF .FAQ .collapse-plus-button:before, #conduite-accompagnee .FAQ .collapse-plus-button:before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    margin-left: -2px; }
  #permis-accelere .FAQ .collapse-plus-button:after, #permis-pas-cher .FAQ .collapse-plus-button:after, #permisBCPF .FAQ .collapse-plus-button:after, #conduite-accompagnee .FAQ .collapse-plus-button:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    margin-top: -2px; }
  #permis-accelere .FAQ .collapse-plus-button.opened:before, #permis-pas-cher .FAQ .collapse-plus-button.opened:before, #permisBCPF .FAQ .collapse-plus-button.opened:before, #conduite-accompagnee .FAQ .collapse-plus-button.opened:before {
    transform: rotate(90deg); }
  #permis-accelere .FAQ .collapse-plus-button.opened:after, #permis-pas-cher .FAQ .collapse-plus-button.opened:after, #permisBCPF .FAQ .collapse-plus-button.opened:after, #conduite-accompagnee .FAQ .collapse-plus-button.opened:after {
    transform: rotate(180deg); }

#permis-accelere .FAQ .accordion-title, #permis-pas-cher .FAQ .accordion-title, #permisBCPF .FAQ .accordion-title, #conduite-accompagnee .FAQ .accordion-title {
  color: black; }

#permis-accelere .FAQ .accordion-title:before, #permis-pas-cher .FAQ .accordion-title:before, #permisBCPF .FAQ .accordion-title:before, #conduite-accompagnee .FAQ .accordion-title:before {
  float: left !important;
  font-size: 40px; }

#permis-accelere .FAQ .accordion-title, #permis-pas-cher .FAQ .accordion-title, #permisBCPF .FAQ .accordion-title, #conduite-accompagnee .FAQ .accordion-title {
  display: flex;
  align-items: center; }

#permis-accelere #localisation, #permis-pas-cher #localisation, #permisBCPF #localisation, #conduite-accompagnee #localisation {
  position: relative;
  overflow: hidden; }
  #permis-accelere #localisation .star, #permis-pas-cher #localisation .star, #permisBCPF #localisation .star, #conduite-accompagnee #localisation .star {
    right: -100px;
    top: -45px;
    width: 236.3px;
    height: 234.1px; }

@media screen and (max-width: 420px) {
  .text-xs-center {
    text-align: center; } }

.cta button, .cta a {
  min-width: 250px; }

#permis-pas-cher .bulle-forfait .title-desc-container {
  height: 85px; }

#conduite-accompagnee .bulle-forfait .title-container {
  height: 50px; }

@media (max-width: 991.98px) {
  #permis-accelere .bulle-forfait .title-container {
    height: 50px; } }

#permis-pas-cher .section-forfait .info-prix-public, #permis-pas-cher .section-forfait .description-forfait, #permis-pas-cher .section-forfait .prix-methode, #conduite-accompagnee .section-forfait .info-prix-public, #conduite-accompagnee .section-forfait .description-forfait, #conduite-accompagnee .section-forfait .prix-methode, #permis-accelere .section-forfait .info-prix-public, #permis-accelere .section-forfait .description-forfait, #permis-accelere .section-forfait .prix-methode {
  color: #423f3f !important; }

#permis-pas-cher .boite-manuelle .carousel-type-boite, #conduite-accompagnee .boite-manuelle .carousel-type-boite, #permis-accelere .boite-manuelle .carousel-type-boite {
  border: 1px solid white; }
  @media (min-width: 768px) {
    #permis-pas-cher .boite-manuelle .carousel-type-boite, #conduite-accompagnee .boite-manuelle .carousel-type-boite, #permis-accelere .boite-manuelle .carousel-type-boite {
      top: -43px; } }
#popinModal {
  transition: all 0.2s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    #popinModal {
      transition: none; } }
  @media (min-width: 768px) {
    #popinModal {
      left: calc(100% - 500px); } }
  #popinModal .modal-title {
    font-size: 18px; }
    @media (min-width: 768px) {
      #popinModal .modal-title {
        font-size: 26px; } }
  #popinModal .modal-header,
  #popinModal .modal-content {
    border-radius: 0; }
  #popinModal .modal-header {
    border-bottom: 0; }
  #popinModal .modal-content {
    height: var(--app-height); }
  #popinModal .close {
    color: #fff;
    text-shadow: none; }
  #popinModal .modal-body {
    overflow-y: auto;
    overflow-x: hidden; }
  #popinModal.show {
    transform: none; }
    #popinModal.show .modal-dialog {
      transform: none; }
  #popinModal .modal-dialog {
    transition: all 0.2s ease-in-out;
    max-width: 100%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    position: fixed;
    transform: translate(0, 100%); }
    @media (prefers-reduced-motion: reduce) {
      #popinModal .modal-dialog {
        transition: none; } }
    @media (min-width: 768px) {
      #popinModal .modal-dialog {
        transform: translate(500px, 0);
        left: calc(100% - 500px); } }
    #popinModal .modal-dialog .modal-item {
      padding: 15px 0;
      border-bottom: 1px solid #ced4da; }
      #popinModal .modal-dialog .modal-item:last-child {
        border: 0; }
      #popinModal .modal-dialog .modal-item i {
        font-size: 2.8rem;
        color: #3366ff; }
        @media (max-width: 1200px) {
          #popinModal .modal-dialog .modal-item i {
            font-size: calc(1.405rem + 1.86vw) ; } }
.color-primary {
  color: #3366ff; }

.side-modal {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 600px;
  background: white;
  color: #1c1d21;
  transition: all 0.5s ease-out;
  z-index: 10; }
  .side-modal:not(.show) {
    right: -600px; }
  .side-modal .modal-header {
    height: 60px;
    align-items: center;
    color: white;
    background: #3366ff;
    border-radius: 0; }
    .side-modal .modal-header .modal-title {
      font-size: 2.2rem;
      color: white; }
      @media (max-width: 1200px) {
        .side-modal .modal-header .modal-title {
          font-size: calc(1.345rem + 1.14vw) ; } }
    .side-modal .modal-header .close {
      color: white;
      opacity: 1; }
      .side-modal .modal-header .close i {
        font-size: 2.5rem; }
        @media (max-width: 1200px) {
          .side-modal .modal-header .close i {
            font-size: calc(1.375rem + 1.5vw) ; } }
  .side-modal .modal-body {
    width: 100%;
    height: 100%; }
  .side-modal .modal-item {
    padding: 15px 0;
    border-bottom: 1px solid #ced4da; }
    .side-modal .modal-item:last-child {
      border: 0; }
    .side-modal .modal-item i {
      font-size: 2.8rem;
      color: #3366ff; }
      @media (max-width: 1200px) {
        .side-modal .modal-item i {
          font-size: calc(1.405rem + 1.86vw) ; } }
  .side-modal i {
    font-size: 2.4rem; }
    @media (max-width: 1200px) {
      .side-modal i {
        font-size: calc(1.365rem + 1.38vw) ; } }
  .side-modal .address-map {
    width: 80%;
    height: 200px; }

@media (max-width: 991.98px) {
  .side-modal.show {
    left: 0;
    width: auto; } }

@font-face {
  font-family: 'CircularStd';
  font-style: normal;
  src: url("../../fonts/CircularStd-Book.ttf") format("truetype"); }

@font-face {
  font-family: "CircularStdBold";
  src: url("../../fonts/CircularStd-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

.h1, .h2, .h3, .h4 {
  font-weight: bold !important; }

.txt-regular-moyen {
  color: #3F528B;
  font-family: "CircularStd";
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 22px;
  margin-bottom: 0; }

#modalZipCode {
  font-family: 'CircularStd';
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 3.2rem;
  color: #282A32; }
  #modalZipCode .modal-dialog {
    max-width: 835px;
    margin: 25rem auto; }
  #modalZipCode .modal-body {
    padding: unset; }
  #modalZipCode .close {
    opacity: unset;
    margin-top: 16px;
    margin-right: 24px; }
  #modalZipCode .section-code-postal-modal {
    width: 835px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(40, 42, 50, 0.12);
    border: 3px #D6E0FF solid;
    border-radius: 8px; }
    #modalZipCode .section-code-postal-modal .location-container-large {
      display: flex;
      gap: 8px;
      margin-bottom: 20px; }
      @media (max-width: 768px) {
        #modalZipCode .section-code-postal-modal .location-container-large {
          margin-bottom: 24px; } }
      #modalZipCode .section-code-postal-modal .location-container-large .geoloc-container {
        width: 215px;
        padding-top: 12px;
        padding-bottom: 12px;
        background: white;
        border-radius: 4px;
        outline: 1px #D6E0FF solid;
        outline-offset: -1px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        display: inline-flex; }
        #modalZipCode .section-code-postal-modal .location-container-large .geoloc-container:hover {
          border: unset; }
        #modalZipCode .section-code-postal-modal .location-container-large .geoloc-container .geoloc-btn {
          width: 20px; }
        #modalZipCode .section-code-postal-modal .location-container-large .geoloc-container p {
          color: #3F528B;
          font-size: 16px;
          font-family: 'CircularStd';
          font-weight: 450;
          line-height: 22px;
          word-wrap: break-word;
          margin: 0; }
    #modalZipCode .section-code-postal-modal .zip-modal-subtitle {
      color: #282A32;
      font-size: 18px;
      font-family: 'CircularStd';
      font-weight: 450;
      line-height: 22px;
      word-wrap: break-word; }
    #modalZipCode .section-code-postal-modal .footer-modal-zip-code {
      background-color: #EBF4FA; }
      #modalZipCode .section-code-postal-modal .footer-modal-zip-code .assurances {
        display: flex;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 37px;
        gap: 40px; }
        #modalZipCode .section-code-postal-modal .footer-modal-zip-code .assurances .desc-assurances {
          color: #3F528B;
          font-size: 16px;
          font-family: 'CircularStd';
          font-weight: 450;
          line-height: 22px;
          word-wrap: break-word;
          margin-bottom: 0; }
      #modalZipCode .section-code-postal-modal .footer-modal-zip-code .footer-zip-title {
        color: #282A32;
        font-size: 22px;
        font-family: 'CircularStd';
        font-weight: 700;
        line-height: 26px;
        word-wrap: break-word;
        padding-top: 24px;
        padding-bottom: 16px;
        padding-left: 20px;
        margin-bottom: 0; }
    #modalZipCode .section-code-postal-modal .header-modal-zip-code {
      margin-left: 24px;
      margin-top: 16px;
      margin-bottom: 16px; }
      #modalZipCode .section-code-postal-modal .header-modal-zip-code .h3 {
        font-size: 36px; }
    #modalZipCode .section-code-postal-modal .geoloc-container {
      margin-right: 24px; }
  @media (max-width: 768px) {
    #modalZipCode {
      padding-left: 16px !important;
      padding-right: 16px; }
      #modalZipCode .modal-dialog {
        margin: 2rem auto; }
      #modalZipCode .section-code-postal-modal {
        width: unset; }
        #modalZipCode .section-code-postal-modal .header-modal-zip-code {
          margin-left: 16px;
          margin-bottom: 18mx; }
        #modalZipCode .section-code-postal-modal .geoloc-container {
          width: 48px;
          margin-right: 16px; }
        #modalZipCode .section-code-postal-modal .custom-input-v2 {
          margin-right: unset;
          margin-left: 16px; }
        #modalZipCode .section-code-postal-modal .h3 {
          font-size: 26px !important;
          line-height: 32px; }
        #modalZipCode .section-code-postal-modal .zip-modal-subtitle {
          font-size: 18px;
          padding-right: 16px; }
      #modalZipCode .footer-zip-title {
        width: 60%;
        padding-top: 16px !important; }
      #modalZipCode .assurances {
        flex-direction: column;
        gap: 16px !important;
        padding-bottom: 30px !important; } }
  #modalZipCode .bloc-info-zip-code {
    display: flex;
    align-items: center;
    gap: 4px; }
    @media (max-width: 768px) {
      #modalZipCode .bloc-info-zip-code {
        display: block; } }
  #modalZipCode .badge-code-postal {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #D6E0FF;
    background: #fff;
    color: #36F;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px; }
    @media (max-width: 768px) {
      #modalZipCode .badge-code-postal {
        font-size: 22px;
        line-height: 24px; } }
.custom-tooltip-v2 {
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(40, 42, 50, 0.12); }
  .custom-tooltip-v2.show {
    opacity: 1; }
  .custom-tooltip-v2 .arrow::before {
    border-bottom-color: #FFF; }
  .custom-tooltip-v2 .tooltip-inner {
    background-color: #FFF;
    color: #282A32;
    font-family: "CircularStd";
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: 22px;
    padding: 16px;
    min-width: 240px; }

.tooltip-icon-v2 {
  position: absolute;
  right: 10px;
  bottom: 0; }

.custom-input-v2 {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 1px solid #D6E0FF !important;
  border-radius: 8px !important;
  background-color: #F8F8F8 !important;
  text-align: left;
  padding: 10px 13px;
  height: 50px;
  background: none;
  margin-left: 24px; }
  @media (max-width: 768px) {
    .custom-input-v2 {
      height: 46px; } }
  .custom-input-v2::placeholder {
    color: #3F528B;
    font-family: "CircularStd";
    font-style: normal;
    font-weight: 450;
    line-height: 24px;
    font-size: 14px; }
  .custom-input-v2:focus-visible {
    outline: unset; }

.geoloc-container {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 12px;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  border: 1px solid #D6E0FF;
  background: #FFF;
  z-index: 3;
  cursor: pointer; }
  .geoloc-container.geoloc-active, .geoloc-container:hover {
    background: #F1F5FF80;
    color: #3366FF;
    border: 1px solid #3366FF; }
    .geoloc-container.geoloc-active img, .geoloc-container:hover img {
      filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(4837%) hue-rotate(222deg) brightness(86%) contrast(92%); }
  .geoloc-container #geoloc-desktop {
    z-index: 3; }

.link-v2 {
  color: #282A32;
  font-family: "CircularStd";
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: 18px;
  text-decoration: underline;
  text-decoration-color: #36F;
  text-underline-offset: 4px; }
  .link-v2:hover {
    color: #282A32;
    text-decoration-color: #36F; }

.chip-v2-container {
  padding: 1px 0px;
  margin-top: 5px; }
  @media (max-width: 768px) {
    .chip-v2-container {
      line-height: 16px; } }
  .chip-v2-container.chip-paiement {
    display: inline-flex;
    padding: 8px;
    padding-left: 0;
    padding-top: 0;
    justify-content: center;
    align-items: center;
    gap: 4px; }
  .chip-v2-container .chip-v2 {
    padding: 6px 12px 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #D6E0FF;
    background: #F1F5FF;
    color: #36F;
    text-align: center;
    font-family: "CircularStd";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; }

.submit-disabled-v2 {
  cursor: default !important;
  color: white !important;
  background-color: #8996A2 !important;
  border-color: unset !important; }
  .submit-disabled-v2:active, .submit-disabled-v2:hover, .submit-disabled-v2:focus {
    background-color: #8996A2 !important;
    border-color: unset !important;
    box-shadow: unset !important; }

@media (max-width: 768px) {
  .geoloc-container-with-text {
    width: 46px !important;
    height: 46px !important; } }

.input-search-display.empty::placeholder {
  color: #3F528B;
  font-weight: normal; }

.input-search-display::placeholder {
  font-weight: bold;
  color: black; }

.input-search-display:focus::placeholder {
  color: transparent; }

.intitule-article-v2 .pack-title {
  color: #282A32;
  font-family: "CircularStd";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; }

.price-v2 .price {
  color: #36F !important;
  font-family: "CircularStd" !important;
  font-size: 36px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 42px !important; }
  @media (max-width: 768px) {
    .price-v2 .price {
      font-size: 26px !important;
      line-height: 28px !important; } }
.link-zip-container {
  margin-bottom: 24px;
  margin-top: 8px; }
  @media (max-width: 768px) {
    .link-zip-container {
      margin-bottom: 3.6rem; } }
.messages {
  box-shadow: none; }

#chat-window.panel .btn_tchat_choice {
  background: #3366ff;
  color: white; }

#chat-window.panel {
  z-index: 1021;
  width: 550px;
  border-radius: 40px;
  bottom: 75px;
  background: white;
  color: #1c1d21; }
  @media (max-width: 767.98px) {
    #chat-window.panel {
      max-height: none;
      bottom: 0;
      border-radius: 0;
      width: 100%; } }
  #chat-window.panel .window_header {
    border-radius: 40px 40px 0 0;
    background: #3366ff;
    height: 60px;
    padding-right: 20px;
    padding-left: 20px; }
    #chat-window.panel .window_header a.btn_messagerie .fa-envelope {
      font-size: 30px;
      padding: 0 20px 0 25px; }
      #chat-window.panel .window_header a.btn_messagerie .fa-envelope.fabadge:after {
        display: block;
        content: ' ';
        background: #dc3545;
        width: 10px;
        height: 10px;
        border-radius: 100px;
        position: absolute;
        border: none;
        left: 70px;
        top: 13px; }
    #chat-window.panel .window_header .panel-title {
      margin: 0;
      color: white;
      font-size: 24px;
      font-weight: normal;
      height: 100%; }
      #chat-window.panel .window_header .panel-title .img-wrapper {
        background: none; }
      #chat-window.panel .window_header .panel-title img.circle-red-msg {
        width: 50px;
        height: 50px; }
      #chat-window.panel .window_header .panel-title .circle-red-msg {
        border-radius: 50%;
        background-color: transparent;
        font-size: 20px;
        color: white;
        padding: 0;
        align-self: center; }
      #chat-window.panel .window_header .panel-title i {
        position: relative;
        margin-right: 15px;
        overflow: visible; }
        #chat-window.panel .window_header .panel-title i:after {
          display: block;
          content: ' ';
          background: #edff00;
          width: 10px;
          height: 10px;
          border-radius: 100px;
          position: absolute;
          right: -6px;
          top: -2px; }
    #chat-window.panel .window_header .window_close {
      background: none;
      color: white; }
    #chat-window.panel .window_header i {
      color: white; }
  #chat-window.panel .btn_tchat_choice[data-value='0'], #chat-window.panel .btn_tchat_choice.restart_faq {
    color: #3366ff;
    border-color: #3366ff;
    background: none; }
    #chat-window.panel .btn_tchat_choice[data-value='0']:hover, #chat-window.panel .btn_tchat_choice.restart_faq:hover {
      color: #fff;
      background-color: #3366ff;
      border-color: #3366ff; }
    #chat-window.panel .btn_tchat_choice[data-value='0']:focus, #chat-window.panel .btn_tchat_choice[data-value='0'].focus, #chat-window.panel .btn_tchat_choice.restart_faq:focus, #chat-window.panel .btn_tchat_choice.restart_faq.focus {
      box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }
    #chat-window.panel .btn_tchat_choice[data-value='0'].disabled, #chat-window.panel .btn_tchat_choice[data-value='0']:disabled, #chat-window.panel .btn_tchat_choice.restart_faq.disabled, #chat-window.panel .btn_tchat_choice.restart_faq:disabled {
      color: #3366ff;
      background-color: transparent; }
    #chat-window.panel .btn_tchat_choice[data-value='0']:not(:disabled):not(.disabled):active, #chat-window.panel .btn_tchat_choice[data-value='0']:not(:disabled):not(.disabled).active, .show > #chat-window.panel .btn_tchat_choice[data-value='0'].dropdown-toggle, #chat-window.panel .btn_tchat_choice.restart_faq:not(:disabled):not(.disabled):active, #chat-window.panel .btn_tchat_choice.restart_faq:not(:disabled):not(.disabled).active, .show > #chat-window.panel .btn_tchat_choice.restart_faq.dropdown-toggle {
      color: #fff;
      background-color: #3366ff;
      border-color: #3366ff; }
      #chat-window.panel .btn_tchat_choice[data-value='0']:not(:disabled):not(.disabled):active:focus, #chat-window.panel .btn_tchat_choice[data-value='0']:not(:disabled):not(.disabled).active:focus, .show > #chat-window.panel .btn_tchat_choice[data-value='0'].dropdown-toggle:focus, #chat-window.panel .btn_tchat_choice.restart_faq:not(:disabled):not(.disabled):active:focus, #chat-window.panel .btn_tchat_choice.restart_faq:not(:disabled):not(.disabled).active:focus, .show > #chat-window.panel .btn_tchat_choice.restart_faq.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }
  #chat-window.panel .intro_title {
    color: #1c1d21;
    font-size: 24px; }
  #chat-window.panel .zone_intro {
    color: #1c1d21;
    font-size: 18px; }
  #chat-window.panel .panel-body {
    max-height: calc(100% - 60px);
    padding: 20px 30px;
    background: white;
    color: #1c1d21;
    border-radius: 0 0 40px 40px; }
    #chat-window.panel .panel-body .mini_calendar,
    #chat-window.panel .panel-body .card {
      color: #fff;
      background: #3366ff; }
    #chat-window.panel .panel-body .mini_calendar table td,
    #chat-window.panel .panel-body .mini_calendar caption,
    #chat-window.panel .panel-body .mini_calendar table th {
      color: #fff; }
    #chat-window.panel .panel-body .mini_calendar table td.dispo {
      font-weight: bold;
      color: #fff; }
    #chat-window.panel .panel-body .mini_calendar table td:not(.dispo) {
      color: #C1C1C1; }
  #chat-window.panel .panel-footer {
    background: white;
    border-radius: 0 0 40px 40px; }
  #chat-window.panel .msg_container {
    padding: 0;
    margin: 7px 0;
    font-size: 18px;
    color: white; }
    #chat-window.panel .msg_container .messages {
      padding: 13px 20px;
      box-shadow: none; }
    #chat-window.panel .msg_container .msg_receive {
      background: #380098;
      color: white;
      border-radius: 0 40px 40px 40px; }
      #chat-window.panel .msg_container .msg_receive .form-group input, #chat-window.panel .msg_container .msg_receive .form-group select {
        border-color: #fff; }
        #chat-window.panel .msg_container .msg_receive .form-group input:not(:disabled):not([readonly]), #chat-window.panel .msg_container .msg_receive .form-group select:not(:disabled):not([readonly]) {
          color: #fff; }
        #chat-window.panel .msg_container .msg_receive .form-group input option, #chat-window.panel .msg_container .msg_receive .form-group select option {
          color: initial; }
        #chat-window.panel .msg_container .msg_receive .form-group input ~ label, #chat-window.panel .msg_container .msg_receive .form-group select ~ label {
          color: #fff;
          border-bottom-color: #380098; }
      #chat-window.panel .msg_container .msg_receive .availability-planning {
        margin: 1rem auto; }
        #chat-window.panel .msg_container .msg_receive .availability-planning .row {
          padding: 0.5rem 0; }
          #chat-window.panel .msg_container .msg_receive .availability-planning .row .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
            border-color: #adb5bd; }
    #chat-window.panel .msg_container .msg_sent {
      position: relative;
      background: #3366ff;
      color: white;
      padding-left: 30px; }
      #chat-window.panel .msg_container .msg_sent .restart_faq {
        font-size: 1.8rem; }
      #chat-window.panel .msg_container .msg_sent .rounded-icon {
        position: absolute;
        left: -20px;
        top: 0;
        bottom: 0; }
    #chat-window.panel .msg_container .info_ccm, #chat-window.panel .msg_container .link_page_contact:not(.btn_tchat_choice), #chat-window.panel .msg_container .zone_satisfaction {
      color: #1c1d21; }
  #chat-window.panel .btn_tchat_choice {
    background: #3366ff;
    color: white; }
    #chat-window.panel .btn_tchat_choice.link_page_contact {
      color: #3366ff;
      border-color: #3366ff;
      background: none; }
      #chat-window.panel .btn_tchat_choice.link_page_contact:hover {
        color: #fff;
        background-color: #3366ff;
        border-color: #3366ff; }
      #chat-window.panel .btn_tchat_choice.link_page_contact:focus, #chat-window.panel .btn_tchat_choice.link_page_contact.focus {
        box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }
      #chat-window.panel .btn_tchat_choice.link_page_contact.disabled, #chat-window.panel .btn_tchat_choice.link_page_contact:disabled {
        color: #3366ff;
        background-color: transparent; }
      #chat-window.panel .btn_tchat_choice.link_page_contact:not(:disabled):not(.disabled):active, #chat-window.panel .btn_tchat_choice.link_page_contact:not(:disabled):not(.disabled).active, .show > #chat-window.panel .btn_tchat_choice.link_page_contact.dropdown-toggle {
        color: #fff;
        background-color: #3366ff;
        border-color: #3366ff; }
        #chat-window.panel .btn_tchat_choice.link_page_contact:not(:disabled):not(.disabled):active:focus, #chat-window.panel .btn_tchat_choice.link_page_contact:not(:disabled):not(.disabled).active:focus, .show > #chat-window.panel .btn_tchat_choice.link_page_contact.dropdown-toggle:focus {
          box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); }
  #chat-window.panel .tchat_footer {
    height: auto; }
    #chat-window.panel .tchat_footer::after {
      content: '';
      display: none; }
  #chat-window.panel .btn_send {
    border: none;
    background: #3366ff;
    bottom: -3px;
    right: 33px; }
    @media (max-width: 991.98px) {
      #chat-window.panel .btn_send {
        bottom: 3px;
        right: 23px; } }
    #chat-window.panel .btn_send i:before {
      top: calc(50% - 15px);
      left: calc(50% - 12px); }
  #chat-window.panel i.circle-red,
  #chat-window.panel .btn_submit_message_reponse i,
  #chat-window.panel .btn_submit_contact_m i {
    background-color: #3366ff; }

.msg_container.base_receive .msg_receive {
  background: #380098;
  color: white;
  border-radius: 0 40px 40px 40px;
  padding: 20px; }

.msg_container .btn-cta {
  color: #212529;
  background-color: #edff00;
  border-color: #edff00;
  margin-top: 0.5rem; }
  .msg_container .btn-cta:hover {
    color: #212529;
    background-color: #c9d900;
    border-color: #becc00; }
  .msg_container .btn-cta:focus, .msg_container .btn-cta.focus {
    color: #212529;
    background-color: #c9d900;
    border-color: #becc00;
    box-shadow: 0 0 0 0.2rem rgba(206, 222, 6, 0.5); }
  .msg_container .btn-cta.disabled, .msg_container .btn-cta:disabled {
    color: #212529;
    background-color: #edff00;
    border-color: #edff00; }
  .msg_container .btn-cta:not(:disabled):not(.disabled):active, .msg_container .btn-cta:not(:disabled):not(.disabled).active, .show > .msg_container .btn-cta.dropdown-toggle {
    color: #212529;
    background-color: #becc00;
    border-color: #b2bf00; }
    .msg_container .btn-cta:not(:disabled):not(.disabled):active:focus, .msg_container .btn-cta:not(:disabled):not(.disabled).active:focus, .show > .msg_container .btn-cta.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(206, 222, 6, 0.5); }

.chat_btn {
  background: #380098 !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none; }
  .chat_btn i {
    font-size: 26px; }
  .chat_btn i.icon-close {
    display: none; }
  .chat_btn i.icon-messagerie {
    display: block; }
  .chat_btn.opened i.icon-messagerie {
    display: none; }
  .chat_btn.opened i.icon-close {
    display: block; }

@media (max-width: 767.98px) {
  #chat-window.panel .window_header {
    border-radius: 0; }
  #chat-window.panel .panel-body {
    border-radius: 0; }
  #chat-window.panel .panel-footer {
    border-radius: 0; } }

@media (max-width: 991.98px) {
  button.chat_btn {
    bottom: 20px;
    right: 10px; } }

.tchat_composer textarea {
  border-radius: 35px;
  max-height: 62px; }

.rounded-0 {
  border-radius: 0 !important; }

.rounded-lg {
  border-radius: 3rem !important; }

@media (min-width: 576px) {
  .rounded-0-sm {
    border-radius: 0 !important; }
  .rounded-lg-sm {
    border-radius: 3rem !important; } }

@media (min-width: 768px) {
  .rounded-0-md {
    border-radius: 0 !important; }
  .rounded-lg-md {
    border-radius: 3rem !important; } }

@media (min-width: 992px) {
  .rounded-0-lg {
    border-radius: 0 !important; }
  .rounded-lg-lg {
    border-radius: 3rem !important; } }

@media (min-width: 1200px) {
  .rounded-0-xl {
    border-radius: 0 !important; }
  .rounded-lg-xl {
    border-radius: 3rem !important; } }

@font-face {
  font-family: 'PlaydatesHandwriting';
  font-style: normal;
  font-display: block;
  src: url("../../fonts/PlaydatesHandwriting.ttf") format("truetype"); }

@font-face {
  font-family: 'CircularStd';
  font-style: normal;
  font-display: swap;
  src: url("../../fonts/CircularStd-Book.ttf") format("truetype"); }

@font-face {
  font-family: 'CircularStd';
  font-weight: bold;
  font-display: swap;
  src: url("../../fonts/CircularStd-Black.ttf") format("truetype"); }

.text-gray-100 {
  color: #f8f9fa !important; }

a.text-gray-100:hover, a.text-gray-100:focus {
  color: #cbd3da !important; }

.text-gray-200 {
  color: #e9ecef !important; }

a.text-gray-200:hover, a.text-gray-200:focus {
  color: #bdc6cf !important; }

.text-gray-300 {
  color: #dee2e6 !important; }

a.text-gray-300:hover, a.text-gray-300:focus {
  color: #b2bcc5 !important; }

.text-gray-400 {
  color: #ced4da !important; }

a.text-gray-400:hover, a.text-gray-400:focus {
  color: #a2aeb9 !important; }

.text-gray-500 {
  color: #adb5bd !important; }

a.text-gray-500:hover, a.text-gray-500:focus {
  color: #838f9b !important; }

.text-gray-600 {
  color: #6c757d !important; }

a.text-gray-600:hover, a.text-gray-600:focus {
  color: #494f54 !important; }

.text-gray-700 {
  color: #495057 !important; }

a.text-gray-700:hover, a.text-gray-700:focus {
  color: #262a2d !important; }

.text-gray-800 {
  color: #343a40 !important; }

a.text-gray-800:hover, a.text-gray-800:focus {
  color: #121416 !important; }

.text-gray-900 {
  color: #212529 !important; }

a.text-gray-900:hover, a.text-gray-900:focus {
  color: black !important; }

.bg-gray-100 {
  background-color: #f8f9fa !important; }

a.bg-gray-100:hover, a.bg-gray-100:focus,
button.bg-gray-100:hover,
button.bg-gray-100:focus {
  background-color: #dae0e5 !important; }

.bg-gray-200 {
  background-color: #e9ecef !important; }

a.bg-gray-200:hover, a.bg-gray-200:focus,
button.bg-gray-200:hover,
button.bg-gray-200:focus {
  background-color: #cbd3da !important; }

.bg-gray-300 {
  background-color: #dee2e6 !important; }

a.bg-gray-300:hover, a.bg-gray-300:focus,
button.bg-gray-300:hover,
button.bg-gray-300:focus {
  background-color: #c1c9d0 !important; }

.bg-gray-400 {
  background-color: #ced4da !important; }

a.bg-gray-400:hover, a.bg-gray-400:focus,
button.bg-gray-400:hover,
button.bg-gray-400:focus {
  background-color: #b1bbc4 !important; }

.bg-gray-500 {
  background-color: #adb5bd !important; }

a.bg-gray-500:hover, a.bg-gray-500:focus,
button.bg-gray-500:hover,
button.bg-gray-500:focus {
  background-color: #919ca6 !important; }

.bg-gray-600 {
  background-color: #6c757d !important; }

a.bg-gray-600:hover, a.bg-gray-600:focus,
button.bg-gray-600:hover,
button.bg-gray-600:focus {
  background-color: #545b62 !important; }

.bg-gray-700 {
  background-color: #495057 !important; }

a.bg-gray-700:hover, a.bg-gray-700:focus,
button.bg-gray-700:hover,
button.bg-gray-700:focus {
  background-color: #32373b !important; }

.bg-gray-800 {
  background-color: #343a40 !important; }

a.bg-gray-800:hover, a.bg-gray-800:focus,
button.bg-gray-800:hover,
button.bg-gray-800:focus {
  background-color: #1d2124 !important; }

.bg-gray-900 {
  background-color: #212529 !important; }

a.bg-gray-900:hover, a.bg-gray-900:focus,
button.bg-gray-900:hover,
button.bg-gray-900:focus {
  background-color: #0a0c0d !important; }

:root {
  --safe-area-inset-top: env(safe-area-inset-top, constant(safe-area-inset-top, 0));
  --safe-area-inset-bottom: env(safe-area-inset-bottom, constant(safe-area-inset-bottom, 0));
  --app-height: 100vh;
  --origin-app-height: 100vh; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.8rem;
  background-color: white;
  font-family: 'CircularStd';
  color: #423f3f; }
  @media (min-width: 992px) {
    body {
      font-size: 2rem;
      line-height: 3.2rem; } }
.h1, .h2, .h3, .h4 {
  font-weight: bold; }

.h1 {
  font-size: 3rem; }
  @media (min-width: 992px) {
    .h1 {
      font-size: 5rem; } }
.h2 {
  font-size: 3rem; }
  @media (min-width: 992px) {
    .h2 {
      font-size: 3.4rem; } }
.h3 {
  font-size: 2.2rem; }
  @media (min-width: 992px) {
    .h3 {
      font-size: 2.4rem; } }
.h3-normal {
  font-size: 1.8rem; }
  @media (min-width: 992px) {
    .h3-normal {
      font-size: 2.4rem; } }
.h3-small {
  font-size: 2rem;
  font-weight: bold; }
  @media (min-width: 992px) {
    .h3-small {
      font-size: 3rem; } }
.h4, .h4-normal {
  font-size: 1.6rem; }
  @media (min-width: 992px) {
    .h4, .h4-normal {
      font-size: 2rem !important; } }
.h5 {
  font-size: 1.6rem; }
  @media (min-width: 1200px) {
    .h5 {
      font-size: 1.8rem; } }
.h6 {
  font-size: 1.6rem; }

.h7 {
  font-size: 1.4rem;
  line-height: 2; }

.h8 {
  font-size: 1.2rem;
  line-height: 1; }

.h9 {
  font-size: 1rem;
  line-height: 1; }

footer {
  color: white; }
  footer a {
    color: white; }
  footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    footer ul li a {
      font-size: 1.6rem;
      line-height: 3rem;
      text-decoration: underline; }
      @media (max-width: 991.98px) {
        footer ul li a {
          font-size: 1.4rem; } }
      footer ul li a:hover {
        text-decoration: none;
        color: white; }
  footer .linktoggle {
    font-size: 1.6rem;
    line-height: 3rem;
    text-decoration: underline; }
    @media (max-width: 991.98px) {
      footer .linktoggle {
        font-size: 1.4rem; } }
    footer .linktoggle:hover {
      text-decoration: none;
      color: white; }
  footer p {
    font-size: 1.2rem; }
  footer #stych-portable {
    position: absolute;
    bottom: -40px;
    right: 0; }
  @media (max-width: 991.98px) {
    footer .footer-title {
      font-size: 2.6rem;
      line-height: 1; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    footer .footer-title {
      font-size: 6rem; } }
  @media (min-width: 1200px) {
    footer .footer-title {
      font-size: 8rem; } }
  footer .avis-footer {
    line-height: 1.8rem;
    font-size: 1.2rem; }

@media (max-width: 991.98px) {
  #footer-recrutement {
    text-align: center;
    margin: 2rem 0; } }

@media (min-width: 992px) {
  #footer-recrutement {
    position: absolute !important;
    top: 10%; } }

.subtitle-logo {
  font-size: 10px;
  color: white;
  line-height: 11px;
  padding-top: 2px; }

@media (min-width: 992px) {
  #StychNavbar .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem; } }

.bold {
  font-weight: bold; }

.btn-rounded, .msg_container .btn-cta {
  border-radius: 99px;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block; }
  @media (max-width: 991.98px) {
    .btn-rounded, .msg_container .btn-cta {
      font-weight: 900;
      max-width: 300px; } }
.btn-rounded-small {
  font-size: 12px;
  padding: 0.9rem 2.3rem; }

.btn-rounded-medium {
  padding-left: 4rem;
  padding-right: 4rem; }

@media (min-width: 992px) {
  .btn-rounded-large,
  .btn-rounded-lg {
    padding-left: 6rem;
    padding-right: 6rem; } }

.btn-outline-white {
  border-color: white; }

.btn-100 {
  width: 100%; }

.btn-icon-phone {
  position: relative;
  padding-left: 6rem; }
  .btn-icon-phone:before {
    content: ' ';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 35px;
    height: 39px;
    background: url("/img/stych/icon/icon-phone.png") no-repeat; }
  .btn-icon-phone.phone-white:before {
    background: url("/img/stych/icon/icon-phone-white.png") no-repeat; }

@media (max-width: 991.98px) {
  .offres-home .btn-rounded, .offres-home .msg_container .btn-cta, .msg_container .offres-home .btn-cta {
    font-size: 1.2rem; } }

@media (min-width: 992px) {
  .btn-left {
    margin-left: -200px; } }

.btn-white {
  background-color: white;
  color: #3366ff; }

.btn-color-white {
  color: white;
  border: 1px solid white;
  border-radius: 40px;
  padding: 10px 20px; }

.btn-grey {
  border: 1px solid #1c1d21;
  background-color: white;
  color: #1c1d21;
  border-radius: 40px; }

a:hover {
  text-decoration: none; }

.text-small-1 {
  font-size: 1.8rem; }

.text-small-2 {
  font-size: 1.6rem; }

.text-grey {
  color: #a4a4a6; }

.padding-0 {
  padding: 0 !important; }

.padding-sm {
  padding: 4px !important; }

.padding-md {
  padding: 8px !important; }

.scrollable {
  overflow: auto; }

hr {
  height: 1px;
  border: 0; }

.reservation-card {
  background-image: linear-gradient(135deg, #3366ff 25%, #380098);
  color: white; }
  .reservation-card .star {
    width: 130px;
    position: absolute;
    top: 30px; }

.navbar {
  font-size: 1.6rem !important; }
  .navbar.with-smart-banner {
    top: 65px; }
  .navbar.with-promo-banner {
    top: 64px; }
  .navbar.with-smart-banner.with-promo-banner {
    top: 129px; }

@media (min-width: 992px) {
  .navbar-custom {
    height: 85px; } }

.navbar-mobile {
  display: none; }

.cart-option {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer; }
  .cart-option .cart-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-bottom: 40px; }
    .cart-option .cart-image img {
      height: 100%;
      width: 100%; }
  .cart-option .cart-title {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 900;
    margin-bottom: 15px; }
  .cart-option .cart-description {
    font-size: 1.5rem;
    line-height: 1.8rem; }
  .cart-option .cart-price {
    font-size: 4rem;
    color: #3366ff; }
  .cart-option .checkbox-container {
    position: relative; }
    .cart-option .checkbox-container input[type=checkbox] {
      height: 45px;
      width: 45px; }

.total-cart {
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 2.8rem; }

.topbar {
  margin-top: 2rem;
  margin-bottom: 4.5rem;
  padding: 0;
  height: 60px;
  line-height: 60px; }
  .topbar .greeting {
    font-size: 2.6rem;
    margin-left: 140px; }
  .topbar .topbar-title a {
    font-size: 5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    color: #1c1d21; }
    .topbar .topbar-title a i {
      color: #1c1d21;
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      margin-right: 2rem;
      background: white;
      font-size: 1.4rem;
      border-radius: 15px; }
  .topbar:before, .topbar:after {
    display: none; }
  .topbar .logo-star {
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 10; }
    .topbar .logo-star img {
      width: 125px; }
  .topbar .nav-item {
    margin-left: 4rem; }
  .topbar .rounded-icon {
    background: #3366ff; }
    .topbar .rounded-icon:hover {
      background: #380098; }
  .topbar .new-alert:after {
    content: " ";
    display: block;
    position: absolute;
    background: #1c1d21;
    width: 10px;
    height: 10px;
    border-radius: 1000px;
    top: 2px;
    right: 2px; }
  .topbar .user-avatar {
    margin-left: 20px; }

.cart {
  position: absolute;
  background: white;
  color: #1c1d21; }

.card-counter {
  display: inline-block;
  border-radius: 1000px;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.7rem;
  text-align: center;
  margin-left: 20px;
  background: #e9ecef;
  color: #1c1d21; }

.subtext {
  font-size: 2.2rem;
  color: #adb5bd;
  font-weight: normal; }

.subtext-small {
  font-size: 1.6rem;
  color: #adb5bd;
  font-weight: normal; }

.main > .container {
  padding: 0 4rem 3rem; }

.rounded-icon {
  border-radius: 1000px;
  text-align: center;
  display: inline-block;
  position: relative; }

.nav-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border: 0; }
  .nav-tabs .nav-link {
    border: 0;
    background: none; }
    .nav-tabs .nav-link.active {
      background: #3366ff; }
  .nav-tabs a {
    font-size: 2rem; }

.x40 {
  height: 40px;
  width: 40px;
  line-height: 40px; }
  .x40 i {
    line-height: 40px; }

.x50 {
  height: 50px;
  width: 50px;
  line-height: 50px; }
  .x50 i {
    line-height: 50px; }

.x75 {
  height: 75px;
  width: 75px;
  line-height: 75px; }
  .x75 i {
    line-height: 75px; }

.x75 {
  height: 75px;
  width: 75px;
  line-height: 75px; }
  .x75 i {
    line-height: 75px; }

.x100 {
  height: 100px;
  width: 100px;
  line-height: 100px; }
  .x100 i {
    line-height: 100px; }

.progress-line {
  width: 100%;
  height: 1px;
  background: #dedede; }
  .progress-line .progress-bar {
    position: absolute;
    margin-top: -4px;
    height: 8px;
    background-image: none;
    border-radius: 15px; }
  .progress-line .progress-icon {
    position: absolute;
    margin-top: -0.75em;
    padding: 0 10px;
    left: 0;
    right: 0; }
    .progress-line .progress-icon i {
      background: white;
      padding: 0 10px; }

.dialogue-left {
  border-radius: 0 40px 40px 40px;
  padding: 20px 35px;
  margin-bottom: 20px; }

.list {
  overflow: hidden auto;
  padding: 0;
  font-size: 1.7rem;
  align-items: center; }
  .list .list-item {
    min-height: 80px;
    align-items: center;
    border-bottom: 1px solid #ced4da;
    padding: 20px 0; }
    .list .list-item:last-child {
      border: none; }
  .list .item-title, .list .item-title a {
    color: #1c1d21;
    font-size: 2.2rem;
    font-weight: bold; }
  .list .item-subtext {
    color: #adb5bd; }
  .list .item-progress {
    display: flex;
    align-items: center; }
  .list .item-number {
    float: left;
    background: #3366ff;
    color: white;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    margin-right: 10px;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    border-radius: 100px; }

.progress-dashed {
  display: flex;
  width: 100%;
  height: 25px; }
  .progress-dashed .dash {
    height: 100%;
    flex: 1 1 auto;
    justify-content: space-between;
    border-radius: 7px;
    margin: 0 10px;
    background: #dee2e6; }

@media (min-width: 992px) {
  #menu {
    display: flex; }
  .tab-content-mobile .tab-pane {
    opacity: 1;
    display: block; } }

@media (max-width: 767.98px) {
  .main {
    margin: 80px 0 0 0; }
    .main > .container {
      padding-left: 15px;
      padding-right: 15px; }
  .nav-tabs {
    width: 100%; }
    .nav-tabs .card-counter {
      width: 30px;
      height: 30px;
      line-height: 30px;
      margin-left: 5px;
      background: white; }
  .card {
    padding: 20px;
    border-radius: 20px; }
    .card .card-title {
      font-size: 1.8rem; } }

.break {
  flex-basis: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden; }

.navbar-toggler {
  border: none; }

@media (min-width: 992px) {
  .mobile-break {
    display: none; } }

@media (max-width: 991.98px) {
  .desktop-break {
    display: none; }
  ul.vertical-bar li.desktop-break {
    display: none; } }

@media (min-width: 768px) {
  .desktop-display-none {
    display: none; } }

@media (max-width: 991.98px) {
  .desktop-display-none {
    display: block; } }

.code-star {
  right: 20px;
  top: 70px;
  font-weight: bold; }
  .code-star img {
    width: 65px;
    height: 65px;
    float: left; }
  .code-star .number {
    font-size: 2.8rem;
    top: 11px;
    right: 16px; }
  .code-star .pourcent {
    font-size: 0.8rem;
    top: 18px;
    right: 8px; }
  .code-star .text {
    font-size: 0.7rem;
    top: 44px;
    right: 15px; }

.code-ekobi {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold; }
  .code-ekobi picture {
    margin-right: 10px; }

@media (min-width: 992px) {
  .paragraph-center {
    max-width: 80%;
    margin: 0 auto; } }

@media (max-width: 991.98px) {
  .paragraph-center-mobile {
    max-width: 88%;
    margin: 0 auto; } }

@media (min-width: 992px) {
  .paragraph-left {
    max-width: 500px;
    position: absolute;
    right: 50px; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  .paragraph-left-wd-max {
    width: 280px;
    max-width: 88%;
    margin: 0 auto; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .paragraph-left-wd-max {
    max-width: 400px; } }

@media (min-width: 1200px) {
  .paragraph-left-wd-max {
    max-width: 500px; } }

@media (min-width: 992px) {
  .paragraph-right {
    max-width: 500px; } }

@media (min-width: 992px) {
  .paragraph-lg-right {
    max-width: 500px; } }

.stych-carousel-items {
  display: flex;
  overflow-x: scroll;
  padding: 1rem 0 50px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .stych-carousel-items::-webkit-scrollbar {
    display: none; }

.stych-carousel-item, .stych-carousel-item-avis {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 278px;
  margin-left: 10px;
  margin-right: 10px;
  scroll-snap-align: center;
  color: white; }
  @media (min-width: 992px) {
    .stych-carousel-item, .stych-carousel-item-avis {
      flex-basis: 29.6%;
      margin-left: 20px;
      margin-right: 20px; } }
  .stych-carousel-item .card, .stych-carousel-item-avis .card {
    border-radius: 50px; }
    @media (min-width: 992px) {
      .stych-carousel-item .card, .stych-carousel-item-avis .card {
        border-radius: 30px; } }
  .stych-carousel-item .bulle-ekomi, .stych-carousel-item-avis .bulle-ekomi {
    display: flex;
    justify-content: space-between; }

.caroussel-home-slide {
  width: 278px;
  margin-left: 10px;
  margin-right: 10px;
  color: white; }
  @media (min-width: 992px) {
    .caroussel-home-slide {
      width: 300px;
      margin-left: 22.5px;
      margin-right: 22.5px; } }
  .caroussel-home-slide .card {
    border-radius: 50px; }
    @media (min-width: 992px) {
      .caroussel-home-slide .card {
        border-radius: 30px; } }
.carousel-indicators li {
  background-color: #3366ff;
  border-radius: 50%; }
  .carousel-indicators li.active {
    background-color: #edff00; }

.carousel-indicators.active {
  opacity: 1; }

.agrement {
  font-size: 14px;
  line-height: 18px;
  z-index: 1000;
  width: 300px; }
  .agrement.agrement-fixed {
    display: flex;
    position: absolute;
    left: 0; }
    @media (max-width: 991.98px) {
      .agrement.agrement-fixed {
        bottom: 30px; } }
    @media (min-width: 992px) {
      .agrement.agrement-fixed {
        bottom: -80px; } }
  .agrement img {
    object-fit: contain;
    align-self: flex-start; }

#bulle-agrement {
  flex: 1 1 auto;
  height: auto;
  padding: 11px;
  background-color: #380099;
  color: white;
  display: inline-flex;
  position: relative;
  width: 300px;
  text-align: left;
  padding-left: 20px; }
  @media (min-width: 992px) {
    #bulle-agrement {
      margin-left: 1rem; } }
  @media (max-width: 991.98px) {
    #bulle-agrement {
      border-radius: 30px; } }
  @media (min-width: 992px) {
    #bulle-agrement {
      padding: 19px;
      border-radius: 30px 30px 30px 0; }
      #bulle-agrement:before {
        position: absolute;
        content: "";
        bottom: -19px;
        left: 0;
        display: inline-block;
        height: 0;
        width: 0;
        border-top: 20px solid #380099;
        border-right: 15px solid transparent;
        clear: both; } }
.container-image {
  position: relative;
  display: inline-block; }
  @media (min-width: 992px) {
    .container-image img {
      max-width: 100%;
      height: auto; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .container-image img {
      max-width: 90%;
      height: auto; } }
@media (min-width: 992px) {
  .star-right {
    overflow: visible;
    background-image: url(/img/stych/homepage/star-blue-horizontal.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    height: 800px; } }

@media (max-width: 991.98px) {
  .star-right {
    height: 500px; } }

@media (min-width: 992px) {
  .grid-right {
    overflow: visible;
    background-image: url(/img/stych/homepage/monitor-grid.svg);
    background-repeat: no-repeat;
    background-position: left center; } }

@media (max-width: 991.98px) {
  .star-right-mobile {
    background-image: url(/img/stych/homepage/star-blue-horizontal.png);
    background-repeat: no-repeat;
    background-position: 50px 0;
    background-size: auto 100%;
    height: 500px; } }

ul.vertical-bar {
  list-style-type: none;
  padding-left: 0; }
  ul.vertical-bar li {
    padding-left: calc(1.5rem + 4px);
    display: flex;
    align-items: center;
    height: 3.5rem;
    margin-bottom: 13px; }
    ul.vertical-bar li:before {
      position: absolute;
      left: 0;
      background-color: #a4a4a6;
      content: "";
      display: inline-block;
      margin-right: 0.5rem;
      height: 3.5rem;
      width: 4px;
      opacity: 0.5;
      vertical-align: -30%; }
      @media (min-width: 992px) {
        ul.vertical-bar li:before {
          margin-right: 1.5rem; } }
.vertical-blue-primary:before {
  background-color: #3366ff !important;
  opacity: 1 !important; }

.vertical-border {
  display: table-cell;
  vertical-align: middle;
  height: 3.5rem;
  border-left: 4px solid #3366ff;
  font-size: 1.4rem;
  padding-left: 1.5rem;
  line-height: 1; }
  @media (min-width: 992px) {
    .vertical-border {
      font-size: 1.8rem; } }
.halo {
  width: 54px;
  height: 54px;
  margin: 0 24.5px 181.5px 0;
  padding: 8px;
  opacity: 0.2;
  background-color: #edff00; }

.h2-like {
  font-weight: bold; }
  @media (min-width: 992px) {
    .h2-like {
      font-size: 40px;
      line-height: 1.1; } }
  @media (max-width: 991.98px) {
    .h2-like {
      font-size: 20px;
      line-height: 1.4; } }
.price {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1; }

.bg-white {
  background: #fff; }

.bg-white-stych {
  background-color: #f8f8f8; }

@media (min-width: 992px) {
  .bg-white-stych-lg {
    background-color: #f8f8f8; } }

.bg-light-gray {
  background: #f3f3f3; }

.text-blue-grey {
  color: #a4a4a6; }

.background-blue-rounded {
  color: white;
  background-color: white;
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .background-blue-rounded {
      background-image: url(/img/stych/background/fond-bleu_3.webp); } }
  @media (min-width: 992px) {
    .background-blue-rounded {
      background-image: url(/img/stych/background/fond-bleu_3@3x.webp); } }
  @media (max-width: 991.98px) {
    .background-blue-rounded .container {
      padding: 0 !important; } }
.preload-images {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0; }

@media (min-width: 992px) {
  .overflow-lg-visible {
    overflow: visible !important; } }

.background-blue-rounded-hauto {
  background-color: white;
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .background-blue-rounded-hauto {
      color: white; } }
  @media (max-width: 991.98px) {
    .background-blue-rounded-hauto {
      background-image: url(/img/stych/background/fond-bleu_3.webp); } }
.background-blue-rounded-top {
  background-color: white;
  background-size: 100% 90%;
  background-position: top center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .background-blue-rounded-top {
      background-image: url(/img/stych/background/fond-bleu_3.webp); } }
  @media (min-width: 992px) {
    .background-blue-rounded-top {
      background-image: url(/img/stych/background/fond-bleu_3@3x.webp); } }
  @media (max-width: 991.98px) {
    .background-blue-rounded-top .container {
      padding: 0 !important; } }
.background-blue-rounded-avis {
  background-color: white;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast; }
  @media (max-width: 991.98px) {
    .background-blue-rounded-avis {
      background-image: url(/img/stych/background/fond-bleu_3.webp);
      background-size: 100% 90%;
      background-position: top center; } }
  @media (min-width: 992px) {
    .background-blue-rounded-avis {
      background-image: url(/img/stych/background/fond-avis.svg);
      background-size: 100% auto;
      background-position: bottom center; } }
  @media (max-width: 991.98px) {
    .background-blue-rounded-avis .container {
      padding: 0 !important; } }
.contact-form {
  padding: 4rem;
  box-shadow: 0 15px 50px 0 rgba(164, 164, 166, 0.23);
  background-color: white;
  border-radius: 40px;
  position: relative;
  z-index: 10; }
  .contact-form input:not([type="submit"]) {
    width: 100%; }
  .contact-form input {
    border-top: none;
    border-left: none;
    border-right: none; }
  .contact-form select {
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 1.6rem; }
  .contact-form #coucou {
    position: absolute;
    right: -174px;
    top: 50%;
    z-index: 9; }

.contact-agence-select {
  height: auto !important; }

.uneagence {
  border-radius: 40px 0 0 0;
  box-shadow: 0 15px 50px 0 rgba(164, 164, 166, 0.23); }
  .uneagence .uneagence-head {
    background-color: #3366ff;
    color: white;
    padding: 1rem 2rem 0 2rem; }
  .uneagence .uneagence-body {
    padding: 0 2rem 2rem 2rem;
    font-size: 1.6rem; }

.tarif-pack-column {
  padding: 4rem 2rem;
  border-radius: 30px;
  background-color: #f8f8f8; }

.tarif-pack-inline {
  padding: 1rem 2rem; }

.page-produit-buttons {
  background-color: white;
  padding: 2rem 1rem;
  box-shadow: 0 15px 50px 0 rgba(164, 164, 166, 0.23); }
  @media (min-width: 992px) {
    .page-produit-buttons {
      border-radius: 40px 40px 40px 0; } }
  @media (max-width: 991.98px) {
    .page-produit-buttons {
      border-radius: 0 20px 20px 20px;
      background-color: transparent;
      box-shadow: none; } }
.page-produit-card {
  border-radius: 40px;
  box-shadow: 0 15px 50px 0 rgba(164, 164, 166, 0.23);
  background-color: #ffffff;
  position: relative; }
  .page-produit-card #stych-lecteur {
    position: absolute;
    right: -150px;
    bottom: 0; }
  .page-produit-card #page-produit-actions {
    width: 300px;
    position: absolute;
    right: -200px;
    top: 100px; }
  .page-produit-card ul {
    list-style-type: none;
    margin-left: -35px; }
    .page-produit-card ul li i {
      font-size: 0.8rem;
      color: #3366ff;
      padding-right: 10px; }
  @media (min-width: 992px) {
    .page-produit-card .page-produit-card-content {
      min-height: 180px; } }
  .page-produit-card .page-produit-card-content ul {
    list-style-position: outside; }
  .page-produit-card .page-produit-card-content li {
    margin-bottom: 7px; }

@media (min-width: 992px) {
  .dropdown-menu-stych {
    padding: 1.5rem;
    border-radius: 22px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    margin-top: 10px;
    min-width: 300px; } }

/**form*/
.form-group {
  position: relative;
  margin-bottom: 42px; }
  @media (max-width: 768px) {
    .form-group {
      margin-bottom: 30px; } }
  .form-group select:valid ~ label {
    opacity: 1;
    margin-left: 1rem;
    margin-top: -0.5rem; }
  .form-group input:not(:placeholder-shown) ~ label {
    opacity: 1; }
  .form-group:not(.was-validated) .form-control:not(:placeholder-shown) {
    color: #1c1d21;
    border-bottom: 1px solid #1c1d21; }
  .form-group.group-ei .label-radio {
    text-align: left;
    color: #1c1d21;
    background: #fff;
    display: block;
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem;
    margin-bottom: 0.5rem; }

.form-control {
  height: 46px;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0; }

.input-group-text {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0; }

.card-stych-loupe {
  background-color: #3366ff;
  border-radius: 0 30px 30px 30px;
  padding: 2rem 4rem 4rem;
  color: white;
  position: relative;
  z-index: 100; }
  .card-stych-loupe #stych-loupe {
    position: absolute;
    left: -150px;
    bottom: 0; }

.card-stych-fiches {
  background-color: #3366ff;
  color: white;
  position: relative;
  padding: 3rem 1rem;
  z-index: 100; }
  @media (min-width: 992px) {
    .card-stych-fiches {
      border-radius: 0 30px 30px 30px;
      padding: 3rem;
      max-width: 720px; }
      .card-stych-fiches #stych-loupe {
        position: absolute;
        left: -150px;
        bottom: 0; } }
a.white-link:hover {
  color: rgba(255, 255, 255, 0.6); }

.renseignement {
  cursor: pointer; }

.border-rounded {
  border-radius: 99px; }

.prix-public {
  font-size: 1.4rem;
  line-height: 10px; }
  @media (min-width: 768px) {
    .prix-public {
      line-height: 0px; } }
.lh-1 {
  line-height: 1; }

.lh-1-2 {
  line-height: 1.2; }

.lh-2 {
  line-height: 28px; }

#text-renseignement h1, #text-renseignement h2, #text-renseignement h3 {
  font-size: 2rem; }

#text-renseignement h3 {
  font-weight: bold !important; }

#text-renseignement .tftable {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 1rem !important;
  font-size: 1.6rem !important; }
  #text-renseignement .tftable td, #text-renseignement .tftable th {
    padding: 0.5rem 0.625rem 0.625rem !important; }
  #text-renseignement .tftable tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.04) !important; }

.stych-card-header {
  border: none;
  background-color: transparent; }

.circle-test-code {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  line-height: 64px;
  margin: auto; }

.play-video {
  position: absolute;
  cursor: pointer;
  background-color: white;
  border-radius: 50px; }
  @media (min-width: 992px) {
    .play-video {
      height: 96px;
      width: 96px;
      margin: auto;
      display: block;
      top: 0;
      right: -48px;
      bottom: 0;
      box-shadow: 0 5px 20px 0 rgba(164, 164, 166, 0.5); }
      .play-video i {
        font-size: 50px;
        color: #3366ff; } }
  @media (max-width: 991.98px) {
    .play-video {
      height: 60px;
      width: 60px;
      margin: auto;
      display: block;
      left: 0;
      right: 0;
      bottom: -30px;
      box-shadow: 0 5px 20px 0 rgba(164, 164, 166, 0.5); }
      .play-video i {
        font-size: 30px;
        color: #3366ff; } }
.video-stych-wrapper {
  width: 100%;
  max-height: 90%;
  position: absolute;
  top: 15px;
  height: auto; }

.circlesParent {
  position: relative;
  color: #423f3f; }
  @media (max-width: 767.98px) {
    .circlesParent {
      margin: 0 auto;
      height: 110px;
      justify-content: center !important;
      margin-top: 4rem;
      width: 310px;
      margin: auto;
      font-size: 1.4rem; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .circlesParent {
      margin: 0 auto;
      height: 160px;
      width: 480px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .circlesParent {
      margin: 0 auto;
      height: 180px;
      width: 480px; } }
  @media (min-width: 1200px) {
    .circlesParent {
      height: 200px; } }
#circle1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }
  @media (max-width: 767.98px) {
    #circle1.agence-eleve-satis .circle-number {
      height: 80px; }
    #circle1.agence-eleve-satis .text3 {
      height: 35px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #circle1.agence-eleve-satis .circle-number {
      height: 95px; }
    #circle1.agence-eleve-satis .text3 {
      height: 35px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #circle1.agence-eleve-satis .circle-number {
      height: 115px; }
    #circle1.agence-eleve-satis .text3 {
      height: 35px; } }
  @media (min-width: 1200px) {
    #circle1.agence-eleve-satis .circle-number {
      height: 120px; }
    #circle1.agence-eleve-satis .text3 {
      height: 50px; } }
#circle2 {
  position: absolute;
  top: 0;
  z-index: 2; }
  @media (max-width: 767.98px) {
    #circle2 {
      left: 100px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #circle2 {
      left: 140px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #circle2 {
      left: 150px; } }
  @media (min-width: 1200px) {
    #circle2 {
      left: 180px; } }
  @media (max-width: 767.98px) {
    #circle2.agence-mois-exam {
      left: 0; }
      #circle2.agence-mois-exam .delay {
        height: 35px; }
      #circle2.agence-mois-exam .circle-number {
        height: 40px; }
      #circle2.agence-mois-exam .text3 {
        height: 20px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #circle2.agence-mois-exam .delay {
      height: 50px; }
    #circle2.agence-mois-exam .circle-number {
      height: 45px; }
    #circle2.agence-mois-exam .text3 {
      height: 35px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #circle2.agence-mois-exam .delay {
      height: 55px; }
    #circle2.agence-mois-exam .circle-number {
      height: 60px; }
    #circle2.agence-mois-exam .text3 {
      height: 35px; } }
  @media (min-width: 1200px) {
    #circle2.agence-mois-exam .circle-number {
      height: 60px; }
    #circle2.agence-mois-exam .delay {
      height: 60px; }
    #circle2.agence-mois-exam .text3 {
      height: 50px; } }
#circle3 {
  position: absolute;
  top: 0;
  z-index: 3; }
  @media (max-width: 767.98px) {
    #circle3 {
      left: 200px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #circle3 {
      left: 280px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #circle3 {
      left: 300px; } }
  @media (min-width: 1200px) {
    #circle3 {
      left: 360px; } }
.circle {
  border-radius: 50%;
  display: flex;
  /* or inline-flex */
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px 0 rgba(76, 76, 221, 0.23);
  background-color: white;
  display: table;
  vertical-align: middle;
  text-align: center;
  line-height: 1; }
  @media (max-width: 767.98px) {
    .circle {
      width: 110px;
      height: 110px; }
      .circle .circle-number {
        font-size: 35px;
        height: 55px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .circle {
      width: 160px;
      height: 160px; }
      .circle .circle-number {
        font-size: 50px;
        height: 85px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .circle {
      width: 180px;
      height: 180px; }
      .circle .circle-number {
        font-size: 64px;
        height: 100px; } }
  @media (min-width: 1200px) {
    .circle {
      width: 200px;
      height: 200px; }
      .circle .circle-number {
        font-size: 64px;
        height: 100px; } }
#agence-date-exam {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  z-index: 1; }
  @media (max-width: 767.98px) {
    #agence-date-exam {
      width: 250px;
      height: 110px;
      left: 55px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #agence-date-exam {
      width: 290px;
      height: 160px;
      left: 245px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #agence-date-exam {
      width: 180px;
      height: 180px;
      left: 305px;
      font-size: large; } }
  @media (min-width: 1200px) {
    #agence-date-exam {
      width: 230px;
      height: 200px;
      left: 360px; } }
  #agence-date-exam div {
    background-color: white;
    width: 100%;
    box-shadow: 0 15px 30px 0 rgba(76, 76, 221, 0.23);
    text-align: left;
    border-radius: 10px; }
    #agence-date-exam div p {
      margin-left: 30px;
      padding-top: 20px;
      padding-bottom: 20px;
      margin-bottom: 0;
      font-size: larger; }

.agence-eleve-satis {
  display: none; }
  @media (min-width: 768px) {
    .agence-eleve-satis {
      display: block; } }
.trottinette-tier-top {
  background-image: url(/img/stych/background/trottinette-stych-tier.png);
  background-repeat: no-repeat; }
  @media (min-width: 992px) {
    .trottinette-tier-top {
      background-position: center bottom;
      background-size: 100% auto; } }
  @media (max-width: 991.98px) {
    .trottinette-tier-top {
      background-position: center bottom;
      background-size: auto 100%; } }
.hide-scroll-bar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }
  .hide-scroll-bar::-webkit-scrollbar {
    display: none; }

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }

/* ----------------------------------------------
 * Generated by Animista on 2021-6-16 15:8:10
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
.anim-delay-300 {
  -webkit-animation-delay: 300ms !important;
  animation-delay: 300ms !important; }

.anim-delay-400 {
  -webkit-animation-delay: 400ms !important;
  animation-delay: 400ms !important; }

.anim-delay-500 {
  -webkit-animation-delay: 500ms !important;
  animation-delay: 500ms !important; }

.anim-delay-600 {
  -webkit-animation-delay: 600ms !important;
  animation-delay: 600ms !important; }

.anim-delay-700 {
  -webkit-animation-delay: 700ms !important;
  animation-delay: 700ms !important; }

.anim-delay-800 {
  -webkit-animation-delay: 800ms !important;
  animation-delay: 800ms !important; }

.anim-delay-900 {
  -webkit-animation-delay: 900ms !important;
  animation-delay: 900ms !important; }

.anim-delay-1000 {
  -webkit-animation-delay: 1000ms !important;
  animation-delay: 1000ms !important; }

.anim-delay-1200 {
  -webkit-animation-delay: 1200ms !important;
  animation-delay: 1200ms !important; }

.anim-delay-1600 {
  -webkit-animation-delay: 1600ms !important;
  animation-delay: 1600ms !important; }

.anim-delay-2000 {
  -webkit-animation-delay: 2000ms !important;
  animation-delay: 2000ms !important; }

.anim-delay-2400 {
  -webkit-animation-delay: 2400ms !important;
  animation-delay: 2400ms !important; }

.anim-delay-2800 {
  -webkit-animation-delay: 2800ms !important;
  animation-delay: 2800ms !important; }

.anim-delay-3200 {
  -webkit-animation-delay: 3200ms !important;
  animation-delay: 3200ms !important; }

.anim-delay-3600 {
  -webkit-animation-delay: 3600ms !important;
  animation-delay: 3600ms !important; }

.anim-delay-4000 {
  -webkit-animation-delay: 4000ms !important;
  animation-delay: 4000ms !important; }

.anim-ease {
  -webkit-animation-timing-function: ease !important;
  animation-timing-function: ease !important; }

@media (prefers-reduced-motion: no-preference) {
  .fade-in-bottom {
    -webkit-animation: 0.6s fade-in-bottom 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running;
    animation: 0.6s fade-in-bottom 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running; }
  .fade-in-right {
    -webkit-animation: 0.6s fade-in-right 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running;
    animation: 0.6s fade-in-right 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running; }
  .fade-in-left {
    -webkit-animation: 0.6s fade-in-left 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running;
    animation: 0.6s fade-in-left 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running; }
  .fade-in-bl {
    -webkit-animation: 0.6s fade-in-bl 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running;
    animation: 0.6s fade-in-bl 400ms cubic-bezier(0.86, 0, 0.07, 1) normal both running; }
  .rotate-in-center {
    -webkit-animation: 0.8s rotate-in-center 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: 0.8s rotate-in-center 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running; }
  .rotate-in-center-delay {
    -webkit-animation: 0.4s rotate-in-center 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running;
    animation: 0.4s rotate-in-center 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running; }
  .rotate-in-center-delay-2 {
    -webkit-animation: 0.6s rotate-in-center 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running;
    animation: 0.6s rotate-in-center 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running; }
  .slide-in-bottom {
    -webkit-animation: 0.5s slide-in-bottom 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running;
    animation: 0.5s slide-in-bottom 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) normal both running; }
  .bounce-top {
    -webkit-animation: 0.9s bounce-top 400ms both;
    animation: 0.9s bounce-top 400ms both; }
  /* animate after scroll only, complete with JS to add .run*/
  .anim-scroll.fade-in-bottom:not(.run), .anim-scroll.fade-in-right:not(.run), .anim-scroll.fade-in-left:not(.run), .anim-scroll.fade-in-bl:not(.run), .anim-scroll.slide-in-bottom:not(.run), .anim-scroll.bounce-top:not(.run), .anim-scroll.rotate-in-center:not(.run), .anim-scroll.rotate-in-center-delay:not(.run), .anim-scroll.rotate-in-center-delay-2:not(.run) {
    animation: none;
    opacity: 0; }
  .anim-scroll.animate-width:not(.run) {
    width: 0% !important; } }

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-bl {
  0% {
    -webkit-transform: translateX(-50px) translateY(50px);
    transform: translateX(-50px) translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    opacity: 1; } }

@keyframes fade-in-bl {
  0% {
    -webkit-transform: translateX(-50px) translateY(50px);
    transform: translateX(-50px) translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1; } }

@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1; } }

.floating-action-button-wrapper {
  padding-bottom: 3rem; }
  @media (max-width: 768px) {
    .floating-action-button-wrapper {
      z-index: 9999;
      padding-bottom: calc(constant(safe-area-inset-bottom, 0) + 30px);
      padding-bottom: calc(env(safe-area-inset-bottom, 0) + 30px);
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding-left: 2.4rem;
      padding-right: 2.4rem; } }
.disponibilites-permis-a-rows .row {
  border-bottom: 1px solid #C7C4BA;
  padding-top: 0.7rem;
  padding-bottom: 0.5rem; }

.number-stych {
  font-size: 2em;
  background-color: #edff00;
  border-radius: 50%;
  width: 5rem;
  padding: 1.8rem;
  text-align: right;
  float: right;
  margin-right: 2rem;
  height: 65px;
  width: 65px;
  text-align: center;
  font-weight: 700; }

.number-stych.second {
  padding: 1rem;
  margin-right: 1rem;
  font-size: 1.2em;
  display: inline-block;
  float: none;
  font-weight: 700; }

.number-stych.mobile {
  padding: 0.7rem;
  float: none;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 700; }

.cpf-working {
  width: 80%;
  max-width: 400px;
  margin-bottom: 2rem; }
  @media (min-width: 992px) {
    .cpf-working {
      float: right;
      width: 40%; } }
@media (max-width: 1199.98px) {
  .title-h2 {
    background-color: #380098;
    color: #fff; } }

.container .notation {
  margin: 0 auto;
  width: 100%;
  height: 16.05vw;
  max-width: 812px;
  max-height: 136px;
  background: white url(/img/stych/homepage/stars-empty.svg) no-repeat scroll;
  background-size: cover; }
  .container .notation .notation-transition {
    width: 100%;
    height: 100%;
    background: transparent url(/img/stych/homepage/stars.svg) no-repeat scroll;
    background-size: cover;
    transform: translateZ(0px);
    transition: width 1.7s ease-out;
    transition-delay: 400ms;
    display: block; }

.offres-home .p-title-vertical-center {
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-around; }

.offres-home .p-price-vertical-center {
  display: flex;
  align-items: center;
  justify-content: center; }

.offres-home .p-price-height {
  height: 6rem; }
  @media (max-width: 767.98px) {
    .offres-home .p-price-height {
      height: 5rem; } }
  .offres-home .p-price-height.l2 {
    height: 9rem !important; }
    @media (max-width: 767.98px) {
      .offres-home .p-price-height.l2 {
        height: 7.5rem !important; } }
    @media (max-width: 575.98px) {
      .offres-home .p-price-height.l2 {
        height: 6.5rem !important; } }
#home h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 50px;
  font-family: 'CircularStd'; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    #home h2 {
      font-size: 5rem; } }
#home h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  font-family: 'CircularStd'; }

#home .btn, #home .msg_container .btn-cta, .msg_container #home .btn-cta, #home .nav-tabs .nav-link, .nav-tabs #home .nav-link {
  font-weight: 700;
  font-family: 'CircularStd';
  font-size: 18px;
  line-height: 24px; }

#home sup {
  font-size: 28px;
  color: #3F528B;
  top: -14px;
  left: 5px; }

#home .section-welcome {
  background-color: #F1F5FF; }
  #home .section-welcome span {
    color: #3366FF; }
  #home .section-welcome h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: 'CircularStd';
    color: #282A32; }
  #home .section-welcome p {
    font-size: 36px;
    color: #3F528B;
    font-weight: 700;
    font-family: 'CircularStd';
    line-height: 42px; }
