:root {
    --primary-color: #6e6df8;
    --secondary-color: #2d28f3;
    --font-family: 'Arial, sans-serif';
}

/* body {
    overflow: hidden;
} */

.bg-gradient-primary {
    background-image: linear-gradient(310deg, #2d28f3 0%, #6e6df8 100%);
}

.navbar-floating {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0 25px;
}

.navbar-floating .navbar {
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 10px 20px;
}

.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 50vh;
    background-image: linear-gradient(180deg, #f3f3f3 0%, #6e6df8 150%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 700px;
    width: 90%;
}

.btn-gradient-primary {
    background-image: linear-gradient(310deg, #2d28f3 0%, #6e6df8 100%);
    color: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-wrap-custom {
    white-space: normal;
    width: 53rem;
}

.badge-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.img-floating {
    position: absolute;
    width: 150px;
    z-index: 10;
    transition: all 0.3s ease;
}

.img-1 {
    top: 35%;
    left: 80%;
}

.img-2 {
    top: 35%;
    right: 80%;
}

/* Container Utama Gambar */
.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Pengaturan Gambar agar tidak pecah dan proporsional */
.hero-img {
    /* Di HP: Gambar mengambil 95% lebar layar */
    width: 85%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Tablet (iPad) */
@media (min-width: 768px) {
    .hero-img {
        width: 85%;
    }


}

/* Desktop / Laptop */
@media (min-width: 1200px) {
    .hero-img {
        /* Di layar lebar, batasi lebar maksimalnya agar tidak menutupi seluruh layar */
        max-width: 1000px;
        width: 75%;
    }
}

@media (max-width: 991px) {
    .navbar-floating {
        top: 40px;
    }

    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .img-floating {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar-floating {
        left: 20px;
        right: 20px;
    }

    .hero-title {
        max-width: 300px;
    }

    .hero-subtitle {
        max-width: 300px;
        font-size: 12px;
    }

    .hero-img {
        width: 55%;
    }

    .text-wrap-custom {
        white-space: normal;
        width: 23rem;
    }
}

/* Memastikan content di dalam About sejajar dengan container Bootstrap */
.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gunakan pembungkus ini di setiap section agar lebarnya konsisten */
.section-container {
    max-width: 1140px;
    /* Sesuaikan dengan max-width navbar Anda */
    margin: 0 auto;
}

/* Menyejajarkan teks About agar tidak terlalu ke pinggir */
.about-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Perbaikan untuk row agar tidak membuat scroll horizontal di mobile */
.row {
    margin-right: 0;
    margin-left: 0;
}

@media (max-width: 991px) {
    .about-section {
        padding-top: 50px;
        text-align: center;
        /* Opsional: teks rata tengah di tablet/HP */
    }

    .about-img {
        margin-top: 30px;
    }

    .about-img img {
        width: 80% !important;
        /* Memperbesar gambar di HP agar jelas */
    }
}

.logo-section {
    /* padding-bottom: 80px; */
    padding-top: 80px;
}

/* Container Utama */
.logos-slider-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    white-space: nowrap;
    /* Efek fade di pinggir kanan & kiri */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* Track yang bergerak */
.logos-track {
    display: flex;
    width: max-content;
    /* Sangat penting agar track mengikuti lebar konten */
    animation: scroll-left 25s linear infinite;
}

/* Group logo */
.logos-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* Styling Ikon */
.logos-group .bi {
    font-size: 3.5rem;
    /* Ukuran Desktop */
    margin: 0 40px;
    /* Jarak antar logo */
    color: #6c757d;
    /* Warna muted */
    transition: color 0.3s ease;
}

.logos-group .bi:hover {
    color: var(--primary-color);
}

/* Keyframes untuk Infinite Scroll */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* Geser setengah lebar total track */
    }
}

/* Responsif untuk Tablet & Phone */
@media (max-width: 991px) {
    .logos-group .bi {
        font-size: 2.8rem;
        margin: 0 30px;
    }
}

@media (max-width: 576px) {
    .logos-group .bi {
        font-size: 2.2rem;
        margin: 0 20px;
    }

    .logos-track {
        animation-duration: 15s;
        /* Lebih cepat di layar kecil agar tidak bosan */
    }
}

.logo-title {
    font-size: 14px;
    letter-spacing: 1.5px;
}

/* Feature Section Styling */
.feature-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f8f9fa;
    /* Latar belakang abu-abu muda agar ada kontras */
    border-radius: 15px;
}

.feature-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Ukuran title responsif */
}

.feature-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    /* Efek sedikit naik saat di-hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Efek bayangan lebih jelas */
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(110, 109, 248, 0.1);
    /* Warna primer dengan transparansi */
    color: var(--primary-color);
    border-radius: 15px;
    /* Sedikit melengkung di sudut */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px auto;
    /* Agar ikon berada di tengah */
}

/* Responsif untuk Mobile */
@media (max-width: 767.98px) {
    .feature-section .section-title {
        font-size: 2rem;
    }

    .feature-section .lead {
        font-size: 1rem;
    }
}

/* Content Section Styling */
.content-section {
    overflow-x: hidden;
    /* Mencegah overflow dari gambar yang mungkin besar */
    padding-top: 90px;
    padding-bottom: 90px;
}

.content-text-wrapper h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
}

.content-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 550px;
}

.content-img-wrapper:hover img {
    transform: scale(1.02);
    /* Efek zoom halus saat gambar di-hover */
}

.stat-item h4 {
    font-size: 1.5rem;
}

/* Penyesuaian Mobile */
@media (max-width: 991.98px) {
    .content-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

    .content-text-wrapper ul {
        display: inline-block;
        text-align: left;
        /* List tetap rata kiri walau kontainer tengah */
    }

    .content-text-wrapper .d-flex {
        justify-content: center;
        /* Merapikan statistik di tengah saat mobile */
    }
}

/* Footer Styling */
.container-footer {
    background-color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Social Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter Input */
.newsletter-group .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.newsletter-group .btn {
    background-color: var(--primary-color);
    border: none;
}

/* Responsivitas Mobile */
@media (max-width: 767.98px) {
    .container-footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 40px;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .newsletter-group {
        max-width: 350px;
        margin: 0 auto;
    }
}

.calculation-section {
    /* padding-top: 80px; */
    padding-bottom: 80px;
}

.container-calculation {
    max-width: 100%;
    margin: 0 auto;
    background-color: #6e6df8;
    padding: 30px;
    border-radius: 15px;
}

.container-calculation .stat-item {
    color: #fff;
}

.btn-started {
    background-color: #6e6df8 !important;
    border-color: #6e6df8 !important;
    color: white !important;
    font-weight: bold !important;
}

.btn-started:hover {
    background-color: #5a59d6 !important;
    border-color: #5a59d6 !important;
    color: white !important;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-wrapper {
    width: 220px;
    height: 50px;
    background-color: #f1f1fb;
    /* Abu-abu sangat muda */
    border-radius: 50px;
    display: flex;
    position: relative;
    cursor: pointer;
    border: 2px solid #fff;
    padding: 5px;
}

.toggle-label {
    flex: 1;
    z-index: 2;
    text-align: center;
    line-height: 38px;
    font-weight: 600;
    color: #7a7a7a;
    transition: color 0.3s ease;
}

/* Kotak slider yang bergerak */
.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 104px;
    height: 38px;
    background-color: #6e6df8;
    /* Warna Deskbox Anda */
    border-radius: 40px;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(110, 109, 248, 0.3);
}

/* Logika saat checkbox dicentang (Yearly terpilih) */
#billing-toggle:checked+.toggle-wrapper .toggle-slider {
    left: 108px;
    /* Geser slider ke kanan */
}

#billing-toggle:checked+.toggle-wrapper .yearly {
    color: white;
}

#billing-toggle:not(:checked)+.toggle-wrapper .monthly {
    color: white;
}

.hero-pricing {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 50vh;
    /* Efek Mesh Gradient yang modern dan bersih */
    background-image:
        radial-gradient(at 50% 0%, rgba(154, 154, 247, 0.841) 0px, transparent 65%),
        radial-gradient(at 0% 100%, rgba(109, 109, 248, 0.841) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(43, 40, 243, 0.519) 0px, transparent 60%);

    /* Memastikan konten di dalamnya berada di atas background */
    position: relative;
    z-index: 1;

    /* Transisi halus jika ada perubahan ukuran */
    transition: all 0.3s ease;
}

/* Efek Hover pada Card */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(110, 109, 248, 0.15) !important;
}

/* Tombol Custom Outline */
.btn-outline-custom {
    color: #6e6df8 !important;
    border: 1px solid #6e6df8 !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-custom:hover {
    background-color: #6e6df8 !important;
    color: white !important;
    border-color: #6e6df8 !important;
}

/* Tombol Utama (untuk paket berbayar) */
.btn-primary-custom {
    background: linear-gradient(45deg, #6e6df8, #2d28f3) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    transition: opacity 0.3s ease !important;
}

.btn-primary-custom:hover {
    opacity: 0.9 !important;
    color: white !important;
}

.btn-outline-cta {
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-cta:hover {
    /* background: linear-gradient(45deg, #6e6df8, #2d28f3) !important; */
    color: #2d28f3 !important;
    border-color: #2d28f3 !important;
}

.btn-cta {
    background: linear-gradient(45deg, #6e6df8, #2d28f3) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.btn-cta:hover {
    opacity: 0.9 !important;
    color: white !important;
}

/* Container Utama */
.accordion-flush {
    background: transparent;
}

/* Styling Item Accordion */
.accordion-item {
    border: 2px solid rgba(110, 109, 248, 0.15) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Efek saat Accordion Terbuka */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0 10px 20px rgba(110, 109, 248, 0.1);
    border-color: #6e6df8 !important;
}

/* Styling Tombol Accordion */
.accordion-button-custom {
    font-weight: 600;
    color: #4a4a4a;
    padding: 1.25rem;
    background-color: white !important;
}

/* Saat Tombol Terbuka (Active) */
.accordion-button-custom:not(.collapsed) {
    color: #2d28f3 !important;
    background-color: #f8f9ff !important;
    /* Biru sangat muda */
    box-shadow: none !important;
}

/* Mengubah Warna Icon Panah */
.accordion-button-custom::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-button-custom:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d28f3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Body Accordion */
.accordion-body {
    color: #6c757d;
    padding: 0 1.25rem 1.25rem;
    line-height: 1.6;
}

/* Page Feature */
/* Content Section Styling */
.content-section-feature {
    overflow-x: hidden;
    /* Mencegah overflow dari gambar yang mungkin besar */
    padding-top: 90px;
    /* padding-bottom: 90px; */
}

/* Page FAQ */
.faq-section {
    overflow-x: hidden;
    /* Mencegah overflow dari gambar yang mungkin besar */
    padding-top: 90px;
    padding-bottom: 90px;
}

.card-glass {
    background: linear-gradient(135deg,
            rgba(110, 109, 248, 0.15),
            /* 15% transparansi dari #6e6df8 */
            rgba(45, 40, 243, 0.05)
            /* 5% transparansi dari #2d28f3 */
        );
    backdrop-filter: blur(10px);
    /* Efek blur kaca di belakang card */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 109, 248, 0.8) !important;
}

/* Styling Tombol Accordion */
.accordion-faq-custom {
    font-weight: 600;
    color: #fff;
    padding: 1.25rem;

    background: linear-gradient(135deg, rgba(110, 109, 248, 0.15), rgba(45, 40, 243, 0.05));
}

/* Saat Tombol Terbuka (Active) */
.accordion-faq-custom:not(.collapsed) {
    color: #2d28f3 !important;
    background-color: #f8f9ff !important;
    /* Biru sangat muda */
    box-shadow: none !important;
}

/* Mengubah Warna Icon Panah */
.accordion-faq-custom::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-faq-custom:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d28f3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.started-section {
    background: linear-gradient(135deg,
            rgba(110, 109, 248, 0.15),
            /* 15% transparansi dari #6e6df8 */
            rgba(45, 40, 243, 0.05)
            /* 5% transparansi dari #2d28f3 */
        );
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 20px;
}

.hero-section-faq {
    padding-top: 100px;
    padding-bottom: 0;
    /* WAJIB: Hapus jarak bawah agar gambar bisa mepet */
    min-height: 70vh;
    /* Tingkatkan sedikit agar lebih proporsional di layar panjang */
    background-image: linear-gradient(180deg, #f3f3f3 0%, #6e6df8 150%);
    /* Tambahkan konfigurasi ini */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    /* Agar gambar mengikuti rounded-4 container */
}

/* Pastikan gambar mengisi ruang di bawah */
.hero-img-container {
    margin-top: auto;
    line-height: 0;
    /* Menghilangkan sisa ruang kecil di bawah gambar */
}

.hero-img-container img {
    display: block;
    margin: 0 auto;
    width: 85%;
}

.label-custom {
    width: 50%;
}

@media (max-width: 767.98px) {
    .hero-img-container img {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .label-custom {
        width: 100%;
    }
}

.list-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Warna khusus untuk icon checklist DeskBoox */
.bi-check-circle-fill {
    font-size: 1.2rem;
    color: var(--primary-color) !important;
    /* Menggunakan warna brand Anda */
}

.bi-dash {
    font-size: 1.2rem;
    opacity: 0.3;
}

/* Membuat baris kategori lebih menonjol */
.table thead th {
    border-top: none !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.table tbody td {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}

/* Pastikan selector ini lebih spesifik dari bawaan Bootstrap */
.table-custom-header thead th {
    /* 1. Atur Gradient */
    background: linear-gradient(135deg,
            rgba(110, 109, 248, 0.15),
            /* 15% transparansi dari #6e6df8 */
            rgba(45, 40, 243, 0.05)
            /* 5% transparansi dari #2d28f3 */
        );
    color: rgb(0, 0, 0) !important;

    /* 2. Reset Variabel Bootstrap (Kunci Utama) */
    --bs-table-bg: transparent !important;
    --bs-table-bg-type: transparent !important;
    --bs-table-accent-bg: transparent !important;

    /* 3. Rapikan tampilan */
    border-bottom: none !important;
    padding: 20px !important;
}

/* Jika Anda menggunakan class table-striped, matikan efeknya khusus di header */
.table-custom-header thead tr {
    --bs-table-accent-bg: transparent !important;
}

.box-regis {
    background-image: linear-gradient(140deg, rgba(211, 209, 221), rgba(112, 90, 204), rgba(45, 36, 158));
    color: white;
}

.auth-background {
    position: relative;
    overflow: hidden;
    /* Supaya ikon tidak keluar jalur */
    background: linear-gradient(140deg, #d3d1dd, #705acc, #2d249e);
    min-height: 100vh;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    /* Putih transparan */
    font-size: 4rem;
    /* Ukuran besar */
    z-index: 0;
    pointer-events: none;
    /* Supaya ikon tidak bisa diklik */
    animation: float 6s ease-in-out infinite;
}

.card-auth {
    border-radius: 15px !important;
    padding: 1.5rem;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    /* Mulai dari transparan */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        /* Muncul dari bawah */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-auth p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    color: #6c757d;
}

.card-auth p span {
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

.btn-auth {
    background-color: #6e6df8 !important;
    color: white !important;
    width: 100% !important;
    border-radius: 9px !important;
    padding: 0.5rem !important;
    transition: 0.3s !important;
}

.btn-auth:hover {
    background-color: #6d6df8d1 !important;
    color: white !important;
}

.btn-auth-icon {
    background-color: #2873E6 !important;
    color: #fff !important;
    width: 100% !important;
    border-radius: 9px !important;
    padding: 0.5rem !important;
    transition: 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.btn-auth-icon:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(110, 109, 248, 0.4) !important;
    color: #6d6df8d1 !important;
}

.btn-auth i {
    font-size: 1.2rem !important;
}

.form-control-custom {
    padding: 0.75rem 1rem;
    border: 2px solid #edeff5;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fcfcff;
}

.form-control-custom:focus {
    color: #212529;
    background-color: #fff;
    border-color: #6e6df8;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(110, 109, 248, 0.15);
}

.form-control-custom::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

.form-check-custom {
    display: flex !important;
    align-items: center !important;
    /* Menjaga kotak dan teks sejajar secara vertikal */
    padding-left: 0 !important;
}

/* Ukuran checkbox sedikit lebih besar agar mudah diklik */
.form-check-input-auth {
    width: 1em !important;
    height: 1em !important;
    /* margin-top: 0.15em !important; */
    cursor: pointer !important;
    border: 1px solid #edeff5 !important;
}

.form-check-input-auth:checked {
    background-color: #6e6df8 !important;
    /* Warna Primary DeskBoox */
    border-color: #6e6df8 !important;
}

.form-check-label-auth {
    cursor: pointer !important;
    font-size: 0.8rem !important;
    color: #6c757d !important;
    user-select: none !important;
    /* Mencegah teks ter-highlight saat diklik cepat */
    text-align: left;
}

.copyright-bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.6);
    /* Warna putih transparan agar estetik */
    font-size: 0.85rem;
    z-index: 10;
    /* Agar di atas background */
}

@media (max-width: 576px) {
    .copyright-bottom-left {
        left: 0;
        right: 0;
        text-align: center;
        bottom: 10px;
    }
}