/* =====================================================
   MENU MOBILE / OFFCANVAS
   ===================================================== */

.offcanvas-active .burger-icon > span,
#modal-menu-toggler.active .burger-icon > span {
  background-color: red;
}

/* Ouvre les sous-menus uniquement dans le menu mobile/offcanvas */
.offcanvas-menu .menu-parent .menu-child {
  display: block !important;
}

/* Masque les toggles uniquement dans le menu mobile/offcanvas */
.offcanvas-menu .menu-parent .menu-toggler {
  display: none !important;
}

.offcanvas-menu {
  overflow: scroll;
}

.offcanvas-menu .offcanvas-inner ul.menu > li li a {
  color: #0345bf;
}

.offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a > .menu-toggler,
.offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > .menu-separator > .menu-toggler {
  color: black;
}


/* =====================================================
   MENU PRINCIPAL DESKTOP - FLECHES PROPRES
   ===================================================== */

/* Masque les carrés / icônes défectueuses dans les liens */
.sp-megamenu-parent > li > a .menu-toggler,
.sp-megamenu-parent > li > a i,
.sp-megamenu-parent > li > a .fa,
.sp-megamenu-parent > li > a .fas,
.sp-megamenu-parent > li > a .far {
  display: none !important;
}

/* Sécurise l'alignement des liens du menu */
.sp-megamenu-parent > li > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
}

/* Neutralise les pseudo-éléments existants */
.sp-megamenu-parent > li > a::before {
  content: none !important;
  display: none !important;
}

/* Ajoute une vraie flèche uniquement aux liens ayant un sous-menu */
.sp-megamenu-parent > li:has(> .sp-dropdown) > a::after {
  content: "▾" !important;
  display: inline-block !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin-left: 7px !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  font-family: Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #004665 !important;
  vertical-align: middle !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Survol */
.sp-megamenu-parent > li:has(> .sp-dropdown):hover > a::after {
  color: #00617f !important;
}


/* =====================================================
   MODULE DE RECHERCHE - FICHES CONSEILS
   ===================================================== */

.fiche-search-box {
  max-width: 980px;
  margin: 30px auto 40px auto;
  padding: 28px 32px;
  background: #f4f9fb;
  border: 1px solid #d7e6eb;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 70, 101, 0.08);
}

.fiche-search-box form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fiche-search-box label {
  font-weight: 700;
  color: #004665;
  margin-right: 12px;
}

.fiche-search-box input[type="text"],
.fiche-search-box input[type="search"] {
  flex: 1 1 360px;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid #c7dce3;
  padding: 10px 14px;
  font-size: 16px;
}

.fiche-search-box .btn,
.fiche-search-box button {
  min-height: 46px;
  border-radius: 10px;
  background: #004665;
  border-color: #004665;
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  white-space: nowrap;
}

.fiche-search-box .btn:hover,
.fiche-search-box button:hover {
  background: #00617f;
  border-color: #00617f;
}


/* =====================================================
   ARTICLE - FICHE CONSEIL
   ===================================================== */

/* Réduit l'espace entre le menu et le contenu */
.view-article #sp-main-body,
.com-content.view-article #sp-main-body {
  padding-top: 20px !important;
}

/* Réduit l'espace au-dessus de l'article */
.view-article .article-details,
.com-content.view-article .article-details,
.item-page {
  padding-top: 0 !important;
}

/* Titre de la fiche */
.view-article .article-details h1,
.view-article .article-header h1,
.com-content-article h1,
.item-page h1 {
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 30px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: #004665 !important;
  max-width: 1240px;
  margin: 10px auto 20px auto !important;
  padding: 0 40px !important;
}

/* Conteneur global de la fiche */
.tco-fiche-page {
  max-width: 1240px;
  margin: 10px auto 50px auto !important;
  padding: 0 40px;
}

/* Encadrement de l'image */
.tco-fiche-visuel {
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 70, 101, 0.16);
  border: 1px solid rgba(0, 70, 101, 0.12);
}

.tco-fiche-visuel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Bouton téléchargement */
.tco-fiche-actions {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 30px;
}

.tco-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #004665;
  color: #ffffff !important;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 14px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 70, 101, 0.22);
  transition: all 0.2s ease-in-out;
}

/* Icône uniquement : le texte "Télécharger la fiche" doit être dans le HTML */
.tco-download-btn::before {
  content: "⬇" !important;
  font-size: 18px !important;
  display: inline-block !important;
}

/* Sécurité : empêche un second texte généré après le bouton */
.tco-download-btn::after {
  content: none !important;
  display: none !important;
}

.tco-download-btn:hover {
  background: #00617f;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 70, 101, 0.28);
}

/* Texte caché pour l'indexation Smart Search */
.tco-fiche-indexation,
.tco-fiche-keywords {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* =====================================================
   PAGE RESULTATS - RECHERCHE FICHES CONSEILS
   ===================================================== */

.com-finder.view-search #sp-main-body {
  padding-top: 24px !important;
  padding-bottom: 70px !important;
}

.com-finder.view-search #sp-component {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
}

/* Titre de page */
.com-finder.view-search .page-header h1,
.com-finder.view-search h1 {
  font-family: 'Lato', Arial, sans-serif !important;
  color: #004665 !important;
  font-size: 32px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  margin: 0 0 24px 0 !important;
}

/* Bloc formulaire */
.com-finder.view-search form {
  background: #f4f9fb;
  border: 1px solid #d7e6eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 70, 101, 0.08);
  margin-bottom: 28px;
}

/* Label */
.com-finder.view-search label {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  color: #004665;
  font-size: 17px;
  margin-bottom: 10px;
}

/* Champ de recherche */
.com-finder.view-search input[type="text"],
.com-finder.view-search input[type="search"] {
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid #c7dce3;
  padding: 10px 16px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  box-shadow: none;
}

/* Boutons */
.com-finder.view-search .btn,
.com-finder.view-search button {
  min-height: 50px;
  border-radius: 10px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 24px;
}

/* Bouton Rechercher */
.com-finder.view-search .btn-primary,
.com-finder.view-search button.btn-primary {
  background: #004665;
  border-color: #004665;
  color: #ffffff;
}

.com-finder.view-search .btn-primary:hover,
.com-finder.view-search button.btn-primary:hover {
  background: #00617f;
  border-color: #00617f;
}

/* Masque le bouton Recherche avancée */
.com-finder.view-search .btn-secondary,
.com-finder.view-search button.btn-secondary,
.com-finder.view-search a.btn-secondary {
  display: none !important;
}

/* Message de résultat */
.com-finder.view-search p {
  font-family: 'Lato', Arial, sans-serif;
  color: #333;
  font-size: 16px;
}

/* Liste des résultats */
.com-finder.view-search .search-results,
.com-finder.view-search ol.search-results,
.com-finder.view-search ul.search-results {
  margin-top: 28px;
  padding-left: 0 !important;
}

/* Carte résultat */
.com-finder.view-search .result,
.com-finder.view-search li.result,
.com-finder.view-search .search-results li {
  list-style: none !important;
  background: #ffffff;
  border: 1px solid #d8e6eb;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 70, 101, 0.08);
}

/* Titre résultat */
.com-finder.view-search .result-title,
.com-finder.view-search .result-title a,
.com-finder.view-search h3,
.com-finder.view-search h3 a {
  font-family: 'Lato', Arial, sans-serif !important;
  color: #004665 !important;
  font-size: 24px !important;
  line-height: 1.28 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.com-finder.view-search .result-title a:hover,
.com-finder.view-search h3 a:hover {
  color: #00617f !important;
  text-decoration: underline !important;
}

/* Extrait */
.com-finder.view-search .result-text,
.com-finder.view-search .result__description,
.com-finder.view-search .search-results p {
  font-family: 'Lato', Arial, sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.55;
}

/* Surlignage */
.com-finder.view-search .highlight {
  background: #fff3a3;
  color: #004665;
  font-weight: 700;
  padding: 0 3px;
  border-radius: 3px;
}

/* Pagination / compteur */
.com-finder.view-search .counter,
.com-finder.view-search .pagination {
  font-family: 'Lato', Arial, sans-serif;
  margin-top: 26px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .fiche-search-box {
    margin: 20px 16px 30px 16px;
    padding: 22px 20px;
  }

  .fiche-search-box form {
    display: block;
  }

  .fiche-search-box input[type="text"],
  .fiche-search-box input[type="search"] {
    width: 100%;
    margin-bottom: 12px;
  }

  .fiche-search-box .btn,
  .fiche-search-box button {
    width: 100%;
  }

  .view-article .article-details h1,
  .view-article .article-header h1,
  .com-content-article h1,
  .item-page h1 {
    font-size: 24px !important;
    padding: 0 16px !important;
    margin: 8px auto 16px auto !important;
  }

  .tco-fiche-page {
    padding: 0 16px;
    margin: 8px auto 40px auto !important;
  }

  .tco-fiche-visuel {
    padding: 8px;
    border-radius: 12px;
  }

  .tco-fiche-visuel img {
    border-radius: 8px;
  }

  .tco-download-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
  }

  .com-finder.view-search #sp-component {
    padding: 0 16px;
  }

  .com-finder.view-search form {
    padding: 20px 18px;
  }

  .com-finder.view-search input[type="text"],
  .com-finder.view-search input[type="search"],
  .com-finder.view-search .btn,
  .com-finder.view-search button {
    width: 100%;
    margin-bottom: 10px;
  }

  .com-finder.view-search .result,
  .com-finder.view-search li.result,
  .com-finder.view-search .search-results li {
    padding: 20px 18px;
  }

  .com-finder.view-search .result-title,
  .com-finder.view-search .result-title a,
  .com-finder.view-search h3,
  .com-finder.view-search h3 a {
    font-size: 21px !important;
  }
}
/* =====================================================
   CORRECTION DEFINITIVE BOUTON TELECHARGEMENT
   ===================================================== */

/* On masque tout texte écrit dans le HTML du lien */
.tco-download-btn {
  font-size: 0 !important;
}

/* On affiche une seule fois le texte du bouton via le CSS */
.tco-download-btn::before {
  content: "⬇ Télécharger la fiche" !important;
  font-size: 17px !important;
  line-height: 1 !important;
  display: inline-block !important;
}

/* Sécurité : aucun texte après */
.tco-download-btn::after {
  content: none !important;
  display: none !important;
}

/* =====================================================
   MODULE RECHERCHE UNE FICHE CONSEIL - DESIGN RESULTATS
   CSS-MODULE-RECHERCHE-FIN
   ===================================================== */

#mod-finder-searchform236 {
  max-width: 1180px !important;
  margin: 32px auto 42px auto !important;
  padding: 32px 36px !important;
  background: #f4f9fb !important;
  border: 1px solid #d7e6eb !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 70, 101, 0.08) !important;
  font-family: 'Lato', Arial, sans-serif !important;
}

/* Libellé identique au bloc de résultat */
#mod-finder-searchform236 label {
  display: block !important;
  width: 100% !important;
  margin: 0 0 18px 0 !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: #004665 !important;
}

/* Ligne champ + bouton */
#mod-finder-searchform236 .finder,
#mod-finder-searchform236 .form-inline,
#mod-finder-searchform236 .input-group {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 0 !important;
}

/* Champ */
#mod-finder-searchword236,
#mod-finder-searchform236 input[type="text"],
#mod-finder-searchform236 input[type="search"] {
  flex: 1 1 auto !important;
  width: auto !important;
  min-height: 56px !important;
  margin: 0 !important;
  border: 1px solid #c7dce3 !important;
  border-right: 0 !important;
  border-radius: 12px 0 0 12px !important;
  padding: 12px 18px !important;
  background: #ffffff !important;
  color: #333333 !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
}

/* Bouton */
#mod-finder-searchform236 button,
#mod-finder-searchform236 .btn,
#mod-finder-searchform236 input[type="submit"] {
  min-height: 56px !important;
  margin: 0 !important;
  border: 1px solid #004665 !important;
  border-radius: 0 12px 12px 0 !important;
  background: #004665 !important;
  color: #ffffff !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 12px 34px !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

#mod-finder-searchform236 button:hover,
#mod-finder-searchform236 .btn:hover,
#mod-finder-searchform236 input[type="submit"]:hover {
  background: #00617f !important;
  border-color: #00617f !important;
  color: #ffffff !important;
}

/* Correction si Bootstrap force un retour ligne */
#mod-finder-searchform236 br {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  #mod-finder-searchform236 {
    margin: 24px 16px 34px 16px !important;
    padding: 22px 20px !important;
  }

  #mod-finder-searchform236 label {
    font-size: 20px !important;
    margin-bottom: 14px !important;
  }

  #mod-finder-searchform236 .finder,
  #mod-finder-searchform236 .form-inline,
  #mod-finder-searchform236 .input-group {
    display: block !important;
  }

  #mod-finder-searchword236,
  #mod-finder-searchform236 input[type="text"],
  #mod-finder-searchform236 input[type="search"] {
    width: 100% !important;
    border-right: 1px solid #c7dce3 !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
  }

  #mod-finder-searchform236 button,
  #mod-finder-searchform236 .btn,
  #mod-finder-searchform236 input[type="submit"] {
    width: 100% !important;
    border-radius: 12px !important;
  }
}


/* =====================================================
   CORRECTION ALIGNEMENT MODULE RECHERCHE FICHE - 236
   ===================================================== */

/* Même largeur visuelle que le bloc de résultats */
#mod-finder-searchform236 {
  width: calc(100% - 36px) !important;
  max-width: none !important;
  margin: 32px 18px 42px 18px !important;
  padding: 32px 44px !important;
  box-sizing: border-box !important;
}

/* Force la ligne champ + bouton à rester sur une seule ligne */
#mod-finder-searchform236 {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-end !important;
}

/* Le libellé reste au-dessus */
#mod-finder-searchform236 label {
  flex: 0 0 100% !important;
  width: 100% !important;
}

/* Neutralise les wrappers éventuels du module */
#mod-finder-searchform236 .finder,
#mod-finder-searchform236 .form-inline,
#mod-finder-searchform236 .input-group,
#mod-finder-searchform236 .control-group,
#mod-finder-searchform236 .controls {
  display: flex !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  align-items: stretch !important;
  gap: 0 !important;
}

/* Champ beaucoup plus long */
#mod-finder-searchword236,
#mod-finder-searchform236 input[type="text"],
#mod-finder-searchform236 input[type="search"] {
  flex: 1 1 auto !important;
  width: calc(100% - 250px) !important;
  max-width: none !important;
  min-height: 56px !important;
  border-radius: 12px 0 0 12px !important;
  border-right: 0 !important;
}

/* Bouton plus court, positionné à droite */
#mod-finder-searchform236 button,
#mod-finder-searchform236 .btn,
#mod-finder-searchform236 input[type="submit"] {
  flex: 0 0 250px !important;
  width: 250px !important;
  max-width: 250px !important;
  min-height: 56px !important;
  border-radius: 0 12px 12px 0 !important;
  text-align: center !important;
  justify-content: center !important;
}

/* Évite que Bootstrap ou SP Page Builder force un bouton pleine largeur */
#mod-finder-searchform236 .btn-block,
#mod-finder-searchform236 button.btn-block {
  display: inline-flex !important;
  width: 250px !important;
}

/* Mobile : retour propre en colonne */
@media (max-width: 768px) {
  #mod-finder-searchform236 {
    width: auto !important;
    margin: 24px 16px 34px 16px !important;
    padding: 22px 20px !important;
    display: block !important;
  }

  #mod-finder-searchform236 .finder,
  #mod-finder-searchform236 .form-inline,
  #mod-finder-searchform236 .input-group,
  #mod-finder-searchform236 .control-group,
  #mod-finder-searchform236 .controls {
    display: block !important;
  }

  #mod-finder-searchword236,
  #mod-finder-searchform236 input[type="text"],
  #mod-finder-searchform236 input[type="search"] {
    width: 100% !important;
    max-width: none !important;
    border-right: 1px solid #c7dce3 !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
  }

  #mod-finder-searchform236 button,
  #mod-finder-searchform236 .btn,
  #mod-finder-searchform236 input[type="submit"],
  #mod-finder-searchform236 .btn-block,
  #mod-finder-searchform236 button.btn-block {
    width: 100% !important;
    max-width: none !important;
    border-radius: 12px !important;
  }
}


/* =====================================================
   CORRECTION FINALE DESIGN MODULE RECHERCHE FICHE - 236
   ===================================================== */

/* Champ + bouton séparés avec 4 coins arrondis */
#mod-finder-searchform236 .finder,
#mod-finder-searchform236 .form-inline,
#mod-finder-searchform236 .input-group,
#mod-finder-searchform236 .control-group,
#mod-finder-searchform236 .controls {
  display: flex !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
}

/* Champ de saisie : 4 coins arrondis + police plus grande */
#mod-finder-searchword236,
#mod-finder-searchform236 input[type="text"],
#mod-finder-searchform236 input[type="search"] {
  flex: 1 1 auto !important;
  width: auto !important;
  min-height: 58px !important;
  border: 1px solid #c7dce3 !important;
  border-radius: 12px !important;
  padding: 13px 20px !important;
  font-size: 19px !important;
  line-height: 1.45 !important;
}

/* Bouton : plus court, 4 coins arrondis, police plus grande */
#mod-finder-searchform236 button,
#mod-finder-searchform236 .btn,
#mod-finder-searchform236 input[type="submit"],
#mod-finder-searchform236 .btn-block,
#mod-finder-searchform236 button.btn-block {
  flex: 0 0 220px !important;
  width: 220px !important;
  max-width: 220px !important;
  min-height: 58px !important;
  border-radius: 12px !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  padding: 13px 26px !important;
  text-align: center !important;
}

/* Mobile : champ et bouton pleine largeur */
@media (max-width: 768px) {
  #mod-finder-searchform236 .finder,
  #mod-finder-searchform236 .form-inline,
  #mod-finder-searchform236 .input-group,
  #mod-finder-searchform236 .control-group,
  #mod-finder-searchform236 .controls {
    display: block !important;
  }

  #mod-finder-searchword236,
  #mod-finder-searchform236 input[type="text"],
  #mod-finder-searchform236 input[type="search"],
  #mod-finder-searchform236 button,
  #mod-finder-searchform236 .btn,
  #mod-finder-searchform236 input[type="submit"],
  #mod-finder-searchform236 .btn-block,
  #mod-finder-searchform236 button.btn-block {
    width: 100% !important;
    max-width: none !important;
    border-radius: 12px !important;
  }

  #mod-finder-searchword236,
  #mod-finder-searchform236 input[type="text"],
  #mod-finder-searchform236 input[type="search"] {
    margin-bottom: 12px !important;
  }
}


/* =====================================================
   REDUCTION FINALE MODULE RECHERCHE FICHE - 236
   ===================================================== */

/* Bloc global plus compact, proche de la page résultat */
#mod-finder-searchform236 {
  width: calc(100% - 72px) !important;
  max-width: none !important;
  margin: 28px 36px 36px 36px !important;
  padding: 26px 30px !important;
  background: #f4f9fb !important;
  border: 1px solid #d7e6eb !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 70, 101, 0.08) !important;
  box-sizing: border-box !important;
}

/* Titre du champ : taille raisonnable */
#mod-finder-searchform236 label {
  font-size: 20px !important;
  line-height: 1.25 !important;
  margin: 0 0 14px 0 !important;
  color: #004665 !important;
  font-weight: 700 !important;
}

/* Ligne champ + bouton */
#mod-finder-searchform236 .finder,
#mod-finder-searchform236 .form-inline,
#mod-finder-searchform236 .input-group,
#mod-finder-searchform236 .control-group,
#mod-finder-searchform236 .controls {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 8px !important;
}

/* Champ plus long, hauteur réduite */
#mod-finder-searchword236,
#mod-finder-searchform236 input[type="text"],
#mod-finder-searchform236 input[type="search"] {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-height: 48px !important;
  height: 48px !important;
  border: 1px solid #c7dce3 !important;
  border-radius: 10px !important;
  padding: 8px 14px !important;
  font-size: 17px !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
}

/* Bouton plus court et moins haut */
#mod-finder-searchform236 button,
#mod-finder-searchform236 .btn,
#mod-finder-searchform236 input[type="submit"],
#mod-finder-searchform236 .btn-block,
#mod-finder-searchform236 button.btn-block {
  flex: 0 0 190px !important;
  width: 190px !important;
  max-width: 190px !important;
  min-height: 48px !important;
  height: 48px !important;
  border-radius: 10px !important;
  padding: 8px 20px !important;
  font-size: 17px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  background: #004665 !important;
  border-color: #004665 !important;
  color: #ffffff !important;
  text-align: center !important;
}

/* Mobile */
@media (max-width: 768px) {
  #mod-finder-searchform236 {
    width: auto !important;
    margin: 22px 16px 30px 16px !important;
    padding: 22px 20px !important;
  }

  #mod-finder-searchform236 .finder,
  #mod-finder-searchform236 .form-inline,
  #mod-finder-searchform236 .input-group,
  #mod-finder-searchform236 .control-group,
  #mod-finder-searchform236 .controls {
    display: block !important;
  }

  #mod-finder-searchword236,
  #mod-finder-searchform236 input[type="text"],
  #mod-finder-searchform236 input[type="search"],
  #mod-finder-searchform236 button,
  #mod-finder-searchform236 .btn,
  #mod-finder-searchform236 input[type="submit"],
  #mod-finder-searchform236 .btn-block,
  #mod-finder-searchform236 button.btn-block {
    width: 100% !important;
    max-width: none !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 10px !important;
  }

  #mod-finder-searchword236,
  #mod-finder-searchform236 input[type="text"],
  #mod-finder-searchform236 input[type="search"] {
    margin-bottom: 10px !important;
  }
}

