﻿
#FloatBtnsContainer {
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9901;
}

#FABStartContainer {
    max-width: 18rem;
    min-width: 8rem;
    width: calc(100% - 6rem);
}

#FABStart {
    background-color: #ffffff94;
    border: 1px #cacacad6 solid;
    color: #232480;
    padding: .66rem;
    border-radius: 1.5rem;
    text-align: center;
    display: block;
    font-size: 1rem;
    height: 3rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: .3s ease all;
}

    #FABStart:hover {
        background-color: #e0ebff94;
    }

.fab-contact-btn {
    position: fixed;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    right: 1rem;
    bottom: 1rem;
    background-color: #ecececc7;
    border: 1px #cacacad6 solid;
    transition: .3s ease all;
    z-index: 9980;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .fab-contact-btn .bi {
        font-size: 1.66rem;
        color: #008f52;
        position: relative;
        top: .2rem;
    }
@media screen and (min-width:768px) {
    #FABStart {
        display: none !important;
    }
}

@media screen and (max-width:767px) {
    #FABStartContainer {
        max-width: 14rem;
        min-width: 8rem;
        width: calc(100% - 10rem);
    }

    #FABStart{
        display: block;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    left: 1rem;
    bottom: 1rem;
    background-color: #ffffff94;
    border: 1px #cacacad6 solid;
    transition: .3s ease all;
    z-index: 9990;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: .3s ease all;
}

    .back-to-top:hover {
        background-color: #e0ebff94;
    }

    .back-to-top i {
        font-size: 1.5rem;
        display: flex;
        color: #232480;
    }