/* styles for RC main menu */

.fixed-menu, .dyn-submenu{
 position: fixed;

 background: #ffa; /*smutsgul*/
 color: #044; /*mossgrön*/

 font-family: Georgia; font-size: 1.8vw; font-variant:small-caps; 
}

.fixed-menu{
 width: 100%; 
 bottom: 0;
 text-align: center;
}
.fixed-menu a{
 font-size:1.6vw; 
 color: #880000; /*mörkröd*/
 text-decoration: none;
}
.fixed-menu a:hover{
 text-decoration: underline;
}

.dyn-submenu{
 bottom: 7vw;
 padding: 5px 21px;
 display: none;
 border: 2px solid #880000; /*mörkröd*/
 border-radius: 10px;
}
.dyn-submenu a{
 font-size: 1.6vw; 
 color: #880000; /*mörkröd*/
 text-decoration: none;
}
.dyn-submenu a:hover{
 text-decoration: underline;
}
.dyn-x{
 position:absolute;
 right:0px;
 top:-6px;
 cursor:pointer;
}

