/* ==== [Général] ==== */
.post-thumb {
    display: none;
}

.btnGrown a {
    transition: transform 0.2s ease;
}

.btnGrown a:hover {
    transform: scale(1.05);
}

a.underline:hover {
    text-decoration: underline;
}
/* == == */

/* ==== [Hero-header] ====  */
sr7-txt .colorOrange {
  color: #FF851B;
}
/* == == */

/* ==== [Top bar] Icônes */
.tm-header-top-info li a {
    fill: #FF851B;
}
/* == == */

/* ==== [Accueil] Bloc "Votre premier arrêt..." ==== */

.belaSlider {
    overflow: hidden;
}

.belaSlider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
}

.belaSlider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        to left,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
}
/* == == */

/* ==== [Accueil] Bloc CTA FAQ ==== */
@media screen and (min-width: 573px) and (max-width: 767px) {
    .elementor-element-1db3f2e {
        width: 70%;
    }

    .elementor-1698 .elementor-element.elementor-element-1a3afe9 {
        padding-bottom: 30px;
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media screen and (max-width: 572px) {
    .elementor-1698 .elementor-element.elementor-element-1a3afe9:not(.elementor-motion-effects-element-type-background) {
        background-image: none;
    }

    .elementor-1698 .elementor-element.elementor-element-1a3afe9 {
        padding-bottom: 30px;
        padding-top: 30px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .elementor-1698 .elementor-element.elementor-element-be4bc37 {
    width: 100%;
    }
}
/* == == */

/* ==== [Réglages thème] ==== */
.features-block-style2 .inner-box .icon:after {
    background-color: #f0f0f0 !important;
}
/* == == */

/* ==== [Footer] ==== */
.adevoFooter {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: end;
}

@media screen and (max-width: 767px) {
    .adevoFooter {
    justify-content: center;
    }
}

.belaLogo {
    display: flex;
    align-items: center;
}
/* == == */

/* ==== [Avis & FAQ] ==== */
/* Testimonials */
.testimonial-block-style4 .inner-box:before {
    border-radius: 10px;
}

.author-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-block-style4 .inner-box:before {
    height: 100% !important;
}

.author-image {
    display: none;
}

h4.testimonial-name {
    color: white;
}
/* == == */

/* ==== [Page 404] ==== */
.page-404-main-content a.btn {
    color: white;
    border-radius: 10px;
    font-size: 18px;
}

.page-404-main-content .sub-title {
    font-size: 36px;
    color: #001F3F;
    font-family: 'Work Sans';
    font-weight: 600;
}
/* == == */

/* ==== [Header Mobile] ==== */
.menuzord-responsive .menuzord-menu li .indicator {
    background: #FF851B;
    color: white;
}

@media (max-width: 1024px) {
    .menuzord-responsive .menuzord-menu li .indicator.active {
        color: white;
    }
}
/* == == */

/* ==== [Tarifs] Tableau ==== */
.tarifs-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid #001F3F;
  border-radius: 0 0 10px 10px;
  overflow:hidden;
  font-family:"Work Sans", sans-serif;
}

.tarifs-table th,
.tarifs-table td{
  padding:14px 12px;
  text-align:center;
  vertical-align:middle;
  white-space:nowrap;
  font-size:20px;
  font-weight:500;
  border:0;
}

.tarifs-table tr > * + *{
  border-left:1px solid #001F3F;
}

.tarifs-table th{
  font-size:16px;
  color:#001F3F !important;
}

.tarifs-table td:nth-child(2n){
  color:#FF851B;
}
.tarifs-table td:nth-child(2n+1){
  color:#001F3F;
}

.main-content-area table td, .main-content-area table th, .comment-body .comment-text table td, .comment-body .comment-text table th {
    border-right: 1px solid #001F3F !important;
    border-bottom: none;
    border-top: none;
}

.main-content-area table tr > th:last-child,
.main-content-area table tr > td:last-child,
.comment-body .comment-text table tr > th:last-child,
.comment-body .comment-text table tr > td:last-child{
    border-right: none !important;
}

/* ===== RESPONSIVE : PASSAGE EN VERTICAL À PARTIR DE 1060px ===== */
@media (max-width:1060px){

  .tarifs-table{
    display:block;
    width:100%;
    overflow:visible;
    border-radius: 0 0 10px 10px;
  }

  .tarifs-table tr > * + *{ border-left:0; }
  .tarifs-table td, 
  .tarifs-table th{ border-right:0 !important; }

  /* on masque la ligne desktop */
  .tarifs-table tr:first-child{ display:none; }

  .tarifs-table tbody{ display:block; }

  /* ligne Tarifs transformée en liste */
  .tarifs-table tr:nth-child(2){
    display:block;
    counter-reset:day;
  }

  .tarifs-table tr:nth-child(2) > th{ display:none; }

  /* ===== HEADER MOBILE CENTRÉ ===== */
  .tarifs-table::before{
    content:"Jours / Tarifs";
    display:block;
    text-align:center;
    padding:16px 20px;
    border-bottom:1px solid #001F3F;

    font-size:16px;
    font-weight:700;
    color:#001F3F;
  }

  /* ===== LIGNES ===== */
  .tarifs-table tr:nth-child(2) > td{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:14px 20px;
    border-bottom:1px solid #001F3F;
    white-space:nowrap;
    counter-increment:day;
  }

  .tarifs-table tr:nth-child(2) > td:last-child{
    border-bottom:none;
  }

  /* colonne JOURS */
  .tarifs-table tr:nth-child(2) > td::before{
    content:counter(day);
    font-weight:500;
    text-align:center;
  }

  /* colonne TARIFS */
  .tarifs-table tr:nth-child(2) > td{
    font-size:18px;
  }

  @media (max-width:1060px){
    .main-content-area table td,
    .main-content-area table th,
    .comment-body .comment-text table td,
    .comment-body .comment-text table th {
        border-right: none !important;
    }

  }
}

/* ----------- */
/* Correction bug footer non-admin */
.footer nav.hfe-nav-menu__layout-vertical {
    width: 100% !important;
}