/* login/user area topbar, mimics layout/menu.php's front-end nav */
.lp-topbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 999;
}
.lp-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
}
.lp-topbar-brand img {
    height: 48px;
    width: auto;
    display: block;
}
.lp-topbar-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-topbar-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2d2f2c;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}
.lp-topbar-nav a:hover {
    color: #2544e1;
}
@media (max-width: 600px) {
    .lp-topbar-brand img {
        height: 36px;
    }
    .lp-topbar-nav {
        gap: 14px;
    }
}

/* extracted from layout/login_menu.php */
@media (min-width: 992px){
    .user-content {
        margin-left: 0;
    }
}

/* extracted from layout/login_footer.php */
footer {
    background-color: #000;
    color: #FFFFFF;
    padding: 3rem 0;
    img {
        max-width: 100%;
    }

    .brand {
        margin-bottom: 2rem;
        width: 30%;
        img{
            width: auto;
            max-height: 84px;
            filter: brightness(0) invert(1);
        }
    }

    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 4rem;
        width: 90%;
        margin: auto;
    }
    ul {
        padding-inline-start: 0;
        display: block;
    }

    li {
        list-style: none;
        padding: 0.8rem 0;
    }

    .footer__warning {
        margin: 40px auto;
        font-size: 2rem;
        p{
            padding: 0;
            text-align: center;
        }
        .footer__warning-highlight {
            padding: 0.8rem 0;
            background: linear-gradient(90deg, #f906ff, #06ceff);
            font-size: 2rem;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .brand {
            width: 50%;
        }

        .underline {
            width: 90%;
        }

        .footer__card {
            margin-bottom: 2rem;
            /* width: 25%; */
        }

        .footer__top {
            justify-content: flex-start;
            width: 90%;
            gap: 3rem;
        }

        .hidden {
            display: none;
        }
         .footer__warning {
            margin: auto 0;
            font-weight: 800;
            font-size: 1.3rem;
         }
    }
    @media (max-width: 425px) {
        .brand {
            width: 75%;
        }
        .footer__card {
            width: 100%;
            gap: 0;
        }
    }
}
.whatsappIcon {
    width: 100px;
    height: 100px;
    background: url("../images/icash_finance/whatsapp.png") 0 0 no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}

@media (max-width: 576px) {
    .whatsappIcon {
        width: 60px;
        height: 60px;
    }
}

.whatsapp-row {
    display: flex;
    align-items: flex-start;
}

.whatsapp-numbers a {
    color: #fff;
}

.whatsapp-numbers {
    display: flex;
    flex-direction: column;
}

.footer__social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__notice {
    background-color: #2b2b2b;
    color: #cfcfcf;
    text-align: center;
    padding: .8rem 1rem;
    font-size: 30px;
    font-weight: 600;
}
