#wpadminbar{
    display:none !important;
}

#withdraw-btn{
    color: #ffffff !important;
    background-color: #008000 !important;
}

/* =========================================
   PREMIUM VTUPRESS FLOATING FOOTER
========================================= */
/* Hide bottom nav on desktop/laptop */
@media (min-width: 992px) {
    .vtu-bottom-nav {
        display: none !important;
    }
}
.vtu-bottom-nav{
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 72px;
    background: #008000;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
    z-index: 99999;
    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.04);
}

/* NAV ITEMS */

.vtu-nav-item{
    width: 20%;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    transition: .3s ease;
}

.vtu-nav-item i{
    display: block;
    font-size: 19px;
    margin-bottom: 4px;
}

.vtu-nav-item:hover,
.vtu-nav-item.active{
    color: #ffffff;
    transform: translateY(-2px);
}


/* ===================================
   DETACHED CENTER BUTTON
=================================== */

.vtu-center-wrapper{
    position: relative;
    width: 80px;
    display: flex;
    justify-content: center;
}

/* GLOW EFFECT */

.vtu-center-wrapper::before{
    content: "";
    position: absolute;
    top: -52px;
    width: 75px;
    height: 75px;
    /*background: #dc9814;*/
    border-radius: 50%;
    filter: blur(18px);
    z-index: 1;
}

/* MAIN BUTTON */

.vtu-fab{
    position: absolute;
    top: -42px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #008000 !important;
    font-size: 28px;
    z-index: 20;

    border: 6px solid green;

    box-shadow:
        0 8px 25px rgba(255,184,0,.45),
        inset 0 2px 8px rgba(255,255,255,.45);

    transition: all .3s ease;
}

.vtu-fab:hover{
    transform: scale(1.08) rotate(8deg);
    color: #008000 !important;
}


/* ===================================
   POPUP MENU
=================================== */

.vtu-popup-menu{
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%) scale(.5);
    transform-origin: bottom center;
    transition: .35s ease;

    opacity: 0;
    pointer-events: none;
}

/* ACTIVE */

.vtu-popup-menu.active{
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}


/* ===================================
   RADIAL BUTTONS
=================================== */

.popup-item{
    position: absolute;

    width: 58px;
    height: 58px;

    border-radius: 50%;
    background: #008000;

    color: #fff;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 9px;
    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.04);

    transition: .3s ease;
}

.popup-item i{
    font-size: 18px;
    margin-bottom: 3px;
}

.popup-item:hover{
    background: #dc9814;
    color: #111;
    transform: scale(1.08);
}


/* ===================================
   RADIAL POSITIONS
=================================== */

.popup-item:nth-child(1){
    left: -120px;
    top: -20px;
}

.popup-item:nth-child(2){
    left: -65px;
    top: -85px;
}

.popup-item:nth-child(3){
    left: 0;
    top: -110px;
}

.popup-item:nth-child(4){
    left: 65px;
    top: -85px;
}

.popup-item:nth-child(5){
    left: 120px;
    top: -20px;
}


/* PAGE SPACING */

body{
    padding-bottom: 90px;
}


/* ===================================
   MOBILE
=================================== */

@media(max-width:576px){

    .vtu-bottom-nav{
        height: 60px;
        border-radius: 10px;
    }

    .vtu-nav-item i{
        font-size: 17px;
    }

    .vtu-nav-item span{
        font-size: 10px;
    }

    .vtu-fab{
        width: 66px;
        height: 66px;
        top: -38px;
        font-size: 25px;
    }

    .popup-item{
        width: 52px;
        height: 52px;
        font-size: 8px;
    }

    .popup-item i{
        font-size: 16px;
    }

    .popup-item:nth-child(1){
        left: -95px;
        top: -10px;
    }

    .popup-item:nth-child(2){
        left: -55px;
        top: -70px;
    }

    .popup-item:nth-child(3){
        left: 0;
        top: -95px;
    }

    .popup-item:nth-child(4){
        left: 55px;
        top: -70px;
    }

    .popup-item:nth-child(5){
        left: 95px;
        top: -10px;
    }

}


@media(max-width:576px){

    .vtu-popup-menu{
        width: 240px;
        height: 125px;
        bottom: 30px;
    }

    .popup-item:nth-child(1){
        left: 0;
        top: 70px;
    }

    .popup-item:nth-child(2){
        left: 43px;
        top: 22px;
    }

    .popup-item:nth-child(3){
        left: 94px;
        top: 0;
    }

    .popup-item:nth-child(4){
        left: 145px;
        top: 22px;
    }

    .popup-item:nth-child(5){
        left: 188px;
        top: 70px;
    }
}


.lifeline-logo{
    display: flex;
    align-items: center;
    margin-right: -20px;
}

.lifeline-logo img{
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

/* Mobile */
@media(max-width:768px){

    .lifeline-logo img{
        height: 100px;
        max-width: 180px;
    }

}



/* ROTATING RING */

.vtu-fab::before{
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;

    background: conic-gradient(
        #ffcc16,
        #ff6b00,
        #ffcc16,
        #ffffff,
        #ffcc16
    );

    z-index: -1;

    animation: spinRing 3s linear infinite;
}

/* INNER DARK BORDER */

.vtu-fab::after{
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
}

/* ANIMATION */

@keyframes spinRing{
    100%{
        transform: rotate(360deg);
    }
}