@layer pagony-base {
    *:has(> .dropdown-menu) {
        position: relative;
    }
    @media screen and (hover: hover) {
        *:has(> .dropdown-menu):hover > .dropdown-menu, .dropdown-menu:hover {
            visibility: visible;
            opacity: 1;
            display: block;
        }
    }
    @media screen and (hover: none) {
        /*a:has(~ .dropdown-menu):focus ~ .dropdown-menu {
            visibility: visible;
            opacity: 1;
            display: block;
        }*/
        .dropdown-menu-toggle:has(input:checked) ~ .dropdown-menu {
            visibility: visible;
            opacity: 1;
            display: block;
        }
    }
    body{
        font-family: "Roboto", Helvetica, Arial, sans-serif;
    }
    a {
        
    }
    .form-control {
        display: block;
        width: 100%;
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }
    .dropdown-menu {
        left: 50%;
        right: auto;
        text-align: center;
        position: absolute;
        transform: translate(-50%, 0);
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        background-clip: padding-box;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        z-index: 1000;
        padding: 5px 0;
        margin: 2px 0 0;
        top: 95%;
        background-color: rgb(254 254 251);
        display: none;
        float: left;
        min-width: 160px;
        list-style: none;
        font-size: 14px;
    }
    #site-navigation ul {
        list-style: none;
        padding-top: 18px;
        display: flex;
        justify-content: space-around;
    }
    #site-navigation ul > li {
        display: inline-block;
        font-family: "kraftstoff_huregular", "Avenir Next Condensed";
        font-size: 2.625rem;
        line-height: 2em;
        color: #534653;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
    }
    #site-navigation ul > li a {
        color: #534653;
        transition: all 0.35s ease 0s;
    }
    #site-navigation ul > li a:hover {
        text-decoration: none;
        color: #bd600c;
    }
    .btn-searchbutton {
        background: #7f737f;
        border: none;
        color: #fcfaea;
        font-size: 16px;
        line-height: 1.61857;
        font-family: "Roboto Slab", serif;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        transition: all 0.25s ease 0s;
        padding: 7px 20px;
        border-radius: 3px;
        height: 40px;
    }

    .btn-searchbutton:hover {
        background: #655b65;
        color: white;
    }
    i.icon-search{
        display: block;
        width: 1rem;
        height: 1rem;
        background-color:#fcfaea;
        mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
    }
    .btn-searchbutton .glyphicon-search {
        line-height: 15px;
        top: 2px;
    }

    /*Bootstrap styles-----------------------------------------------------*/
    .modal {
        display: none;
        overflow: hidden;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        outline: 0;
    }
    .fade {
        opacity: 0;
        transition: opacity 0.15s linear;
    }
}