header#main{
	width: 100%;
    height: 150px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #d8d8d8;
    padding-top: 10px;
    padding-bottom: 10px;
}

nav#desktop{
	width: 100%;
	height: 50px;
	background-color: #F2F2F2;
	border-bottom: 1px solid #d8d8d8;
    color: #FFFFFF;
}

.header_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header_wrap a{
    display: block;
    text-decoration: none;
}

.header-logo{
	display: flex;
	height: 150px;
    width: 380px;
    align-items: center;
}

.logo-icon{
    height: 90%;
    width: 50px;
    background-image: url(../images/Geo-map.gif);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 15px;
}

.goran_catrin{
	height: 110px;
    width: 82px;
    background-image: url(../images/goran_catrin.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20px;
}

@media screen and (max-width: 480px) {
    .goran_catrin{
        display: none;
    }
    .header-logo{
        width: 275px;
    }
}

.logo-text{
    color: #739FD9;
}

.cart-icon{
    width: 50px;
    height: 50px;
    border: 2px solid #739FD9;
    color: #739FD9;
    border-radius: 50%;
    font-size: 27px;
    padding-left: 2px;
    padding-bottom: 2px;
    line-height: 25px;
}

.cart-icon i{
    line-height: 50px;
    margin-left: 11px;
}

.cart-icon:hover{
    color: #FFFFFF;
    background-color: #739FD9;
}

.cart_icon_count{
    width: 26px;
    height: 26px;
    position: absolute;
    background-color: #739FD9;
    margin-left: 33px;
    margin-top: -55px;
    border-radius: 50%;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
}

.nav_wrap{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.desktop_nav{
    width: 280px;
}

.mobile_icon{
    display: none;
    width: 50px;
    height: 50px;
    font-size: 40px;
    text-align: center;
    color: #696969;
    line-height: 50px;
}

.mobile_icon:hover{
    color: #739FD9;
    cursor: pointer;
}

.desktop_nav a{
    color: #696969;
    padding-top: 16px;
    padding-bottom: 12px;
    text-decoration: none;
}

.desktop_nav a:hover{
    color: #739FD9;
    border-bottom: 4px solid #739FD9;
}

nav#desktop ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
    text-transform: uppercase;
    padding-left: 0px;
}

.lang_change-icons{
    width: 100px;
}

.lang_icon{
    width: 23px;
    height: 23px;
    border-radius: 50%;
    margin-top: -5px;
    margin-bottom: -5px;
    border: 2px solid transparent;
}

.lang_icon:hover{
    width: 27px;
    height: 27px;
    border: 0px solid transparent;
}

/*################################ MOBILE NAV ################################*/

#mobile-nav-wrap{
    display: none;
    position: fixed;
    z-index: 999;
    height: 100vh;
    width: 350px;
    background-color: #FFFFFF;
    box-shadow: 1px 0 10px #494949;
    top: 0;
    left: 0;
}

#mobile-nav-wrap a{
    text-decoration: none;
    color: #000000;
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

#mobile-nav-wrap a:hover{
    background-color: #F7F7F7;
}

#mobile-nav-wrap ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu{
    width: 100%;
}

.close-mobile-nav{
    width: 100%;
    height: 50px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    cursor: pointer;
}