@charset "utf-8";
/* CSS Document */
#menu-select {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

#menu-select .button-select-content {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

#menu-select .button-select-content button {
    background-color: #B5A264;
    display: inline-block;
    width: 100%;
    height: auto;
    font-size: 1rem;
    line-height: 1;
    font-family: 'encode_sanslight', Arial, sans-serif;
    text-align: left;
    color: #000000;
    margin: 0;
    padding: 10px 15px 9px 15px;
    border: 0;
    border: none;
    outline: none;
    -webkit-border-radius: 18px 0px 0px 0px;
    -moz-border-radius: 18px 0px 0px 0px;
    border-radius: 18px 0px 0px 0px;
    cursor: pointer;
}

#menu-select .button-select-content button.open-menu {
    background: #B5A264 url(arrow-menu-select-open.png);
    background-repeat: no-repeat;
    background-position: right center;
}

#menu-select .button-select-content button.close-menu {
    background: #B5A264 url(arrow-menu-select-close.png);
    background-repeat: no-repeat;
    background-position: right center;
}

#menu-select .button-select-content button span {
    display: inline;
    vertical-align: -1px;   /* opraví vertikální metriku fontu pokud není titulek na středu */
}

/* Burger menu CSS */

#menu-select-content {
    position: absolute !important;
    top: 36px !important;
    left: 0 !important;
    background-color: #FFFFFF;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 0px 0px 18px 0px;
    -moz-border-radius: 0px 0px 18px 0px;
    border-radius: 0px 0px 18px 0px;
    z-index: 1000;
}

#menu-select-content li {
    display: block;
    list-style: none;
    width: auto;
    height: auto;
    text-align: left;
    margin: 1px 0 0 0;
    padding: 0;
}

#menu-select-content li a {
    display: block;
    background-color: #B5A264;
    font-size: 1rem;
    line-height: 1;
    font-family: 'encode_sanslight', Arial, sans-serif;
    text-decoration: none;
    color: #FFFFFF;
    margin: 0;
    padding: 10px 25px 9px 25px;
    white-space: nowrap;
    cursor: pointer;
}

#menu-select-content li:last-of-type a {
    -webkit-border-radius: 0px 0px 18px 0px;
    -moz-border-radius: 0px 0px 18px 0px;
    border-radius: 0px 0px 18px 0px;
}

#menu-select-content li a:hover {
    background-color: #FFFFFF;
    color: #000000;
}

#menu-select-content li a span {
    display: inline;
    vertical-align: -1px;   /* opraví vertikální metriku fontu pokud není titulek na středu */
}

#menu-select-content .content-submenu-arrow a.with-arrow {
    background-image: url(arrow-submenu-white.png);
    background-repeat: no-repeat;
    background-position: right center;
}

#menu-select-content .content-submenu-arrow a:hover.with-arrow {
    background-image: url(arrow-submenu-green.png);
}

#menu-select-content ul {
    display: none;
    margin: 0;
    padding: 0;
}

#menu-select-content ul li a {
    background: rgba(24, 107, 67, 0.7);
    padding-left: 36px;
}

#menu-select .menu {
    display: none;
}

@media only screen and (max-width: 768px) {
    #menu-select .button-select-content button {
        width: 100%;
    }

    #menu-select-content {
        width: 100%;
        min-width: 0;
    }
}