/* Global Design System */
:root {
    --primary: #1b5e20;
    --primary-dark: #0d3b12;
    --secondary: #f9a825;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.logo-img {
    height: 55px;
    border-radius: 14px;
    background: white;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-toggle {
    cursor: pointer;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        display: none;
        /* Hidden by default on mobile */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        display: none !important;
    }
}

.nav-cta {
    background: linear-gradient(135deg, var(--secondary), #f57f17) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.25) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.35) !important;
}

.nav-admin-btn {
    color: var(--text-muted) !important;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem !important;
    background: #f8fafc;
}

.nav-admin-btn::after {
    display: none !important;
}

.nav-admin-btn:hover {
    background: white;
    border-color: var(--secondary);
    color: var(--secondary) !important;
}

.login-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section - Split Panel Layout */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: stretch;
    color: white;
    overflow: hidden;
}

.hero-left {
    flex: 0 0 55%;
    background: linear-gradient(160deg, #0a2e0f 0%, #1b5e20 100%);
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    z-index: 3;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background: linear-gradient(160deg, #0a2e0f 0%, #1b5e20 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 2;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-video-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
}

.hero-video-item.active {
    opacity: 1;
    visibility: visible;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 46, 15, 0.3) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 550px;
    animation: fade-up 1s ease-out;
    z-index: 3;
    position: relative;
}

.hero-status-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.status-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
}

.status-badge {
    background: rgba(235, 54, 54, 0.2);
    color: #ff5252;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.status-badge .pulse {
    width: 6px;
    height: 6px;
    background: #ff5252;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-item {
    display: flex;
    flex-direction: column;
}

.status-item .s-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
    opacity: 0.8;
}

.status-item .s-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.status-item .s-value small {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 82, 82, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-top: 10px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-cta {
    margin-top: 30px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.85;
    line-height: 1.7;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(249, 168, 37, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 168, 37, 0.4);
}

/* Animal Cards */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefits-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefits-grid .card {
    flex: 0 1 300px;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.bali-cow-icon {
    animation: premium-float 6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center bottom;
}

.card:hover .bali-cow-icon {
    transform: translateY(-8px) scale(1.08) rotate(3deg);
    filter: drop-shadow(0 30px 45px rgba(27, 94, 32, 0.25));
}

@keyframes premium-float {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0);
    }

    33% {
        transform: translateY(-15px) scale(1.03) rotate(-1deg);
    }

    66% {
        transform: translateY(-5px) scale(1.01) rotate(1deg);
    }
}



/* Period Banner */
.period-banner {
    max-width: 1000px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #0a2e0f, #1b5e20);
    border-radius: 18px;
    padding: 25px 35px;
    color: white;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.25);
}

.period-banner-flex {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.period-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.period-value {
    font-size: 1.05rem;
    font-weight: 800;
    margin-top: 4px;
}

.period-value.highlight {
    color: var(--secondary);
}

.period-price {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Stock List */
.stock-container {
    padding: 0 10%;
    margin-bottom: 40px;
}

.stock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stock-header h3 {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0;
}

.badge-update {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.stock-card {
    background: white;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stock-cart-btn {
    background: var(--primary);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.stock-cart-btn:hover {
    background: var(--primary-dark);
}

/* Footer */
.main-footer {
    background: #0d3b12;
    color: white;
    padding: 80px 10% 40px;
    width: 100% !important;
    display: block;
    clear: both;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.footer-logo {
    height: 60px;
    border-radius: 10px;
    background: white;
    padding: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .stock-container {
        padding: 0 5%;
    }

    .main-footer {
        padding: 60px 5% 40px;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .text-right-mobile {
        text-align: right;
    }
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Table */
.pricing-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.pricing-table th {
    background: var(--primary-dark);
    color: var(--secondary);
    padding: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-table td {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    font-weight: 500;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.pricing-table tbody tr:hover {
    background: #f1f5f9;
}

.weight-col {
    background: var(--primary);
    color: white;
    font-weight: 700 !important;
}

/* Kemitraan Section */
.mitra-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(13, 59, 18, 0.2);
}

.mitra-card::before {
    content: '🤝';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: -20px;
    bottom: -50px;
}

.mitra-title {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mitra-content {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.mitra-btn {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
}

.mitra-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbfcfd;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* Animations - Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* End of Footer */

/* Mobile Toggle Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 10001;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li a {
        color: var(--primary-dark);
        font-size: 1.3rem;
    }

    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hero-left {
        flex: none;
        width: 100%;
        padding: 120px 8% 60px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-left::after {
        display: none;
    }

    .hero-right {
        width: 100%;
        height: 50vh;
        min-height: 350px;
        background-color: #0a2e0f;
    }

    /* Tables */
    .pricing-wrapper {
        margin: 20px -5%;
        padding: 10px 5%;
        border-radius: 0;
        background: white;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        white-space: nowrap;
    }

    section {
        padding: 50px 5%;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .grid {
        gap: 20px;
    }

    .card {
        padding: 25px;
    }
}

/* Custom Scrollbar for pricing table */
.pricing-wrapper::-webkit-scrollbar {
    height: 4px;
}

.pricing-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Floating WhatsApp & Back to Top */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
    animation: wa-pulse 2s infinite;
}

.floating-wa svg {
    width: 35px;
    height: 35px;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border: none;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
}

.back-to-top svg {
    width: 25px;
}

.logo-text {
    font-size: 14px;
    color: #8B0000;
    margin-top: -10px;
    text-align: center;
}

@media (max-width: 768px) {
    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .floating-wa svg {
        width: 30px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 90px;
        right: 25px;
    }
}