* {
    font-family: 'Lato', sans-serif;
}

.base-nav    {
    background-color: #D65A5D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.nav-p {
    color: #FFFFFF;
    display: inline-block;
}

.nav_btn {
    background-color: #D65A5D;
    border: none;
}

.nav_btn > * {
    margin: auto;
}

nav form {
    margin-right: 20px;
}

nav img {
    padding: 4px;
}

.flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-container div > * {
    margin: auto;
}

.contact {
    border: solid 1px #FFFFFF;
    border-radius: 5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_small {
    display: none;
}

.flex_between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.contact_left {
    color: #A3A8B3;
    font-size: 12px;
}

.contact_right {
    font-weight: 700;
    text-decoration-line: underline;
}

#user {
    margin-right: 10px;
}

#nav_modal_close{
    border: none; 
    background-color: white;
    position: absolute;
    right: 5px;
    top: 5px;
}

#modal_title {
    color: #D65A5D;
}

@media (width <= 650px) {
    .contact {
        display: none;
    }

    .contact_small {
        display: initial;
    }
}
