/* Main CSS for Basic Technologies - Biometric Solutions */
:root {
    --primary-color: #AA0A6C;
    --secondary-color: #004d99;
    --accent-color: #ff6b00;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --text-color: #555555;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
    position: relative;
    margin-top: 80px;
    background-image: url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.page-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: #ffffff;
}

/* Section Styling */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title h2 {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.section-title p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-img {
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.product-content p {
    margin-bottom: 1.5rem;
    color: #666;
    flex-grow: 1;
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-box h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-section .btn-light {
    color: var(--primary-color);
    background-color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn-light:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    transition: var(--transition);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #999999;
    padding: 80px 0 0;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999999;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.footer-contact i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: #999999;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright-text {
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 50px 0;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-section .text-lg-right {
        text-align: left !important;
        margin-top: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}


.demo-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
}
.demo-header h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
}
.form-container {
    padding: 40px;
}
.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}
.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.btn-submit {
    background: linear-gradient(135deg, #aa0a6c 0%, #d63384 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(170, 10, 108, 0.4);
    color: white;
    background: linear-gradient(135deg, #8f0959 0%, #c02a75 100%);
}
@media (max-width: 768px) {
    .demo-container {
        margin: 20px;
        border-radius: 8px;
    }
    .form-container {
        padding: 20px;
    }
    .demo-header {
        padding: 30px 20px;
    }
    .demo-header h2 {
        font-size: 1.8rem;
    }
}

.awardbgwithtext {
    width: 150px;
    height: 150px;
    position: relative;
}

.awardbgwithtext img {
    width: 100%;
}
.awardbgwithtext p span {
    color: #050748;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    display: block;
    padding: 10px 0 0;
    
}

.awardbgwithtext p {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    padding: 0 25px;
    color: #050748;
    line-height: 0.6;

}

/* Center Owl Carousel nav arrows below the testimonial slider */
.testimonials-section .owl-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  position: static;
}
.custom-owl-nav {
  background: #fff;
  border: 2px solid #00b894;
  color: #00b894;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 6px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.custom-owl-nav:hover, .custom-owl-nav:focus {
  background: #00b894;
  color: #fff;
  border-color: #00b894;
}
/* Hide default background on nav */
.testimonials-section .owl-nav button {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Merge hero-shape with top section and reduce empty space */
.hero-section {
  padding-top: 78px;
  padding-bottom: 30;
  position: relative;
  min-height: 480px;
}
.hero-section .container {
  padding-bottom: 0;
}
.hero-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-section .row.align-items-center {
  z-index: 2;
  position: relative;
}
@media (max-width: 991px) {
  .hero-section {
    padding-top: 32px;
    min-height: 360px;
  }
}

/* Highlight center testimonial slide */
.testimonial-slider .owl-item.center .testimonial-card {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
  z-index: 2;
  border: 2px solid #00b894;
}
.testimonial-slider .testimonial-card {
  transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s, border 0.35s;
}

/* Biometric Tabs Section - Modern Boxed Style */
#biometricTabs, #biometricTabsContent {
  background: #f8f3ea;
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.biometric-tabs-box {
  border: 2px solid #222;
  border-radius: 6px;
  background: #f8f3ea;
  padding: 32px 24px 24px 24px;
  margin-bottom: 2rem;
}
#biometricTabs {
  border-bottom: 2px solid #222;
  margin-bottom: 24px;
}
#biometricTabs .nav-item {
  flex: 1 1 0;
  text-align: center;
}
#biometricTabs .nav-link {
  border: none;
  border-radius: 0;
  background: transparent;
  color: #4a3c2a;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px 0;
  transition: color 0.2s, background 0.2s;
}
#biometricTabs .nav-link.active {
  color: #222;
  background: #f8f3ea;
  border-bottom: 3px solid #e9408f;
  font-weight: 700;
}
#biometricTabs .nav-link:focus {
  outline: none;
}
#biometricTabsContent {
  background: #f8f3ea;
  border: none;
  border-radius: 0 0 6px 6px;
  padding: 32px 16px 16px 16px;
}
#biometricTabsContent ul.list-unstyled {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
#biometricTabsContent ul.list-unstyled li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#biometricTabsContent ul.list-unstyled a {
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #222;
  border-radius: 22px;
  background: #fff;
  color: #4a3c2a;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.18s;
  margin-bottom: 0;
}
#biometricTabsContent ul.list-unstyled a:hover, #biometricTabsContent ul.list-unstyled a:focus {
  border-color: #e9408f;
  color: #e9408f;
  background: #fff0f7;
}
#biometricTabsContent ul.list-unstyled a.active {
  border-color: #e9408f;
  color: #e9408f;
  background: #fff0f7;
  font-weight: 600;
}
@media (max-width: 991px) {
  .biometric-tabs-box {
    padding: 18px 6px 12px 6px;
  }
  #biometricTabsContent {
    padding: 18px 4px 8px 4px;
  }
  #biometricTabs .nav-link {
    font-size: 1rem;
    padding: 10px 0;
  }
  #biometricTabsContent ul.list-unstyled a {
    padding: 7px 14px;
    font-size: 0.95rem;
  }
}




/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
  }
  
  #whatsapp-chat {
    box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    right: 30px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
  }
  
  a.blantershow-chat {
    /*   background: #009688; */
    background: #fff;
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 25px;
    right: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  }
  
  a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
  }
  
  .header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
  }
  
  .header-chat h3 {
    margin: 0 0 10px;
  }
  
  .header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }
  
  .info-avatar {
    position: relative;
  }
  
  .info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
  }
  
  a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
  }
  
  a.informasi:hover {
    background: #f1f1f1;
  }
  
  .info-chat span {
    display: block;
  }
  
  #get-label,
  span.chat-label {
    font-size: 12px;
    color: #888;
  }
  
  #get-nama,
  span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
  }
  
  #get-label,
  #get-nama {
    color: #fff;
  }
  
  span.my-number {
    display: none;
  }
  
  /* .blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
  } */
  textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
  }
  
  a#send-it {
    width: 30px;
    font-weight: 700;
    padding: 10px 10px 0;
    background: #eee;
    border-radius: 10px;
  }
  a#send-it svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
  }
  
  .first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
  }
  .first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  }
  
  .start-chat .blanter-msg {
    display: flex;
  }
  
  #get-number {
    display: none;
  }
  
  a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
  }
  
  @keyframes ZpjSY {
    0% {
      background-color: #b6b5ba;
    }
    15% {
      background-color: #111111;
    }
    25% {
      background-color: #b6b5ba;
    }
  }
  @keyframes hPhMsj {
    15% {
      background-color: #b6b5ba;
    }
    25% {
      background-color: #111111;
    }
    35% {
      background-color: #b6b5ba;
    }
  }
  @keyframes iUMejp {
    25% {
      background-color: #b6b5ba;
    }
    35% {
      background-color: #111111;
    }
    45% {
      background-color: #b6b5ba;
    }
  }
  @keyframes showhide {
    from {
      transform: scale(0.5);
      opacity: 0;
    }
  }
  @keyframes showchat {
    from {
      transform: scale(0);
      opacity: 0;
    }
  }
  @media screen and (max-width: 480px) {
    #whatsapp-chat {
      width: auto;
      left: 5%;
      right: 5%;
      font-size: 80%;
    }
  }
  .hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
  }
  
  .show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
  }
  
  .whatsapp-message-container {
    display: flex;
    z-index: 1;
  }
  
  .whatsapp-message {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
  }
  
  .whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: #e6ddd4;
    position: relative;
  }
  .whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
  }
  
  .dAbFpq {
    display: flex;
    z-index: 1;
  }
  
  .eJJEeC {
    background-color: white;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  }
  
  .hFENyl {
    position: relative;
    display: flex;
  }
  
  .ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: #9e9da2;
    animation-name: ZpjSY;
  }
  
  .dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: #b6b5ba;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
  }
  
  .kAZgZq {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
  }
  .kAZgZq::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
  }
  
  .bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
  }
  
  .iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
  }
  
  .iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
  }
  
  .cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
  }