.top-bar-container {
    display: flex; 
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    height: 58px;
    color:#54123A;
    background-color: #FCEAEA;
    font-family: 'Ranchers', cursive;
    letter-spacing: 0.7px;
    font-weight: bold;

    position: sticky;
    justify-self: flex-start;
    top: 0;
    padding: 0 16px;
    width: 100%;
}

.top-bar-icon {
    height: 24px;
    padding-right: 18px;
    cursor: pointer;
}

.top-bar-icons {
    display: flex;
}

.top-bar-logo {
    width: 90px;
    padding-left: 12px;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .top-bar-container {
        background-color:#FFB612;
        width: 100%;
        justify-content: center;
        height: 60px;
        padding: 0;
    }
    
    #topBarLogoDiv {
        display: none !important;
    }

    #topBarMenuDiv {
        display: none !important;
    }

    .top-bar-icon {
        height: 32px;
        padding-right: 36px;
    }

    .top-bar-logo {
        width: 110px;
        padding-left: 30px;
    }

    .top-bar-icons img:last-child {
        padding-right: 0px;
    }
}

#mobileMenuDiv {
    display: none;
}



.tob-bar-menu-box {
    display: flex;;
}

.tob-bar-menu-box a {
    padding: 0 12px 0 12px;
    color:#54123A;
    font-style: normal;
    text-decoration: none;
    font-size: 15pt;
}

