/*=====================
Copyright 2013  
BAVH Tech team 
(Harlach)
-----------------------
     COLORS 
--------------------
 cbbd91 - background
 795e36 - shadow
 e2d6af - top and bottom font
 602608 - top darker background
 c7611e - top lighter background
 b05d20 - main window border
 af995d - menu
 903b09 - brown font & sub-menu
 3c3f24 - olive font
 d24102 - about header font
 6a634c - darker footer font
 ded1a5 - content background dark
 eee7cf - content background middle
 f9f7ef - content background light
 a28c60 - content block border and h3 
======================*/

@import url("reset-fonts-grids.css");
* {
    box-sizing: border-box;
}
html {
    min-width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;    
}

a {
    color: #000000;
    text-decoration: none;
}

#wrapper {
    max-width: 1520px;
    
    margin: auto;
    
}
@media(max-width: 1720px) {
    #wrapper {
        max-width: 1440px;
        padding: 0 100px;
    }
}
@media(max-width: 1440px) {
    #wrapper {     
        max-width: 1024px; 
        padding: 0 60px;  
        font-size: 16px;
    }
}
#top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
}

#top a {
    display: flex;
}
@media (max-width: 1440px) {
    #top-spacer div {
        display: none;
    }

    #top div span {
        padding: 0px;
    }
}
.navbar_links_container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.navbar_link {
    text-decoration: none;
    color: #5E5E5E;
    transition: .3s;
}

.navbar_link:hover {
    cursor: pointer;
    color: red;
}

.navbar_buttons_container {
    display: flex;
    gap: 20px;
}

#hiddenCont,
#hiddenContOnMainPage {
    display: none;
}
#hiddenCont.active,
#hiddenContOnMainPage.active {
    position: absolute;
    transform: translateX(-50%);
    display: block;
    top: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    background-color: rgba(94, 94, 94, 0.7);
    z-index: 10;
}

.search_form_container {
    position: relative;
}

#searchInput {
    position: absolute;
    right: 38px;
    top: 0;
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    height: 40px;
    border: 2px solid #FB3453;
    padding-left: 5px;
}

#searchInput:focus-visible {
    outline: none;
}
#searchInput.active {    
    width: 250px;
    z-index: 100;
    opacity: 1;
}

.search_navbar_button.active {
    position: relative;
    z-index: 100;
}

.navbar_button {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    background-color: #FB3453;
    border: 2px solid #FB3453;
    display: flex;
    align-items: center;
    justify-content: center;    
    transition: .3s;
    position: relative;
}
.navbar_button:hover {
    cursor: pointer;
    background-color: #FFFFFF;
}
.navbar_button:hover svg {
    fill: #FB3453;
}

.navbar_login, 
.navbar_language {
    display: none;
    position: absolute;
    z-index: 1000;
    top: calc(100% + 2px);
    right: -2px;
    background-color: #FFFFFF;
    color: #5E5E5E;
}
.navbar_login.active,
.navbar_language.active {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 80px 0;
    color: #FFFFFF;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    min-width: 150vw;
    min-height: 100%;
    background-color: #1B1B1B;
}

.footer a {
    color: #FFFFFF;
}

.footer_content {
    display: flex;
    gap: 40px;
}

.footer_button {
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-color: #FB3453;
    border: 1px solid transparent;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer_button:hover {
    border: 1px solid #FB3453;
    background-color: #FFFFFF;
}

.footer_button svg {
    transition: .3s;
}
.footer_button:hover svg {
    fill: #FB3453;
}
top-active {
    background-color: #c7611e;
}

.top-text {
    color: #903b09;
    font-size: 16px;
}

.top-link {
    color: #fff;
    font-size: 14px;

    text-decoration: none;

}

.top-link:hover {
    cursor: pointer;
}

.top-button {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    background-color: #FFFFFF;
    color: #5E5E5E;
    border: none;
    padding: 10px;
    text-decoration: none;
    min-width: 185px;
    text-align-last: left;
}

.top-button.lang {
    min-width: 0;
}

.top-button:hover {
    background-color: #F0EDEA;
    cursor: pointer;
}

#top-search {
    position: relative;
    font-size: 1.5em;
}

#top-sites-list {
    position: absolute;
    right: 5px;
    background-color: #F1E6B9;
    color: #e2d6af;
    border: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
    text-decoration: none;
}

#top-sites-list li {
    padding: 5px 10px;
}

#top-sites-list a {
    color: #903b09;
    text-decoration: none;
}

#layout {
    width: 100%;
    margin: auto;
    min-height: calc(100vh - 308px);
    font-size: 15px;
}

.header {
    background: url("imagery/header-img.png") no-repeat left top;
    height: 373px;
    width: 100%;
    /*z-index: 1;*/
}

.header-inner {
    background: url("imagery/inner-header-img.png") no-repeat left top;
    height: 310px;
    width: 100%;
    position: relative;

}

#header-spacer {
    width: 100%;
}

.header-spacer {
    height: 300px;
}

.header-spacer-inner {
    height: 264px;
}

#header-spacer:hover {
    cursor: pointer;
}

#menu-container {
    box-shadow: 0 0 7px 0 #795e36;
    position: relative;
    width: 92%;
    min-width: 92%;
    margin: 17px auto 0px auto;
    z-index: 1;
}

#menubar {
    background: #af995d;
    width: 100%;
    height: 23px;
    z-index: 1;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

#menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 23px;
    line-height: 23px;
    text-align: left;
    display: table;
    z-index: 4;
}

.menuitem {
    height: 100%;
    text-align: center;
    padding: 0px 0px;
    display: table-cell;
    filter: alpha(opacity=100);
    opacity: 1;
}

.menuitem a {
    text-decoration: none;
    color: #3c3f24;
    font-size: 14px;
    font-weight: bold;
}

.menuitem a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* .active {
    background-color: #903b09;
}

.active a {
    color: white;
} */

.active-frozen {
    background-color: #903b09;
}

.active-frozen a {
    color: white;
}


.nav {
    font-size: 14px;
}

.nav ul ul {
    display: none;
}

.nav ul li:hover > ul {
    display: block;
}

.nav ul {
    background: #903b09 none repeat scroll 0 0;
    /*border-radius: 10px;*/
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
    color: #fff;
    list-style: outside none none;
    padding: 0 20px;
    position: relative;
}

.nav ul::after {
    clear: both;
    content: "";
    display: block;
    z-index: auto;
}

.nav ul li {
    float: left;
}

.nav ul li:hover {
    background: #f9f7ef;
}

.nav ul li:hover a {
    color: #602608;
}

.nav ul li a {
    color: #fff;
    display: block;
    padding: 5px 31px;
    text-decoration: none;
}

.nav ul ul {
    background: #f9f7ef;
    border-radius: 0px;
    padding: 0;
    position: absolute;
    top: 100%;
}

.nav ul ul li {
    float: none;
    /*border-top: 1px solid #6b727c;*/
    border-bottom: 1px solid #903b09;
    position: relative;
}

.nav ul ul li a {
    color: #fff;
    padding: 5px 20px;
}

.nav ul ul li a:hover {
    background: #903b09;
    color: #fff;
}

.nav ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
}

#submenu {
    position: relative;
    background: #903b09;
    width: 100%;
    min-height: 23px;
    line-height: 21px;
    vertical-align: bottom;
    margin-top: 7px;
    display: none;
    z-index: 4;
}

#submenu.active {
    display: block;
}

.subcontent {
    display: none;
}

.submenuitem {
    height: 100%;
    text-align: center;
    padding: 0px 18px;
    display: table-cell;
}

.submenuitem a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

.submenuitem a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.subactive a {
    font-weight: bold;
}

.selector {
    background-image: url("imagery/selector.png");
    background-repeat: repeat-x;
    width: 120px;
    height: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
    display: none;
}

#sitemap {
    display: inline-table;
    padding-left: 10px;

}

.sitemap {
    font-size: 14px;
    margin-left: 183px;
    padding-right: 0;
}

#sitemap ul li {
    display: inline-table;
    padding-left: 5px;
    position: relative;
    width: 135px;
}

#sitemap ul {
    min-width: 150px;
    padding: 10px 0 5px;
    text-align: left;
}

#sitemap li {
    float: left;
    font-size: 15px;
    min-width: 10px;
    text-align: left;
    list-style: outside none none
}

#sitemap li::before {
    content: '\203A';
    position: relative;
    left: -10px;
    color: #903b09;
    -webkit-transition: left 0.2s;
    -moz-transition: left 0.2s;
    -ms-transition: left 0.2s;
    -o-transition: left 0.2s;
    transition: left 0.2s;
}

#sitemap li.on:before {
    left: -7px;
}


#sitemap a {
    color: #3c3f24;
    text-decoration: none;
}

#sitemap a:hover {
    color: #903b09;
    text-decoration: underline;
}


#footer_logo {
    display: block;
    margin-left: 17%;
    opacity: 0.6;
    position: relative;
}

#counters {
    display: none;
}

strong {
    font-weight: bold;
    font-style: inherit;
}

#map-canvas, #map-canvas2, #map-canvas-edit {
    height: 600px;
    width: 910px;
    margin: 0px;
    padding: 0px;
    margin-top: 10px;
    border: 1px;
    border-style: solid;
    border-color: #903B09;
}

#map-canvas-watch {
    height: 480px;
    width: 680px;
    margin: 0px;
    padding: 0px;
    margin-top: 10px;
    border: 1px;
    border-style: solid;
    border-color: #903B09;
}

#map-canvas-edit {
    height: 380px;
    width: 380px;
}

.controls {
    margin-top: 16px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#pac-input, #pac-input-edit {
    background-color: #fff;
    padding: 0 11px 0 13px;
    width: 180px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    text-overflow: ellipsis;
}

#pac-input-edit {
    width: 200px;
}

#pac-input:focus, #pac-input-edit:focus {
    border-color: #4d90fe;
    margin-left: -1px;
    padding-left: 14px; /* Regular padding-left + 1. */
    width: 181px;
}

#pac-input-edit:focus {
    width: 201px;
}

#pac-input .notfound, #pac-input-edit .notfound {
    border-color: #e86850;
    margin-left: -1px;
    padding-left: 14px;
    width: 401px;
}

#pac-input-edit .notfound {
    width: 201px;
}

.pac-container {
    font-family: Roboto;
}

#type-selector {
    color: #fff;
    background-color: #4d90fe;
    padding: 5px 11px 0px 11px;
}

#type-selector label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}

#content1 {
    max-height: 100px;
    font-size: 12px;
    color: #6a634c;
    link: #6a634c;
    text-decoration: none;
}

#content1 a {
    color: #6a634c;
}

#content1 a:hover {
    color: #903b09;
}