/* =====================
   RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* =====================
   GLOBAL BACKGROUND
===================== */
body {
    background: url('../img/masjid1.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* =====================
   HEADER
===================== */
.header {
    background: #0b6b2d;
    padding: 10px 0;
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.logo-text small {
    font-size: 12px;
}

.logo-text strong {
    display: block;
    font-size: 18px;
}

.logo-text span {
    font-size: 11px;
}

.menu a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
    font-size: 14px;
}

.login a {
    background: #fff;
    color: #0b6b2d;
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
}

/* =====================
   INDEX / HALAMAN DEPAN
===================== */
.content {
    padding: 40px 0;
}

.main-box {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 18px;
}

/* SLIDER */
.slider {
    flex: 3;
    height: 480px;
    background: url('../img/slide1.jpg') center/cover no-repeat;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

/* =====================
   SIMKA TAMPIL DEPAN
===================== */
.smka {
    flex: 1;
    background: #fff9cc;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
}

.simka-header {
    background: #0b6b2d;
    color: #fff;
    text-align: center;
    padding: 12px;
}

.simka-header h1 {
    letter-spacing: 6px;
}

.simka-section {
    padding: 14px 16px;
}

.simka-section h3 {
    margin: 10px 0 8px;
    font-size: 14px;
    font-weight: bold;
}

.simka-list {
    list-style: none;
}

.simka-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
}

.simka-list .label {
    flex: 1;
}

.simka-list .value {
    width: 120px;
    background: #e5e5e5;
    padding: 5px 8px;
    text-align: right;
    border-radius: 4px;
    font-weight: bold;
}

.simka-saldo {
    text-align: center;
    padding: 16px;
}

.simka-saldo .saldo-nominal {
    display: inline-block;
    background: #d6b25e;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 22px;
    font-weight: bold;
}

.simka-rekening {
    background: #0b6b2d;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

/* =====================
   RUNNING TEXT
===================== */
.running-text {
    max-width: 1400px;
    margin: 15px auto 0;
    background: #d6b25e;          /* WARNA EMAS */
    color: #000;
    padding: 10px;
    border-radius: 12px;
    font-weight: bold;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: rgba(0,100,0,0.8);
    color: #fff;
    padding: 25px 0;
}

.footer-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* =====================
   LOGIN PAGE
===================== */
body.login-page {
    min-height: 100vh;
    background: url('../img/masjid1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 360px;
    background: #d4a43a;
    padding: 30px 25px;
    border-radius: 24px;
    border: 4px solid #000;
    text-align: center;
}

.login-box img {
    width: 90px;
    margin-bottom: 10px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #000;
    margin-bottom: 12px;
}

.btn-login {
    background: #0b6b2d;
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* =====================
   DASHBOARD SIMKA
===================== */
body.dashboard-page .content {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

body.dashboard-page .main-box {
    background: transparent;
    padding: 0;
}

/* FORM SIMKA */
.simka-form {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin: auto;
}

.simka-form h2 {
    text-align: center;
    margin-bottom: 15px;
}

.simka-form h4 {
    margin: 15px 0 8px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.form-row label {
    width: 55%;
}

.form-row input {
    width: 40%;
    padding: 6px;
    text-align: right;
}

.form-action {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-simpan {
    background: #0b6b2d;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-rekap {
    background: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #000;
}

.btn-logout {
    display: block;
    margin-top: 10px;
    color: #900;
    font-weight: bold;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .main-box {
        flex-direction: column;
    }
    .simka-form {
        width: 92%;
    }
}
/* ===== SLIDER OTOMATIS ===== */

.slider {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 18px;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.exit {
    transform: translateX(-100%);
    opacity: 0;
}

/* CAPTION */
.slide-caption {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 8pt;   /* ðŸ”¥ sesuai permintaan */
    text-align: center;
    white-space: nowrap;
}
/* ===== POPUP SUKSES ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    width: 360px;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.popup-box h2 {
    color: #0b6b2d;
    margin-bottom: 12px;
}

.popup-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-home {
    display: inline-block;
    background: #0b6b2d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* =========================
   FOOTER MASJID KEREN
   ========================= */

.footer-masjid {
    position: relative;
    background: #0b6b2d;
    color: #fff;
    padding: 50px 0 0;
    overflow: hidden;
}

/* AKSEN EMAS TRANSPARAN */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left bottom,
        rgba(212,164,58,0.25),
        transparent 60%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px 40px;
    position: relative;
    z-index: 1;
}

/* KOLOM */
.footer-col h4 {
    margin-bottom: 12px;
    color: #ffd966;
    font-size: 16px;
}

.footer-col p,
.footer-col a,
.footer-col li {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

/* LOGO */
.footer-logo img {
    width: 70px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.footer-logo small {
    font-size: 12px;
    opacity: 0.9;
}

/* SOSIAL MEDIA */
.footer-social {
    margin-top: 12px;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin-right: 6px;
    font-weight: bold;
    color: #ffd966;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffd966;
    color: #0b6b2d;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 12px;
    font-size: 13px;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ===== FOOTER BRAND ===== */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 60px;
    height: auto;
}

.footer-brand-text strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.footer-brand-text span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

.footer-brand-text small {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}

/* ===== SOSIAL MEDIA FOOTER ===== */
.footer-social {
    margin-top: 14px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,215,100,0.9); /* emas */
    color: #0b6b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
    background: #ffd966;
}
/* ===== ARTIKEL ISLAMI ===== */
.artikel-section {
    margin-top: 25px;
    padding: 20px;
}

.artikel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* KARTU ARTIKEL */
.artikel-card {
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* JUDUL */
.artikel-card h3 {
    font-size: 16px;
    color: #0b6b2d;
    margin-bottom: 8px;
    border-bottom: 2px solid #d6b25e; /* aksen emas */
    padding-bottom: 4px;
}

/* ISI ARTIKEL */
.artikel-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
    .artikel-container {
        grid-template-columns: 1fr;
    }
}
/* ================================
   RESPONSIVE NAVBAR
================================ */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* DESKTOP */
.menu {
    display: flex;
    gap: 18px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {

    .header-inner {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu {
        width: 100%;
        display: none;
        flex-direction: column;
        background: #0f6b3d;
        margin-top: 12px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }

    .menu a {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .menu a:last-child {
        border-bottom: none;
    }

    .menu.show {
        display: flex;
        animation: slideDown .25s ease;
    }

    .login {
        width: 100%;
        text-align: right;
        margin-top: 8px;
    }
}

@keyframes slideDown {
    from {opacity: 0; transform: translateY(-8px);}
    to   {opacity: 1; transform: translateY(0);}
}
@media (max-width:768px){

    header{
        position:relative;
        z-index:10;
    }

    .menu-toggle{
        display:block;
        z-index:11;
    }

    nav{
        position:absolute;   /* ⬅️ BUKAN fixed */
        top:100%;
        left:0;
        right:0;
        background:#0f6b3d;
        flex-direction:column;
        display:none;
        z-index:9;
        box-shadow:0 10px 20px rgba(0,0,0,.2);
    }

    nav a{
        padding:14px 20px;
        border-top:1px solid rgba(255,255,255,.2);
        font-size:15px;
    }

    nav.show{
        display:flex;
        animation: dropdown .25s ease;
    }
}

@keyframes dropdown{
    from{opacity:0;transform:translateY(-10px)}
    to{opacity:1;transform:translateY(0)}
}

/* FOOTER SOSIAL MEDIA */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: inline-flex;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(212,164,58,0.15); /* emas transparan */
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(212,164,58,0.35);
    transform: translateY(-3px);
}

.footer-social img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
}

.footer-brand-text strong {
    display: block;
    font-size: 14px;
}

.footer-brand-text span {
    font-size: 18px;
    font-weight: bold;
}

.footer-brand-text small {
    font-size: 12px;
    opacity: 0.85;
}
/* === FIX FOOTER RUSAK / KEBESARAN === */

.footer-masjid,
.footer-container,
.footer-col {
    position: relative !important;
    overflow: hidden;
}

.footer-social {
    display: flex !important;
    gap: 12px;
    margin-top: 12px;
    z-index: 2;
}

.footer-social a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background: rgba(212,164,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    object-fit: contain;
}

/* ===== FIX SOSMED FOOTER (FINAL & AMAN) ===== */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

/* MATIKAN SEMUA EFEK LINGKARAN CSS */
.footer-social a {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
}

/* ICON PNG */
.footer-social img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: block;
}

/* HAPUS OVERLAY / SHAPE EMAS YANG NUTUP */
.footer-overlay,
.footer::before,
.footer::after {
    display: none !important;
}
/* ===== GEMUKIN FOOTER (HALUS & ELEGAN) ===== */

/* Logo masjid */
.footer-brand img {
    width: 56px;        /* sebelumnya ±42 */
}

/* Nama masjid */
.footer-brand-text strong {
    font-size: 18px;    /* gemukin judul */
    font-weight: 700;
}

/* Alamat kecil */
.footer-brand-text small {
    font-size: 12px;
    opacity: 0.9;
}

/* Icon sosmed */
.footer-social img {
    width: 48px;        /* sebelumnya 42 */
    height: 48px;
}
/* ===== PROFILE PAGE ===== */
.page-banner {
    background: linear-gradient(
        rgba(11,107,45,0.85),
        rgba(11,107,45,0.85)
    ), url('../img/masjid1.jpg') center/cover no-repeat;
    padding: 60px 20px;
    border-radius: 18px;
}

.page-banner-inner {
    text-align: center;
    color: #fff;
}

.page-banner-inner h1 {
    font-size: 26px;
    letter-spacing: 2px;
}

.page-banner-inner p {
    font-size: 14px;
    opacity: 0.9;
}
.profile-content {
    padding: 25px;
}

.profile-box {
    background: rgba(255,255,255,0.95);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 14px;
}

.profile-box h2 {
    color: #0b6b2d;
    margin-bottom: 10px;
    border-bottom: 2px solid #d6b25e;
    display: inline-block;
    padding-bottom: 4px;
}

.profile-box p,
.profile-box li {
    font-size: 14px;
    line-height: 1.6;
}

<style>
.org-chart {
    text-align: center;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}
.org-level {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    position: relative;
}
.org-box {
    border: 1px solid #333;
    width: 220px;
    margin: 0 10px;
    background: #fff;
}
.org-title {
    background: #0a8f3c;
    color: #fff;
    font-weight: bold;
    padding: 6px;
    font-size: 13px;
}
.org-content {
    padding: 8px;
    font-size: 12px;
    line-height: 1.5;
}
.org-line-vertical {
    width: 2px;
    height: 20px;
    background: #000;
    margin: 0 auto;
}
.org-line-horizontal {
    position: absolute;
    top: 0;
    height: 2px;
    background: #000;
    width: 100%;
}
@media (max-width: 768px) {
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    .org-box {
        margin-bottom: 15px;
    }
}

/* ===============================
   HALAMAN JADWAL
================================ */

.jadwal-content {
    max-width: 1100px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* CARD */
.jadwal-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.jadwal-card h2 {
    margin-bottom: 18px;
    font-size: 20px;
    color: #0b6b2d;
    border-bottom: 2px solid #e6c36a;
    padding-bottom: 6px;
}

/* GAMBAR */
.jadwal-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jadwal-images img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

/* CATATAN */
.jadwal-note {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* TABEL */
.jadwal-table-wrapper {
    overflow-x: auto;
}

.jadwal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.jadwal-table th {
    background: #0b6b2d;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.jadwal-table td {
    padding: 9px;
    border-bottom: 1px solid #ddd;
}

.jadwal-table tr:nth-child(even) {
    background: #f7f7f7;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
    .jadwal-images {
        grid-template-columns: 1fr;
    }

    .jadwal-card h2 {
        font-size: 18px;
    }

    .jadwal-table {
        font-size: 13px;
    }
}
/* ================= GALERI ================= */
.galery-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

/* FILTER */
.galery-filter {
    text-align: center;
    margin-bottom: 20px;
}
.galery-filter button {
    background: #e6c36a;
    border: none;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}
.galery-filter button.active {
    background: #0b6b2d;
    color: #fff;
}

/* GRID MASONRY */
.galery-grid {
    column-count: 4;
    column-gap: 15px;
}

.galery-item {
    position: relative;
    margin-bottom: 15px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 14px;
}

.galery-item img {
    width: 100%;
    transition: transform .4s ease;
}

/* HOVER */
.galery-item:hover img {
    transform: scale(1.1);
}

.galery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: .4s;
}

.galery-item:hover .galery-overlay {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .galery-grid { column-count: 3; }
}
@media (max-width: 768px) {
    .galery-grid { column-count: 2; }
}
@media (max-width: 480px) {
    .galery-grid { column-count: 1; }
}
.profile-box form label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
}

.profile-box form input,
.profile-box form select,
.profile-box form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

.btn-submit,
.btn-daftar-ngaji {
    display: inline-block;
    background: #1b5e20;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-submit:hover,
.btn-daftar-ngaji:hover {
    background: #2e7d32;
}
.jadwal-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.section-title{
    text-align:center;
    color:#1b5e20;
    margin-bottom:15px;
}

.table-responsive{
    overflow-x:auto;
}

.jadwal-table{
    width:100%;
    border-collapse:collapse;
}

.jadwal-table th{
    background:#1b5e20;
    color:#fff;
    padding:10px;
    text-align:center;
}

.jadwal-table td{
    padding:10px;
    border-bottom:1px solid #ddd;
    text-align:center;
}

.jadwal-table tr:hover{
    background:#f5f5f5;
}

.catatan{
    margin-top:10px;
    font-size:13px;
    color:#555;
    text-align:center;
}
.jadwal-gambar-center{
    width: 100%;
    text-align: center;   /* PENTING */
    margin: 20px auto;
}

.jadwal-gambar-center img{
    display: inline-block; /* WAJIB */
    max-width: 900px;      /* biar tidak kecil di desktop */
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* HEADER HARUS DI ATAS */
.header{
    position: relative;
    z-index: 9999;
}

/* TOMBOL BURGER */
.menu-toggle{
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

/* MOBILE MODE */
@media (max-width: 768px){

    .menu-toggle{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #1b5e20;
    }

    .menu{
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
        z-index: 9999;
    }

    .menu a{
        display: block;
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    .menu.active{
        display: block;
    }
}

</style>

