﻿.navbar {
    max-height: 65px !important;
    margin: 0 !important;
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.35);
}


#nav-logo-ticks {
    height: 5rem;
    animation: rotate 35s linear infinite;
}

#mobileLogo10ticks {
    animation: rotate 35s linear infinite;
}


#nav-logo-text {
    height: 3rem;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#navLinks {
    list-style: none;
    align-items: flex-start;
    text-decoration: none;
    margin-bottom: 0;
    margin-right: 0.5rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    font-family: 'Open Sans Bold';
    color: #25B161 !important;
}

.loginBadge {
    border-radius: 7px !important;
    font-size: 1.5rem;
    padding: 0.7rem 1.5rem 0.7rem 1.5rem;
}


/* RESPONSIVE */


/* TABLET */
@media only screen and (max-width: 770px) {
    #navLinks {
        display: flex;
        background: white;
        flex-direction: column;
        align-content: center;
        padding: 0;
        align-items: center;
    }
}


#mobileNavigationBar {
    background: white !important;
}

.navbar-default .navbar-nav > li > a {
    color: black !important;
    padding: 1.8rem;
    background: white;
    font-family: 'open sans hebrew';
    font-weight: bold;
}