<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media all {
    #boxmenumobile {
        display: none;
    }
}

@media all and (max-width: 850px) {
    #boxmenumobile {
        /*position: fixed;*/
        position: absolute;
        z-index: 9999;
        top: 0px;
        left: 0px;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    #boxmenumobile &gt; .top {
        display: flex;
        height: 50px;
        width: 100%;
    }

    #boxmenumobile form {
        height: 100%;
        width: calc(100% - 50px);
        display: flex;
        background-color: #f5f5f5;
    }

    #boxmenumobile form &gt; input {
        background: none;
        width: calc(100% - 50px);
        border: 0px;
        margin: 0px;
        padding: 0px;
        height: 100%;
        font-size: 18px;
        padding: 0px 20px;
        box-sizing: border-box;
        font-family: "Raleway", sans-serif;
        font-weight: 500;
    }

    #boxmenumobile form &gt; input::placeholder {
        color: #9f9fa1;
        font-weight: 400;
    }

    #boxmenumobile &gt; .top button {
        width: 50px;
        height: 50px;
        padding: 0px;
        margin: 0px;
        background: none;
        border: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    #boxmenumobile &gt; .top button &gt; img {
        height: 26px;
        width: 26px;
    }

    .menumobile {
        height: calc(100% - 50px);
        overflow-y: auto;
    }

    .menumobile .menu-item {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        border-bottom: 2px dashed #f5f5f5;
        font-size: 18px;
        background-color: white;
        cursor: pointer;
        color: black;
    }

    .menumobile &gt; .menu-item:last-child {
        border: 0px;
    }

    .menumobile .menu-item.grey {
        background-color: #eee;
    }

    .menumobile .menu-item.current {
        background-color: #f00;
        color: white;
        border-color: #f00;
    }

    .menumobile .menu-item &gt; .content {
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-height: 54px;
        padding-top: 8px;
        padding-bottom: 8px;
        line-height: 22px;
    }

    .menumobile .menu-item.greyed {
        background-color: #ededed;
        color: #9f9f9f;
        border-color: #dcdcdc;
    }

    .menumobile .menu-item &gt; .content &gt; svg {
        margin-right: 20px;
        height: 16px;
        width: 16px;
    }

    .menumobile .submenu {
        flex-direction: column;
        display: none;
    }

    .menumobile .menu-item a {
        color: inherit;
        text-decoration: none;
    }

    .menumobile .submenu &gt; .menu-item:last-child {
        border-bottom: 0px;
    }

    .menumobile .menu-item.open &gt; .content {
        background-color: #000;
        color: white;
    }

    .menumobile .menu-item.open {
        border-color: #f5f5f5;
    }

    .menumobile .menu-item.open &gt; .content svg {
        fill: white;
    }

    .menumobile .menu-item.open &gt; .submenu {
        display: flex;
    }

    .menumobile &gt; .menu-item &gt; .content {
        padding-left: 20px;
    }

    .menumobile &gt; .menu-item &gt; .submenu &gt; .menu-item &gt; .content {
        padding-left: 40px;
    }

    .menumobile &gt; .menu-item &gt; .submenu &gt; .menu-item &gt; .submenu &gt; .menu-item &gt; .content {
        padding-left: 60px;
    }
}</pre></body></html>