.icon-hidden {
    display: none;
}

.icon-visible {
    display: inline;
}

#android-batteryPercentageDisplay {
    font-size: 17px;
    color: #ffffff;
}

.icon-hidden {
    display: none;
}

.icon-visible {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

.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: 6px;
}

.icon-battery {
    width: 10px;
}

.tiktokheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.tiktokheader-item {
    flex: 1;
    text-align: center;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktokheader-label {
    font-size: 14px;
    color: #c0c0c0;
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.5px;
}

.tiktokheader-item.active .tiktokheader-label {
    color: white;
    font-weight: 500;
}

.tiktokheader-underline {
    width: 20px;
    height: 2px;
    background: white;
    margin-top: 3px;
}

.tiktokheader-active-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tiktokheader-icon-left,
.tiktokheader-icon-right {
    width: 40px;
    display: flex;
    justify-content: center;
}

.tiktokheader-icon-left img,
.tiktokheader-icon-right img {
    height: 20px;
}


.design-box {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
    /* Centrage horizontal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    /* Largeur maximale du bloc */
    width: 100%;
    /* Adapter la largeur à l'écran */
}

.design-box h2 {
    margin-bottom: 8px;
    text-align: center;
    /* Centrer le texte du titre */
}

.design-box h3 {
    text-align: center;
    /* Centrer le texte du sous-titre */
}

.design-box p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    /* Justifier le texte des paragraphes */
}

.slider {
    width: 80%;
    margin: 20px auto;
}

.slick-slide {
    margin: 0 15px;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-slide h3 {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.slick-slide a {
    display: block;
    text-align: center;
    color: blue;
    margin-top: 5px;
}


.all_footer_wp {
    background-color: black;
    border-top: 0.5px solid #444;
    padding-top: 6px;
}

.tiktok-footer {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 2px 0 25px 0;
}

.tiktok-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 20%;
    min-width: 50px;
    text-align: center;
}

.tiktok-footer-item img {
    height: 20px;
    display: block;
}

.tiktok-footer-label {
    margin-top: 4px;
    font-size: 12px;
    color: #c0c0c0;
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.center-plus img {
    height: 28px;
}

.footer-bar {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    border-radius: 4px;
    background: white;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.video-progress-container {
    position: fixed;
    bottom: 65px;
    left: 0;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    z-index: 1000;
}

/* base */
#video-progress {
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;

    /* variables pilotées en JS */
    --p: 0%;
    --fill: #808080;
    /* couleur remplie */
    --bg: #333;
    /* couleur non remplie */
}

/* WebKit (Chrome/Safari/Edge Chromium) */
#video-progress::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--fill) var(--p), var(--bg) var(--p));
}

#video-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 5px;
    height: 5px;
    background: #808080;
    border-radius: 50%;
    box-shadow: 0 0 2px #000;
    margin-top: -1px;
    /* centre le thumb */
}

/* Firefox */
#video-progress::-moz-range-track {
    height: 3px;
    border-radius: 4px;
    background: var(--bg);
}

#video-progress::-moz-range-progress {
    height: 3px;
    border-radius: 4px;
    background: var(--fill);
}

#video-progress::-moz-range-thumb {
    width: 8px;
    height: 8px;
    background: #aaa;
    border: none;
    border-radius: 50%;
}



@font-face {
    font-family: 'SFProDisplay';
    font-weight: 500;
    /* Medium */
    src: url('../assets/SFPRODISPLAYMEDIUM.OTF') format('opentype');
}

@font-face {
    font-family: 'SFProDisplay';
    font-weight: 700;
    /* Bold */
    src: url('../assets/SFPRODISPLAYBOLD.OTF') format('opentype');
}

.iphone-regular {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 400;
    font-size: 11px;
}

.iphone-medium {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #fff;
    margin-top: 1px;
}

.iphone-bold {
    font-family: 'SFProDisplay', sans-serif;
    font-weight: 500;
}

.ios-header .battery-container {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.ios-header .status-bar {
    padding: 12px 18px 10px 25px !important;
}

.faq-container {
    width: 60%;
    margin: auto;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: left;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .faq-container {
        width: 90%;
    }
}

.faq-header {
    font-size: 24px;
    color: #e80000;
    text-align: center;
    margin-bottom: 20px;
}

.question-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: bold;
}

.question::before {
    content: '▼';
    /* Icône flèche vers le bas par défaut */
    margin-right: 5px;
}

.question.opened::before {
    content: '▲';
    /* Icône flèche vers le haut lorsque la réponse est ouverte */
}

.answer {
    display: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

img#network {
    margin-right: 3px;
}

.android-header .status-bar .status-time {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

img#myImage {
    margin-top: 1px;
    margin-left: 3px;
}

.SFPRODISPLAYBOLD {
    font-size: 14px;
    position: relative;
    top: 1px;
    color: #fff;
}

span.status-time.SFPRODISPLAYBOLD {
    font-size: 14px;
}

.ios-header .iphone-moblie-network span {
    padding-left: 15px;
    color: #fff;
}

.all_header_wp {
    position: relative;
    z-index: 10;
}

.tiktok-header {
    background: #fff;
    padding: 19px 22px 16px;
    border-bottom: 1px solid #cdcdcd;
    text-align: center;
}

.tiktok-header .tiktok-user-icon {
    display: inline-block;
    vertical-align: middle;
    float: left;
}

.tiktok-header .tiktok-user-icon img {
    width: 22px;
    height: 19px;
}

.tiktok-header .tiktok-header-title {
    display: inline-block;
    vertical-align: middle;
}

.tiktok-header .tiktok-header-title h2 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    font-family: open sans, sans-serif !important;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.tiktok-header-qr-dots {
    float: right;
}

.tiktok-header-qr-dots img {
    width: 47px;
    height: 18px;
}

.tiktok-modal .modal-body {
    text-align: center;
}

.tiktok-modal .tiktok-profile-image {
    text-align: center;
}

.tiktok-modal .tiktok-profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.tiktok-user-name p {
    color: #000;
    margin: 9px 0 7px;
    font-size: 16px;
    font-weight: 700;
    font-family: open sans, sans-serif !important;
}

.tiktok-user-name .text-username {
    display: inline-block;
    vertical-align: bottom;
}

.tiktok-modal .modal-body .video-box p {
    color: #78777d;
    background: #f8f8f8;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    margin: 0;
    display: inline-block;
    border-radius: 50px;
}

.tiktok-modal .modal-count {
    text-align: center;
    padding-top: 15px;
}

.tiktok-modal .modal-count ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.tiktok-modal .modal-count ul li {
    list-style: none;
    display: inline-block;
    position: relative;
    width: 20%;
    margin: 0 7px;
}

.tiktok-modal .modal-count ul li:first-child:before {
    content: none;
}

.tiktok-modal .modal-count ul li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    background: #f3f3f3;
}

.tiktok-modal .modal-count ul li h5 {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: open sans, sans-serif !important;
    padding: 0;
    margin: 0;
}

.tiktok-modal .modal-count ul li p {
    color: #78777d;
    font-size: 14px;
    font-weight: 400;
    font-family: open sans, sans-serif !important;
    padding: 0;
    margin: 0;
}

.tiktok-modal .modal-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 0;
}

.tiktok-modal .modal-middle .edit-btn {
    color: #fff;
    background: #fe2b54;
    padding: 11px 15px;
    width: 120px;
    height: 45px;
    border-radius: 3px;
}

.tiktok-modal .modal-middle .edit-btn p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: open sans, sans-serif !important;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}

.tiktok-modal .modal-middle .edit-btn,
.tiktok-modal .modal-middle .insta-btn {
    margin-right: 8px;
}

.tiktok-modal .modal-middle .insta-btn,
.tiktok-modal .modal-middle .save-btn {
    border: 1px solid #e8e8e8;
    padding: 11px;
    width: 45px;
    height: 45px;
    border-radius: 3px;
    text-align: center;
}

.tiktok-modal .modal-middle .insta-btn i,
.tiktok-modal .modal-middle .save-btn i {
    color: #000;
    font-size: 22px;
}

.tiktok-modal .tiktok-bio {
    text-align: center;
}

.tiktok-modal .tiktok-bio p {
    color: #78777d;
    font-size: 14px;
    font-weight: 400;
    font-family: open sans, sans-serif !important;
    padding: 0;
    margin: 0;
}

.tiktok-gallery {
    display: flex;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    padding: 10px;
}

.tiktok-gallery-list,
.tiktok-gallery-like {
    display: flex;
    width: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tiktok-gallery-list:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 15px;
    transform: translate(-50%, -50%);
    background: #f3f3f3;
}

.tiktok-gallery-list img {
    width: 14px;
    height: 17px;
}

.tiktok-gallery-like img {
    width: 20px;
    height: 17px;
}

.tiktok-modal .main-gallery-image {
    display: flex;
    flex-wrap: wrap;
}

.tiktok-modal .main-gallery-image .gallery-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 33%;
    height: 160px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.tiktok-modal .main-gallery-image .gallery-image1 {
    background-image: url(../../images/gallery-image1.jpg);
}

.tiktok-modal .main-gallery-image .gallery-image2 {
    background-image: url(../../images/gallery-image2.jpg);
}

.tiktok-modal .main-gallery-image .gallery-image3 {
    background-image: url(../../images/gallery-image3.jpg);
}

.tiktok-menu {
    background: #fff;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktok-menu ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
}

.tiktok-menu ul li {
    list-style: none;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 20%;
}

.tiktok-menu ul li .tiktok-home,
.tiktok-menu ul li .tiktok-search,
.tiktok-menu ul li .tiktok-notification {
    opacity: 0.8;
}

.tiktok-menu ul li p {
    color: #78777d;
    font-size: 10px;
    font-weight: 700;
    font-family: open sans, sans-serif !important;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
}

.tiktok-body .tiktok-verified {
    height: 13px;
    width: 13px;
    margin-top: -10px;
}

.tiktok-body .tiktok-post-bg {
    background-image: url(./fond-tiktokblack.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 618px;
}

.tiktok-body .tiktok-post-header {
    padding: 0;
    border: none;
    min-height: 50px;
    margin-top: 26px;
}



.tiktok-body .tiktok-post-header ul {
    padding: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.tiktok-body .tiktok-post-header ul li {
    list-style: none;
    display: inline-block;
    color: #dae3e8;
    font-size: 15px;
    font-weight: 700;
    font-family: open sans, sans-serif !important;
    position: initial;
}

.tiktok-body .tiktok-post-header ul li.tiktok_active {
    color: #fff !important;
}

.tiktok-body .tiktok-post-header ul li:first-child {
    padding-right: 15px;
}

.tiktok-body .tiktok-post-header ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translate(0, -50%);
    width: 1px;
    height: 5px;
    background: #fff;
    opacity: 0.5;
}

.tiktok-body .tiktok-post-header ul li:first-child:before {
    content: none;
}

.tiktok-body .tiktok-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.tiktok-body .tiktok-menu .tiktok-post-search i {
    font-size: 19px;
    color: #fff;
}

.tiktok-body .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: 0 0;
}

.tiktok-right-content {
    position: absolute;
    bottom: -5px;
    right: -40px;
}

.tiktok-right-content ul {
    padding: 0;
    margin: 0;
}

.tiktok-right-content ul li {
    list-style: none;
    position: relative;
    margin: 15px 0;
    text-align: center;
}

.tiktok-right-content .tiktok-music {
    margin-top: 15px;
}

.tiktok-right-content .tiktok-following img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.tiktok-right-content .follow-plus {
    width: 20px;
    height: 20px;
    background: #f92e57;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
}

.tiktok-right-content .follow-plus:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 1.5px;
    background: #fff;
}

.tiktok-right-content .follow-plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 10px;
    height: 1.5px;
    background: #fff;
}

.tiktok-right-content .tiktok-like i {
    font-size: 40px;
    color: #fff;
}

.tiktok-right-content .tiktok-music img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.tiktok-like p,
.tiktok-comment p,
.tiktok-share p {
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    font-family: open sans, sans-serif !important;
    margin: 0;
    text-transform: capitalize;
}

.tiktok-bottom-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.tiktok-bottom-content h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: open sans, sans-serif !important;
    padding: 0;
    margin: 0;
}

.tiktok-bottom-content .text-music_author {
    display: inline-block;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden !important;
    color: white;
    font-size: 15px;
    font-family: 'SFProDisplay', sans-serif;
}


.tiktok-bottom-content p {
    color: #e6e6e6;
    font-size: 13px;
    line-height: 18px;
}

.tiktok-bottom-content p.tiktok-hashtag {
    margin-top: 2px;
}

.tiktok-bottom-content i {
    color: #fff;
    display: inline-block;
    font-size: 12px;
}

.tiktok-post .tiktok-menu ul li p {
    color: #fff;
}

.main-twitter-header {
    height: 592px;
    overflow: auto;
    overflow-x: hidden;
}

.see_more {
    color: #fff;
    font-weight: 600;
    display: none;
}


.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 {
    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: space-between;
    align-items: center;
    margin: 0;
}

.menu>ul>li>a {
    display: inline-block;
    color: #333;
    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: 18px;
    padding: 5px 10px;
    border-radius: 6px;
    display: block;
    font-weight: 400;
    text-decoration: none;
    color: #4b4b4b !important;
    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;
}


.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-text {
    margin: 3px 0 !important;
}

.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;
}


.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;
}

 
.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;
}


@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;
    }



    .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: #fff;
        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: #4b4b4b !important;
        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;
        padding: 7px;
    }


}

@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: 18px;
        margin: 0;
        margin-bottom: 5px;
        color: #4b4b4b !important;
    }

    .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: #4b4b4b !important;
        font-weight: normal;
        padding: 8px 10px;
        font-size: 18px;
        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;
    }



    .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;
}

#myBar {
    width: 1%;
    height: 24px;
    text-align: center;
    background: #696b6b;
    position: relative;
    border-radius: 8px;
}

#myProgress {
    width: 450px;
    background-color: #e2e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px auto;
    text-align: center;
    display: none;
}
#myBar span {
    color: #fff;
    line-height: 24px;
    font-size: 15px;
    font-weight: 500;
}
.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 {
    border: 0px solid #dddddd;
    border-radius: 0px;
}

.android-header .status-bar {
    padding: 8px 15px;
    text-align: right;
}



.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 .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 {
    color: #fff;
    padding: 6px 8px;
    text-align: center;
    font-size: 13px;
    height: 30px;
}

.ios-header .iphone-moblie-network {
    position: relative;
    display: inline-block;
    float: left;
    overflow: hidden;
    padding-left: 1px;
    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: 2px;
    font-weight: 500;
}

.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: #14171a;
}

.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;
    z-index: 1;
}

.right-part .modal-body .is-not .message-container {
    min-height: 10px;
}

.right-part .modal-body .message-received .message-container {
    margin-right: auto;
    padding-left: 50px;
}

.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 */
}
