.mobile_view .tweet-img-grp.multi-one {
    height: 165px;
    /* Hauteur par défaut */
    transition: height 0.2s ease;
    /* Transition fluide pour les changements */
}
/* Conteneur principal */
.comment-twitter-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
/* Conteneur de chaque commentaire */
.comment-twitter-item {
    border-top: 1px solid #6b696917;
    padding: 10px 10px 10px 10px;
    display: flex;
    gap: 6px;
}
/* Section gauche : image de profil */
.comment-twitter-profile {
    flex-shrink: 0;
}
.comment-twitter-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
/* Section droite : contenu du commentaire */
.comment-twitter-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Conteneur principal de la ligne supérieure */
.comment-twitter-header {
    display: flex;
    justify-content: space-between;
    /* Espace entre les deux côtés */
    align-items: flex-start;
    /* Garde les options alignées en haut */
    gap: 10px;
    /* Espace entre username-pseudo et les options */
}
/* Conteneur pour username et pseudo */
.comment-twitter-username-pseudo {
    display: flex;
    flex-wrap: wrap;
    /* Permet aux textes longs de passer à la ligne */
    align-items: baseline;
    /* Garde username et pseudo alignés verticalement */
}
.comment-twitter-username {
    font-weight: bold;
    color: black;
    white-space: nowrap;
    /* Empêche le retour à la ligne pour username */
    font-size: 14px;
    margin-right: 4px;
}
.comment-twitter-pseudo {
    color: #526470;
    font-size: 14px;
    white-space: nowrap;
    /* Empêche le retour à la ligne pour pseudo */
}
/* Conteneur pour les options (petits points) */
.comment-twitter-options {
    flex-shrink: 0;
    /* Empêche la réduction de sa largeur */
    display: flex;
    margin-top: 7px;
}
.comment-twitter-options img {
    width: 13px;
    /* Taille des petits points */
    height: auto;
}
/* Corps du commentaire */
.comment-twitter-body {
    font-size: 14px;
    color: #000;
}
/* Conteneur principal des icônes */
.comment-twitter-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Assure un espacement uniforme */
    margin-top: 5px;
}
/* Style général pour chaque icône */
.comment-twitter-icon-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
/* Largeurs fixes pour les 4 premières icônes */
.comment-twitter-icons .comment-twitter-icon-item:nth-child(-n+4) {
    width: 30%;
    /* Les 4 premières icônes prennent 20% de largeur chacune */
}
.comment-twitter-icons .comment-twitter-icon-item:nth-last-child(2) {
    width: 10%;
    /* Par exemple, 12% pour l'avant-dernière icône */
}
/* Largeur fixe pour la dernière icône */
.comment-twitter-icons .comment-twitter-icon-item:last-child {
    width: 6%;
    /* Par exemple, 8% pour la dernière icône */
}
/* Icônes elles-mêmes */
.comment-twitter-icon-item img {
    width: 18px;
    height: auto;
}
/* Style des nombres */
.comment-twitter-icon-number {
    font-size: 10px;
    color: #526470;
    margin-left: 5px;
    /* Espace entre l'icône et le nombre */
    white-space: nowrap;
    /* Empêche les retours à la ligne */
    overflow: hidden;
    /* Cache tout débordement */
    text-overflow: ellipsis;
    /* Ajoute des points de suspension si nécessaire */
}
/* Conteneur principal */
.header-replies-container {
    display: flex;
    align-items: center;
    /* Centre verticalement les éléments */
    justify-content: flex-start;
    /* Aligne à gauche */
    padding: 10px 0 10px 10px;
    /* Espacement interne */
}
/* Style du texte */
.header-replies-text {
    font-size: 12px;
    font-weight: bold;
    color: #526470;
    margin-right: 5px;
    /* Espace entre le texte et l'icône */
}
/* Style de l'icône */
.header-replies-icon {
    width: 10px;
    height: auto;
    object-fit: contain;
    /* Garde les proportions de l'image */
}
/* Conteneur principal */
.header-haut-container {
    display: flex;
    justify-content: space-between;
    /* Répartit uniformément les éléments */
    align-items: center;
    /* Centre verticalement les éléments */
    padding: 15px 15px 10px 15px;
    background-color: white;
    /* Couleur de fond */
}
/* Icône de flèche à gauche et icône à droite */
.header-haut-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
}
.header-haut-icon-img {
    width: 18px;
    height: auto;
    object-fit: contain;
    /* Garde les proportions */
}
/* Titre centré */
.header-haut-title {
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-align: center;
    /* Centre le texte */
    flex-grow: 1;
    /* Prend tout l'espace disponible entre les icônes */
}
/* Conteneur principal */
.follow-header-container {
    display: flex;
    justify-content: flex-start;
    /* Aligne vers la gauche */
    margin: 10px 0;
}
/* Rectangle noir arrondi */
.follow-header-button {
    background-color: black;
    color: white;
    border-radius: 15px;
    padding: 5px 10px;
    /* Ajoute de l'espace autour du texte */
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    /* Empêche le retour à la ligne */
    transition: width 0.2s ease;
    /* Animation douce pour les changements de largeur */
}
/* Conteneur principal de la rangée des icônes */
.twitter-icon-like-comment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 10px;
}
/* Conteneur flex pour aligner toutes les icônes */
.twitter-icon-flex {
    display: flex;
    justify-content: space-between;
    /* Espace uniforme entre les items */
    width: 100%;
    align-items: center;
}
/* Style pour chaque item */
.twitter-icon-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    /* Espace entre l'image et le texte */
    white-space: nowrap;
    /* Empêche le retour à la ligne */
    color: #526470;
}
/* Les 4 premiers items occupent une largeur égale */
.twitter-icon-item:not(.twitter-icon-download) {
    flex: 1;
    /* Largeur égale pour les 4 premiers items */
}
/* Item de téléchargement tout à droite */
.twitter-icon-download {
    flex: 0;
    /* Ne prend que la largeur nécessaire */
    margin-left: auto;
    /* Place cet item tout à droite */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Container principal */
.footer-twitter-iphone-container {
    background-color: white;
    border-top: 1px solid #6b696917;
    padding: 6px 8px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
/* Rangée supérieure : Profil et texte */
.footer-twitter-iphone-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.footer-twitter-iphone-profile-container {
    display: flex;
    align-items: center;
}
.footer-twitter-iphone-profile-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}
.footer-twitter-iphone-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-twitter-iphone-reply-container {
    flex-grow: 1;
    margin-left: 10px;
}
.footer-twitter-iphone-reply-input {
    width: 100%;
    background-color: #eff3f4;
    border-radius: 20px;
    border: none;
    padding: 6px 10px 6px 10px;
    font-size: 14px;
    color: #536471;
    text-align: left;
}
/* Rangée inférieure : Icônes */
.footer-twitter-iphone-row-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.footer-twitter-iphone-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-twitter-iphone-icon-container img {
    width: 25px;
    height: auto;
    object-fit: contain;
}
/* Barre noire */
.footer-twitter-iphone-black-bar {
    width: 40%;
    height: 4px;
    background-color: black;
    border-radius: 10px;
    margin-top: 20px;
}
/* Left Panel */
.footer-twitter-iphone-left-panel {
    padding: 10px;
    border: 1px solid gray;
    margin-top: 20px;
}
.footer-twitter-iphone-left-panel label {
    display: block;
    margin-bottom: 5px;
}
.footer-twitter-iphone-left-panel .form-group {
    margin-bottom: 15px;
}
.footer-twitter-iphone-left-panel input[type="text"],
.footer-twitter-iphone-left-panel input[type="file"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.android-header {
    display: none;
    /* Par défaut masqué */
}
.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: 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: 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;
}
img#myImage {
    margin-left: 3px;
}
.SFPRODISPLAYBOLD {
    font-size: 12px;
    position: relative;
    top: 1px;
}
span.status-time.SFPRODISPLAYBOLD {
    font-size: 14px;
}
.ios-header .iphone-moblie-network span {
    padding-left: 22px;
}
.status-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Espacement automatique entre les éléments */
}
.battery-container {
    display: flex;
    align-items: center;
}
img#network {
    margin-right: 3px;
}
.android-header .status-bar .status-time {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 500;
    color: #474747;
}
.faq-container {
    width: 60%;
    margin: auto;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: left;
}
@media screen and (max-width: 768px) {
    .faq-container {
        width: 90%;
    }
}
.faq-header {
    font-size: 24px;
    color: #e80000;
    text-align: center;
    margin-bottom: 20px;
}
.question-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: bold;
}
.question::before {
    content: '▼';
    /* Icône flèche vers le bas par défaut */
    margin-right: 5px;
}
.question.opened::before {
    content: '▲';
    /* Icône flèche vers le haut lorsque la réponse est ouverte */
}
.answer {
    display: none;
    padding-left: 20px;
    margin-bottom: 15px;
}
.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-post-header {
    display: flex;
    /* Utilisez flex pour un alignement facile */
    justify-content: space-between;
    /* Espacement entre les éléments */
    align-items: center;
    /* Centre les éléments verticalement */
    padding: 8px 11px;
    /* Ajoute un espace au-dessus et en dessous */
    font-weight: bold;
    /* Texte en gras */
    font-size: 16px;
    /* Taille de la police ajustée */
    color: black;
}
.header-icon-arrow {
    width: 17px;
    /* Redimensionne l'image de la flèche */
    height: auto;
    /* Garde le ratio de l'image */
    margin-right: auto;
    /* Pousse tout le reste à droite */
}
.post-title {
    flex-grow: 1;
    text-align: center;
    /* Centre le titre */
}
.twitter {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    overflow: hidden;
    color: #66757F;
    overflow: hidden;
    position: relative;
}
.twitter a {
    color: #0084B4;
}
.twitter .modal-dialog {
    width: auto;
    margin: 0px;
}
.twitter-chat-header {
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    min-height: 55px;
    padding: 5px 15px;
    overflow: hidden;
    border-bottom: none;
    z-index: 1;
}
.verified-icon {
    height: 19px;
    width: 19px;
    margin-left: 5px;
    display: none;
    vertical-align: middle;
}
.mobile_view .verified-icon {
    height: auto;
    width: 14px;
    margin-left: 0px;
}
.twitter-chat-header .header-icon.header-icon-arrow img {
    height: 16px;
    width: auto;
}
.twitter .modal-dialog .header-content {
    padding-left: 35px;
    display: block;
}
.twitter-chat-header .header-content span {
    display: block;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
}
.twitter-chat-header .header-content a {
    display: block;
    font-size: 13px;
    line-height: 13px;
    margin-top: 3px;
}
.twitter-chat-header .header-icon-arrow {
    margin: 0;
}
.twitter-chat-header .twitter-chat-body {
    height: auto;
    min-height: 511px;
    width: 100%;
}
.twitter-chat-body .message-container {
    max-width: 75% !important;
}
.twitter-chat-body .message-avatar {
    position: absolute;
    bottom: 0;
}
.twitter-chat-body .message .message-avatar img {
    height: 36px;
    display: none;
    width: 36px;
    border-radius: 50%;
    overflow: hidden;
}
.twitter-chat-body .message-bubble {
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    font-size: 13px;
    line-height: 16px;
}
.twitter-chat-body .message-received .message-text {
    background-color: #eff3f4;
    color: #14171a;
    border-radius: 15px 15px 15px 0;
}
.right-part .modal-body .message-received .message-container {
    margin-right: auto;
    padding-left: 3px;
    padding-bottom: 4px;
}
.right-part .modal-body .message-received .message-footer {
    padding-left: 45px;
    display: none;
}
.right-part .modal-body .message-text {
    position: relative;
    padding: 12px;
    border-radius: 20px 20px 20px 2px;
}
.twitter-chat-body .message-text p {
    font-size: 14px;
    line-height: 20px;
}
.twitter-chat-body .message .message-footer {
    font-size: 11px;
    line-height: 18px;
    color: #8899a6;
    margin-bottom: 6px;
}
.twitter-chat-body .twitter-chat-body .message-avatar {
    position: absolute;
    bottom: 0;
}
.twitter-chat-body .message-sent .message-container {
    padding-right: 0 !important;
    padding-bottom: 4px;
}
.twitter-chat-body .message-sent .message-text {
    background-color: #1d9bf0;
    border-radius: 20px 20px 2px 20px;
}
.twitter-chat-body .message-sent .message-text p {
    color: #ffffff;
}
.twitter-chat-body .message .message-footer {
    font-size: 11px;
    line-height: 18px;
    color: #657786;
    margin-bottom: 6px;
}
.twitter-chat-body .message-sent .message-footer {
    display: none;
    float: right;
    padding-right: 0 !important;
}
.twitter-chat-body .message-sent .message-avatar {
    display: none;
}
.twitter-chat-body .message-received .message-text:before {
    content: none;
    position: absolute;
    bottom: 0;
    right: -32px;
    height: 20px;
    width: 22px;
    background: url(../../images/heart-plus.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}
.twitter-chat-footer img {
    width: 100%;
}
.twitter-chat-footer img.twitter-desktop-footer {
    display: none;
}
.twitter-chat-left .nav-tabs {
    margin-top: 20px;
}
.right-part.desktop_view #download.twitter-chat {
    width: 599px;
}
.desktop_view .twitter-chat .modal-content {
    border-color: rgb(230, 236, 240);
}
.desktop_view .all_header_wp {
    display: none !important;
}
.desktop_view .twitter-chat-header {
    min-height: 53px;
    padding: 0 15px;
}
.desktop_view .modal-header .header-icon.header-icon-arrow {
    display: none;
}
.desktop_view .modal-header .modal-title {
    width: 70%;
}
.desktop_view .twitter .modal-dialog .header-content {
    padding-left: 0;
}
.desktop_view .twitter-chat-body .message .message-avatar img {
    height: 39px;
    width: 39px;
    border-radius: 50%;
    overflow: hidden;
}
.desktop_view .twitter-chat-header .header-content a {
    font-size: 12px;
    line-height: 13px;
    margin-top: 2px;
}
.desktop_view .twitter-chat-header .header-content span {
    font-size: 18px;
    font-weight: 900;
}
.desktop_view .twitter-chat-body .message .message-footer {
    margin-bottom: 20px;
}
.desktop_view .twitter-chat-body .message-received .message-text:before {
    display: none;
}
.desktop_view .twitter-chat-body .message-container {
    max-width: 77% !important;
}
.desktop_view .twitter-chat-footer {
    border: 1px solid rgb(230, 236, 240);
}
.desktop_view .twitter-chat-footer img {
    display: none;
}
.desktop_view .twitter-chat-footer img.twitter-desktop-footer {
    display: block;
    height: 52px;
}
.line-view .checkbox {
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px !important;
    margin-right: 5px;
}
.twitter-tweet {
    position: relative;
}
.twitter-tweet-header {
    position: relative;
    height: 53px;
    width: 100%;
    background: #ffffff;
    padding: 10px 15px;
    border-bottom: 1px solid rgb(230, 236, 240);
    z-index: 1;
    display: flex;
    align-items: center;
}
.twitter-tweet-header .header-icon img {
    height: 16px;
    width: auto;
    margin-right: 30px;
}
.twitter-tweet-header h2 {
    color: #14171a;
    margin: 0;
    font-size: 19px;
    line-height: 25px;
    font-weight: 900;
    text-transform: capitalize;
}
.twitter-tweet-header p {
    color: #657786;
    margin: 0;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    text-transform: capitalize;
}
.twitter-tweet-body {
    overflow-y: auto;
    /* Active le défilement vertical si le contenu dépasse */
    overflow-x: hidden;
    /* Empêche le défilement horizontal */
    position: relative;
    z-index: 5;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.right-part .twitter-tweet-body .modal-body {
    padding: 10px 10px 0 10px;
}
.twitter-tweet-body::-webkit-scrollbar {
    display: none;
}
.twitter-tweet .twitter-tweet-body .permalink-header {
    float: left;
    display: flex;
    align-items: center;
}
.twitter-tweet-body .modal-header {
    padding: 10px 10px 0 10px;
    border: none;
}
.twitter-tweet-body .modal-header .avatar {
    height: 39px;
    width: 39px;
}
.twitter-tweet-body .permalink-header .fullname,
.twitter-tweet-body .permalink-header .username {
    font-size: 15px;
    line-height: 19px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    display: block;
    float: unset;
    color: #526470;
}
.twitter-tweet-body .permalink-header .fullname {
    font-weight: 700;
    color: #14171a;
    display: inline-block;
    align-items: center;
    vertical-align: middle;
    max-width: 192px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.twitter-tweet-body .permalink-header .fullname:before {
    content: '';
    position: absolute;
    right: 0;
}
.twitter-tweet-body .modal-header .drop-icon {
    font-size: 20px;
    line-height: 12px;
    color: #657786;
}
.twitter-tweet-body .modal-body .tweet-text {
    font-size: 18px;
    line-height: 25px;
    color: #14171a;
    font-weight: normal;
    width: 100%;
    display: block;
    word-break: initial;
}
.twitter-tweet-body .modal-body .tweet-text .link {
    color: #1c93e3;
}
.twitter-tweet-body .client-and-actions .metadata {
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #526470;
}
.like-comment-row {
    border-top: 1px solid rgb(230, 236, 240);
    border-bottom: 1px solid rgb(230, 236, 240);
}
.twitter-tweet-body .tweet-retweet-like-row {
    padding: 10px 0;
    display: inline-block;
    width: 100%;
}
.twitter-tweet-body .tweet-retweet-like {
    display: inline-block;
    line-height: 30px;
    margin-right: 5px;
}
.twitter-tweet-body .tweet-retweet-like span {
    display: inline-block;
    font-weight: 600;
    color: #14171a;
    font-size: 15px;
}
.twitter-tweet-body .tweet-retweet-like-text {
    display: inline-block;
}
.twitter-tweet-body .tweet-retweet-like-text p {
    margin: 0;
    font-weight: 500;
    color: #717679;
}
.twitter-tweet-body .tweet-likes-img-row {
    display: none;
}
.twitter-tweet-body .tweet-actionList {
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.twitter-tweet-body .tweet-action {
    float: left;
    width: 25%;
    text-align: center;
}
.twitter-tweet-body .tweet-img img {
    width: 22px;
}
.twitter-tweet-body .tweet-icon {
    display: none;
    margin-top: 3px;
    vertical-align: middle;
    font-weight: 700;
    margin-left: 5px;
    font-size: 12px;
    color: #717679;
}
.tweet-img-grp {
    position: relative;
    margin: 18px 0 15px 0;
    height: 260px;
    width: 100%;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.tweet-img-grp .tweet-img {
    position: relative;
    height: 100%;
    width: 100%;
    float: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}
.tweet-img-grp.multi-one .tweet-img.tweet-img1 {
    display: inline-block;
}
.tweet-img-grp.multi-two,
.tweet-img-grp.multi-three,
.tweet-img-grp.multi-four {
    height: 285px;
}
.tweet-img-grp.multi-two .tweet-img.tweet-img1,
.tweet-img-grp.multi-two .tweet-img.tweet-img2 {
    height: 100%;
    width: 50%;
    display: inline-block;
}
.tweet-img-grp.multi-two .tweet-img.tweet-img1,
.tweet-img-grp.multi-two .tweet-img.tweet-img2 {
    height: 100%;
    width: 50%;
    display: inline-block;
}
.tweet-img-grp.multi-three .tweet-img.tweet-img1 {
    height: 100%;
    width: 50%;
    display: inline-block;
}
.tweet-img-grp.multi-three .tweet-img.tweet-img2,
.tweet-img-grp.multi-three .tweet-img.tweet-img3 {
    height: 50%;
    width: 50%;
    display: inline-block;
}
.tweet-img-grp.multi-four .tweet-img.tweet-img1,
.tweet-img-grp.multi-four .tweet-img.tweet-img2,
.tweet-img-grp.multi-four .tweet-img.tweet-img3,
.tweet-img-grp.multi-four .tweet-img.tweet-img4 {
    height: 50%;
    width: 50%;
    display: inline-block;
}
.desktop_view .twitter-tweet#download {
    width: 598px;
}
.desktop_view .twitter-tweet-body .modal-header .avatar {
    height: 49px;
    width: 49px;
}
.desktop_view .twitter-tweet-body .modal-header .verified-icon {
    height: 16px;
    width: 16px;
    margin-left: 3px;
}
.mobile_view .tweet-img-grp {
    height: 185px;
}
.mobile_view .tweet-img-grp.multi-one {
    height: 165px;
}
/* Positionnement de la vidéo */
.tweet-video {
    position: relative;
    height: 322px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0 20px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}
.tweet-video .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Durée de la vidéo */
.tweet-video-time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 14px;
    padding: 0px 5px;
    border-radius: 5px;
}
/* Icône de son */
.tweet-video-sound-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tweet-video-sound-icon img {
    height: 14px;
    width: auto;
}
/* Icône d'options */
.tweet-video-options {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tweet-video-options img {
    height: 13px;
    width: auto;
}

.tweet-video .video {
    -webkit-overflow-scrolling: touch; /* Permet le défilement fluide */
}





.twitter-tweet-left .fileinput.with-border {
    margin-top: 20px;
}
.main-twitter-profile {
    position: relative;
}
.main-twitter-profile .twitter-bottom-icon .add-post-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1da1f2;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: 15px;
    right: 15px;
    box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.3);
    z-index: 10;
}
.main-twitter-profile .twitter-header {
    width: 100%;
    height: 144px;
    background: #1da1f2;
}
.main-twitter-profile .twitter-header-cover {
    width: 100%;
    height: 100%;
    background-image: url(../../images/twitter-header-cover.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-twitter-profile .twitter-header-icon {
    position: absolute;
    width: 100%;
    padding: 12px;
    display: block;
}
.mobile_view .twitter-profile .twitter-tweet-header {
    display: none;
}
.main-twitter-profile .twitter-header-icon .right-dots {
    float: right;
}
.main-twitter-profile .twitter-header-icon .left-icon,
.main-twitter-profile .twitter-header-icon .right-dots {
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.main-twitter-profile .twitter-header-icon .left-icon img,
.main-twitter-profile .twitter-header-icon .right-dots img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main-twitter-profile .twitter-header-icon .right-dots span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
}
.main-twitter-profile .twitter-header-icon .right-dots span:nth-child(1) {
    top: 20%;
    transform: translate(-50%, -20%);
}
.main-twitter-profile .twitter-header-icon .right-dots span:nth-child(3) {
    top: 80%;
    transform: translate(-50%, -80%);
}
.main-twitter-profile .main-twitter-profile-pic {
    padding: 0 12px;
}
.main-twitter-profile .main-twitter-profile-pic .twitter-profile-pic {
    display: inline-block;
    position: relative;
    top: -40px;
    margin-bottom: -40px;
}
.main-twitter-profile .main-twitter-profile-pic .twitter-profile-pic img {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.twitter-profile-edit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 39px;
    width: 110px;
    border: 1px solid #657786;
    margin-top: 10px;
    float: right;
    border-radius: 36px;
}
.twitter-profile-edit-btn p {
    color: #657786;
    font-weight: 700;
    margin: 0;
    font-size: 15px;
    text-transform: capitalize;
}
.main-twitter-profile .twitter-profile-box {
    padding: 0 12px 20px;
}
.main-twitter-profile .twitter-profile-box .profile-name {
    margin-bottom: 22px;
}
.main-twitter-profile .twitter-profile-box .profile-name h2 {
    color: #14171a;
    font-size: 19px;
    line-height: 25px;
    font-weight: 900;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    max-width: 192px;
}
.desktop_view .main-twitter-profile .twitter-profile-box .profile-name h2 {
    max-width: 292px;
}
.main-twitter-profile .twitter-profile-box .profile-name .verified-icon {
    vertical-align: middle;
    margin-top: 1px;
}
.main-twitter-profile .twitter-profile-box .profile-name h5 {
    font-size: 14px;
    line-height: 20px;
    color: #657786;
    font-weight: 400;
    margin: 0;
}
.main-twitter-profile .twitter-profile-box .born-date,
.main-twitter-profile .twitter-profile-box .join-date {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    min-width: 32%;
}
.main-twitter-profile .twitter-profile-box .born-date img,
.main-twitter-profile .twitter-profile-box .join-date img {
    height: 18px;
    width: auto;
    margin-right: 6px;
}
.main-twitter-profile .twitter-profile-box .born-date p,
.main-twitter-profile .twitter-profile-box .born-date span,
.main-twitter-profile .twitter-profile-box .join-date p,
.main-twitter-profile .twitter-profile-box .join-date span {
    font-size: 15px;
    line-height: 20px;
    color: #657786;
    font-weight: 400;
    margin: 0;
}
.main-twitter-profile .twitter-profile-box .born-date span,
.main-twitter-profile .twitter-profile-box .join-date span {
    margin-right: 5px;
}
.main-twitter-profile .twitter-profile-box .follow-count ul {
    padding: 0;
    margin: 0;
}
.main-twitter-profile .twitter-profile-box .follow-count ul li {
    display: inline-block;
    list-style: none;
    margin-right: 15px;
}
.main-twitter-profile .twitter-profile-box .follow-count ul li h5 {
    padding: 0;
    margin: 0;
    display: inline-block;
    color: #000;
    font-size: 15px;
    font-weight: 700;
}
.main-twitter-profile .twitter-profile-box .follow-count ul li p {
    padding: 0;
    margin: 0;
    display: inline-block;
    color: #506476;
    font-size: 14px;
    font-weight: 400;
}
.desktop_view #download.twitter-profile {
    width: 598px;
}
.desktop_view .main-twitter-profile .twitter-header {
    height: 200px;
}
.desktop_view .main-twitter-profile .twitter-header-icon {
    display: none;
}
.desktop_view .main-twitter-profile .twitter-tweet-header {
    display: flex;
}
.desktop_view .main-twitter-profile .main-twitter-profile-pic .twitter-profile-pic img {
    width: 142px;
    height: 142px;
    border: 4px solid #fff;
}
.desktop_view .main-twitter-profile .main-twitter-profile-pic .twitter-profile-pic {
    top: -71px;
    margin-bottom: -71px;
}
.desktop_view .main-twitter-profile .main-twitter-profile-pic {
    padding: 0 15px;
}
.desktop_view .main-twitter-profile .twitter-profile-box .profile-name {
    margin-bottom: 10px;
}
.desktop_view .profile-date {
    display: flex;
    align-items: center;
}
.desktop_view .main-twitter-profile .twitter-profile-box .born-date {
    margin-right: 10px;
}
.desktop_view .main-twitter-profile .twitter-profile-box {
    padding: 0 15px 20px;
}
.desktop_view .main-twitter-profile .twitter-profile-box .verified-icon {
    height: 21px;
    width: 21px;
}
.desktop_view .main-twitter-profile .twitter-bottom-icon .add-post-icon {
    display: none;
}
.desktop_view .twitter-profile-edit-btn {
    border-color: #1DA1F2;
}
.desktop_view .twitter-profile-edit-btn p {
    color: #1DA1F2;
}
/* Conteneur principal */
.twitter-chat-header {
    display: flex;
    justify-content: space-between;
    /* Assure une répartition égale de l'espace entre les éléments */
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: -14px;
}
/* Flèche à gauche */
.twitter-header-arrow {
    margin-right: auto;
    /* Pousse tout ce qui est à droite */
}
.twitter-header-arrow img {
    width: 18px;
    /* Taille ajustée pour la flèche */
    height: auto;
    padding-bottom: 57px;
}
/* Titre au milieu avec l'image du profil et le nom */
.twitter-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Centrage vertical */
    margin-left: 5px;
}
.twitter-img {
    position: relative;
    margin-bottom: 5px;
    /* Espacement entre l'image et le texte */
}
.twitter-img img {
    width: 30px;
    /* Taille ajustée pour l'image du profil */
    height: 30px;
    border-radius: 50%;
}
.twitter-user-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
}
.twitter-content .text-name {
    font-size: 14px;
    font-weight: 900;
    color: black;
    /* Texte en noir */
    font-family: unset;
}
/* Icône à droite */
.twitter-header-icon {
    margin-left: auto;
    /* Pousse tout ce qui est à gauche */
}
.twitter-header-icon img {
    width: 19px;
    /* Taille ajustée pour l'icône */
    height: auto;
    padding-bottom: 57px;
}
.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;
}
.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;
}
#gold-countdown {
    display: none;
    margin-left: 10px;
    font-weight: bold;
    color: red;
}
.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 */
}

.text-message {
    white-space: pre-wrap; /* Garde les sauts de ligne */
}
