.bottom-nav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(31, 31, 31, 0.1));
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000000000;
}

.nav-slot {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    height: 100%;
    /* width: inherit; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181e29;
}

.bottom-nav-link {
    width: 100%;
    height: 100%;
    line-height: 1.5;
    /* margin-left: -10px; */
    align-items: center;
    color: #aab2bd;
    border-radius: 50rem;
    padding: 0 !important;
    /* padding: 0.5rem 0.5rem; */
    transition: 0.3s all;
    display: flex;
    justify-content: center;
}

.active {
    color: #2575fc;
}

.nav-link:hover {
    transition: 0.3s all;
    background: rgba(31, 31, 31, 0.1);
}

.curve {
    flex-grow: 0;
    /* flex-shrink: 0; */
    /* flex-basis: 100px; */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23181e29' viewBox='17 1 65 65'%3E%3Cpath d='M99,0A36.33,36.33,0,0,0,70,15,25,25,0,0,1,30,15,36.33,36.33,0,0,0,1,0H0V50H100V0Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 60px; /* stretch to full width & height */
    background-position: center;
    width: 100px;
    height: 60px;
    transform: scale(1.3) translateY(14%);
}



.floating-button {
    position: fixed;
    width: 45px;
    height: 45px;
    line-height: 3;
    text-align: center;
    color: #FFCE54;
    border-radius: 50%;
    bottom: 48px;
    background: #03ccda;
    z-index: 1;
    transition: 0.3s all;
}

.floating-button:hover {
    bottom: 40px;
    transition: 0.3s all;
}

