<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*----*/

.menu ul {
   list-style:none!important;
   margin:0;
   padding:0;
   display: flex!important;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: space-between;
}

.menu ul li{
    display: flex;
    margin: 0;
    padding: 0;
}


.menu ul li a{
   font-size: .9rem;
    text-decoration: none;
   /*text-transform: uppercase;*/
    position: relative;
    transition: .5s background;
    width: 100%;
    padding: 1rem;
    color: #fff;
  
}

.menu ul li a:hover{
 background:#9e3109;
   color:#fff!important;
}

body:not(.responsive) .menu ul li a.sv-font-aktiv-lank-mall{
    background:#9e3109;
}


body:not(.responsive) .menu ul li a:after {
    display: flex;
    content: "";
    height: 1px;
    width: 0;
    background: #d8a68a;
    transition: .5s width;
    bottom: 0.05em;
    position: absolute;
    left: 0;
}

body:not(.responsive) .menu ul li a.sv-font-aktiv-lank-mall:after{
    width: 100%;
}


body:not(.responsive) .menu ul li a:hover:after, body:not(.responsive) .menu ul li a.active:after {
    width: 100%;
}</pre></body></html>