.video-whatsapp-thumb .chat-photo { width: 100%; height: auto; display: block; }

/* Rond vidéo centré */
.video-whatsapp-center-round{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:40px; height:auto; pointer-events:none; user-select:none;
}

/* Bandeau bas-gauche (badge PNG + durée) */
.video-whatsapp-bottom-left{
  position:absolute; left:6px; bottom:6px;
  display:flex; align-items:center; gap:4px;
}

/* Badge fixe : whatsapp-new/images/video-badge-android.png */
.video-whatsapp-badge{
  width:11px; height:auto; object-fit:contain; pointer-events:none; user-select:none;
}

/* Durée beige 10px */
.video-whatsapp-duration{
  font-size:12px; line-height:1; color:#fff; font-weight:600;
}

/* UI des contrôles */
.video-whatsapp-controls{ margin-top:8px; }
.video-whatsapp-check{ display:inline-flex; align-items:center; gap:6px; cursor:pointer; font-weight: 600;}
.video-whatsapp-extra{ margin-top:6px; }
.video-whatsapp-duration-input{ width:72px; padding:4px 6px; font-size:12px; }

/* === Overrides pour battre .whatsapp-text span global === */
.whatsapp-text .video-whatsapp-bottom-left .video-whatsapp-duration{
  height:auto;
  color:#fff !important;
  font-weight: 700;
}

/* Optionnel : verrouillage du conteneur */
.whatsapp-text .video-whatsapp-bottom-left{
  display:inline-flex; align-items:center; gap:4px;
}

.whatsapp-text a {
  text-decoration: underline !important; /* plus spécifique + !important */
  color: #2aba58;                         /* vert foncé (facultatif) */
  text-underline-offset: 2px;
}

.whatsapp-text a:hover,
.whatsapp-text a:focus {
  text-decoration: underline !important;  /* garder le soulignement */
}


@font-face{font-family:"SamsungOne";src:url("../SamsungOne-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:"SamsungOne";src:url("../SamsungOne-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:"SamsungSharpSans";src:url("../SamsungSharpSans-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap;}

:root{--ui-font:inherit;}
html.ui-font-on, body.ui-font-on, #download.ui-font-on, .modal.ui-font-on, .whatsapp.ui-font-on, .right-part.ui-font-on, .left-part.ui-font-on{font-family:var(--ui-font)!important;}
.ui-font-on *, .ui-font-on *::before, .ui-font-on *::after{font-family:inherit!important;}


/* Conteneur de l’avatar Android */
.avatar-wrap{
  position: relative;         /* indispensable pour ancrer le badge */
  display: inline-block;      /* colle à la taille de l’avatar */
}

/* Avatar (garde ton z-index:1 si tu veux) */
.modal-title-img img{
  position: relative;
  z-index: 1;
}

/* Badge éphémère au-dessus de l’avatar */
.avatar-wrap .ephemere-badge{
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  display: none;              /* caché par défaut */
  align-items: center;
  justify-content: center;
  z-index: 10;                /* > img */
  pointer-events: none;
}

/* état visible quand activé */
.avatar-wrap.show-ephemere .ephemere-badge{
  display: flex;
}


.hidden {
  display: none;
}


:root{
  --chat-photo-max: 200px;  /* valeur par défaut */
}

/* Toutes les photos de la conv utilisent la variable */
.chat-photo{
  max-width: var(--chat-photo-max) !important;
  height: auto;
  display: block;
  border-radius: 9px; /* tu l’avais inline, je le normalise ici */
}

/* Désactiver la contrainte 80% UNIQUEMENT pour les messages-photos envoyés */
.whatsapp-sent.is-photo{
  max-width: none !important;   /* enlève la limite 80% */
}

/* Conteneur de cartouche d’appel à l’intérieur de la bulle */
.whatsapp-text.call-vocal {
    padding: 3px !important;
    background: #fff !important;
    position: relative;
}

/* Cartouche */
.call-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 50px 10px 10px;
    position: relative;
    z-index: 2;
}

.call-card--p1 {
    background: #f6f5f3;
}

/* marron clair reçu */
.call-card--p2 {
    background: #d5f3cf;
}

/* vert foncé envoyé */
.call-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff96;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
}

.call-card__icon img {
    width: 36px;
    height: auto;
    display: block;
}

.call-card__text {
    line-height: 1.2;
}

.call-card__title {
    font-weight: 600;
    font-size: 14px;
    color: #111;
    margin: 0 0 2px 0;
}

.call-card__subtitle {
    font-size: 13px;
    color: #616161;
}

.call-card__time {
    position: absolute;
    font-weight: 500;
    right: 10px;
    bottom: 3px;
    font-size: 11px;
    color: rgba(0, 0, 0, .55);
}

/* panneau UI */
.call-panel .call-panel-body {
    border: 1px dashed #ddd;
    padding: 10px;
    border-radius: 6px;
    background: #fafafa;
}

/* conteneur de positionnement */
.profile-circle-wrap {
    position: relative;
    display: inline-block;
}



.ephemere-badge img {
    width: 13px;
    height: auto;
    display: block;
}

/* état visible quand coché (via classe JS) */
.profile-circle-wrap.show-ephemere .ephemere-badge {
    display: flex;
}


.profile-icon-svg path {
    fill: currentColor;
}

/* Conteneur rond blanc */
.profile-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* SVG centré à l’intérieur */
.profile-icon-container {
    width: 12px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon-svg {
    width: 24px;
    height: auto;
    color: #ff0000;
    /* la couleur du SVG vient d’ici */
}


/* Blue */
.profile-color-blue {
    background-color: #b3e0ff;
}

.profile-svg-blue {
    color: #007acc;
}

/* Red */
.profile-color-red {
    background-color: #ffb3b3;
}

.profile-svg-red {
    color: #ff3333;
}

/* Green */
.profile-color-green {
    background-color: #c6ffc1;
}

.profile-svg-green {
    color: #339900;
}

/* Orange */
.profile-color-orange {
    background-color: #ffddb3;
}

.profile-svg-orange {
    color: #ff9900;
}

/* Purple */
.profile-color-purple {
    background-color: #e0b3ff;
}

.profile-svg-purple {
    color: #8a00cc;
}

/* Pink */
.profile-color-pink {
    background-color: #ffd6e0;
}

.profile-svg-pink {
    color: #ff3370;
}

/* Teal */
.profile-color-teal {
    background-color: #b3ffd9;
}

.profile-svg-teal {
    color: #00b377;
}

/* Yellow */
.profile-color-yellow {
    background-color: #ffffb3;
}

.profile-svg-yellow {
    color: #cccc00;
}

/* Brown (choix harmonisé, la palette aléatoire n’en fournit pas) */
.profile-color-brown {
    background-color: #e6d3c1;
}

.profile-svg-brown {
    color: #8b5a2b;
}

/* Grey */
.profile-color-grey {
    background-color: #d9d9d9;
}

.profile-svg-grey {
    color: #666666;
}


/* ========== BASE (caché par défaut) ========== */
#fixedRoundedButton,
#fixedRoundedButtonAlt {
    position: absolute;
    display: none;
    /* JS affiche selon toggle + modèle */
    z-index: 1000;
}

/* ===================== MODÈLE 1 ===================== */
/* iPhone */
#fixedRoundedButton.m1-iphone {
    bottom: 90px;
    right: -1px;
    width: 46px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    border: 1px solid #00000021;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
}

#fixedRoundedButton.m1-iphone img {
    width: 18px;
    height: auto;
}

#fixedRoundedButton.m1-iphone.kb-up {
    bottom: 380px;
}

/* clavier iOS levé */

/* Android */
#fixedRoundedButton.m1-android {
    bottom: 80px;
    right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafaf8;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    border: 0;
}

#fixedRoundedButton.m1-android img {
    width: 12px;
    height: auto;
}

#fixedRoundedButton.m1-android.footer-up {
    bottom: 120px;
}

/* si footer Android visible */

/* ===================== MODÈLE 2 ===================== */
/* iPhone (rond blanc) */
#fixedRoundedButtonAlt.m2-iphone {
    bottom: 90px;
    right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

#fixedRoundedButtonAlt.m2-iphone img {
    width: 14px;
    height: auto;
}

#fixedRoundedButtonAlt.m2-iphone.kb-up {
    bottom: 380px;
}

/* clavier iOS */

/* Android (rond blanc, légèrement plus compact) */
#fixedRoundedButtonAlt.m2-android {
    bottom: 80px;
    right: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .14);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

#fixedRoundedButtonAlt.m2-android img {
    width: 14px;
    height: auto;
}

#fixedRoundedButtonAlt.m2-android.footer-up {
    bottom: 120px;
}

/* footer Android */



/* iPhone + clavier activé (remonte le bouton comme pour ton modèle 1) */
#fixedRoundedButtonAlt.iphone-keyboard-up {
    bottom: 380px;
}

/* Android position (aligne avec ton modèle 1 Android) */
#fixedRoundedButtonAlt.android-pos {
    bottom: 80px;
    right: 10px;
}


/* mini UI pour la palette */
.bubble-swatch-group {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.bubble-swatch {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.bubble-swatch input {
    margin: 0;
}

.bubble-swatch .swatch {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .15);
    display: inline-block;
}

@font-face {
    font-family: 'SFProDisplay';
    font-weight: 400;
    /* Regular */
    src: url('/SFPRODISPLAYREGULAR.OTF') format('opentype');
}

@font-face {
    font-family: 'SFProDisplay';
    font-weight: 500;
    /* Medium */
    src: url('/SFPRODISPLAYMEDIUM.OTF') format('opentype');
}

@font-face {
    font-family: 'SFProDisplay';
    font-weight: 700;
    /* Bold */
    src: url('/SFPRODISPLAYBOLD.OTF') format('opentype');
}

.iphone-regular {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin-top: 1px;
}

.iphone-medium {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: -1px;
}

.iphone-bold {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 700;
}

.footer-clavier-container {
    display: none;
    /* Initialement caché */
}

.footer-clavier-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    padding: 15px 0px 0px 0px;
}

.footer-clavier-words {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-clavier-word {
    flex: 1;
    text-align: center;
    font-size: 15px;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-clavier-bar {
    width: 1px;
    background-color: #bcbfc6;
    height: 20px;
    margin: auto 0;
}

.footer-clavier-image {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-clavier-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}




.gold-payment-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.gold-payment-section p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
}

.subscription-message {
    margin-bottom: 15px;
    color: #555;
    display: none;
    /* Initially hidden */
}

/* Styles pour la Section Subscription */
.subscription-section {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.subscription-section h3 {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}



#subscription-code-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


#subscription-message {
    margin-top: 10px;
    display: none;
}




/* Styles pour l'icône d'information */
.info-icon2 {
    color: red;
    cursor: pointer;
    margin-left: 5px;
    font-size: 18px;
}



.gold-info-icon {
    position: absolute;
    right: 40px;
    /* Positionner à droite */
    width: 20px;
    height: 20px;
    border: 2px solid red;
    border-radius: 50%;
    color: red;
    text-align: center;
    line-height: 17px;
    font-weight: bold;
    cursor: pointer;
}

#gold-info-box {
    display: none;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

.slider {
    width: 80%;
    margin: 20px auto;
}

.slick-slide {
    margin: 0 15px;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-slide h3 {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.slick-slide a {
    display: block;
    text-align: center;
    color: blue;
    margin-top: 5px;
}

.design-box {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
    /* Centrage horizontal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    /* Largeur maximale du bloc */
    width: 100%;
    /* Adapter la largeur à l'écran */
}

.design-box h2 {
    margin-bottom: 8px;
    text-align: center;
    /* Centrer le texte du titre */
}

.design-box h3 {
    text-align: center;
    /* Centrer le texte du sous-titre */
}

.design-box p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    /* Justifier le texte des paragraphes */
}


.custom-msg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* Nécessaire pour que le texte utilise ce conteneur comme référence */
    overflow: visible;
    /* Permet de laisser le texte dépasser */
}




.header-android-status-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align content to the left */
    gap: 5px;
    /* Space between left text and time */
    font-size: 17px;
    color: #474747;
}

.header-android-leftTextDisplay {
    color: #474747;
    white-space: nowrap;
    /* Prevents text from wrapping */
    margin-left: 15px;
    font-size: 14px;
    margin-bottom: 3px;
}

.header-android-status-time {
    font-weight: 500;
    color: #474747;
}

.status-time {
    font-weight: 500;
    color: #474747;
    font-size: 16px;
}

.android-header .status-bar-android {
    background-color: #fff;
    padding-right: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-time {
    font-size: 17px;
    font-weight: 500;
    color: #474747;
    margin-left: 12px !important;
}



.battery-display {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espace entre le pourcentage et l'icône */
}

.battery-percentage {
    font-size: 17px;
    font-weight: normal;
    color: #474747;
    text-align: center;
    margin: 0px -2px 0px 4px;
}

.battery-icon {
    width: 10px;
    height: auto;
}

/* Container de la batterie */
.battery-container {
    display: flex !important;
    align-items: baseline;
}

.custom-battery-text {
    font-size: 21px;
    color: #474747;
}

.battery-container img {
    margin-left: 4px;
    vertical-align: middle;
}

#wifiIcon {
    width: 18px;
    /* Taille personnalisée pour l'icône Wi-Fi */
    height: auto;
    /* Conserver les proportions */
}




/* Styles pour l'en-tête iPhone */
.iphone-header-top-container {
    font-family: "SF Pro Display", sans-serif;
    background: #f6f5f1;
    color: #000;
    padding: 6px 8px;
    text-align: center;
    font-size: 13px;
    height: 35px;
}

.iphone-header-top-container img#iphone-header-top-image {
    margin-left: 3px;
}

.iphone-header-top-container .iphone-header-top-bold {
    font-size: 12px;
    position: relative;
    top: 1px;
}

.iphone-header-top-container .iphone-header-top-time {
    font-size: 14px;
}

.iphone-header-top-container .iphone-header-top-network span {
    padding-left: 22px;
}

.iphone-header-top-container .iphone-header-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px 9px 0px 4px;
}

.iphone-header-top-container .iphone-header-top-battery {
    display: flex;
    align-items: center;
    gap: 4px;
}




.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icon Styles */
.iphone-header-signal-icon {
    width: 16px;
}

.iphone-header-wifi-icon {
    width: 14px;
    margin-bottom: 1px;
}

.iphone-header-airplane-icon {
    width: 14px;
}

.iphone-header-battery-icon {
    width: 22px;
}

.iphone-header-options {
    margin-bottom: 10px;
}

.iphone-header-top-container {
    display: flex;
    flex-direction: column;
}

.iphone-header-top-network {
    display: flex;
    align-items: center;
}


#iphone-header-top-selected-icon {
    margin-left: 5px;
}




#signal-slider-container,
#network-slider-container,
#wifi-checkbox-container {
    margin-top: 15px;
}

#signal-slider,
#network-slider {
    width: 100%;
    margin-top: 5px;
}

#wifi-checkbox-container {
    display: flex;
    align-items: center;
}

#wifi-checkbox {
    margin-right: 10px;
}

#signal-slider-container label,
#network-slider-container label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.message {
    position: relative;
}

.delete-btn {
    display: none;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
}

.message.selected .delete-btn {
    display: block;
}

.message.dragging {
    opacity: 0.5;
}

.right-part .modal-body .message-received .message-container {
    margin-right: auto;
    padding-left: 0px;
}

.parent-delete-btn {
    display: none;
    position: absolute;
    transform: translateY(-50%);
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
}

.unread-message-container {
    position: absolute;
    left: 33px;
    font-size: 14px;
    display: none;
}

.whatsapp .whatsapp-text p {
    margin: 0;
    word-wrap: break-word;
}

#info-box {
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

#info-icon {
    color: red;
    cursor: pointer;
}

#scroll-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

#scroll-slider {
    width: 90%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #9e9e9e;
    outline: none;
    opacity: 1;
    transition: opacity .2s;
    border-radius: 5px;
}

#scroll-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
}

#scroll-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
}

.audio-message {
    display: flex;
    align-items: center;
    margin: 13px 0px 0px 6px;
}

.audio-message2 {
    display: flex;
    align-items: center;
    margin: 13px 0px 0px 0px;
}

.audio-play-pause {
    cursor: pointer;
    margin-right: 2px;
    margin-Bottom: 8px;
}

.audio-waveform {
    display: flex;
    flex-direction: column;
    /* Modifiez la direction du flex en colonne */
    align-items: center;
    /* Centrez horizontalement les éléments */
    justify-content: center;
    flex-grow: 1;
    position: relative;
    bottom: 2px;
}


.audio-waveform svg {
    width: 160px;
    height: 24px;
    margin-right: 5px;
}

.audio-profile-1 img {
    /* Styles spécifiques pour la personne 1 */
    width: 40px;
    /* exemple de taille */
    height: 40px;
    margin-left: -5px;
    border-radius: 50%;
	    object-fit: cover;
}

.audio-profile-2 img {
    /* Styles spécifiques pour la personne 2 */
    width: 40px;
    /* exemple de taille */
    height: 40px;
    border-radius: 50%;
	    object-fit: cover;
}


.audio-duration {
    color: #646464;
    font-size: 12px;
    position: absolute;
    left: 0px;
    top: 65%;
}

.audio-read-status {
    padding-left: 15px;

}

.audio-read-status1 {
    padding-left: 130px;
    top: 2px;
    position: relative;
    font-size: 11px;

}

.audio-read-status2 {
    top: 2px;
    padding-left: 120px;
    position: relative;
    font-size: 11px;

}

.audio-profile {
    position: relative;
    display: inline-block;
}

.audio-profile-2 {
    display: inline-block;
    margin-right: 5px;
    /* Ajustez cette valeur selon vos besoins */
    bottom: 8px;
}

.micro-whats-send-container {
    display: inline-block;
    position: relative;
    right: 11px;
    bottom: 0px;
}

.micro-whats-send {
    position: relative;
    width: 12px;
    height: auto;

}

.audio-profile-1 {
    display: inline-block;
    Bottom: 8px;
    left: 10px;
}

.micro-whats-received-container {
    display: inline-block;
    position: relative;
    right: 36px;
}

.micro-whats-received {
    position: relative;
    width: 12px;
    height: auto;
}

.icon-play {
    width: 14px;
    height: auto;
    margin-bottom: 10px;
    margin-right: 5px;
}

.icon-pause {
    width: 14px;
    height: auto;
    margin-bottom: 8px;
    margin-right: 5px;
}

.message-status-audio {
    width: 15px;
    height: auto;
    bottom: 2px;
    position: relative;
    left: 2px;
}

.icon-speed1 {
    width: 37px !important;
    height: auto !important;
    border-radius: 0px !important;
    margin-right: 10px !important;
}

.icon-speed2 {
    width: 37px !important;
    height: auto !important;
    border-radius: 0px !important;
    margin-right: 10px !important;
}

/* Styles de base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.whatsapp {
    position: relative;
    font-family: "Open Sans", sans-serif !important;
    overflow: hidden;
}

/* En-têtes et barres de statut */
.whatsapp.whatsapp-chat .android-header .status-bar {
    background: #054c44;
}

/* Affichage des chats */
.whatsapp-chat .wp-android {
    display: block;
}

.whatsapp-chat .wp-ios {
    display: none;
}

.desktop_view .whatsapp-chat .wp-ios {
    display: none;
}

.whatsapp-chat .ios-header {
    display: block;
}

/* En-tête Android */
.whatsapp .wp-android-header .modal-header {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 9px 10px 9px 5px;
    min-height: 56px;
    width: 100%;
    border: none;
}

.wp-android-header .whatsapp-arrow-img {
    width: 6.3%;
}

.wp-android-header .modal-title {
    float: left;
    margin-left: 22px;
}

.wp-android-header .modal-title .modal-title-img {
    display: inline-block;
    vertical-align: middle;
}

.modal-title-img img {
    border-radius: 50%;
    overflow: hidden;
    height: 38px;
    width: 38px;
    z-index: 1;
    position: relative;
    object-fit: cover;
}

.wp-android-header .modal-title .header-content {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.wp-android-header .modal-title .header-content .text-name {
    font-size: 17px;
    font-weight: 600;
}

.wp-android-header .modal-title .header-content span {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    display: block;
}

/* Masquer les icônes de l'en-tête de bureau sur mobile */
.right-part .whatsapp-chat .modal-header .pull-right .wp-desktop-header-icon {
    display: none;
}

/* En-tête iOS */
.whatsapp-chat .wp-ios-header {
    display: block;
}

.wp-ios-header .modal-header {
    background: #f6f5f1;
    padding: 5px 20px 0px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 0.0px solid #0000003d;
}

.wp-ios-header .modal-header .modal-title {
    margin-left: 27px;
    float: left;
    display: flex;
    align-items: center;
}

.wp-ios-header .modal-header .modal-title-img img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.wp-ios-header .modal-header .modal-title .header-content {
    padding-left: 9px;
    line-height: 15px;
}

.wp-ios-header .modal-header .modal-title .header-content a {
    font-size: 13px;
    font-weight: 600;
    margin-top: -3px;
}

/* Corps des messages WhatsApp */
.whatsapp.whatsapp-chat .whatsapp-body {
    background-image: url(/whatsapp-new/images/Whatsapp_background_image.webp);
    background-size: contain;
    background-position: center;
    padding: 5px 0px 70px 0px;
    height: 600px;
    overflow-y: auto;
    /* Active le défilement vertical */
    overflow-x: hidden;
}

.whatsapp.whatsapp-chat .whatsapp-body {
    overflow-y: auto;
    -ms-overflow-style: none;
    /* Pour Internet Explorer et Edge */
    scrollbar-width: none;
    /* Pour Firefox */
}

/* Pour Chrome, Safari et Opera */
.whatsapp.whatsapp-chat .whatsapp-body::-webkit-scrollbar {
    display: none;
}

.whatsapp-text {
    margin: 5.5px 0 !important;
    padding: 6px 7px 2px 9px !important;
    border-radius: 11.3px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 1px 0px 0px rgba(0, 0, 0, 0.10);
    position: relative;
}

.whatsapp-body-ios .whatsapp-text {
    background: #ffffff !important;
}

.whatsapp-received {
    margin-right: auto;
    margin-top: -7px;
    padding-left: 12px !important;
    padding-right: 0 !important;
    max-width: 80% !important;
    margin-bottom: -7px;
}

.whatsapp-sent {
    margin-left: auto !important;
    padding-left: 0 !important;
    padding-right: 13px !important;
    max-width: 80% !important;
    margin-bottom: -7px;
}

.whatsapp-caret {
    background-color: transparent !important;
    border-color: transparent !important;
}

.whatsapp-sent .whatsapp-text {
    color: #333 !important;
    background-color: #d5ffc5 !important;
}

.whatsapp-caret {
    position: relative;
}

.received-carat img {
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 13px;
    left: -7px;
    position: absolute;
    top: 0px;
}

.sent-carat img {
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 13px;
    position: absolute;
    top: 0px;
    right: -7px;
}

/* Pied de page Android */
.whatsapp-android .whatapp-android-footer {
    background-image: url(/whatsapp-new/images/Whatsapp_background_footer.webp);
    background-size: cover;
    padding-bottom: 5px;
}

.whatsapp-android .whatapp-android-footer .post_write_comment {
    padding: 0 5px !important;
    background: transparent !important;
}

.whatsapp-android .whatapp-android-footer .text_block {
    padding: 0px 48px 0 0 !important;
}

.whatsapp-android .whatapp-android-footer .comment {
    background: #fff !important;
    border: none !important;
    min-height: 40px !important;
    border-radius: 26px !important;
    padding-top: 9px !important;
}

.whatsapp-android .whatapp-android-footer .text-wrcommenttext {
    padding-left: 5px;
    font-size: 14px;
}

.whatsapp-android .whatapp-android-footer .comment .img {
    margin-top: 1px !important;
}

.whatsapp-android .whatsapp-comment-bar img {
    margin: 2px 12px 0 0;
    width: 56px;
    height: 17px;
    vertical-align: unset;
}

.whatsapp-android .whatsapp-recoder {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0px, -50%);
    border-radius: 50%;
    overflow: hidden;
}

.whatsapp-android .whatsapp-recoder img {
    width: 42px;
    height: 42px;
}

.whatsapp-android .whatsapp-text span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    height: 15px;
    line-height: 25px;
    white-space: nowrap;
}

.whatsapp-android .whatsapp-text span img {
    width: 16px;
}

.message-status {
    display: inline-block;
}

.message-status img {
    width: 13px;
}

.message-text p {
    margin-bottom: 0;
}

.whatsapp-text span {
    color: #646464;
    font-size: 11px;
    height: 15px;
    line-height: 25px;
    white-space: nowrap;
    font-weight: 500;
}

/* Pied de page iOS */
.whatsapp .whatapp-ios-footer {
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.whatsapp .iphone-chat {
    color: #c8c8cd;
    font-size: 15px;
    line-height: 39px;
    padding-left: 65px;
    font-weight: 100;
}

.iphone-bottom {
    position: absolute;
    bottom: -0.5px;
    left: -6px;
}

.iphone-green-bottom {
    right: -44px;
    left: unset;
}

.iphone-bottom img {
    width: 24%;
}

/* Vue sur bureau */
.wp-desktop-footer {
    display: none;
}

.desktop_view .whatsapp-chat#download {
    width: 977px;
}

.desktop_view .whatsapp-chat .android-header,
.desktop_view.whatsapp-chat .wp-ios-header {
    display: none;
}

.desktop_view .whatsapp-chat .wp-android-header .whatsapp-arrow-img {
    display: none;
}

.desktop_view .whatsapp .wp-android-header .modal-header {
    background: #EDEDED;
    height: 60px;
    padding: 10px 16px;
}

.desktop_view .whatsapp-chat .wp-android-header .modal-title {
    margin: 0;
}

.desktop_view .whatsapp-chat .modal-title-img img {
    display: none;
}

.desktop_view .wp-android-header .modal-title .header-content span.text-name,
.desktop_view .wp-android-header .modal-title .header-content span {
    color: #000000;
    font-weight: normal;
}

.desktop_view .right-part .modal-header .header-icon.pull-right {
    width: 40%;
}

.desktop_view .right-part .whatsapp-chat .modal-header .pull-right img {
    display: none;
}

.desktop_view .right-part .whatsapp-chat .modal-header .pull-right .wp-desktop-header-icon {
    display: block;
    margin-right: 15px;
}

.desktop_view .whatsapp .whatsapp-body {
    padding: 12px 0;
}

.desktop_view .whatsapp-received {
    padding-left: 82px !important;
}

.desktop_view .whatsapp-sent {
    padding-right: 82px !important;
}

.desktop_view .whatsapp-sent .whatsapp-text,
.desktop_view .whatsapp-received .whatsapp-text {
    padding: 6px 7px 8px 9px !important;
}

.desktop_view .message-read-status {
    position: relative;
    bottom: -7px;
}

.desktop_view .whatsapp-sent,
.desktop_view .whatsapp-received {
    max-width: 67% !important;
}

.desktop_view .message-text p {
    line-height: 19px !important;
}

.desktop_view .whatsapp .whatapp-ios-footer,
.desktop_view .whatsapp .whatapp-android-footer {
    display: none !important;
}

.desktop_view .whatsapp .wp-desktop-footer {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-image: url(../../images/wp-desktop-footer.png);
    background-position: center;
    background-size: cover;
}

.desktop_view .whatsapp-chat .wp-android {
    display: block !important;
}

.desktop_view .whatsapp-chat .wp-ios,
.desktop_view .whatsapp-chat .wp-android .android-header {
    display: none !important;
}

/* Styles pour les appels vidéo */
.whatsapp.whatsapp-videocall {
    position: relative;
}

.whatsapp-videocall .android-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9;
    display: block;
}

.whatsapp.whatsapp-videocall .ios-header {
    display: none;
    z-index: 9;
}

.whatsapp.whatsapp-videocall .ios-header .status-bar,
.whatsapp-videocall .android-header .status-bar {
    background: rgba(0, 0, 0, 0.3);
}

.whatsapp-videocall .video-header-bottom {
    position: relative;
    padding: 10px 5px;
    min-height: 40px;
    border: none;
}

.whatsapp-videocall .video-header-bottom .wp-arw-dwn-icon {
    position: absolute;
    top: 65%;
    left: 15px;
    transform: translate(0, -50%);
}

.whatsapp-videocall .video-header-bottom .wp-arw-dwn-icon img {
    width: 17px;
}

.whatsapp-videocall .video-header-bottom .wp-group-icon {
    position: absolute;
    top: 65%;
    right: 15px;
    transform: translate(0, -50%);
}

.whatsapp-videocall .video-header-bottom .wp-group-icon img {
    width: 20px;
}

.whatsapp.whatsapp-videocall .whatsapp-body {
    background: transparent;
    min-height: 586px;
}

/* Boîte vidéo */
.wp-video-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.wp-video-box .profile_call_1 {
    background-image: url(../../images/profile-1.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.profile_call_2 {
    background-image: url(../../images/profile-2.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 80px;
    height: 110px;
    bottom: 65px;
    right: 15px;
    border-radius: 5%;
    top: unset;
    left: unset;
}

.profile_call_3 {
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 5;
}

.profile_call_4 {
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 5;
}

/* Pied de page des appels vidéo */
.whatsapp.whatsapp-videocall .whatapp-footer .post_write_comment {
    padding: 0 5px;
    background: 0 0;
}

.wp-video-footer-icon {
    width: 32.5%;
    text-align: center;
    display: inline-block;
    padding-bottom: 20px;
}

.wp-video-footer-icon:nth-child(4) {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%);
}

.wp-video-footer-icon:nth-child(1) img {
    width: 23px;
}

.wp-video-footer-icon:nth-child(2) img {
    width: 28px;
}

.wp-video-footer-icon:nth-child(3) img {
    width: 23px;
}

.wp-video-footer-icon:nth-child(4) img {
    width: 60px;
}

.width-50 {
    width: 50% !important;
    height: 50% !important;
    background-size: cover;
    background-position: center;
}

.top-right-width-0 {
    background-size: cover !important;
    background-position: center !important;
    position: absolute;
    top: 0;
    right: 0;
    left: unset !important;
    width: 50% !important;
    height: 50% !important;
}

.whatsapp-videocall .ios-header .video-header-bottom .wp-arw-dwn-icon {
    position: absolute;
    top: 65%;
    left: 15px;
    transform: translate(0, -50%) rotate(90deg);
}

.whatsapp-videocall .ios-header .video-header-bottom .wp-group-icon img {
    height: 25px;
    width: auto;
}

.wp-ios-video-footer .wp-video-footer-icon {
    width: 32.5%;
    text-align: center;
    display: inline-block;
    padding-bottom: 40px;
}

.wp-ios-video-footer .wp-video-footer-icon:nth-child(4) img {
    width: 70px;
}

.wp-ios-video-footer .wp-video-footer-icon:nth-child(1),
.wp-ios-video-footer .wp-video-footer-icon:nth-child(2),
.wp-ios-video-footer .wp-video-footer-icon:nth-child(3) {
    position: relative;
}

.wp-ios-video-footer .wp-video-footer-icon span {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.3;
}

.wp-ios-video-box .profile_call_2 {
    width: 57px;
    height: 127px;
    bottom: 100px;
    border-radius: 12px;
}

.wp-ios-video-box .profile_call_2.top-right-width-0 {
    border-radius: 0;
}

/* Styles supplémentaires */
.snapchat-days {
    text-align: center;
    /* Centrer le texte horizontalement */
    background-color: #fff;
    /* Couleur beige */
    border-radius: 10px;
    /* Rendre le rectangle arrondi */
    margin: 7px 0px 3px 0px;
    /* Espacement autour du rectangle */
    padding: 7px 9px 7px 9px;
    /* Ajouter un padding autour du texte pour lui donner de l'espace */
    display: inline-block;
    /* L'élément s'étend selon le contenu */
    box-shadow: 0px 0px 0px 0.8px rgba(0, 0, 0, 0.03);
    /* Ombre portée vers le bas */
}

.text-chatday {
    color: #5b6268;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.parent-container {
    display: flex;
    justify-content: center;
    /* Centrer les éléments enfants horizontalement */
    margin-bottom: 6px;
    margin-top: 6px;
}

.message.message-received.is-not+.message.message-sent.is-not {
    margin-top: 6px;
    /* Ajustez la valeur selon vos besoins */
}

.message.message-sent.is-not+.message.message-received.is-not {
    margin-top: 6px;
    /* Ajustez la valeur selon vos besoins */
}

.right-part #download {
    position: relative;
    width: 365px;
    max-width: none;
    overflow: hidden;
    line-height: 1.38;
    border-color: #ddd;
    margin: 0 auto;
    display: block;
}

.right-part {
    position: relative;
    padding: 15px 15px 30px 15px;
    border: 1px solid #cdcdcd;
    width: 100%;
    border-radius: 6px;
    margin: 0px auto;
    background-color: #fff !important;
    -webkit-box-shadow: inset 0 10px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 10px 10px 0 rgba(0, 0, 0, 0.15);
    overflow: scroll;
    overflow-y: unset;
    z-index: 999;
}

.right-part .modal .modal-dialog {
    width: 100%;
    margin: 0 !important;
    box-shadow: none;
}

.right-part .modal-content {
    border: 0px solid #dddddd;
    border-radius: 0px;
}

.whatsapp .whatapp-android-footer .text_block {
    padding: 0 53px 0 0 !important;
}

.whatsapp .post_write_comment .txt .text_block .comment {
    min-height: 46px;
    padding: 10px;
    background-color: #f2f3f5;
    border: 1px solid #ccd0d5;
    border-radius: 30px;
}

.whatsapp .whatapp-android-footer .comment {
    background: #fff !important;
    border: none !important;
}

#download .post_write_comment .img {
    float: left;
    margin-right: 8px;
    margin-top: 2px;
    overflow: hidden;
}

.whatsapp .whatapp-android-footer .text-wrcommenttext {
    padding-left: 3px;
}

.text-wrcommenttext {
    color: #5b6268;
    font-size: 18px;
    padding-left: 5px;
    line-height: 30px;
    display: inline-block;
}

#download .post_write_comment .txt .text_block .comment .pull-right.text-right {
    text-align: right;
}

.whatsapp .whatsapp-comment-bar img {
    margin: 3px 7px 3px;
    width: auto;
    height: 22px;
    vertical-align: unset;
}

.whatsapp .whatsapp-recoder {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 0;
    border-radius: 50%;
    overflow: hidden;
}

.whatsapp .whatsapp-recoder img {
    width: 46px;
    height: 100%;
}



.whatsapp .whatapp-android-footer .post_write_comment {
    position: relative;
    padding: 0 5px;
    z-index: 9;
}

.col-md-8 {
    position: relative;
    min-height: 1px;
    padding-right: 2px;
    padding-left: 2px;
}

.error {
    border: 2px solid red;
}

/* Style pour le conteneur parent des messages envoyés */
.parent-container.sent {
    margin-bottom: 3px !important;
    /* Marge inférieure de 0px pour les messages envoyés */
}

/* Style pour le conteneur parent des messages reçus */
.parent-container.received {
    margin-bottom: 10px !important;
    /* Marge inférieure de 6px pour les messages reçus */
}

span.text-name {
    font-weight: 600;
	font-size:14px;
}

header-title {
	font-size:12px;
}

.message-status {
    display: inline-block;
    margin-top: -3px;
    margin-left: 3px !important;
}

.message-read-status {
    margin-top: 5px;
    display: inline-block;
    float: right;
    text-align: right;
    padding-left: 15px;
    padding-left: 10px;
}


.whatsapp-text span {
    line-height: 0px !important;
}


.whatsapp .whatsapp-chat .whatsapp-body {
    transition: height 0.2s ease, background-color 0.2s ease, background-image 0.2s ease;
    overflow-y: auto;
    /* Pour activer le défilement vertical */
    background-size: cover;
    /* Pour que l'image de fond couvre toute la zone */
    background-image: url('/whatsapp-new/images/Whatsapp_background_image.webp');
    /* Initial background image */
}

.gold-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    display: flex;
}

.gold-popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 500px;
    max-width: 500px;
    max-height: 600px;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
}

@media (max-width: 600px) {
    .gold-popup-content {
        width: 400px;
        max-width: 400px;
    }

    .gold-info-icon {
        left: -5px;
        top: 3px;
    }
}

.gold-popup-header {
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.gold-popup-header h2 {
    margin: 0 auto;
}

.gold-info-icon {
    right: 50px;
    width: 20px;
    height: 20px;
    border: 2px solid red;
    border-radius: 50%;
    color: red;
    text-align: center;
    line-height: 17px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.gold-close-btn {
    color: red;
    position: absolute;
    right: 3px;
    top: -12px;
    font-size: 28px;
    font-weight: bold;
}

.gold-close-btn:hover,
.gold-close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#gold-info-box {
    display: none;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

#gold-delete-prankshit-btn {
    margin-left: 10px;
}

#gold-countdown {
    display: none;
    margin-left: 10px;
    font-weight: bold;
    color: red;
}

.gold-watermark {
    position: absolute;
    font-size: 25px;
    color: rgba(242, 0, 0, 0.1);
    pointer-events: none;
    user-select: none;
    z-index: 10000;
    /* Assurez-vous que ce z-index est plus élevé que tout autre élément */
}

.gold-watermark-top-left {
    top: 5px;
    left: 110px;
}

.gold-watermark-middle {
    top: 44%;
    left: 66%;
    transform: translate(-50%, -50%);
}

.gold-watermark-bottom-right {
    bottom: 30px;
    left: 50px;
}

.gold-close-btn:hover,
.gold-close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#gold-info-box {
    display: none;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

#gold-delete-prankshit-btn {
    margin-left: 10px;
}

#gold-countdown {
    display: none;
    margin-left: 10px;
    font-weight: bold;
    color: red;
}

.gold-watermark {
    position: absolute;
    font-size: 25px;
    color: rgba(242, 0, 0, 0.1);
    pointer-events: none;
    user-select: none;
    z-index: 10000;
    /* Assurez-vous que ce z-index est plus élevé que tout autre élément */
}

.gold-watermark-top-left {
    top: 5px;
    left: 110px;
}

.gold-watermark-middle {
    top: 44%;
    left: 66%;
    transform: translate(-50%, -50%);
}

.gold-watermark-bottom-right {
    bottom: 30px;
    left: 50px;
}

#name-footer-container {
    margin-top: 15px;
}

#name-footer-container label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#name-footer {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#color-selectors {
    margin-top: 10px;
}

#color-selectors label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}





.whatapp-android-footer{
  position:absolute; left:0; bottom:0; width:100%;
  z-index:1000; padding:5px 3px;
  background-size:cover;
}

.android-foot{
  display:flex;
  align-items:center;           /* centre verticalement tout */
  gap:5px;
}

.android-foot__pill{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:46px;
  padding:8px 14px;
  background:#fff;
  border-radius:26px;
  box-shadow:0 0 0 1px rgba(0,0,0,.05);
}

.android-foot__emoji img{ width:22px; height:22px; display:block; }

.android-foot__placeholder{
  font-family: Arial, Helvetica, sans-serif !important;
  font-size:20px; color:#5b6268;margin-top: 2px;
  margin-left:10px; flex:1; line-height:1;
}

.android-foot__actions img{ height:22px; width:auto; display:block; }

/* micro = image seule à droite */
.android-foot__mic{
  width:48px; height:48px;      /* garde les dimensions de ton PNG rond */
  display:block; flex:0 0 auto; /* ne s'étire pas */
}

/* (sécurité) neutralise l'ancien markup s'il existe encore */
.whatapp-android-footer .post_write_comment,
.whatapp-android-footer .txt,
.whatapp-android-footer .text_block,
.whatapp-android-footer .comment,
.whatapp-android-footer .img{
  display:contents !important;
}
