


.footBar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 15;
    background: #fff;
    border-top: 1px solid #cacaca;
}

@media(max-width:480px){
    .footBar{
        display: flex;
    }
}

.footBar .container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: .3rem;
    position: relative;
    width: 100%;
}
.footBar .container .btnActive{
    font-size: 1.7rem;
    cursor: pointer;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: .7rem;
    padding: .5rem;
    border-radius: 5px;
}

.footBar .container .btnActive.active{
    color: #fff;
    background:#65737c;
    text-decoration: underline;
    text-decoration-color: #ff4500;
    text-underline-offset: 15px;
    text-decoration-thickness: 3px;
}

.footBar .container .call{
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #008cff;
    transform: translatey(-30%);
    font-size: 2rem;
    margin-inline:.5rem ;
    box-shadow: 0 0 15px #008cff;
}

.footBar .dashSetup{
    position: absolute;
    bottom:-115%;
    left: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 0;
    transition: .3s cubic-bezier(.21,.3,.06,1.29);
}
.footBar .dashSetup.dash{
    bottom: 200%;
    opacity: 1;
}





.footBar .dashSetup .container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 50px;
    padding: .3rem;
    background: linear-gradient(0, #777, #999);
    width: max-content;
    box-shadow:0 5px 8px rgba(0,0,0, .580) ;
    border: 2px solid #999;
}

.footBar .dashSetup .container span{
    padding: .5rem 1rem;
    border-radius: 50px;
    background: #444;
    font-size: .8rem;
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}
.footBar .dashSetup .container span i{
    font-size: 1.2rem;
}


.dashLinks,
.dashSocial{
    position: fixed;
    top: 115%;
    opacity: 0;
    z-index: 10;
    min-height: 100dvh;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    flex-direction: column;
    transition: .3s cubic-bezier(.21,.3,.06,1.29);
}

.dashLinks.dash,
.dashSocial.dash{
    top: 0;
    opacity: 1;
}



.dashSocial .container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
    background: #f5f5f5;
    box-shadow: 0 8px 15px rgba(0,0,0, .180);
    height: 75%;
    width: 100%;
    padding: .5rem;
    align-items: center;
    justify-content: center;
}

.dashSocial .container p{
    color: #555;
    font-size: 1.3rem;
    font-weight: 700;
}




.dashSocial .container a{
    flex: 1 1 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 5px 8px rgba(0,0,0, .080);
    font-size: 3rem;
    color: #777;
    width: 100%;
}


.dashLinks .container{
    display: flex;
    flex-direction: column;
    gap: .3rem;
    justify-content: center;
    border-radius: 1rem;
    background: #f5f5f5;
    box-shadow: 0 8px 15px rgba(0,0,0, .180);
    height: 75%;
    width: 100%;
    padding: .5rem;
    flex-wrap: wrap;
}

.dashLinks p{
    text-align: center;
    color: #555;
    font-size: 1.3rem;
    font-weight: 700;
    width: max-content;
}

.dashLinks .container a{
    height: 4rem;
    flex: 1 1 7rem;
    border-radius: .5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: 600;
}

