body { 
    margin: 0;
    font-size: 12pt;
    background: #f2f2f2;
}


/* header */
/********************************************************************************/
.container_menu_header {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 5%;
    max-height: 50px;
    min-height: 35px;
    background: #f2f2f2; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#fff, #f2f2f2); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#fff, #f2f2f2); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#fff, #f2f2f2); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#fff, #f2f2f2); /* Standard syntax */
}

 /* Dropdown Button */
.menu_icon {
    height: 35px;
    width: 35px;
    pointer-events: none;
}
    
[if IE] .menu_icon {
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='media/menu_icon_3stripe.png', sizingMethod='scale');
    background:none !important;
}

.dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

/* remove border when clicked */
.dropbtn:hover, .dropbtn:focus {
        outline: 0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    background-color: f2f2f2;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f6f6f6}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
     display: block;
}


/* header end *************************/

/* content */
/********************************************************************************/

.container_content {
    width: 96%;
    height: inherit;
    background: #f7f7f7;
    padding: 2%;
    
}

.content_logo_main {
    display: block;
    margin: auto;
    max-height: 300px;
    background-image: url(media/woofgang_logo_blackontrans.png);
    background-repeat: no-repeat;
    background-position: center;
    background: #f7f7f7;
}

/* scale logo on small screens */
@media screen and (max-width: 576px) {
    .content_logo_main  {
        width: 96%;
    }
}


/* follow through pages, smaller header logo */
.content_logo_ {
    display: block;
    margin: auto;
    max-height: 150px;
    background-image: url(media/woofgang_logo_blackontrans.png);
    background-repeat: no-repeat;
    background-position: center;
    background: #f7f7f7;
}

/* scale logo on small screens */
@media screen and (max-width: 576px) {
    .content_logo_  {
        width: 50%;
    }
}


/* content container */
.content {
    padding: 30px;
}

.faqs li:nth-Child(even) {
    list-style-type: none;
}
.faqs .faq_answer {
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 16px;
    
}
.faqs .faq_question {
    font-weight: bold;
}
#map {
    width: 100%;
    height: 400px;
    margin-top: 16px;
}
/* content end *******************************/


/* footer */
/********************************************************************************/
.container_menu_footer {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 50px;
    background: #555555;
    color: white;
    box-shadow: 0px 8px 8px 12px rgba(0,0,0,0.2);
}

.operating_hours {
    display: block;
    margin: auto;
    text-align: center;
    padding: 20px;
}
.operating_hours li {
    list-style-type: none;
    font-size: .9em;
    padding: 3px;
}

.operating_hours .list_header {
    font-size: 1.2em;
}
.operating_hours .list_footer {
    font-size: .8em;
}

/* footer end ********************************************************************************/

