
.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: #111111;
  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: #1c2329;
}

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

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

/* P1 (reçu) */
.call-card--p1 .call-card__icon{
  background:#353a40bf;            
}

/* P2 (envoyé) */
.call-card--p2 .call-card__icon{
  background:#2c5648e0;           
}


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

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

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

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

.call-card__time {
    position: absolute;
    font-weight: 500;
    right: 10px;
    bottom: 3px;
    font-size: 11px;
    color: #a4a5a5;
}

/* 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: #29343a;
    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: #242626;
    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 */

/* 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;
}

.icon-hidden {
    display: none;
}

.icon-visible {
    display: inline;
}

#android-batteryPercentageDisplay {
    font-size: 17px;
    color: #ffffff;
}

/* Classes gÃ©nÃ©rales pour les icÃ´nes */
.icon-hidden {
    display: none;
}

.icon-visible {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

/* Styles spÃ©cifiques pour chaque icÃ´ne */
.icon-bluetooth,
.icon-clock,
.icon-nfc,
.icon-mute,
.icon-lte {
    width: 14px;
}

.icon-network {
    width: 10px;
    align-items: center;
    margin-right: 5px;
}

.icon-wifi {
    width: 19px;
    align-items: center;
    margin-right: 5px;
}

.icon-signal {
    width: 13px;
    align-items: center;
    margin-right: 5px;
}

.icon-battery {
    width: 10px;
}


@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: 500;
    color: white;
    font-size: 12px;
    margin-top: 2px;
}

.iphone-medium {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 11px;
    margin-bottom: -2px;
}

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




/* Styles pour aligner les Ã©lÃ©ments dans battery-container */
.battery-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.op-header {
    font-weight: bold;
    font-family: 'SF Pro Display', sans-serif;
}


.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;
}

.gold-watermark {
    position: absolute;
    font-size: 25px;
    color: rgba(0, 0, 0, 0.8);
    pointer-events: none;
    user-select: none;
    z-index: 10000;
}

.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;
}

.modal-header {
    border-bottom: none !important;
}

label {
    margin-Bottom: 5px !important;
}

img#network {
    margin-right: 3px;
}

.android-header .status-bar .status-time {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}

img#myImage {
    margin-left: 3px;
}

.SFPRODISPLAYBOLD {
    font-size: 12px;
    position: relative;
    top: 1px;
    color: white;
}

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;
}



#networkIconSlider {
    width: 100%;
    margin: 10px 0;
}

.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: 10px;
}

.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: #909193;
    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: #0b1014;
    /* Fond noir avec transparence de 50% */
    padding: 8px 10px 9px 5px;
    min-height: 0px;
    width: 100%;
    z-index: 10;
    /* S'assurer que le header est au-dessus du contenu */
    color: white;
    /* Texte en blanc pour contraster avec le fond transparent */
}

.modal-header {
    border-bottom: 1px solid #1a1a1a;
}

.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 !important;
}

.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: #fff;
    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: rgb(26 26 26 / 99%);
    padding: 10px 20px 3px 0;
    min-height: 55px;
    display: flex;
    align-items: center;
    border-bottom: 0.1px solid rgba(0, 0, 0, 0.24);
    z-index: 10;
    position: relative;
    color: white;
}

.modal-body.whatsapp-body.whatsapp-body-ios {
    position: relative;
    z-index: 5;
    margin-top: -54px;
    padding-top: 54px;
}

.wp-ios-header .modal-header .modal-title {
    margin-left: 30px;
    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/images/Whatsapp_background_image-android1.webp);
    background-size: contain;
    background-position: center;
    padding: 60px 0;
    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: #1f272a !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: #134d37 !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-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: #909193;
    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: -5px;
}

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

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

/* 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: #171717;
    /* 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: #8d9598;
    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;
}

.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: #242527 !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: #929a9b;
    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: 5px 3px;
    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 */
}

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;
}

.right-part .modal-body {
    padding-bottom: 80px !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: 6px;
    top: 2px;
    font-size: 28px;
    font-weight: bold;
}




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



.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: rgb(255 255 255 / 3%);
    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;
    color: rgb(255 255 255 / 15%);
}

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

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

.xs-12,
table {
    width: 100%;
}

.clear,
.container-fuild:before,
.container:after,
.row:after {
    clear: both;
}

.label,
.validat-btn {
    white-space: nowrap;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none !important;
}

a,
abbr,
acronym,
address,
big,
blockquote,
body,
caption,
cite,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
img,
ins,
kbd,
label,
legend,
li,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: 0 0;
}

.caret-down,
img {
    vertical-align: middle;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

.outside-ol {
    list-style: outside;
    padding-left: 20px;
    margin-bottom: 15px;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.h1,
h1 {
    font-size: 24px !important;
}

.h2,
h2 {
    font-size: 22px;
}

.h3,
h3 {
    font-size: 20px;
}

.h4,
h4 {
    font-size: 18px;
}

.h5,
h5 {
    font-size: 16px;
}

.form-control,
.h6,
h6 {
    font-size: 14px;
}

.container,
.container-fuild {
    padding-left: 10px;
    padding-right: 10px;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.container-fuild:after,
.container-fuild:before,
.container:after,
.container:before,
.row:after,
.row:before {
    display: table;
    content: " ";
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.hide {
    display: none;
}

.form-group {
    margin-bottom: 5px;
    margin-top: 10px;
}

.form-control {
    position: relative;
    height: 40px;
    width: 100%;
    display: block;
    padding: 9px 10px;
    color: #252525;
    background-color: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    box-shadow: none;
}

label.form-label {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}

.phome_country_error {
    color: #f44336;
    margin-left: 20px;
    vertical-align: middle;
}

.lg-1,
.lg-10,
.lg-11,
.lg-12,
.lg-2,
.lg-3,
.lg-4,
.lg-5,
.lg-6,
.lg-7,
.lg-8,
.lg-9,
.md-1,
.md-10,
.md-11,
.md-12,
.md-2,
.md-3,
.md-4,
.md-5,
.md-6,
.md-7,
.md-8,
.md-9,
.sm-1,
.sm-10,
.sm-11,
.sm-12,
.sm-2,
.sm-3,
.sm-4,
.sm-5,
.sm-6,
.sm-7,
.sm-8,
.sm-9,
.xs-1,
.xs-10,
.xs-11,
.xs-12,
.xs-2,
.xs-3,
.xs-4,
.xs-5,
.xs-6,
.xs-7,
.xs-8,
.xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.xs-11 {
    width: 91.66666667%;
}

.xs-10 {
    width: 83.33333333%;
}

.xs-9 {
    width: 75%;
}

.xs-8 {
    width: 66.66666667%;
}

.xs-7 {
    width: 58.33333333%;
}

.xs-6 {
    width: 50%;
}

.xs-5 {
    width: 41.66666667%;
}

.xs-4 {
    width: 33.33333333%;
}

.xs-3 {
    width: 25%;
}

.xs-2 {
    width: 16.66666667%;
}

.xs-1 {
    width: 8.33333333%;
}

.xs-1,
.xs-10,
.xs-11,
.xs-12,
.xs-2,
.xs-3,
.xs-4,
.xs-5,
.xs-6,
.xs-7,
.xs-8,
.xs-9 {
    float: left;
}

@media (min-width:768px) {
    .sample-card-table th {
        width: 140px;
    }

    .validat-btn {
        white-space: nowrap;
        margin-left: 20px;
    }

    .container {
        width: 750px;
    }

    .menu>ul>li {
        width: auto;
        display: block;
        padding: 10px 10px;
        position: relative;
    }

    .dropdown-list {
        position: absolute;
        width: 100%;
        min-width: 320px;
        padding: 5px;
        border-radius: 2px;
        box-shadow: 0 3px 3px #c5c5c5;
    }

    .sm-1,
    .sm-10,
    .sm-11,
    .sm-12,
    .sm-2,
    .sm-3,
    .sm-4,
    .sm-5,
    .sm-6,
    .sm-7,
    .sm-8,
    .sm-9 {
        float: left;
    }

    .sm-12 {
        width: 100%;
    }

    .sm-11 {
        width: 91.66666667%;
    }

    .sm-10 {
        width: 83.33333333%;
    }

    .sm-9 {
        width: 75%;
    }

    .sm-8 {
        width: 66.66666667%;
    }

    .sm-7 {
        width: 58.33333333%;
    }

    .sm-6 {
        width: 50%;
    }

    .sm-5 {
        width: 41.66666667%;
    }

    .sm-4 {
        width: 33.33333333%;
    }

    .sm-3 {
        width: 25%;
    }

    .sm-2 {
        width: 16.66666667%;
    }

    .sm-1 {
        width: 8.33333333%;
    }
}

.copy_span,
.dropdown {
    position: relative;
}

@media (min-width:992px) {
    .dropdown-list {
        margin-top: 10px;
    }

    .container {
        width: 970px;
    }

    .md-1,
    .md-10,
    .md-11,
    .md-12,
    .md-2,
    .md-3,
    .md-4,
    .md-5,
    .md-6,
    .md-7,
    .md-8,
    .md-9 {
        float: left;
    }

    .md-12 {
        width: 100%;
    }

    .md-11 {
        width: 91.66666667%;
    }

    .md-10 {
        width: 83.33333333%;
    }

    .md-9 {
        width: 75%;
    }

    .md-8 {
        width: 66.66666667%;
    }

    .md-7 {
        width: 58.33333333%;
    }

    .md-6 {
        width: 50%;
    }

    .md-5 {
        width: 41.66666667%;
    }

    .md-4 {
        width: 33.33333333%;
    }

    .md-3 {
        width: 25%;
    }

    .md-2 {
        width: 16.66666667%;
    }

    .md-1 {
        width: 8.33333333%;
    }

    .sidebar-active {
        display: none;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }

    .lg-1,
    .lg-10,
    .lg-11,
    .lg-12,
    .lg-2,
    .lg-3,
    .lg-4,
    .lg-5,
    .lg-6,
    .lg-7,
    .lg-8,
    .lg-9 {
        float: left;
    }

    .lg-12 {
        width: 100%;
    }

    .lg-11 {
        width: 91.66666667%;
    }

    .lg-10 {
        width: 83.33333333%;
    }

    .lg-9 {
        width: 75%;
    }

    .lg-8 {
        width: 66.66666667%;
    }

    .lg-7 {
        width: 58.33333333%;
    }

    .lg-6 {
        width: 50%;
    }

    .lg-5 {
        width: 41.66666667%;
    }

    .lg-4 {
        width: 33.33333333%;
    }

    .lg-3 {
        width: 25%;
    }

    .lg-2 {
        width: 16.66666667%;
    }

    .lg-1 {
        width: 8.33333333%;
    }

    .lg-hide {
        display: none;
    }
}

* {
    outline: none;
}

body {
    font-family: "Open Sans", sans-serif !important;
    background: #f9f9f9 !important;
}

body::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #636363;
}

textarea::-webkit-scrollbar-track {
    border-radius: 6px;
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 6px;
}

input[type="submit"],
input[type="button"],
input[type="reset"],
button,
a {
    cursor: pointer;
}

select,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type=checkbox]:focus,
input[type=file]:focus,
input[type=radio]:focus {
    outline: none !important;
}

select::-ms-expand {
    display: none;
}

.m-auto {
    margin: 0 auto;
    float: none;
}

p,
a,
ul li,
ol li {
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #454545;
    font-weight: 600;
}

a {
    text-decoration: none !important;
    color: #252525;
    transition: 0.3s;
}

a:hover {
    color: #696b6b;
}

h1.h1-title {
    text-align: center;
    margin-top: 20px;
}

h2.h2_title {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

h6.h6-title {
    color: #212121;
    font-size: 16px;
}

.sec-title2 h1,
.sec-title2 h2,
.sec-title2 h3,
.sec-title2 h4,
.sec-title2 h5,
.sec-title2 h6 {
    color: #333;
    text-transform: capitalize;
}

.sec-title2:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 60px;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid #696b6b;
}

.btn.mobile_only {
    display: none;
}

.btn.dsk_only {
    display: block;
}

.sec-title {
    text-align: center;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.sec-title h1 {
    color: #333;
}

.sec-title:before {
    position: absolute;
    content: " ";
    background: #3f3f3f;
    width: 70px;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}

.sec-head {
    margin-top: 20px;
    padding-bottom: 15px;
    color: #333333;
    font-weight: 600;
    font-size: 22px;
    display: inline-block;
    position: relative;
    transition: .5s;
}

.sec-head:before {
    position: absolute;
    content: "";
    background: #333;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 2px;
}

.sec-head:hover {
    color: #000;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.align-items {
    align-items: center;
}

.justify-content {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.table-responsive {
    overflow-x: auto;
    overflow: auto;
}

.text-small {
    font-size: 80%;
}

.coin-symbol-pink {
    color: #eb3e4a;
}

.coin-name-blue {
    color: #013859;
}

.hr,
hr {
    width: 100%;
    height: 1px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #f1f1f1;
}

.form-element {
    position: relative;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.form-element.arrow:before {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    font-size: 20px;
    font-family: 'fontawesome';
    color: #696b6b;
    transition: .3s;
    z-index: 1;
}

.generat-btn {
    display: inline-block;
    background-color: #fff;
    margin: 4px;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 1;
    padding: 4px 10px;
    transition: .5s;
    width: 156px;
}

.btn,
.btn-primary,
.download_file_card,
.social-page .btn,
.social-page .btn-primary,
.social-page .download_file_card {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: 38px;
    border-radius: 6px;
    -webkit-appearance: none;
    border: 1px solid #383838;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    padding: 5px 12px;
    background: #383838;
    color: #fff;
    opacity: 1;
    transition: .3s;
}

.btn i,
.social-page .btn i {
    position: relative;
    margin-left: 8px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 10px;
}

.btn:hover,
.download_file_card:hover,
.generat-btn:hover,
.social-page .btn:hover,
.social-page .download_file_card:hover,
.social-page .generat-btn:hover,
.btn.focus,
.btn:focus {
    opacity: 0.8;
    background: #696b6b;
    border: 1px solid #696b6b;
    color: #ffffff !important;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary[disabled] {
    opacity: 0.8 !important;
    background-color: #696b6b !important;
    border: 1px solid #696b6b !important;
    color: #ffffff;
}

.download_file_card:hover,
.generate_btn_show:hover,
.social-page .download_file_card:hover,
.social-page .generate_btn_show:hover {
    background: #0fd0e2;
    border: 1px solid #0fd0e2;
}

.btn.border-btn {
    color: #696b6b;
    background: none;
    opacity: 1;
}

.btn.border-btn:hover {
    color: #ffffff;
    background: #696b6b;
}

.caret-down {
    width: 0;
    height: 0;
    display: inline-block;
    margin-left: 4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

.arrow-right {
    display: inline-block;
    border-top: 3px solid;
    border-right: 3px solid;
    transform: rotate(45deg);
    padding: 2px;
}

.page-title {
    margin: 15px 0;
    font-size: 24px;
    font-weight: 600;
}

.paragraph {
    font-size: 14px;
    margin-bottom: 20px;
}

.table {
    margin-bottom: 10px;
}

.table th {
    text-align: left;
}

.table td,
.table th {
    padding: 8px;
    border: 1px solid #e5e5e5;
}

.note {
    padding: 15px;
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0;
    color: #721c24;
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 5px;
}

.success_msg {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 24px;
    color: #155724;
    text-align: center;
    padding: 15px;
    font-weight: normal;
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 5px;
}

.white-box {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 20px;
    background-color: #fff;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.show-result {
    display: none;
}

.sec-title2 {
    padding-top: 15px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    position: relative;
}

.header {
    height: 80px;
    background: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.header .logo {
    padding: 14px 0;
    width: 250px;
    display: inline-block;
}

.header .logo a {
    width: 220px;
    height: 40px;
    position: relative;
    display: block;
    background-image: url('../images/fake-details-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu {
    width: calc(100% - 400px);
    display: inline-block;
    float: right;
    text-align: center;
}

.menu>ul {
    padding: 18px 0;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 0;
}

.menu>ul>li>a {
    display: inline-block;
    color: #333;
    font-size: 22px;
    position: relative;
    transition: .6s;
    text-decoration: none;
    cursor: pointer;
}

.menu>ul>li>a.active,
.menu>ul>li>a:hover {
    color: #696b6b;
}

.fake_submenu {
    width: 235px;
    height: auto;
    padding: 5px;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    list-style: none;
    position: absolute;
    border: 1px solid #eee;
    top: calc(100% + 10px);
    left: 10px;
    z-index: 9999999;
    display: none;
    text-align: left;
}

.menu>ul>li:last-child .fake_submenu {
    left: unset;
    right: 10px;
}

.menu>ul>li:last-child .fake_submenu {
    width: 445px;
}

.menu>ul>li:last-child .fake_submenu li {
    width: 49.49%;
    display: inline-block;
}

.fake_submenu>li {
    display: block;
    position: relative;
    margin-bottom: 3px;
}

.fake_submenu>li>a {
    display: block;
    color: #333;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    transition: .3s;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
}

.mega-menu .fake_submenu .menu-parts ul li a:hover,
.mega-menu .fake_submenu .menu-parts ul li a.active,
.fake_submenu li a.active,
.fake_submenu li a:hover {
    color: #fff;
    background: #696b6b;
    cursor: pointer;
}

.fake_submenu li a:hover:before {
    width: 100%;
    opacity: 1;
}

.menu-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 40px;
    height: 30px;
    background: none;
}

.menu-btn .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80%;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

.menu-btn .bar:nth-child(1) {
    top: 20%;
    transform: translate(-50%, -20%);
}

.menu-btn .bar:nth-child(3) {
    top: 80%;
    transform: translate(-50%, -80%);
}

.menu-btn.menu-bar .bar:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-btn.menu-bar .bar:nth-child(2) {
    opacity: 0;
}

.menu-btn.menu-bar .bar:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mega-menu {
    position: unset !important;
    width: 100%;
    display: block;
}

.mega-menu .fake_submenu {
    position: absolute;
    top: 74px;
    left: 50%;
    transform: translate(-50%, 0);
    height: auto;
    width: 1140px;
}

.mega-menu .fake_submenu .menu-parts {
    position: relative;
    height: 100%;
    width: 100%;
    display: inline-block;
    padding: 10px;
}

.mega-menu .fake_submenu .menu-parts h4 {
    text-transform: capitalize;
}

.mega-menu .fake_submenu .menu-parts ul {
    display: block !important;
}

.mega-menu .fake_submenu .menu-parts ul li {
    display: block;
    margin-bottom: 3px;
}

.mega-menu .fake_submenu .menu-parts ul li:last-child {
    margin: 0;
}

.mega-menu .fake_submenu .menu-parts ul li a {
    position: relative;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 6px;
    display: block;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    transition: .3s;
}

.header-page-ad {
    height: 280px;
}

.small-page-ad {
    margin-top: 20px;
    height: 90px;
}

.footer {
    padding: 15px 0 15px 0;
    background-color: #000;
}

.footer ul.footer-links {
    margin: 0;
}

.footer ul.footer-links>li {
    display: inline-block;
}

.footer ul.footer-links>li>a {
    padding: 5px 9px;
    font-size: 14px;
    display: inline-block;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    transition: .5s;
}

.footer ul.footer-links>li>a:hover {
    color: #696b6b;
    text-decoration: none;
}

.footer ul.footer-links .link_item {
    position: relative;
}

li.link_item {
    display: none;
}

.footer .web_links {
    font-size: 15px;
    cursor: pointer;
    position: relative;
    padding: 0 9px 3px;
    vertical-align: middle;
}

.footer .web_links i {
    padding-right: 5px;
}

.footer .list_links {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%);
    width: 500px;
    height: auto;
    background-color: #fff;
    list-style: none;
    padding: 20px 20px 10px 20px;
    text-align: left;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 15px #999;
    display: none;
    z-index: 99;
}

.footer .list_links li {
    margin-bottom: 7px;
    width: 49%;
    display: inline-block;
}

.footer .list_links li a {
    line-height: 20px;
}

.footer .list_links li a img {
    width: 17px;
    margin-right: 10px;
}

.footer .list_links li:hover a {
    color: #696b6b;
}

.all_fav_icon {
    background-image: url(../images/FavIcons/fav_icons.png);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
    margin-top: 2px;
    vertical-align: text-bottom;
}

.all_fav_icon.ccard-generator {
    background-position: 0 -16px;
}

.all_fav_icon.convert-tool {
    background-position: 0 -32px;
}

.all_fav_icon.debitcard-generator {
    background-position: 0 -48px;
}

.all_fav_icon.prankshit {
    background-position: 0 -64px;
}

.fakenumber {
    background-position: 0 -80px;
}

.getmypincode {
    background-position: 0 -96px;
}

.mybankdetail {
    background-position: 0 -111px;
}

.mybankswiftcode {
    background-position: 0 -127px;
}

.ytubetool {
    background-position: 0 -142px;
}

.generatesignature {
    background-position: 0 -160px;
}

.getcoupon {
    background-position: 0 -173px;
}

.gift-cardgenerator {
    background-position: 0 -190px;
}

.wpresource {
    background-position: 0 -206px;
}

.globaltimeconverter {
    background-position: 0 -222px;
}

.footer .social_icons {
    margin: 0;
}

.social_icons {
    text-align: center;
    display: inline-block;
    float: right;
    padding-right: 0;
    margin-top: 5px
}

.social_icons a {
    margin-left: 5px;
}

.fab_icon i {
    width: 30px;
    height: 30px;
    background-color: #3b5998;
    line-height: 29px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #3b5998;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.fab_icon i:hover {
    background-color: transparent;
    color: #3b5998
}

.twitt_icon i {
    width: 30px;
    height: 30px;
    background-color: #1da1f2;
    line-height: 29px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #1da1f2;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.twitt_icon i:hover {
    background-color: transparent;
    color: #1da1f2
}

.gplus_icon i {
    width: 30px;
    height: 30px;
    background-color: #dd4b39;
    line-height: 29px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #dd4b39;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.gplus_icon i:hover {
    background-color: transparent;
    color: #dd4b39
}

.linkedin_icon i {
    width: 30px;
    height: 30px;
    background-color: #0e76a8;
    line-height: 29px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #0e76a8;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.linkedin_icon i:hover {
    background-color: transparent;
    color: #0e76a8
}

.pint_icon i {
    width: 30px;
    height: 30px;
    background-color: #c8232c;
    line-height: 29px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #c8232c;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.pint_icon i:hover {
    background-color: transparent;
    color: #c8232c
}

.breadcrumb-wrap {
    margin: 25px 0;
    display: block;
    width: 100%;
}

.breadcrumb-wrap>ul {
    list-style: none;
}

.breadcrumb-wrap>ul>li {
    display: inline-block;
}

.breadcrumb-wrap>ul>li>a {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 5px;
    margin-left: -4px;
    margin-right: 2px;
    height: 28px;
    font-size: 14px;
    color: #252525;
    line-height: 28px;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    transition: all ease .2s;
}

.breadcrumb-wrap>ul>.current a,
.breadcrumb-wrap>ul>.current a:hover {
    background: #696b6b;
    color: #fff;
}

.breadcrumb-wrap>ul>.current>a:after {
    border-left-color: #696b6b !important;
    height: 100%;
}

.breadcrumb-wrap>ul>li>a>svg {
    fill: #696b6b;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 4px;
}

.breadcrumb-wrap>ul>li>a::after,
.breadcrumb-wrap>ul>li>a::before {
    content: "";
    border-width: 14px 8px;
    border-style: solid;
    border-color: transparent;
    position: absolute;
    top: 0;
    transition: all ease .2s;
    height: 100%;
}

.breadcrumb-wrap>ul>li>a::after {
    border-left-color: #fff;
    border-right: 0;
    right: -8px;
    z-index: 102;
}

.breadcrumb-wrap>ul>li:first-child>a::before {
    border-left-color: #fff;
}

.breadcrumb-wrap>ul>li:first-child>a:hover::before {
    border-left-color: #696b6b;
}

.breadcrumb-wrap>ul>li:first-child>a.current::before {
    border-left-color: #696b6b;
}

.breadcrumb-wrap>ul>li>a::before {
    border-left-color: #f9f9f9;
    left: 0;
    z-index: 101;
}

.breadcrumb-wrap>ul>li>a.current {
    background-color: #696b6b;
    color: #fff;
    cursor: default;
}

.breadcrumb-wrap>ul>li>a.current:after {
    border-left-color: #696b6b;
}

.breadcrumb-wrap>ul>li>a:hover {
    background: #696b6b;
    color: #fff;
}

.breadcrumb-wrap>ul>li>a:hover>svg {
    fill: #fff;
}

.breadcrumb-wrap>ul>li+li:first-child>a.current:hover::before,
.breadcrumb-wrap>ul>li+li:first-child>a:hover::before,
.breadcrumb-wrap>ul>li>a:hover:after {
    border-left-color: #00bcd4;
}

.sidebar-wrapper {
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
    position: relative;
    border: 1px solid #dddddd;
    -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, .05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .05);
}

.sidebar-wrapper .search-tools {
    position: relative;
}

.sidebar-wrapper #search-tools {
    padding: 15px 40px 15px 10px;
    border: none;
    border-bottom: 1px solid #dddddd;
    width: 100%;
}

.sidebar-wrapper .search-tools i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    line-height: 1px;
    font-size: 17px;
    color: #333;
    transition: .5s;
}

.sidebar-wrapper #search-tools:focus+i {
    color: #696b6b;
}

.sidebar-wrapper>ul {
    padding: 0;
    flex-direction: column;
    border-top: 0;
    max-height: 750px;
    overflow: auto;
}

.sidebar-wrapper>ul>li:not(:last-child) {
    border-bottom: 1px solid #dddddd5e;
}

.sidebar-wrapper>ul>li>a {
    position: relative;
    height: 44px;
    width: 100%;
    padding: 7px 10px;
    display: inline-block;
    color: #000000;
    width: 100%;
    font-size: 15px;
    transition: .3s;
}

.sidebar-wrapper.country-slidbar>ul>li>a {
    padding: 9px 10px;
}

.sidebar-wrapper>ul>li>a:hover {
    padding: 7px 30px;
}

.sidebar-wrapper.country-slidbar>ul>li>a:hover {
    padding: 9px 30px;
}

.sidebar-wrapper>ul>li>a>i {
    position: absolute;
    top: 50%;
    left: -1%;
    transform: translate(0, -50%);
    font-size: 17px;
    line-height: 1px;
    font-weight: 700;
    opacity: 0;
    transition: .3s;
}

.sidebar-wrapper>ul>li>a:hover i {
    opacity: 1;
    left: 10px;
}

.sidebar-active.down .drop-change {
    transform: rotate(-180deg);
}

.vadidat_img_center {
    display: table;
    max-width: 160px;
}

.sidebar-active {
    font-size: 16px;
    color: #696b6b;
    border: 1px solid #696b6b;
    padding: 5px;
    text-align: center;
    font-weight: 600;
}

li.cardsideber.active a {
    text-decoration: none;
    color: #fff;
    background: #696b6b;
}

.sidebar-active>.drop-change {
    margin-top: 0;
    position: absolute;
    right: 20px;
    top: 12px;
}

.dropdown-list {
    display: none;
    left: 0;
    top: 100%;
    z-index: 1;
    background-color: #fff
}

.dropdown-list>li {
    border-bottom: 1px solid #f1f1f1
}

.dropdown-list>li>a {
    color: #00447c;
    font-weight: 600;
    padding: 8px 10px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    transition: all ease .2s;
    display: block;
}

.dropdown-list>li>a:hover {
    background-color: #00447c;
    color: #fff;
}

.open .dropdown-list {
    display: block;
}

.description {
    position: relative;
    padding: 15px;
    margin-top: 21px;
    line-height: 20px;
    text-align: left;
    background: #ffff;
    border-left: 3px solid #696b6b;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.description>p {
    margin-bottom: 10px;
}

.description a {
    color: #696b6b;
}

.description p,
.description ul,
.description ol {
    margin-bottom: 15px;
}

.description2 p {
    margin-inline-start: 15px;
}

.description p strong {
    text-transform: capitalize;
}

.description .description-title {
    font-size: 18px;
}

.description .description-title2 {
    color: #212121;
    font-size: 16px;
}

.description dl {
    display: block;
    margin: 16px 0 16px 16px;
}

.description dt {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #333333;
}

.description dl.disc dt {
    list-style-type: disc;
    display: list-item;
}

.description dd {
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    display: block;
    margin-left: 15px;
    margin-bottom: 15px;
}

.description ul.description-list {
    margin-bottom: 10px;
    padding-left: 1.2em;
    list-style-type: disc;
}

.description ul.description-list>li {
    display: list-item;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-form .form-group {
    margin: 0 0 30px 0;
}

.contact-form .contactus-note {
    margin-bottom: 20px;
    display: inline-block;
    color: #5b5b5b;
    line-height: 20px;
    letter-spacing: 1px;
}

.contact-form .contant-form-label {
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: #5b5b5b;
    font-size: 15px;
}

.contact-form .contant-form-label>span {
    font-size: 12px;
    color: #5b5b5b;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.required {
    border-color: #ff0000;
}

.mail-detail {
    border-top: 1px solid #d8d8d845;
    padding-top: 15px;
    text-align: center;
    line-height: 24px;
}

.ccard-mail {
    color: #00447c;
    font-size: 15px;
}

.message-read-status {
    display: inline-block;
    float: right;
}

.message-status {
    display: inline-block;
    margin-left: 3px;
    vertical-align: middle;
}

.message-text p {
    display: inline;
    word-break: break-word;
    white-space: break-spaces;
}



.whatsapp-ios .whatsapp-text {
    background: #f7f7f7 !important;
    z-index: 1;
}

.download-btn button {
    margin-top: 20px;
}

span.mail-icon i {
    font-size: 15px;
    margin-right: 8px;
    color: #696b6b;
}

span.user-icon i {
    font-size: 15px;
    margin-right: 8px;
    color: #696b6b;
}

.all-card-image {
    margin: 20px auto;
    display: table;
    width: 100%;
}

.single-card-image {
    margin: 30px auto;
    display: table;
    max-width: 160px;
}

.bulk-card-type {
    display: block;
    background-color: #a8a8a8;
    padding: 8px 14px;
    color: #fff;
    border-radius: 2px;
}

.copy-icon {
    width: 16px;
    cursor: copy;
}

.label {
    padding: 4px 10px;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    vertical-align: baseline;
    border-radius: .25em;
}

.label-primary {
    background-color: #00447c;
}

.all-card,
.all-share,
.all-card-imei,
.drop-change {
    vertical-align: middle;
    display: inline-block;
}

.generated,
.note,
.paragraph {
    line-height: 24px;
}

.checked-listing li:before,
.valid:after {
    vertical-align: middle;
    content: '';
}

div#share-buttons {
    margin: 15px 0;
}

#share-buttons a {
    text-decoration: none;
}

#share-buttons img {
    width: 25px;
}

.copy_span,
.notvalid .notvalid-icon,
.valid:after,
.validat-checker-title {
    display: inline-block;
}

.bar:not(:last-child) {
    margin-bottom: 4px;
}

.download_file_card i {
    font-size: 14px;
    margin-left: 3px;
}

.generat-btn-wrapper .btn {
    margin: 0 5px;
}

.copy_span {
    min-width: 80px;
}

.sample-card-table td,
.sample-card-table th {
    padding: 4px 6px;
    color: #fff;
}

.sample-card-table th {
    text-align: left;
}

.generat-btn-wrapper {
    margin: 20px auto;
    text-align: center;
}

.generate_btn_show>.fa-spin,
button#phone_generate>.fa-spin {
    animation: unset;
}

.card-icon-incard {
    position: absolute;
    right: 15px;
    bottom: 10px;
    width: 60px;
}

.checked-listing li {
    margin-bottom: 8px;
}

.checked-listing li:before {
    width: 10px;
    height: 6px;
    border-top: 2px solid #00447c;
    border-right: 2px solid #00447c;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 6px;
}

.useful-links {
    list-style-type: circle;
    list-style-position: inside;
    margin-bottom: 20px;
}

.useful-links>li {
    margin-bottom: 8px;
}

.generated {
    max-height: 480px;
    overflow: auto;
    margin: 20px 0;
    background-color: #f9f9f9;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    box-shadow: 0 0 3px 0 #b5b5b5;
}

.validat-checker-card {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 0 6px 0 #b5b5b5;
}

.card-validator-wrapper,
.validat-result-wrapper {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 0 3px #b5b5b5;
}

.validat-checker-title {
    margin-bottom: 10px;
}

.card-validator-wrapper,
.luhn-algorithm {
    margin-bottom: 20px;
}

.validat-result-wrapper {
    margin-top: 20px;
    border: 1px solid #e1e1e1;
}

.luhn-algorithm {
    width: 100%;
    max-width: 540px;
}

.validat-image {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.cvv-image {
    width: 100%;
    max-width: 280px;
}

.valid:after {
    width: 18px;
    height: 10px;
    border-bottom: 4px solid green;
    border-left: 4px solid green;
    transform: rotate(-45deg);
    transform-origin: left;
    margin-left: 8px;
}

.notvalid-icon {
    position: relative;
    display: none;
    height: 14px;
    width: 16px;
    margin-left: 8px;
}

.notvalid-icon>span:first-child,
.notvalid-icon>span:last-child {
    width: 18px;
    height: 4px;
    display: inline-block;
    background-color: red;
    position: absolute;
}

.notvalid-icon>span:first-child {
    transform: rotate(-45deg);
    transform-origin: right;
    left: -5px;
}

.notvalid-icon>span:last-child {
    transform: rotate(45deg);
    transform-origin: left;
}

.copy-text {
    position: relative;
}

.copied {
    display: none;
    position: absolute;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    padding: 8px;
    border-radius: 4px;
    z-index: 1;
    left: 0;
    right: 0;
    top: -35px;
    max-width: 80px;
    text-align: center;
}

.donate {
    display: none;
    box-shadow: none;
    background: 0 0;
    border: none;
    padding-top: 10px;
    cursor: pointer;
}

.all-card,
.all-card-imei,
.all-share {
    margin-right: 5px;
}

.copied:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
    box-shadow: none;
    width: 10px;
    height: 10px;
    background-color: #000;
}

.all-card {
    background-image: url(../images/mail-icons.png);
    width: 30px;
    z-index: 1;
    height: 30px;
}

.all-card.outlook {
    background-position: 0 -30px;
}

.all-card.mail {
    background-position: 0 -60px;
}

.all-card.yahoo {
    background-position: 0 -90px;
}

.all-card.rediffmail {
    background-position: 0 -120px;
}

.all-card.hotmail {
    background-position: 0 -150px;
}

.all-card.protonmail {
    background-position: 0 -180px;
}

.all-card.aol {
    background-position: 0 -210px;
}

.all-card.yandex {
    background-position: 0 -240px;
}

.all-card.tutanota {
    background-position: 0 -270px;
}

.all-card.hushmail {
    background-position: 0 -300px;
}

.all-card.lycos {
    background-position: 0 -330px;
}

.all-card.mailfence {
    background-position: 0 -360px;
}

.all-card.netcourrier {
    background-position: 0 -390px;
}

.all-card.openmailbox {
    background-position: 0 -420px;
}

.all-card.qq {
    background-position: 0 -450px;
}

.all-card.seznam {
    background-position: 0 -480px;
}

.all-card.minutemail {
    background-position: 0 -510px;
}

span.all-card.email {
    background-position: 0 -540px;
}

.all-card.visa {
    background-position: 0 0;
}

.all-card.visa-electron {
    background-position: 0 -21px;
}

.all-card.american-express {
    background-position: 0 -42px;
}

.all-card.china-unionpay {
    background-position: 0 -63px;
}

.all-card.masterCard {
    background-position: 0 -84px;
}

.all-card.maestro {
    background-position: 0 -105px;
}

.all-card.diners-club-carte-blanche {
    background-position: 0 -125px;
}

.all-card.diners-club-international,
.all-card.diners-club-united-states-canada,
.diners-club-enroute {
    background-position: 0 -147px;
}

.all-card.discover {
    background-position: 0 -168px;
}

.all-card.jcb {
    background-position: 0 -189px;
}

.all-card.uatp {
    background-position: 0 -210px;
}

.all-card.dankort {
    background-position: 0 -231px;
}

.all-card.interpayment {
    background-position: 0 -251px;
}

.all-card.bankcard {
    background-position: 0 -272px;
}

.all-card.china-t-union {
    background-position: 0 -292px;
}

.all-card.rupay {
    background-position: 0 -312px;
}

.all-card.laser {
    background-position: 0 -335px;
}

.all-card.solo {
    background-position: 0 -355px;
}

.all-card.switch {
    background-position: 0 -375px;
}

.all-card.canadian-imperial-bank-commerce {
    background-position: 0 -397px;
}

.all-card.royal-bank-canada {
    background-position: 0 -417px;
}

.all-card.td-canada-trust {
    background-position: 0 -439px;
}

.all-card.scotiabank {
    background-position: 0 -459px;
}

.all-card.bmo {
    background-position: 0 -480px;
}

.all-card.hsbc-canada {
    background-position: 0 -502px;
}

.all-card.instapayment {
    background-position: 0 -523px;
}

.all-card.mir {
    background-position: 0 -544px;
}

.all-card.troy {
    background-position: 0 -565px;
}

.all-card.verve {
    background-position: 0 -585px;
}

.all-card-imei {
    background-image: url(../images/mobile_carrier.png);
    width: 30px;
    z-index: 1;
    height: 30px;
}

.all-card-imei.apple {
    background-position: 0 0;
}

.all-card-imei.samsung {
    background-position: 0 -30px;
}

.all-card-imei.huawei {
    background-position: 0 -60px;
}

.all-card-imei.oppo {
    background-position: 0 -90px;
}

.all-card-imei.vivo {
    background-position: 0 -120px;
}

.all-card-imei.lg {
    background-position: 0 -150px;
}

.all-card-imei.xiaomi {
    background-position: 0 -180px;
}

.all-card-imei.lenovo {
    background-position: 0 -210px;
}

.all-card-imei.zte {
    background-position: 0 -240px;
}

.all-card-imei.sony {
    background-position: 0 -270px;
}

.all-card-imei.motorola {
    background-position: 0 -300px;
}

.all-card-imei.sagem {
    background-position: 0 -330px;
}

.all-card-imei.tct {
    background-position: 0 -360px;
}

.all-card-imei.siemens {
    background-position: 0 -390px;
}

.all-card-imei.alcatel {
    background-position: 0 -420px;
}

.all-card-imei.bird {
    background-position: 0 -450px;
}

.all-card-imei.gfive {
    background-position: 0 -480px;
}

.all-card-imei.htc {
    background-position: 0 -510px;
}

.all-card-imei.gionee {
    background-position: 0 -540px;
}

.all-card-imei.honor {
    background-position: 0 -570px;
}

.all-card-imei.nokia {
    background-position: 0 -600px;
}

.all-card-imei.micromax {
    background-position: 0 -630px;
}

.all-card-imei.lava {
    background-position: 0 -660px;
}

.all-card-imei.asus {
    background-position: 0 -690px;
}

.all-card-imei.panasonic {
    background-position: 0 -720px;
}

.all-card-imei.blackberry {
    background-position: 0 -750px;
}

.all-card-imei.karbonn {
    background-position: 0 -780px;
}

.all-card-imei.xolo {
    background-position: 0 -810px;
}

.all-card-imei.intex {
    background-position: 0 -840px;
}

.all-card-imei.videocon {
    background-position: 0 -870px;
}

.all-card-imei.idea {
    background-position: 0 -900px;
}

.all-card-imei.itel {
    background-position: 0 -930px;
}

.all-card-imei.coolpad {
    background-position: 0 -960px;
}

.all-card-imei.lyf {
    background-position: 0 -990px;
}

.all-card-imei.realme {
    background-position: 0 -1020px;
}

.all-card-imei.google {
    background-position: 0 -1050px;
}

.all-card-imei.oneplus {
    background-position: 0 -1080px;
}

.all-card-imei.tecno {
    background-position: 0 -1110px;
}

.all-card-imei.infocus {
    background-position: 0 -1140px;
}

.all-card-imei.infinix {
    background-position: 0 -1170px;
}

.all-card-imei.jivi {
    background-position: 0 -1200px;
}

.all-card-imei.ulefone {
    background-position: 0 -1230px;
}

.all-card-imei.ivoomi {
    background-position: 0 -1260px;
}

.all-card-imei.nubia {
    background-position: 0 -1290px;
}

.all-card-imei.swipe {
    background-position: 0 -1320px;
}

.all-card-imei.meizu {
    background-position: 0 -1350px;
}

.all-card-imei.yu {
    background-position: 0 -1380px;
}

.all-card-imei.zen {
    background-position: 0 -1410px;
}

.all-card-imei.spice {
    background-position: 0 -1440px;
}

.all-card-imei.doogee {
    background-position: 0 -1470px;
}

.all-card-imei.elephone {
    background-position: 0 -1500px;
}

.all-card-imei.reliance {
    background-position: 0 -1530px;
}

.all-card-imei.ikall {
    background-position: 0 -1560px;
}

.all-card-imei.iball {
    background-position: 0 -1590px;
}

.all-card-imei.sansui {
    background-position: 0 -1620px;
}

.all-card-imei.celkon {
    background-position: 0 -1650px;
}

.all-card-imei.zopo {
    background-position: 0 -1680px;
}

.all-card-imei.lemon {
    background-position: 0 -1710px;
}

.all-card-imei.hitech {
    background-position: 0 -1740px;
}

.all-card-imei.kechao {
    background-position: 0 -1770px;
}

.all-card-imei.ziox {
    background-position: 0 -1800px;
}

.all-card-imei.oukitel {
    background-position: 0 -1830px;
}

.all-card-imei.smartron {
    background-position: 0 -1860px;
}

.all-card-imei.reach {
    background-position: 0 -1890px;
}

.all-card-imei.goodone {
    background-position: 0 -1920px;
}

.all-card-imei.blu {
    background-position: 0 -1950px;
}

.all-card-imei.sharp {
    background-position: 0 -1980px;
}

.all-card-imei.kult {
    background-position: 0 -2010px;
}

.all-card-imei.mtech {
    background-position: 0 -2040px;
}

.all-card-imei.forme {
    background-position: 0 -2070px;
}

.all-card-imei.hyundai {
    background-position: 0 -2100px;
}

.all-card-imei.trio {
    background-position: 0 -2130px;
}

.all-card-imei.maxx {
    background-position: 0 -2160px;
}

.all-card-imei.kenxinda {
    background-position: 0 -2190px;
}

.all-card-imei.onida {
    background-position: 0 -2220px;
}

.all-card-imei.fly {
    background-position: 0 -2250px;
}

.all-card-imei.ismart {
    background-position: 0 -2280px;
}

.all-card-imei.okwu {
    background-position: 0 -2310px;
}

.all-card-imei.tcl {
    background-position: 0 -2340px;
}

.all-card-imei.mphone {
    background-position: 0 -2370px;
}

.all-card-imei.mhorse {
    background-position: 0 -2400px;
}

.all-card-imei.vox {
    background-position: 0 -2430px;
}

.all-card-imei.yota {
    background-position: 0 -2460px;
}

.all-card-imei.rage {
    background-position: 0 -2490px;
}

.all-card-imei.adcom {
    background-position: 0 -2520px;
}

.all-card-imei.obi {
    background-position: 0 -2550px;
}

.all-card-imei.aqua {
    background-position: 0 -2580px;
}

.all-card-imei.archos {
    background-position: 0 -2610px;
}

.all-card-imei.hsl {
    background-position: 0 -2640px;
}

.all-card-imei.hyve {
    background-position: 0 -2670px;
}

.all-card-imei.salora {
    background-position: 0 -2700px;
}

.all-card-imei.xillion {
    background-position: 0 -2730px;
}

.all-card-imei.josh {
    background-position: 0 -2760px;
}

.all-card-imei.essential {
    background-position: 0 -2790px;
}

.all-card-imei.champion {
    background-position: 0 -2820px;
}

.all-card-imei.mts {
    background-position: 0 -2850px;
}

.all-card-imei.whitecherry {
    background-position: 0 -2880px;
}

.all-card-imei.ringingbells {
    background-position: 0 -2910px;
}

.all-card-imei.nuvo {
    background-position: 0 -2940px;
}

.all-card-imei.wileyfox {
    background-position: 0 -2970px;
}

.all-card-imei.tplink {
    background-position: 0 -3000px;
}

.all-card-imei.phonemax {
    background-position: 0 -3030px;
}

.all-share {
    background-image: url(../images/all_share_icon.png);
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.all-share.facebook {
    background-position: 0 0;
}

.all-share.twitter {
    background-position: 0 -26px;
}

.all-share.google-plus {
    background-position: 0 -52px;
}

.all-share.linkedin {
    background-position: 0 -78px;
}

.all-share.pinterest {
    background-position: 0 -104px;
}

.generate-box {
    margin-top: 15px;
}

[tooltip] {
    position: relative;
    display: inline-block;
}

[tooltip]::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 6px 0 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    z-index: 99;
    opacity: 0;
}

[tooltip-position='top']::before {
    left: 50%;
}

[tooltip]::after {
    content: attr(tooltip);
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translateX(-50%) translateY(-100%);
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 12px;
    min-width: 80px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    padding: 4px 4px;
    z-index: 99;
    opacity: 0;
}

[tooltip-position='top']::after {
    left: 50%;
}

[tooltip]:hover::after,
[tooltip]:hover::before {
    opacity: 1;
    transition-delay: 0.3s;
}

#myProgress {
    width: 450px;
    background-color: #e2e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px auto;
    text-align: center;
    display: none;
}

#myBar {
    width: 1%;
    height: 24px;
    text-align: center;
    background: #696b6b;
    position: relative;
    border-radius: 8px;
}

#myBar:after {
    content: '';
    background-image: url(../images/credit_progress.png);
    background-repeat: repeat;
    background-position: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#myBar span {
    color: #fff;
    line-height: 24px;
    font-size: 15px;
    font-weight: 500;
}

.suggest-form {
    margin: 15px 0;
}

.suggest-form .form-control {
    border: 1px solid #ccc;
    border-radius: 0;
    height: 38px;
}

.suggest-form .form-control:first-child {
    border-radius: 5px 0 0 5px;
}

.suggest-form .full-fild.form-control {
    border-radius: 5px;
}

.suggest-form .form-fild-full {
    margin-bottom: 15px;
}

.suggest-form .form-fild-full:last-child {
    margin-bottom: 0;
}

.suggest-form .form-fild-full:first-child {
    margin-bottom: 15px;
}

.form-group.form-suggest-all-fill {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 15px 0;
}

.form-suggest-all-fill .fill_all-btn {
    width: auto;
    margin-left: 15px;
    margin-right: inherit;
    color: #ffffff;
    border: 1px solid #696b6b;
}

.form-suggest-all-fill .fill_all-btn:first-child {
    margin-left: 0;
}

.form-group.form-suggest-all-fill label {
    margin-bottom: 0;
    font-weight: bold;
}

input.fill_all-btn:hover {
    opacity: 0.8;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
    float: none;
}

.btn.btn-suggest {
    width: 100px;
    height: 40px;
    border-radius: 0px 5px 5px 0;
    border-color: #696b6b;
    opacity: 1;
    -webkit-appearance: none;
}

.suggest-form .btn.btn-suggest {
    height: 38px;
}

.btn.btn-suggest:hover {
    opacity: 0.8;
}

.btn.btn-suggest2.btn-suggest {
    width: auto;
    white-space: nowrap;
}

.fake-mail-list .number-list {
    padding: 7px 0 7px 7px;
    background-color: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin: 5px 0;
    transition: 0.3s;
}

.fake-user-list .number-list {
    padding: 7px 0 7px 7px;
    background-color: #f2f2f2;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin: 5px 0;
}

ul.number-list {
    list-style-type: decimal;
    padding-left: 15px;
}

.fake-mail-list .number-list:hover .mail-icon i {
    color: #fff;
}

.fake-user-list .number-list:hover .user-icon i {
    color: #fff;
}

.fake-mail-list .number-list:hover,
.fake-user-list .number-list:hover {
    color: #fff;
    background-color: #696b6b;
    cursor: pointer;
}

.female {
    margin-top: 86px !important;
}

.site .face-frame .face li {
    display: inline-block;
    border-radius: 6px;
}

.frame-2 {
    margin: 20px auto;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 2px #ccc;
}

.frame-2 .title {
    position: relative;
    top: -23px;
    left: 8px;
    font-weight: 500;
    display: inline-block;
    color: #fff;
    background: #696b6b;
    border: 1px solid #fff;
    margin-bottom: 0;
    border-radius: 4px;
    line-height: 28px;
    padding: 0 10px;
    transition: all ease .2s;
}

.frame-2 .row {
    position: relative;
    top: -8px;
    padding-left: 10px;
}

.panel .panel-heading {
    margin-bottom: 15px;
}

.panel .panel-heading input {
    width: 100%;
    padding: 5px 5px 5px 45px;
    height: 42px;
    border: 2px solid #696b6b;
}

.panel .panel-heading input:focus {
    outline: none;
}

.font-preview-list {
    margin-bottom: 15px;
    border: 1px solid #696b6b;
    background: #696b6b11;
    padding: 0 10px;
}

.font-preview-list .font-preview-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.font-preview-list .font-preview-container:nth-child(odd) {
    border-right: 1px solid #696b6b;
}

.font-preview-container .font_title .font_name {
    width: 100%;
    text-align: left;
    display: block;
    font-size: 16px;
}

.font-preview-container .font-preview-content {
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    margin: 0;
    font-size: 18px;
    border: none;
}

.symbols-type .symbols-list-title {
    display: inline-block;
    margin: 0 5px 5px 0;
    border: 1px solid #696b6b;
    border-radius: 5px;
    background: #696b6b;
    float: left;
    color: #fff;
    transition: 0.3s;
}

.symbols-type .symbols-list-title a {
    display: block;
    color: #fff;
    font-weight: 600;
    padding: 6px;
    transition: 0.3s;
}

.symbols-type .symbols-list-title.active {
    background: #fff;
}

.symbols-type .symbols-list-title.active a {
    color: #696b6b;
}

.symbols-list-title:hover {
    background: #fff;
}

.symbols-list-title:hover a {
    color: #696b6b;
}

select.symbols-type {
    padding: 5px;
    border-radius: 5px;
}

.symbol-content {
    display: none;
    margin: 15px 0;
    padding: 10px;
    max-height: 300px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 0 5px 0 #0003;
}

.active.symbol-content {
    display: block;
}

.symbol-content span {
    height: 42px;
    width: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin: 0 7px 7px 0;
    font-size: 26px;
    border: 1px solid;
    border-radius: 5px;
    position: relative;
}

.symbol-content span.cs:hover,
.symbol-content span:hover {
    border-color: #696b6b !important;
    margin-top: 0 !important;
    top: -3px;
    cursor: pointer;
}

.get_symbols_instruction {
    font-weight: 600;
    font-size: 16px;
    margin: 15px 0;
}

.name-generator {
    margin-top: 20px;
    display: block;
}

.suggest-form select,
.suggest-form input {
    margin: 0;
}

.show-generated-name {
    display: block;
    margin-bottom: 5px;
}

.show-generated-result .generated_name {
    display: block;
    padding: 8px;
    border: 1px solid #696b6b;
    border-bottom: none;
    color: #212121;
    position: relative;
    overflow: hidden;
}

.show-generated-result .generated_name:last-child {
    border-bottom: 1px solid #696b6b;
    margin-bottom: 20px;
}

.show-generated-result .generated_name:hover {
    background-color: #696b6b22;
    overflow: visible;
}

.copy-btn {
    position: relative;
    text-transform: capitalize;
    padding: 8px 8px 8px 12px;
    border: 1px solid #696b6b;
    border-radius: 5px;
    background: #fff;
    color: #696b6b;
    transition: 0.3s;
}

.show-generated-result .generated_name .copy-btn {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translate(0, -50%);
    background-color: transparent;
    border: none;
}

.copy-btn:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    top: 50%;
    left: -20px;
    transform: translate(0, -50%);
    background-image: url("../images/copy.png");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.copy-btn:focus {
    outline: none;
}

.copy-btn:hover {
    cursor: pointer;
}

.show-generated-result .generated_name:hover .copy-btn {
    right: 0px;
}

.copied-toggle {
    display: none;
    position: absolute;
    top: -30px;
    left: 5px;
    background-color: #696b6b;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    border: none;
    border-radius: 5px;
}

.copied-toggle:before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    border: 5px solid;
    border-color: #696b6b transparent transparent transparent;
}

.planet-name,
.horse-name,
.alien-name,
.dj-name {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 25px;
    max-height: 310px;
    overflow: auto;
    overflow-x: hidden;
}

.planet-name span,
.horse-name span,
.alien-name span,
.dj-name span {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 33.33%;
    padding: 10px 30px;
    padding-left: 42px;
}

.planet-name span:before,
.horse-name span:before,
.alien-name span:before,
.dj-name span:before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 6px;
    transform: translate(0, -50%);
    height: 75%;
    width: 30px;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
}

.planet-name span:hover,
.horse-name span:hover,
.alien-name span:hover,
.dj-name span:hover {
    cursor: pointer;
}

.planet-name span:before {
    background-image: url(../images/planet.png);
}

.planet-name span:hover:before {
    background-image: url(../images/planet_hover.png);
    transform: translate(0, -50%) rotate(-360deg);
}

.horse-name span:before {
    background-image: url(../images/horse.png);
}

.horse-name span:hover:before {
    background-image: url(../images/horse_hover.png);
    transform: translate(0, -50%) rotateY(180deg);
}

.alien-name span:before {
    background-image: url(../images/alien.png);
}

.alien-name span:hover:before {
    background-image: url(../images/alien_hover.png);
    transform: translate(0, -50%) rotateY(-180deg);
}

.dj-name span:before {
    background-image: url(../images/dj_list.png);
}

.dj-name span:hover:before {
    background-image: url(../images/dj_list_hover.png);
    transform: translate(0, -50%) rotate(-360deg);
}

.god-name {
    display: block;
    background-color: #696b6b20;
    border: 2px solid #696b6b;
}

.god-name div {
    width: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    border-bottom: none;
}

.god-name div span {
    width: 50%;
    padding: 3px;
}

.god-name div:nth-child(odd) {
    border-right: 2px solid #696b6b;
}

.god-name div:hover {
    cursor: pointer;
}

.god-name div span:first-child {
    text-align: right;
    padding-right: 8px;
    margin-right: 4px;
    border-right: 2px solid #696b6b;
}

.god-name div:hover {
    background-color: #696b6b40;
}

.copy-btn.copy-btn2 {
    background-color: transparent;
    border: 0;
}

.orc-result-box {
    display: block;
    max-width: 400px;
    background-color: #696b6b30;
    border: 2px solid #696b6b;
    padding: 15px 15px 0;
    margin: auto;
}

.orc-name-box {
    padding: 10px;
    background: #fff;
}

.dwarf-btn-box,
.orc-btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #696b6b;
    margin-top: 15px;
}

.dwarf-btn,
.orc-btn-box .orc-btn {
    padding: 10px;
    width: 100%;
    border: navajowhite;
    background-color: #fff;
    border-left: 2px solid #696b6b;
    color: #000;
    transition: 0.3s;
}

.dwarf-btn:first-child,
.orc-btn-box .orc-btn:first-child {
    border-left: none;
}

.dwarf-btn:focus,
.orc-btn-box .orc-btn:focus {
    outline: none;
}

.dwarf-btn:hover,
.orc-btn-box .orc-btn:hover {
    color: #fff;
    background-color: #696b6b;
    cursor: pointer;
}

.dwarf-btn.active,
.orc-btn-box .orc-btn.active {
    color: #fff;
    background-color: #696b6b;
}

.dwarf-btn.male,
.dwarf-btn.female,
.orc-btn.male,
.orc-btn.female {
    margin: 0 !important;
}

.dwarf-btn span,
.orc-btn span {
    position: relative;
    padding-left: 30px;
}

.dwarf-btn span:before,
.orc-btn span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: 20px;
    width: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s;
}

.dwarf-btn.male span:before,
.orc-btn.male span:before {
    background-image: url(../images/male.png);
}

.dwarf-btn.female span:before,
.orc-btn.female span:before {
    background-image: url(../images/female.png);
}

.dwarf-btn.male.active span:before,
.dwarf-btn.male:hover span:before,
.orc-btn.male.active span:before,
.orc-btn.male:hover span:before {
    background-image: url(../images/male2.png);
}

.dwarf-btn.female.active span:before,
.dwarf-btn.female:hover span:before,
.orc-btn.female.active span:before,
.orc-btn.female:hover span:before {
    background-image: url(../images/female2.png);
}

.personality-generator .row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.personality-generator .row2 .form-label {
    margin: 0;
}

.img-icon {
    display: block;
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.img-icon.user {
    background-image: url(../images/user.png);
}

.img-icon.cake {
    background-image: url(../images/cake.png);
}

.img-icon.gender {
    background-image: url(../images/gender.png);
}

.img-icon.hair-color {
    background-image: url(../images/hair.png);
}

.img-icon.positive {
    background-image: url(../images/positive.png);
}

.img-icon.negative {
    background-image: url(../images/negative.png);
}

.img-icon.eye {
    background-image: url(../images/eye.png);
}

.img-icon.personality {
    background-image: url(../images/personality.png);
}

.img-icon.height {
    background-image: url(../images/height.png);
}

.img-icon.friends {
    background-image: url(../images/friends.png);
}

.img-icon.controlled {
    background-image: url(../images/Controlled.png);
}

.img-icon.loyal {
    background-image: url(../images/loyal.png);
}

.img-icon.honesty {
    background-image: url(../images/honesty.png);
}

.img-icon.emotions {
    background-image: url(../images/emotions.png);
}

.img-icon.trusting {
    background-image: url(../images/trusting.png);
}

.row.fake-user-list {
    padding: 10px;
}

.tabing {
    position: relative;
}

.tabs-box {
    margin: 30px 0;
    position: relative;
}

.tabs-box .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    height: auto;
    width: 100%;
}

.tabs-box .tabs .tablinks {
    display: block;
    width: auto;
    padding: 14px 20px;
    border: 1px solid #696b6b;
    border-left: none;
    background: #fff;
    outline: none;
    margin: 0;
    border-radius: 0px;
    -webkit-appearance: none;
    color: #212121;
    cursor: pointer;
    transition: 0.3s;
}

.tabs-box .tabs .tablinks:first-child {
    border-left: 1px solid #696b6b;
    border-radius: 6px 0 0 6px;
}

.tabs-box .tabs .tablinks:last-child {
    border-radius: 0 6px 6px 0;
}

.tabs-box .tabs .tablinks:hover,
.tabs-box .tabs .tablinks.active {
    background: #696b6b;
    color: #fff;
}

.tabing .tabcontent {
    display: none;
    width: 100%;
}

.tabing .tabcontent.active {
    display: block;
}

.tabs-box .tabs-drop {
    display: none;
    justify-content: center;
    align-items: center;
}

.tabs-box .tabs-drop .get-tab-value {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background-color: #fff;
    color: #212121;
    border: 1px solid #696b6b;
    border-right: none;
    height: 45px;
    text-align: left;
    outline: none;
    border-radius: 0px;
    -webkit-appearance: none;
}

.tabs-box .tabs-drop .btn-suggest {
    width: 45px;
    height: 45px;
    border-radius: 0px;
    -webkit-appearance: none;
}

@font-face {
    font-family: 'Normal';
    src: url('../fonts/username-fonts/Roboto-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia';
    src: url('../fonts/username-fonts/Sofia-Regular.eot');
    src: url('../fonts/username-fonts/Sofia-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/Sofia-Regular.woff2') format('woff2'), url('../fonts/username-fonts/Sofia-Regular.woff') format('woff'), url('../fonts/username-fonts/Sofia-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NovaScript';
    src: url('../fonts/username-fonts/NovaScript-Regular.eot');
    src: url('../fonts/username-fonts/NovaScript-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/NovaScript-Regular.woff2') format('woff2'), url('../fonts/username-fonts/NovaScript-Regular.woff') format('woff'), url('../fonts/username-fonts/NovaScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'GermaniaOne';
    src: url('../fonts/username-fonts/GermaniaOne-Regular.eot');
    src: url('../fonts/username-fonts/GermaniaOne-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/GermaniaOne-Regular.woff2') format('woff2'), url('../fonts/username-fonts/GermaniaOne-Regular.woff') format('woff'), url('../fonts/username-fonts/GermaniaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FontdinerSwanky';
    src: url('../fonts/username-fonts/FontdinerSwanky-Regular.eot');
    src: url('../fonts/username-fonts/FontdinerSwanky-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/FontdinerSwanky-Regular.woff2') format('woff2'), url('../fonts/username-fonts/FontdinerSwanky-Regular.woff') format('woff'), url('../fonts/username-fonts/FontdinerSwanky-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MysteryQuest';
    src: url('../fonts/username-fonts/MysteryQuest.eot');
    src: url('../fonts/username-fonts/MysteryQuestd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/MysteryQuest.woff2') format('woff2'), url('../fonts/username-fonts/MysteryQuest.woff') format('woff'), url('../fonts/username-fonts/MysteryQuest.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sancreek';
    src: url('../fonts/username-fonts/Sancreek-Regular.eot');
    src: url('../fonts/username-fonts/Sancreek-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/Sancreek-Regular.woff2') format('woff2'), url('../fonts/username-fonts/Sancreek-Regular.woff') format('woff'), url('../fonts/username-fonts/Sancreek-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Audiowide';
    src: url('../fonts/username-fonts/Audiowide-Regular.eot');
    src: url('../fonts/username-fonts/Audiowide-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/username-fonts/Audiowide-Regular.woff2') format('woff2'), url('../fonts/username-fonts/Audiowide-Regular.woff') format('woff'), url('../fonts/username-fonts/Audiowide-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.username-generator1 .form-group label {
    font-weight: normal;
}

.username-generator1 .form-group {
    margin-bottom: 25px;
    margin-top: 0;
}

.username-generator1 .checkbox {
    display: inline-block;
    margin-right: 10px;
}

.bible-vers-form .checkbox input,
.bible-vers-form .checkbox label,
.username-generator1 .checkbox input,
.username-generator1 .checkbox label {
    display: inline-block;
    vertical-align: middle;
}

.username-generator1 .radio-btn {
    width: auto;
    display: inline-block;
    margin-right: 10px;
}

.username-generator1 .radio-btn input,
.username-generator1 .radio-btn label {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.username-generator1 .list-username {
    height: 475px;
    overflow: auto;
    margin-bottom: 25px;
}

.username-generator1 .list-username::-webkit-scrollbar-thumb {
    background-color: #636363;
}

.username-generator1-model .selected-list li,
.username-generator1 .list-username li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 10px;
    color: #fff;
}

.username-generator1-model .selected-list {
    padding: 10px 0;
}

.username-generator1-model .selected-list li {
    padding: 10px 15px 10px 10px;
}

.username-generator1-model .selected-list li .remove {
    cursor: pointer;
}

.username-generator1 .list-username li:hover {
    background-color: #696b6b60;
    cursor: pointer;
}

.username-generator1 .list-username li .heart {
    color: #fff;
    font-size: 14px;
    margin-right: 5px;
    transition: 0.3s;
    display: inline-block;
}

.username-generator1 .list-username li .category_name {
    font-size: 16px;
}

.username-generator1 .list-username li:hover .heart {
    color: #fff;
}

.username-generator1 .list-username li .heart.selected,
.username-generator1 .list-username li:hover .heart.selected {
    color: red;
}

.username-generator1-model .modal-content::-webkit-scrollbar,
.username-generator1 .list-username::-webkit-scrollbar {
    width: 8px;
}

.username-generator1-model .modal-content::-webkit-scrollbar-track,
.username-generator1 .list-username::-webkit-scrollbar-track {
    background-color: #fff;
    box-shadow: inset 0 0 2px 0 #0005, 0 0 5px 0 #0005;
}

.username-generator1 .selected-username {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
}

.username-generator1 .selected-username .delete-name {
    float: right;
}

.username-generator1 .result-fliter {
    display: inline-block;
    float: left;
}

.username-generator1 .save-btn-grp {
    display: inline-block;
    float: right;
}

.username-generator1 .sort-list {
    display: none;
    width: 0;
    opacity: 0;
    transition: 0.3s;
}

.username-generator1 .show.sort-list {
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
    width: auto;
}

.username-generator1 .sort-list .btn-sort {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #696b6b;
    font-size: 14px;
    height: 36px;
    width: 36px;
    color: #696b6b;
    padding: 8px 10px;
    transition: 0.3s;
}

.username-generator1 .sort-list .btn-sort:focus {
    outline: none;
}

.username-generator1 .sort-list .btn-sort:hover {
    background-color: #696b6b;
    color: #fff;
    cursor: pointer;
}

.champions-modal,
.username-generator1-model {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 110;
    background-color: #0005;
}

.champions-modal .modal,
.username-generator1-model .modal {
    display: block;
    position: absolute;
    width: 80%;
    max-width: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 0 0 15px #0006;
    border-radius: 5px;
    overflow: hidden;
}

.champions-modal .modal-header,
.username-generator1-model .modal-header {
    height: 60px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #696b6b;
    border-bottom: 2px solid #696b6b;
}

.champions-modal .modal-header .model-title h5,
.username-generator1-model .modal-header .model-title h5 {
    font-size: 16px;
    line-height: normal;
    color: #fff;
    margin: 0;
}

.username-generator1-model .model-close {
    border-radius: 100%;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.username-generator1-model .model-close:hover {
    transform: rotate(180deg);
}

.username-generator1-model .modal-content {
    width: 100%;
    height: 100%;
    max-height: 420px;
    overflow: auto;
    border: none;
}

.username-generator1-model .modal-content .select-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

.username-generator1-model .modal-content .select-name .remove {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border: 1px solid red;
    border-radius: 100%;
    background-color: #fff;
    color: red;
}

.username-generator1-model .model-footer {
    padding: 15px;
    text-align: right;
    border-top: 2px solid #696b6b;
}

.username-generator1-model .modal-content .select-name.no_data,
.username-generator1-model .modal-content .selected-list .empty-list {
    height: 150px;
    background: #ffffff;
    color: #ff2c2c;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    justify-content: center;
}

.username-check {
    position: relative;
    margin-top: 30px;
}

.username-check .username-result-form {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.username-check .username-result-form h2 {
    line-height: 32px;
    margin: 0 15px 0 0;
}

.form-group-both {
    position: relative;
    display: inline-block;
    font-size: 0;
    margin: 0;
}

.social-alert {
    position: relative;
    height: 60px;
    width: 100%;
    padding: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 36px;
    color: #333;
    font-weight: 700;
    text-transform: capitalize;
}

.social-alert i {
    position: relative;
    height: 40px;
    width: 40px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #333;
    margin-right: 15px;
    border-radius: 4px;
}

.social-alert.facebook i {
    color: #3b5998;
}

.social-alert.twitter i {
    color: #55acee;
}

.social-alert.youtube i {
    color: #c4302b;
}

.social-alert.viemo i {
    color: #86c9ef;
}

.social-alert.github i {
    color: #171515;
}

.social-alert.pinterest i {
    color: #bd081c;
}

.social-alert.flicker i {
    color: #ff0084;
}

.social-alert.px500 i {
    color: #222222;
}

.social-alert.reddit i {
    color: #FF4500;
}

.social-alert.wordpress i {
    color: #0073AA;
}

.social-alert.etsy i {
    color: #F56400;
}

.social-alert.soundcloud i {
    color: #FF5500;
}

.social-alert.behance i {
    color: #131418;
}

.social-alert .check-btn {
    position: relative;
    margin-left: auto;
    height: 38px;
    width: auto;
    padding: 10px 15px;
    background: #ffffff;
    line-height: normal;
    font-size: 14px;
    border-radius: 5px;
    width: 73px;
    text-align: center;
}

.free-alert {
    color: #155724;
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 5px;
}

.free-alert.social-alert a.social-name:hover {
    color: #155724;
}

.free-alert.social-alert .check-btn {
    color: #ffffff;
    background-color: #155724;
}

.taken-alert {
    color: #721c24;
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 5px;
}

.taken-alert.social-alert a.social-name:hover {
    color: #721c24;
}

.taken-alert.social-alert .check-btn {
    color: #ffffff;
    background-color: #721c24;
}

.spinner-bar {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 30px;
    background: none;
    font-size: 26px;
}

.spinner-bar i {
    color: #222222 !important;
    height: auto;
    margin: 0;
    width: auto;
    background: none;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mail-generator-form {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-bottom: 15px;
}

.mail-warp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fake-mail-gen {
    height: 36px;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    float: left;
    border: 2px solid #696b6b;
    position: relative;
}

.fake-mail-gen .gen_name {
    height: 32px;
    width: 100%;
    position: relative;
    padding: 5px 0;
    font-size: 14px;
    line-height: 16px;
    border: none;
}

.mail-btn:focus,
.fake-mail-gen .gen_name:focus {
    outline: none;
}

.fake-mail-gen select.gen_name,
.fake-mail-gen input.gen_name {
    text-align: left;
}

.fake-mail-gen input.gen_name:nth-child(1) {
    text-align: right;
}

.fake-mail-gen input.gen_name::placeholder {
    color: #212121;
}

.mail-btn {
    height: 36px;
    padding: 5px 10px;
    border: 2px solid #696b6b;
    border-radius: 0;
    border-left: none;
    font-size: 20px;
    margin: 0;
}

.mail-btn:hover {
    cursor: pointer;
}

.mail-suggest {
    position: absolute;
    display: none;
    flex-direction: column;
    right: -2px;
    border: 2px solid #696b6b;
    background: #fff;
    z-index: 10;
    top: 100%;
}

.add_mail.mail-suggest {
    display: flex;
}

.mail-suggest input {
    display: block;
    width: 100%;
    padding: 8px 15px;
    border: none;
    border-bottom: 1px solid #696b6b;
    background-color: #fff;
    text-align: left;
    border-radius: 0px;
    -webkit-appearance: none;
    transition: 0.3s;
}

.mail-suggest input:last-child {
    border-bottom: none;
}

.mail-suggest input:hover {
    background-color: #696b6b;
    color: #fff;
    cursor: pointer;
}

.mail-suggest input:focus {
    outline: none;
}

.mail-trick {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    height: 35px;
    width: auto;
    float: left;
    margin: 15px 15px 0 0;
}

.switch {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 50px;
    height: 26px;
    margin-right: 5px;
}

.switch:hover {
    cursor: pointer;
}

.switch+span {
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    margin: 0;
    padding: 0;
}

.switch input:hover {
    cursor: pointer;
}

.switch-btn {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    z-index: 4;
}

.switch-btn:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 16px;
    left: 10%;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.switch-btn {
    background-color: #696b6b;
}

input:focus+.switch-btn {
    box-shadow: 0 0 1px #696b6b;
}

input:checked+.switch-btn:before {
    left: 55%;
}

.mail-generator-form .select-list {
    margin-top: 15px;
}

.mail-generator-form .select-list input {
    width: 100%;
    padding: 8px 15px;
    border: 2px solid #696b6b;
    border-radius: 0;
}

.mail-generator-form .btn {
    margin-top: 15px;
}

.generate-mails textarea {
    width: 100%;
    height: 250px;
    font-size: 14px;
    resize: none;
    padding: 8px 10px;
}

.mail-generator-form .select-list input:focus,
.generate-mails textarea:focus {
    outline: none;
}

.copy-mail {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}

.mail-box .sec-title2 {
    padding-top: 0;
}

.wow-name,
.insult-result,
.warrior-result,
.dwarf-result {
    max-height: 310px;
    padding: 25px 1px 0;
    overflow: auto;
}

.wow-name .name-box,
.insult-result .name-box,
.warrior-result .name-box,
.dwarf-result .name-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #696b6b;
    margin: 10px 0;
    padding-left: 15px;
}

.wow-name .btn,
.insult-result .btn,
.warrior-result .btn,
.dwarf-result .btn {
    border-radius: 0;
}

.btn-box {
    text-align: center;
    font-size: 0;
}

.btn-box .btn_warrior {
    margin: 0 5px;
}

.btn-box .btn_warrior.active {
    color: #fff;
    background-color: #696b6b;
}

.insult-result .name-box span {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.card {
    display: block;
    text-align: center;
    border: 2px solid #696b6b;
    margin: 10px 0;
    opacity: 1;
    transition: 0.3s;
}

.card .card-img {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.card .card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: 0.3s;
}

.card-title {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #696b6b;
    padding: 8px 0;
    transition: 0.3s;
}

.card-title h6 {
    margin: 0;
    transition: 0.3s;
}

.card:hover {
    opacity: 1;
    cursor: pointer;
}

.card:hover .card-img img {
    transform: scale(1.2);
}

.card:hover .card-title {
    background-color: #696b6b
}

.card:hover .card-title h6 {
    color: #fff;
}

.champions-modal {
    display: none;
    background-color: rgba(255, 255, 255, 0.5);
}

.champions-modal .modal {
    max-width: 700px;
    overflow: visible;
    box-shadow: 2px 2px 15px -2px #0009;
}

.champions-modal .modal .modal-header {
    background-color: transparent;
    height: auto;
    justify-content: flex-start;
    border: none;
    position: relative;
    padding: 15px;
}

.champions-modal .modal .modal-header:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 56%;
    width: 100%;
    background-color: #696b6b;
    z-index: -1;
}

.champions-modal .modal-header .modal-img {
    margin-right: 15px;
    height: 110px;
    width: 110px;
    border: 3px solid #fff;
}

.champions-modal .modal-header .modal-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: -1;
}

.champions-modal .modal-header .champion-name {
    display: block;
}

.champions-modal .modal-header .champion-name .name {
    color: #000;
    font-size: 20px;
}

.champions-modal .modal-header .champion-name span {
    padding-right: 15px;
}

.champions-modal .modal-content {
    padding: 15px 15px;
}

.champions-modal .champion-details {
    max-height: 315px;
    overflow: auto;
    padding-right: 5px;
}

.champions-modal .details-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.champions-modal .details-row:last-child {
    margin-bottom: 0;
}

.champions-modal .details-row .details-type {
    background-color: #696b6b;
    color: #fff;
    height: 84px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.champions-modal .details-row .details-type span {
    transform: rotate(-90deg);
}

.champions-modal .details-row .champion-box {
    max-width: 100%;
    height: 84px;
    border: 2px solid #696b6b;
    border-left: none;
    overflow-x: auto;
}

.champions-modal .details-row .details-box {
    height: 100%;
    width: auto;
    border-left: none;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
}

.champions-modal .details-row .details-box li {
    display: inline-block;
    width: 64px;
    height: 64px;
    border: 3px solid #fff;
    box-shadow: 0 0 6px 1px #555;
    margin-right: 10px;
}

.champions-modal .details-row .details-box li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.champions-modal .modal .close-modal {
    background-color: #fff;
    border: 2px solid #696b6b;
    color: #696b6b;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 10;
}

.bible-vers-result {
    display: flex;
    flex-wrap: wrap;
    max-height: 600px;
    overflow: auto;
}

.verse-wrap {
    height: 100%;
    width: 100%;
    display: block;
    padding: 10px 0;
}

.verse {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid #696b6b;
    padding: 15px 0;
    position: relative;
}

.verse .verse_img {
    display: none;
}

.verse-content {
    padding: 20px;
    position: relative;
    z-index: 15;
}

.verse.with_img {
    min-height: 280px;
    justify-content: center;
    padding: 35px 0;
    border: none;
}

.verse.with_img .verse-content {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 70%;
}

.verse.with_img .verse-content .verse-title {
    color: #fff;
}

.verse.with_img .verse_img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 10;
}

.verse-remov-img,
.verse-add-img {
    margin-bottom: 20px;
}

@media screen and (min-width:354px) and (max-width:559px) {
    .list_links {
        width: 250px;
        left: unset;
        right: 0;
        transform: translate(0);
    }

    .list_links li {
        width: 100%;
    }
}

@media screen and (min-width:400px) {
    .site .face-frame .face li img {
        width: 88px;
        height: 88px;
    }
}

@media screen and (min-width:560px) and (max-width:991px) {
    .list_links {
        width: 250px;
    }

    .list_links li {
        width: 100%;
    }
}

@media screen and (min-width:768px) {

    .main .col-md-3,
    .main .col-md-9 {
        padding: 0 15px;
    }

    .main {
        margin-top: 30px;
    }

    .site .face-frame .face li img {
        width: 90px;
        height: 90px;
    }
}

@media screen and (min-width:768px) and (max-width:919px) {
    .menu {
        box-shadow: 0 2px 3px #a0a0a0;
        display: none;
    }

    .menu>ul>li>a.active,
    .menu>ul>li>a:hover {
        color: #696b6b !important;
        background: #f1f1f1;
    }

    .menu>ul {
        text-align: left;
    }

    .sidebar-wrapper>ul>li>a {
        padding: 8px;
        font-size: 14px;
    }

    .sidebar-wrapper>ul>li>a:hover {
        padding: 8px 30px;
    }

    .sidebar-active {
        display: block;
    }

    li.cardsideber.active a {
        border-top: 1px solid #fff;
    }

    .menu>ul>li {
        display: block;
        width: 100%;
    }

    .menu>ul>li>a:hover {
        background: #f9f9f9;
        color: #696b6b !important;
    }

    .menu>ul>li>a:before {
        display: none;
    }

    .social_icons {
        display: none !important;
    }

    .sm-hide {
        display: none;
    }
}

@media screen and (min-width:920px) and (max-width:957px) {
    .social_icons {
        display: none !important;
    }

    .menu>ul {
        display: inline-block;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .menu>ul>li {
        margin-left: 0;
        margin-right: 0;
        padding: 8px 5px;
    }

    .menu>ul>li>a {
        font-size: 14px !important;
    }

    .fake_submenu {
        width: 210px !important;
        top: 36px !important;
        right: 5px !important;
    }

    .fake_submenu>li {
        margin-right: 4px !important;
        margin-left: 4px !important;
        padding: 5px !important;
    }

    .fake_submenu>li>a {
        font-size: 13px !important;
    }
}

@media screen and (max-width:991px) {
    .main-header {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .container {
        width: 100%;
    }

    .header {
        position: relative;
        height: 80px;
    }

    a.sec-head {
        font-size: 20px;
    }

    .menu {
        z-index: 999;
        position: absolute;
        top: 100%;
        width: 100%;
        right: 0;
        left: 0;
        height: calc(100vh - 65px);
        background-color: #494949;
        margin-top: 0px !important;
        display: none;
        padding-bottom: 10px;
        overflow: auto;
        overflow-x: hidden;
    }

    .menu ul.main-menu {
        display: block;
    }

    .menu>ul {
        display: inline-block;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .menu>ul>li {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .menu>ul>li:last-child {
        margin-bottom: 50px;
    }

    .menu>ul>li>a {
        position: relative;
        padding: 15px 20px;
        width: 100%;
        color: #fff;
        font-size: 22px;
        text-align: left;
    }

    .menu>ul>li>a.active,
    .menu>ul>li>a:hover {
        color: #fff !important;
    }

    .menu>ul>li>a.active:before {
        display: none;
    }

    .dropdown-list>li>a {
        padding: 6px 10px;
        margin: 3px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-top: 20px;
    }

    .logo {
        width: auto !important;
        display: inline-block;
        float: left;
    }

    .tab-dis-hide {
        display: inline-block;
        float: right;
        cursor: pointer;
        z-index: 999;
    }
}

@media screen and (min-width:992px) {
    .site .face-frame .face li img {
        width: 85px;
        height: 85px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .md-hide {
        display: none;
    }

    .validat-image {
        flex: 0 1 13%;
    }

    .menu>ul>li {
        margin-right: 0;
        margin-left: 0;
    }

    .menu>ul>li>a {
        font-size: 22px;
    }
}

@media screen and (min-width:1200px) {
    .site .face-frame .face li img {
        width: 85px;
        height: 85px;
    }
}

@media screen and (max-width: 1199px) {
    .menu {
        width: calc(100% - 300px);
    }

    .mega-menu .fake_submenu {
        width: 970px;
    }

    .mega-menu .fake_submenu .menu-parts {
        padding: 10px 0;
    }

    .validat-image-wrapper {
        flex-wrap: wrap;
    }

    .validat-image {
        flex: 0 1 13%;
    }

    .font-preview-list .font-preview-container:nth-child(odd) {
        border-right: none;
    }
}

@media screen and (max-width: 991px) {
    .fixed-body {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .menu {
        width: 100%;
        display: none;
        z-index: 9999;
    }

    .fake_submenu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .fake_submenu {
        position: relative;
        top: 0;
        right: auto;
        z-index: 9999999;
        width: 100%;
        height: auto;
        padding: 0;
        border-radius: 0px;
        background-color: transparent;
        box-shadow: none;
        list-style: none;
        display: none;
        text-align: left;
        border: none;
    }

    .fake_submenu>li {
        margin: 0;
        border: none;
        margin-left: 10px;
        padding: 8px 20px;
    }

    .mega-menu {
        margin: 0;
    }

    .mega-menu .fake_submenu {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0);
        border: none;
        margin: 0;
        width: 100%;
        padding: 10px 10px 0 10px;
    }

    .menu>ul>li>a.active,
    .menu>ul>li>a:hover {
        background: #f9f9f9;
        color: #696b6b !important;
        cursor: pointer;
    }

    .mega-menu .fake_submenu .menu-parts ul li a:hover,
    .mega-menu .fake_submenu .menu-parts ul li a.active,
    .fake_submenu>li>a.active,
    .fake_submenu>li>a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }

    .mega-menu .fake_submenu .menu-parts {
        padding: 0 0 10px 0;
    }

    .mega-menu .fake_submenu .menu-parts h4 {
        font-size: 14px;
        font-weight: normal;
        margin: 0;
        margin-bottom: 5px;
        color: #fff;
    }

    .footer-links {
        float: none;
        text-align: center;
    }

    .footer .social_icons {
        float: none;
        display: block;
        margin: 15px auto;
    }

    .font-preview-container {
        display: block;
    }

    .font-preview-container .font_title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px
    }

    .btn.mobile_only {
        display: block;
    }

    .btn.dsk_only {
        display: none;
    }

    .show-generated-result .generated_name .copy-btn,
    .show-generated-result .generated_name:hover .copy-btn {
        right: 5px;
    }

    .show-generated-result .generated_name:last-child {
        margin-bottom: 15px;
    }

    .horse-name span,
    .planet-name span,
    .alien-name span,
    .dj-name span {
        width: 50%;
    }

    .username-generator1 .selected-username {
        padding-top: 20px;
    }

    .username-generator1 .result {
        margin-top: 30px;
    }
}

@media screen and (max-width: 920px) {
    .sidebar-wrapper>ul>li>a {
        padding: 8px;
        font-size: 14px;
    }

    .sidebar-wrapper>ul>li>a:hover {
        padding: 8px 30px;
    }

    .sidebar-active {
        display: block;
    }

    li.cardsideber.active a {
        border-top: 1px solid #fff;
    }

    .menu>ul>li {
        display: block;
        width: 100%;
    }

    .menu>ul>li>a:hover {
        background: #f9f9f9;
        color: #696b6b !important;
        cursor: pointer;
    }

    .menu>ul>li>a:before {
        display: none;
    }

    .fake_submenu {
        width: 100% !important;
        height: auto;
        padding: 5px;
        border-radius: 0 0 10px 10px;
        background-color: transparent !important;
        box-shadow: none !important;
        list-style: none;
        position: relative !important;
        top: 0px !important;
        left: 0px !important;
        right: unset !important;
        z-index: 9999999;
        display: none;
        text-align: left;
    }

    .fake_submenu>li {
        padding: 0px !important;
    }

    .fake_submenu>li>a {
        display: block !important;
        width: 100% !important;
        color: #fff !important;
        font-weight: normal;
        padding: 8px 10px;
        font-size: 14px;
        position: relative;
        transition: .6s;
        cursor: pointer;
    }

    .fake_submenu>li>a:before {
        display: none !important;
    }

    .fake_submenu>li>a:hover:before {
        width: 100%;
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {

    .sidebar-wrapper-ul,
    .xs-hide {
        display: none;
    }

    .all-card,
    .all-share {
        margin-right: 10px;
    }

    .sidebar-active>span {
        margin-right: 5px;
        vertical-align: middle;
    }

    .country-slidbar>ul {
        max-height: 155px;
        display: block !important;
    }

    .dropdown-list {
        margin-left: 10px;
        margin-right: 10px;
        padding: 0;
        border-radius: 2px;
    }

    .validat-btn {
        margin: 0 0 0 10px;
    }

    .validat-image-wrapper {
        justify-content: space-evenly;
    }

    .md-btn-center {
        margin: 0 auto;
    }

    .tabs-box .tabs-drop {
        display: flex;
    }

    .tabs-box .tabs {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 100;
        border: none;
        border-radius: 5px;
    }

    .tabs-box .tabs.show {
        display: block;
    }

    .tabs-box .tabs .tablinks {
        border: 1px solid #696b6b;
        border-bottom: none;
        width: 100%;
        text-align: left;
    }

    .tabs-box .tabs .tablinks:nth-child(1) {
        border-top: none;
    }

    .tabs-box .tabs .tablinks:last-child {
        border-bottom: 1px solid #696b6b;
    }

    .tabs-box .tabs .tablinks.active {
        color: #212121;
        background-color: #fff;
    }

    .username-generator1 .show.sort-list {
        display: block;
    }

    .username-generator1 .result-fliter button {
        margin-bottom: 5px;
    }

    .username-check .username-result-form {
        display: block;
        text-align: center;
    }

    .username-check .username-result-form h2 {
        margin: 0 0 15px 0;
    }

    .username-check .username-result-form .form-group-both {
        float: none;
        margin: 0 auto;
    }

    .username-generator1 .save-btn-grp,
    .username-generator1 .result-fliter {
        display: block;
        float: unset;
        text-align: center;
    }

    .god-name {
        border-bottom: none;
    }

    .god-name div {
        width: 100%;
        justify-content: space-between;
        border-bottom: 2px solid #696b6b;
    }

    .god-name div:nth-child(odd) {
        border-right: none;
    }

    .god-name div span {
        width: auto;
    }

    .god-name div span:first-child {
        border: none;
    }

    .breadcrumb-wrap>ul>li>a {
        padding-left: 12px;
        padding-right: 4px;
    }

    .breadcrumb-wrap>ul>li:not(:first-child)>a {
        padding-left: 20px;
    }

    .breadcrumb-wrap>ul>li>a::after,
    .breadcrumb-wrap>ul>li>a::before {
        border-width: 14px 8px;
    }

    .breadcrumb-wrap>ul>li>a::after {
        right: -8px;
    }

    .generat-btn {
        width: 160px;
    }

    .champions-modal .modal .modal-header {
        display: block;
        text-align: center;
    }

    .champions-modal .modal .modal-header:before {
        bottom: 0;
        top: inherit;
        transform: translate(-50%, 0);
    }

    .champions-modal .modal-header .modal-img {
        margin: auto;
    }

    .planet-name span,
    .horse-name span,
    .alien-name span,
    .dj-name span {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 575px) {

    .planet-name span,
    .horse-name span,
    .alien-name span,
    .dj-name span {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .generat-btn {
        display: inline-block;
        background-color: #fff;
        margin: 4px 0;
        color: #000;
        font-weight: 600;
        border-radius: 4px;
        border: 1px solid #e5e5e5;
        position: relative;
        z-index: 1;
        width: 49%;
        font-size: 13px;
        padding: 4px 7px;
        text-align: left;
    }

    #myProgress {
        width: 100%;
    }

    .validat-btn {
        margin: 10px auto 0;
    }

    .header .logo a {
        width: 220px;
        height: 40px;
    }

    .sec-title h1 {
        font-size: 22px !important;
    }

    .sample-card-table {
        padding: 10px;
    }

    .sample-card-table td,
    .sample-card-table th {
        padding: 3px 0;
    }

    .card-icon-incard {
        right: 10px;
        width: 50px;
    }

    .flex-wrap-mobile {
        flex-wrap: wrap;
    }

    .header-page-ad {
        height: 370px !important;
    }
}

@media screen and (max-width: 480px) {
    .header {
        height: 67px;
    }
}

@media screen and (max-width: 467px) {
    .small-page-ad {
        height: 250px;
    }
}

@media screen and (max-width: 400px) {
    ul.footer-links>li:first-child {
        margin-bottom: 10px;
    }

    .header-page-ad {
        height: 330px !important;
    }
}

@media screen and (max-width: 353px) {
    .list_links {
        width: 250px;
        right: unset;
        bottom: 57px;
        left: 50%;
        transform: translate(-50%);
    }

    .list_links li {
        width: 100%;
    }
}

s {
    text-decoration: none;
}

.d-none {
    display: none;
}

.u-table {
    display: table !important;
}

.u-tableCell {
    display: table-cell !important;
}

.avatar {
    float: left;
    margin-right: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -moz-force-broken-image-icon: 1;
}

.u-alignBottom {
    vertical-align: bottom !important;
}

.social-page {
    position: relative;
}

.social-page .sec-title {
    margin-bottom: 30px;
}

.left-part {
    position: relative;
    padding: 15px;
    overflow: auto;
    overflow-x: hidden;
    max-height: 900px;
    box-shadow: 0 0 2px #ababab;
    -webkit-box-shadow: 0 0 2px #ababab;
}

#left-panel.box-shadow .left-part {
    box-shadow: 0 0 2px #ababab, inset 0px -22px 25px -30px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0 0 2px #ababab, inset 0px -22px 25px -30px rgba(0, 0, 0, 0.8);
}

.left-part::-webkit-scrollbar {
    width: 6px;
}

.social-page #myProgress {
    margin: 30px auto 15px auto;
}

.social-page .form-group {
    margin: 10px 0;
}

.social-page .input-group {
    height: 40px;
}

.social-page .input-group .input-group-addon {
    background: #ffffff;
}

.social-page .input-group input,
.social-page .input-group .input-group-addon {
    height: 40px;
}

.social-page .form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.social-page .form-group>input,
.social-page .form-group>textarea,
.social-page .form-group select {
    position: relative;
    height: 40px;
    width: 100%;
    display: block;
    padding: 9px 10px;
    color: #252525;
    background-color: #ffffff;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    box-shadow: none;
}

.social-page .form-group>textarea {
    height: 100px;
    resize: none;
}

.social-page .fileinput strong {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 24px;
}

.social-page .nav-tabs {
    margin-top: 10px;
    border: none;
}

.social-page .nav-tabs>li>a {
    color: #000;
    padding: 10px;
    border-radius: 0;
    -webkit-appearance: none;
    border: none;
    margin: 0
}

.social-page .left-part .nav>li>a:focus,
.social-page .left-part .nav>li>a:hover {
    text-decoration: none;
    background-color: #696b6b;
    color: #ffffff;
}

.social-page .left-part .nav-tabs>li.active>a,
.social-page .left-part .nav-tabs>li.active>a:focus,
.social-page .left-part .nav-tabs>li.active>a:hover {
    background: #383838;
    color: #fff;
    border-radius: 0;
    border: none;
    margin: 0;
}

.social-page .tab-content {
    padding: 10px;
    box-shadow: 0 0 2px #ababab;
}

.social-page .fileinput {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.social-page .fileinput.with-border {
    box-shadow: 0 0 2px #ababab;
    border-radius: 5px;
}

.social-page .fileinput.with-border.fileinput-exists {
    padding: 10px 0;
}

.social-page .fileinput-exists .fileinput-new {
    display: none;
}

.social-page .fileinput .fileinput-text,
.social-page .fileinput .fileinput-img {
    width: 50%;
}

.social-page .fileinput .thumbnail {
    margin: 15px auto !important;
}

.social-page .fileinput-exists img {
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
    padding: 4px;
    margin: 15px;
    max-width: 68px !important;
    max-height: 54px !important;
}

.social-page .fileinput .fileinput-text .btn-file i {
    display: none;
}

.social-page .fb_comment_photo {
    padding: 0 !important;
    box-shadow: unset !important;
}

.social-page .radio-grp,
.social-page .checkbox-grp {
    position: relative;
    display: block;
    margin-top: 20px;
}

.social-page .radio label,
.social-page .checkbox label {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.social-page .radio label img,
.social-page .checkbox label img {
    margin-right: 3px;
}

.radio-text,
.checkbox-text {
    display: inline-block;
    vertical-align: top;
}

.social-page .checkbox+.checkbox,
.social-page .radio+.radio {
    margin-top: auto;
}

.social-page input[type="radio"] {
    display: inline-block;
    width: auto !important;
    margin: 0 5px 0 0;
    vertical-align: middle;
}

.social-page .radio-grp .fb_post_d_block,
.social-page .checkbox-grp .fb_post_d_block {
    font-weight: 600;
    color: #000000;
}

.social-page .checkbox input[type=checkbox],
.social-page .checkbox-inline input[type=checkbox],
.social-page .radio input[type=radio],
.social-page .radio-inline input[type=radio] {
    position: relative;
    margin: 0;
    margin-right: 5px;
    width: auto;
}

.right-part {
    position: relative;
    padding: 15px 15px 30px 15px;
    border: 1px solid #cdcdcd;
    width: 100%;
    border-radius: 6px;
    margin: 0px auto;
    background-image: url('/assets/images/pattern.png');
    -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::-webkit-scrollbar {
    height: 6px;
}

.right-part .live-box {
    padding: 10px 20px;
    background: #fff;
    display: inline-block;
    margin-bottom: 30px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.right-part .name-block {
    float: left;
}

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

.right-part .permalink-header {
    float: left;
}

.right-part .permalink-header .fullname {
    display: block;
    padding-top: 2px;
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.25;
}

.right-part .permalink-header .username {
    font-size: 14px;
    float: left;
}

.right-part .username {
    direction: ltr;
    unicode-bidi: embed;
    color: #8899a6;
}

.social-view-tab {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    overflow: hidden;
}

.social-view-tab button {
    position: relative;
    height: 46px;
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #333333;
    background: #ffffff;
    transition: 0.3s ease-in-out;
}

.social-view-tab button i {
    font-size: 22px;
    margin-right: 10px;
}

.social-view-tab button:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
    display: block;
}

.social-view-tab button:hover {
    color: #696b6b;
}

.social-view-tab button.active {
    background: #383838;
    color: #fff;
}

.social-view-tab button.lg-view i {
    font-size: 18px;
}

.social-view-tab button:last-child:before {
    display: none;
}

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

.right-part #download .modal-dialo {
    width: auto;
    margin: 0px;
}

.right-part .download-btn a {
    display: inline-block;
    margin-top: 30px;
}

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

.android-header .status-bar {
    padding: 12px 22px 5px 16px;
    text-align: right;
    font-size: 12px;
    line-height: 1;
    color: #000000;
}

.android-header .status-bar .status-time,
.android-header .status-bar .status-network,
.android-header .status-bar .wifi {
    display: inline-block;
    margin-right: 0px;
}

.android-header .status-bar .battery-container {
    display: inline-block;
    margin-left: 0px;
}

.android-header .status-bar .battery-status {
    color: #000;
}

.android-header .status-bar .battery {
    border: 1px solid #000000;
    width: 24px;
    border-radius: 1px;
    position: relative;
    height: 12px;
    margin: 0 0px 0 6px;
}

.android-header .status-bar .battery:before {
    content: '';
    width: 3px;
    height: 6px;
    display: inline-block;
    background: #000000;
    position: absolute;
    left: -3px;
    top: 53%;
    margin-top: -3px;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.android-header .status-bar .status-time {
    margin-left: 4px;
    float: right;
}

.android-header .battery-level {
    position: absolute;
    content: "";
    background: #000000;
    width: 50%;
    height: 100%;
    right: 0;
    left: auto;
    max-width: 100%;
}

.android-header.white-content .status-bar .battery-status,
.android-header.white-content .status-bar {
    color: #ffffff;
}

.android-header.white-content .status-bar .battery {
    border-color: #ffffff;
}

.android-header.white-content .battery-level,
.android-header.white-content .status-bar .battery:before {
    background: #ffffff;
}

.ios-header {
    position: relative;
    display: none;
}

.ios-header .status-bar {
    background: rgb(26 26 26 / 100%);
    color: #000;
    text-align: center;
    font-size: 13px;
    height: 32px;
    padding: 11px 19px 0px 11px;
}

.ios-header .iphone-moblie-network {
    position: relative;
    display: inline-block;
    float: left;
    overflow: hidden;
    padding-left: 6px;
    font-size: 0;
}

.ios-header .iphone-moblie-network div:nth-child(1),
.ios-header .iphone-moblie-network div:nth-child(2),
.ios-header .iphone-moblie-network div:nth-child(3),
.ios-header .iphone-moblie-network div:nth-child(4),
.ios-header .iphone-moblie-network div:nth-child(5) {
    width: 6px;
    height: 6px;
    margin-right: 2px;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.ios-header .iphone-moblie-network div:nth-child(1),
.ios-header .iphone-moblie-network div:nth-child(2),
.ios-header .iphone-moblie-network div:nth-child(3) {
    background: #000;
}

.ios-header .iphone-moblie-network span {
    font-size: 14px;
    color: #fff;
    padding-left: 20px;
}

.ios-header .wifi {
    display: inline-block;
    margin-right: 3px;
}

.ios-header .iphone-time {
    display: grid;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto !important;
}

.ios-header .iphone-time .status-time {
    margin: 0;
    float: none;
    font-weight: 600;
    font-size: 14px;
}



.ios-header .battery-container .battery {
    position: relative;
    width: 24px;
    height: 11px;
    border: 1px solid #000000;
    border-radius: 1px;
    margin: 3px;
}

.ios-header .battery-container .battery:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -3px;
    transform: translate(0, -50%);
    width: 3px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.ios-header .battery-container .battery .battery-level {
    content: "";
    position: absolute;
    background: #000000;
    width: 50%;
    height: 100%;
    left: 0;
    max-width: 100%;
}

.ios-header.white-content .iphone-moblie-network span,
.ios-header.white-content .status-bar {
    color: #ffffff;
}

.ios-header.white-content .battery-container .battery,
.ios-header.white-content .iphone-moblie-network div {
    border-color: #ffffff;
}

.ios-header.white-content .iphone-moblie-network div:nth-child(1),
.ios-header.white-content .iphone-moblie-network div:nth-child(2),
.ios-header.white-content .iphone-moblie-network div:nth-child(3),
.ios-header.white-content .battery-container .battery:before,
.ios-header.white-content .battery-container .battery .battery-level {
    background: #ffffff;
}

.right-part .modal-header .header-icon.header-icon-arrow {
    width: 10%;
}

.right-part .modal-header .modal-title {
    width: 300%;
}

.right-part .modal-header .header-icon.pull-right {
    width: 30%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.right-part .header-content span {
    color: #ffffff;
}

.right-part .header-content a {
    float: left;
    color: #657786;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    margin-top: -2px;
    text-decoration: none;
}

.right-part .modal-body {
    position: relative;
    padding: 15px;
    min-height: 420px;
}

.right-part .modal-body .is-not .message-container {
    min-height: 10px;
}

.right-part .modal-body .message-received .message-container {
    margin-right: auto;
}

.right-part .modal-body .message-container {
    position: relative;
    max-width: 85%;
}

.right-part .modal-body .message-received .message-avatar {
    left: 0;
}

.right-part .modal-body .message-received .message-bubble {
    background-color: #fff;
    border-color: #fff;
}

.right-part .modal-body .message-received .message-footer {
    margin-right: auto;
    padding-left: 58px;
    padding-right: 50px;
}

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

.right-part .modal-body .message-sent .message-avatar {
    right: 0;
}

.right-part .modal-body .message-sent .message-bubble {
    background-color: #fff;
    border-color: #fff;
}

.right-part .modal-body .message-text p {
    margin-bottom: 0;
}

.right-part .modal-body .message-sent .message-footer {
    margin-left: auto;
    padding-left: 50px;
    padding-right: 58px;
}

.right-part .modal-body .message-footerItem img {
    width: 11px;
    height: 9px;
    margin-left: 4px;
}

@media screen and (max-width: 1199px) {
    .right-part {
        padding: 15px 0 30px 0px;
    }

    .right-part .live-box {
        margin-left: 15px;
    }
}

@media screen and (max-width: 991px) {
    .left-part {
        box-shadow: none;
        margin-bottom: 60px;
        box-shadow: 0 0 2px #ccc;
        max-height: unset;
        height: auto;
    }

    #left-panel.box-shadow .left-part {
        box-shadow: 0 0 2px #ccc;
        -webkit-box-shadow: 0 0 2px #ccc;
    }
}

@media screen and (max-width: 575px) {
    .social-view-tab button span {
        display: none;
    }
}

@media screen and (max-width: 360px) {

    .social-page .fileinput .fileinput-text,
    .social-page .fileinput .fileinput-img {
        width: 40%;
    }
}

.container .sec-title {
    margin-top: 60px !important;
}

.modal-body.whatsapp-body0.whatsapp-body-ios0 {
    min-height: 520px !important;
    /* Utiliser `!important` seulement si nÃ©cessaire */
}

@media only screen and (max-width: 600px) {
    .mega-menu .fake_submenu .menu-parts ul li a {
        color: #fff;
        /* Garantit que la couleur du texte est blanche sur les mobiles */
    }
}

.social-share {
    display: flex;
    align-items: center;
}

.social-share span {
    margin-right: 3px;
    /* Espace entre le texte et les icÃ´nes */
}

.social-icon {
    width: 50%;
    /* RÃ©duction de la taille Ã  70% de l'originale */
    margin-right: 10px;
    /* Espace entre les icÃ´nes */
}

/* Personnalisation du texte pour la personne 1 */
.message-received .whatsapp-text p {
    color: white !important;
    /* Texte en bleu pour la personne 1 */
}

/* Personnalisation du texte pour la personne 2 */
.message-sent .whatsapp-text p {
    color: white !important;
    /* Texte en rouge pour la personne 2 */
}
 
/* Personnalisation du statut de lecture pour la personne 1 */
.message-received .whatsapp-text .message-read-status span {
    color: #909193 !important;
    /* Couleur beige pour le statut de la personne 1 */
}

/* Personnalisation du statut de lecture pour la personne 2 */
.message-sent .whatsapp-text .message-read-status span {
    color: #91a79d !important;
    /* Couleur jaune pour le statut de la personne 2 */
}

.black-whatsapp-recorder {
    position: absolute;
    right: 6px;
    /* Place l'Ã©lÃ©ment Ã  droite */
    top: 50%;
    transform: translateY(-50%);
    /* Centre verticalement */
    width: 47px;
    /* Taille du rond vert */
    height: 47px;
    background-color: #21c063;
    /* Couleur verte de WhatsApp */
    border-radius: 50%;
    /* Pour crÃ©er un rond */
    display: flex;
    justify-content: center;
    align-items: center;
}

.black-whatsapp-recorder img {
    width: 15px;
    /* Taille de l'image Ã  l'intÃ©rieur du rond */
    height: auto;
}

.custom-box {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.custom-box h2 {
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.custom-box h3 {
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

.custom-box p {
    margin-bottom: 15px;
    color: #666;
}



.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:#1f272a;
  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:#8d9598;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;
}
