.navb{
    height:75px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: black;
    height: 55px;
}

.logoName{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}

.logo{
    width:50px;
    cursor: pointer;
    margin-right: 10px;
}

.website_name, .website_nameM{
    font-size: 30px;
    color: white;
}

.website_nameM{
    display: none;
}

a{
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.current_page{
    color: rgb(0, 136, 169);
    font-size: 20px;
}

.search, .searchMobile{
    list-style: none;
    height: 26px;
}

.srch, .srchMobile{
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
}

#designsListNav, #designsListNavMobile{
    margin-right: 30px;
}

.browseResult, .browseResultMobile, #editResult{
    padding: 0.5em;
    border: 2px solid black;
    border-radius: 5px;
    background-color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.browseResult:hover, .browseResultMobile:hover, #editResult:hover{
    background-color: rgb(230,230,230);
}

.browseResult h5, .browseResultMobile h5, #editResult h5{
    margin: 0;
    margin-left: 10px;
}

.browseResultImg{
    max-height: 30px;
    max-width: 30px;
    align-items: center;
}

#browseResultImg{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rchrch, .rchrchMobile{
    border-radius: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    width:210px;
    margin-right: 5px;
}

button{
    border:none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.search_logo{
    width:25px;
}

nav{
    display: flex;
    align-items: center;
}

.warningDesign{
    animation: colorblink 2s infinite;
    padding:0.3em;
    border-radius: 5px;
    color: white;
    margin-right: 20px;
}

@keyframes colorblink{
    0% {}
    50% { background-color:rgba(255, 255, 255, 0.5); }
}

.nav_links{
    display: inline-block;
    list-style: none;
    padding: 0;
}

.nav_links a{
    display: inline-block;
    margin-right: 20px;
}

.nav_links a {
    transition: all 0.3s ease 0s;
}

.nav_links a:hover {
    color: rgb(0, 136, 169);
}

.nav_links .icon {
  display: none;
}

@media screen and (max-width: 1000px) {
    .website_name{
        display: none;
    }

    .website_nameM{
        display: block;
    }

    .search{
        display: none;
    }

    .nav_links a {
        display: none;
        float: left;
        text-align: center;
        padding: 7px 16px;
    }

    .nav_links a:not(:last-child){
        background-color: black;
        border: 1px solid gray;
        border-radius: 5px;
    }

    .nav_links a.icon {
        float: right;
        display: block;
    }

    .nav_links.responsive {
        position: relative;
    }

    .nav_links.responsive .icon {
        display: none;
    }

    .nav_links.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .current_page{
        display: none!important;
    }

    .warningDesign{
        display: none;
    }
}