.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 75px;
    border-top: 1px solid #f3efef;
    box-shadow: 8px 0px #7f4f4f40;
}

.bottom-menu a {
    padding: 6px 0px;
    position: relative;
}

.bottom-menu svg {
    margin-bottom: 5px;
}

.bottom-menu a span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #5A5A5A;
    text-decoration: none;
}

.bottom-menu a.active svg {
    position: relative;
    top: -40px;
    background: #499EEF;
    position: relative;
    border-radius: 44px;
    width: 54px;
    height: 54px;
    padding: 15px;
    margin-bottom: -25px;
}

.bottom-menu a.active svg path {
    fill: white;
}

.bottom-menu a.active span {
    color: #499EEF;
    font-weight: 600;
}

.active .indicator {
    width: 65px;
    height: 65px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
}

@media (max-width: 1023px) {
    .bottom-menu a span {
        font-size: 12px;
    }
}