.onlyMobile {
    display: none;
}

@media (max-width: 768px) {
    .onlyMobile {
        display: block;
    }

    .notMobile {
        display: none;
    }

    .loginButtonNavbar {
        padding: 8px 0 !important;
    }
}

.dropdown-toggle::after {
    margin-left: 0.5rem !important;
    font-size: 22px !important;
}

.textCenter {
    justify-content: center;
    text-align: center;
}

.navbarLinks.nav-link {
    padding: 12px 0 !important;
}

.dropdownMenu{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    display:none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

.dropdownMenu.show{
    display: flex;
}

.buttonDropdown{
    font-size:18px;
    max-width: 300px; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
    padding: 0.7rem 1rem !important;
    display:flex;
    gap: 0.5rem;
    align-items:center;
}

@media (min-width: 1200px) {
    .buttonContainer {
        display: flex;
        align-items: center;
    }
}

@media(max-width: 1199px) {
    .navbar-nav>.nav-item {
        border-top: 1px solid rgba(27, 22, 66, .065);
    }

    .navbar-nav>.dropdown>.dropdown-toggle:after {
        color: #8d9aae;
        content: "\e92e";
        font-family: Feather;
        margin-left: auto;
        transform-origin: center center;
    }

    .buttonContainer{
        display: flex;
        justify-content: center;
    }
}