﻿body {
    margin: 0px 0px 20px 0px;
    background-color: #EEEEEE;
}

.ix-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ix-nav-container-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 70px;
}

.ix-nav-container-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 70px;
}

.ix-nav-item-account {
    border-radius: 10px;
}

.ix-nav-item-mobile {
    background-color: seagreen;
    color: white;
    padding: 5px;
    margin: 0 0 2px 0;
    cursor: pointer;
}

.ix-nav-item-mobile:hover {
    background-color: white;
    color: seagreen;
}

.ix-nav-separator {
    background-color: seagreen;
    height: 10px;
    width: 100%;
}

.ix-nav-separator-row {
    display: flex;
    flex-direction: row;
}

.ix-nav-item {
    height: 50px;
    color: white;
    margin-right: 20px;
    padding: 10px;
}

.ix-nav-item:hover {
    cursor: pointer;
    color: green;
    background-color: white;
}

.ix-nav-item-account {
    border-radius: 10px;
}

.ix-nav-item-logo {
    margin-right: 20px;
    cursor: pointer;
}

.ix-logo-img {
    height: 40px;
    width: 80px;
    border-radius: 20px;
    margin: 0 0 0 20px;
}

.ix-nav-item-right {
    display: none;
    height: 50px;
    color: white;
    margin-right: 0;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.ix-nav-mobile-toggle {
    display: none;
}

/* Example: on screens that are 768px or less, set the background color to #EEEEEE */
@media screen and (max-width: 768px) {
    body {
        background-color: #EEEEEE;
    }
}

@media screen and (max-width: 768px) {
    .ix-nav-item-right {
        display: block;
    }

    .ix-nav-item-toggle {
        display: none;
    }
}
