#head
{
     
    float: left;
    width: 100%;
    height:120px;
    position:fixed; 
    z-index: 2;
    border-radius: 5px;
    pointer-events: none;    
}
#inner-Head
{
    padding:15px;
    float: left;  
    width: 98%;  
    pointer-events: none;
}
#inner-headr
{
    padding-right:15px;    
    float: right; 
    pointer-events: visible;       
}
#sidebar
{
    display: none;
    opacity: 0;
    transition: opacity 0.1s;
    width: fit-content;
    min-width: 150px;
    margin-top: 120px;
    padding: 15px;
    background-color:rgba(0, 0, 0, 0.581);    
    height: fit-content;
    position:fixed; 
    float: right;
    box-shadow: 6px 0 12px -2px rgba(0, 0, 0, 0.768);
    border-radius: 5px;
    z-index: 2;
    font-size: 18px;
    color: white;
    bottom: 10px; 
    left: 10px; 
}
#logo-google {
    position: fixed;
    bottom: 10px; 
    right: 10px; 
    z-index: 2; 
  }
#map
{
    float: left;
    width: 100%;
    height: fit-content;
    
    min-height: 950px;        
    z-index: -1;
    border-radius: 4px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.768);
}

.popup-content {
    text-align: center;
}
.pad
{
    background-color:red;
    border-radius: 10px;
    min-width: 100px;
    padding: 10px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.768);    
    color: white;
    text-align: center;
}
#login_body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

#login-container {
    background-color: #fff;
    border: 1px solid #ccc;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    
}

#login-form {
    text-align: center;
}

#accept-cookies {
    margin-top: 10px;
}

#cookie-info {
    text-align: center;
    margin-top: 20px;
    width: 350px;
    font-size: 8px; 
}
.button {
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 6px 0 12px -2px rgba(0, 0, 0, 0.768);
  }
.button_red
{
    background-color:rgb(198, 7, 7);
    border: 2px solid white;
    color: white;   
}
.button_blu
{
    background-color:rgb(8, 69, 176);
    border: 2px solid white;
    color: white;
}
.button_red:hover
{
    background-color:rgb(255, 255, 255);
    border: 2px solid rgb(198, 7, 7);
    color: rgb(0, 0, 0);   
}
.button_blu:hover
{
    background-color:rgb(255, 255, 255);
    border: 2px solid rgb(8, 69, 176);
    color: rgb(0, 0, 0);
}