@use "../../../../styles/abstracts/variables";
@use "../../../../styles/abstracts/mixins";  

.bottom__bar{
    background:#141414;
    // border-top: 1px solid variables.$col-border-lining;
    // border-bottom: 1px solid variables.$col-border-lining;
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    padding: .5rem 1rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-around;
    // align-items: flex-start;
    // justify-content: space-around;
    // gap: 32px;
}

.link{
    color: variables.$col-white;
    font-family: variables.$font;
    font-weight: bold;
    font-size: .9rem;
    span {
        color: #D37738;
        height: 25px;
        width: 25px;
        background: #382617;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }
    p{
        padding-top: .3rem;
        color: variables.$col-white;
        font-size: .65rem;
        font-weight: 400
    }
}

//Active sidebar link
.active{
    @extend .link;
    span{
        height: 25px;
        width: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }

    p{
        color: variables.$col-orange;
        font-size: .7rem;
        font-weight: 500;
        // padding-top: 0 !important;
    }
}