@media (min-width: 1280px) {
    .bottom-navigation {
        display: none;
    }
}

.bottom-navigation .nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;

    background-color: #383a3c;
    box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.05);
    height: 60px;

    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.bottom-navigation .nav .nav-item {
    flex: 1;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-navigation .nav .nav-item .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;

    font-size: 13.33px;
    color: white;
    font-weight: 500;
}

.bottom-navigation .nav .nav-item .nav-link .akastra-buddy {
    height: 20px;
}

.bottom-navigation .nav .nav-item .nav-link.active {
    background-color: transparent !important;
    position: relative;
}

.bottom-navigation .nav .nav-item .nav-link.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 5%;
    top: 0%;
    background-color: var(--accent-color);
    position: absolute;
}

.dropdown-more-wrapper {
    background-color: #383a3c;
}

.more-dropdown-menu {
    display: none;
    list-style: none;
    list-style-position: initial;
    list-style-image: initial;
    list-style-type: none;

    opacity: 0;
    visibility: hidden;
    transition-property: all;
    transition-duration: 0.3s;
    transition-behavior: allow-discrete;

    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.more-dropdown-menu.show {
    position: fixed;

    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0%);
    width: 100%;
    bottom: 60px;
    border: none;
    background-color: #383a3c;
    display: block !important;
    padding: 10px 5%;
    z-index: 999;

    @starting-style {
        opacity: 0;
        transform: translateX(-50%) translateY(50%);
    }
}

.more-dropdown-menu .more-item {
    width: 100%;
    border-bottom: 1px solid white;
    color: white;
}

.more-dropdown-menu .more-item .more-link {
    color: white;
    text-decoration: none;

    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    position: relative;
}
.more-dropdown-menu .more-item .more-link.active::after {
    content: "";
    width: 8px;
    height: 8px;
    top: 50%;
    left: 1%;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    position: absolute;
}

.more-dropdown-menu .more-item .more-link i {
    font-size: 20px;
    color: var(--accent-color);
}
