/* ==========================================================================
   ETHNOS R239 — 1280x720 UNIQUEMENT
   TCHAT : 4 px avant et après LE trait de séparation.
   ========================================================================== */

/* Audit :
   Les anciennes versions utilisaient des pseudo-éléments ::after dans une grille.
   Le row-gap de la grille s'ajoutait aux marges et faussait la distance réelle.

   R239 supprime totalement ces pseudo-traits au format 1280 et utilise
   UN SEUL border-top sur .salonDeepSearch.
   La géométrie devient déterministe :
   - padding-bottom du bloc Rechercher = 4 px ;
   - border-top = le trait ;
   - padding-top de Recherche approfondie = 4 px.
*/

html[data-ethnos-r234-1280="1"][data-ethnos-ui]
body.isTchatDrawerOpen .salonQuickSearch{
  padding-bottom:4px !important;
  border-bottom:0 !important;
}

html[data-ethnos-r234-1280="1"][data-ethnos-ui]
body.isTchatDrawerOpen .salonQuickSearch::after{
  content:none !important;
  display:none !important;
}

html[data-ethnos-r234-1280="1"][data-ethnos-ui]
body.isTchatDrawerOpen .salonDeepSearch{
  margin-top:0 !important;
  padding-top:4px !important;
  border-top:1px solid rgba(149,205,218,.38) !important;
}

html[data-ethnos-r234-1280="1"][data-ethnos-ui]
body.isTchatDrawerOpen .salonDeepSearch::before,
html[data-ethnos-r234-1280="1"][data-ethnos-ui]
body.isTchatDrawerOpen .salonDeepSearch::after{
  content:none !important;
  display:none !important;
}
