
.tel, .email-link {
    white-space: nowrap;
}

.map-marker {
    color: #006;
    cursor: pointer;
}

a:link {
	text-decoration: none;
}

/*Footer*/
body {
    display: flex; /* body is set as flex column */  
    flex-direction: column;
    min-height: 100vh; /* forcing body to be always at least 100vh so footer positions correctly */
    margin: 0;
}

main {
    flex: 1 0 auto; /* main grows to fill space */
}

/*Bottom, not fixed*/
footer {
    flex-shrink: 0; /* footer sticks at the bottom if the content is short*/
    padding: 20px 0; /* some space inside footer */
    width: 100%; 
}
/*End footer*/

