.faq-container {
    width: 65%;
    margin: auto;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    margin-top: 25px;
    text-align: center; /* Centre le contenu à l'intérieur */
}

@media screen and (max-width: 768px) {
    .faq-container {
        width: 100%;
    }
}

.faq-header {
    font-size: 24px;
    color: #e80000;
    text-align: center;
    margin-bottom: 20px;
}

.question-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centre horizontalement le texte et l'icône */
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: bold;
}

.question::before {
    content: '▼';
    margin-right: 5px;
}

.question.opened::before {
    content: '▲';
}

.answer {
    display: none;
    padding-left: 0; /* Supprime le padding à gauche */
    margin-bottom: 15px;
    text-align: center; /* Centre le texte des réponses */
}

              .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 */
              }			  
                                                /* Conteneur principal du footer */
                                                .footer-android-email {
                                                    background-color: #faf9fe;
                                                    border-top: 1px solid #e9eaee;
                                                    display: flex;
                                                    align-items: center;
                                                    padding: 10px;
                                                }

                                                /* Flex de 10% pour le trombone */
                                                .footer-android-email-icon-left {
                                                    flex: 10%;
                                                    display: flex;
                                                    justify-content: center;
                                                    /* Centre horizontalement */
                                                    align-items: center;
                                                    /* Centre verticalement */
                                                    margin-right: 7px;
                                                }

                                                /* Flex de 80% pour le rectangle central */
                                                .footer-android-email-center {
                                                    flex: 80%;
                                                    display: flex;
                                                    justify-content: center;
                                                }

                                                /* Rectangle central avec icônes et texte */
                                                .footer-android-email-box {
                                                    background-color: #e5e8f1;
                                                    border-radius: 30px;
                                                    padding: 14px 15px;
                                                    display: flex;
                                                    align-items: center;
                                                    width: 100%;
                                                    justify-content: space-between;
                                                }

                                                /* Texte "Répondre" aligné à gauche */
                                                #footer-android-email-reply-text {
                                                    flex: 1;
                                                    text-align: left;
                                                    margin-left: 10px;
                                                    white-space: nowrap;
                                                    /* Empêche le texte de se retourner */
                                                    font-size: 16px;
                                                    color: #9999a1;
                                                }

                                                /* Flex de 10% pour l'icône smile */
                                                .footer-android-email-icon-right {
                                                    flex: 10%;
                                                    display: flex;
                                                    justify-content: center;
                                                    /* Centre horizontalement */
                                                    align-items: center;
                                                    /* Centre verticalement */
                                                    margin-left: 7px;
                                                }
               .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;
                }
				
#mail-body-input {
    resize: both; /* Permet d'agrandir horizontalement et verticalement */
    min-width: 100%; /* Largeur minimale */
    min-height: 100px; /* Hauteur minimale */
}

.wp-ios-header .modal-header {
  border-bottom: none !important;
}
.right-part .modal-body {
    min-height: 0 !important;
}


/* Conteneur principal */
.header-email-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px 10px 16px;
    background-color: #fff;
    margin-top: 18px;
}

/* Section de gauche */
.header-email-left {
    display: flex;
    align-items: center;
}

/* Section de droite */
.header-email-right {
    display: flex;
    align-items: center;
    gap: 28px;
    /* Espacement entre les icônes */
}

/* Conteneur principal */
.header-email-content {
    padding: 10px 15px;
    background-color: #fff;
}

/* Conteneur du titre et de l'icône star */
.header-email-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

/* Conteneur pour le texte et la boite */
.header-email-title-wrapper {
    display: inline-block;
    max-width: calc(100% - 30px);
    /* Ajuste l'espace pour éviter de chevaucher l'icône star */
    word-break: break-word;
    position: relative;
}

/* Styles pour le titre */
.header-email-title {
    display: inline;
    font-size: 18px;
    color: black;
}

/* Styles pour la boite de réception */
.header-email-inbox {
    display: inline-block;
    background-color: #eeeeee;
    color: #000;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    white-space: nowrap;
}

/* Étoile fixe à droite */
.header-email-star {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Styles pour l'icône */
.header-email-icon {
    width: 18px;
    height: auto;
}

.attachment-preview {
	margin-top:10px;
}

/* Conteneur pour afficher les initiales */
.profile-initials-display {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #d1d1d1;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

/* Alignement horizontal pour text-name et additional-text-android */
.header-content .text-name,
.header-content .additional-text-android {
    display: inline-block;
    white-space: nowrap;
	font-size:15px;
	    font-weight: 600;
}

/* Espacement entre text-name et additional-text-android */
.header-content .additional-text-android {
    margin-left: 4px;
	font-size: 12px;
}

.additional-text-ios {
	font-size: 11px;
    margin-left: 8px;
}

/* Statut sur une nouvelle ligne */
.header-content .header-title {
    display: block;
    font-size: 12px;
    color: #858587 !important;
    margin-top: 2px;
}

.profile-dropdown-container {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.profile-dropdown-container select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.header-title-container {
    display: flex;
    align-items: center;
    /* Aligne verticalement le texte et l'icône */
    gap: 5px;
    /* Espacement entre le texte et l'icône */
    font-size: 12px;
    color: #858587 !important;
}

.header-title-text {
    white-space: nowrap;
    /* Empêche le texte de passer à la ligne */
}

.header-title-icon {
    width: 8px;
    /* Taille de l'icône */
    height: auto;
    margin-top: 2px;
}

/* conteneur global du footer */
.iphone_footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 10px 10px 10px 15px;
  box-sizing: border-box;
}

/* les 2 boutons Reply / Forward prennent la place dispo */
.footer-iphone-email-buttons {
  display: flex;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

/* les boites peuvent rétrécir */
.footer-iphone-email-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 0.11rem solid #dadce0;
  border-radius: 4px;
  flex: 1 1 0;
  min-width: 0;
  height: 36px;
  padding: 6px 10px;
  box-sizing: border-box;
  overflow: hidden;
      border-radius: 20px;

}

/* texte dans Reply / Forward */
#footer-iphone-repondre-text,
#footer-iphone-transferer-text {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* icone dans les boites */
.footer-iphone-email-icon {
  width: 14px;
  height: auto;
  margin-right: 8px;
  flex: 0 0 auto;
}

/* le rond smile reste fixe */
.footer-iphone-email-smile {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  flex: 0 0 34px;
  background-color: #fff;
  border: 0.11rem solid #dadce0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}




/* Styles par défaut pour le contenu du mail */
.mail-body-content {
    font-size: 15px;
    white-space: pre-wrap;
    /* Respecte les sauts de ligne et espaces multiples */
    word-wrap: break-word;
    padding: 10px 10px 10px 16px;
	    font-weight: 500;
}

/* Désactive les styles en mode HTML */
.mail-body-content.no-style {
    font-size: initial;
    white-space: normal;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

/* Désactive le padding et bordure en mode HTML */
.mail-body-content.html-mode {
    padding: 0;
    border: none;
}

/* Styles pour la boîte de pièce jointe PDF */
.attachment-box {
    background-color: #f3f3f3;
    border: 1px solid #dadce0;
    border-radius: 3px;
    padding: 18px 15px 15px 15px;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    margin-left: 10px;
    line-height: 1.5;
}

/* Styles pour la boîte de pièce jointe Image */
.attachment-image-box {
    background-color: #fff;
    border: 1px solid #dadce0;
    border-radius: 5px;
    display: inline-block;
    max-width: 30%;
    margin-left: 10px;
    max-height: 80px;
}

/* Texte dans la boîte de pièce jointe */
.attachment-text {
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
    white-space: pre-wrap;
    /* Respecte les sauts de ligne */
    color: black;
}

/* Détails de l'icône et type de fichier */
.attachment-details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    margin-top: 10px;
    color: #5f6368;
}

/* Icône dans la boîte de pièce jointe */
.attachment-icon {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.attachment-pdf {
    width: 20px;
    height: auto;
    border-radius: 5px;
}

.text-name strong {
    font-weight: bold !important;
}

/* Style général pour le bouton fixe */
#fixedRoundedButton {
    position: absolute;
    bottom: 90px;
    right: -1px;
    width: 46px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
    border: 1px solid #00000021;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.05);
}

/* Style spécifique pour iPhone */
#fixedRoundedButton.iphone-style {
    background-color: #f4f4f4;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

#fixedRoundedButton.iphone-style img {
    width: 18px;
    height: auto;
}

/* Style spécifique pour Android */
#fixedRoundedButton.android-style {
    background-color: #fafaf8;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
    border: 0px;
    bottom: 80px;
    right: 10px;
}

#fixedRoundedButton.android-style img {
    width: 12px;
    height: auto;
    content: url('whatsapp/images/double-fleche.png');
}

.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 */
}


.subscription-section h3 {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}



#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;
}


.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 {
    font-weight: 500;
    color: #474747;
    white-space: nowrap;
    /* Prevents text from wrapping */
    margin-left: 15px;
    font-size: 17px;
    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: #fff;
    color: #000;
    padding: 6px 8px;
    text-align: center;
    font-size: 13px;
    height: 30px;
}

.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: 16px;
}

.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 15px 0px 4px;
}

.iphone-header-top-container .iphone-header-top-battery {
    display: flex;
    align-items: center;
    gap: 3px;
}

.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: 35px;
    /* exemple de taille */
    height: 35px;
    margin-left: -5px;
    border-radius: 50%;
}

.audio-profile-2 img {
    /* Styles spécifiques pour la personne 2 */
    width: 35px;
    /* exemple de taille */
    height: 35px;
    border-radius: 50%;
}

.audio-duration {
    color: #00000073;
    font-size: 11px;
    position: absolute;
    left: 4px;
    top: 66%;
}

.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: 115px;
    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: 30px;
}

.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: 17px;
    height: auto;
    bottom: 2px;
    position: relative;
}

.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 15px;
    min-height: 56px;
    width: 100%;
    border: none;
}

.wp-android-header .whatsapp-arrow-img {
    margin-top: 3px;
    width: 6.3%;
}

.wp-android-header .modal-title {
    float: left;
}

.wp-android-header .modal-title .modal-title-img {
    display: inline-block;
    vertical-align: middle;
}

.modal-title-img img {
    border-radius: 50%;
    overflow: hidden;
    height: 35px;
    width: 35px;
    z-index: 1;
    position: relative;
    object-fit: cover;
}

.wp-android-header .modal-title .header-content {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    line-height: 16px;
}

/* 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: #fff;
    padding: 5px 20px 5px 0;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.wp-ios-header .modal-header .modal-title {
    margin-left: 15px;
    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: 15px;
    line-height: 16px;
    margin-top: 5px;
}

.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-color: #fff;
    padding: 5px 0px 10px 0px;
    height: 500px;
    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: 5px 0 !important;
    padding: 6px 7px 1px 9px !important;
    border-radius: 11.3px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    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: #e8fed7 !important;
}

.whatsapp-caret {
    position: relative;
}

.received-carat img {
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 25px;
    left: -8px;
    position: absolute;
    top: 0px;
}

.sent-carat img {
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 21px;
    position: absolute;
    top: 0px;
    right: -8px;
}

/* Pied de page Android */
.whatsapp-android .whatapp-android-footer {
    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: 15px;
}

.message-text p {
    margin-bottom: 0;
}

.whatsapp-text span {
    color: rgba(0, 0, 0, .45);
    font-size: 11px;
    height: 15px;
    line-height: 25px;
    white-space: nowrap;
}

/* 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: -2px;
    left: -9px;
}

.iphone-green-bottom {
    right: -38px;
    left: unset;
}

.iphone-bottom img {
    width: 40%;
}

/* 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: 2px 0;
    /* Espacement autour du rectangle */
    padding: 5px 15px 4px 15px;
    /* 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 1px 0px rgba(0, 0, 0, 0.1);
    /* Ombre portée vers le bas */
}

.text-chatday {
    color: #49494f;
    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: #f3f3f3 !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;
    border-radius: 50%;
    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.whatsapp-chat .whatapp-android-footer {
    background-size: cover;
    padding-bottom: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.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 */
}

.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 */
}

.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-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;
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #198754;
  clear: both;
}

#gold-countdown:not(:empty) {
  display: block !important;
}

.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;
}

/* FILE: email/css/email.cs */

/* zone paiement watermark */
#gold-payment-section {
  display: none;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

#gold-payment-section p {
  margin: 0 0 12px;
  line-height: 1.45;
}



#paiementpaypal {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff3f3;
  border: 1px solid #ffd1d1;
  line-height: 1.45;
}

/* bouton stripe */
#stripe-pay-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: #635bff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(99, 91, 255, 0.22);
}

#stripe-pay-btn:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

#stripe-pay-btn:active {
  transform: translateY(0);
}

#stripe-pay-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.18);
}

#stripe-pay-btn span {
  display: inline-block;
  padding: 12px 16px;
  line-height: 1.2;
}

/* séparateur "or" */
.payment-separator {
  position: relative;
  margin: 14px 0;
  text-align: center;
}

.payment-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #dddddd;
  transform: translateY(-50%);
}

.payment-separator span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 10px;
  background: #fafafa;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* paypal */
#paypal-button-container {
  width: 100%;
  min-height: 40px;
}

/* bouton remove prankshit */
#gold-delete-prankshit-btn {
  margin-left: 8px;
}






/* petit responsive */
@media (max-width: 767px) {
  #gold-payment-section {
    max-width: 100%;
    padding: 12px;
  }



  #gold-delete-prankshit-btn {
    margin-left: 0;
    margin-top: 8px;
  }


}
.subscription-section {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  box-sizing: border-box;
  overflow: hidden;
}



.subscription-input-group.input-group .form-control {
  width: 100%;
  box-sizing: border-box;
}

.subscription-input-group.input-group .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

#subscription-code-input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#subscription-submit-btn {
  white-space: nowrap;
}

#subscription-message,
#additional-info {
  word-break: break-word;
}

@media (max-width: 767px) {

  .subscription-input-group.input-group .input-group-btn {
    margin-top: 8px;
  }

  #subscription-submit-btn {
    width: 100%;
  }
}


  .iphone-header-top-time {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
  }
  
  #footer-iphone-repondre-text,
#footer-iphone-transferer-text {
  font-size: 13px;
}

#download .modal-content {
  position: relative;
}

.whatsapp-body.whatsapp-body-ios {
  padding-bottom: 78px;
  overflow-y: auto;
}

.iphone_footer.iphone-ios-footer {
  position: relative;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 20;
  background: #fff;
}

.footer-iphone-email-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
  z-index: 21;
  background-color: #000;
  border-radius: 3px;
  width: 35%;
  height: 3px;
}

.email-meta-card {
  margin: 0px 14px 5px 14px;
  padding: 3px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  box-sizing: border-box;
}

.email-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 0;
}

.email-meta-row + .email-meta-row {
  border-top: 0;
}

.email-meta-label {
  width: 38px;
  min-width: 38px;
  font-size: 15px;
  line-height: 1.4;
  color: #4d4d4d;
  font-weight: 400;
}

.email-meta-value-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.email-meta-main {
  font-size: 15px;
  line-height: 1.4;
  color: #1f1f1f;
  font-weight: 500;
  word-break: break-word;
}

.email-meta-sub {
  font-size: 12px;
  line-height: 1.4;
  color: #5c5c5c;
  font-weight: 400;
  word-break: break-word;
}

.email-meta-main-date {
  font-weight: 400;
}

#email-meta-options {
  margin-top: 6px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
}

.iphone_footer.iphone-ios-footer {
  background: #fff;
  width: 100%;
}

.iphone_footer_content.iphone-ios-footer {
  background: #fff;
}

.footer-iphone-email-bar {
  background-color: #000;
}
