/*Base*/

/*Navbar related*/
@import url("navbar.css");
.navbar-default {
    background-image: none;
    /*height:80px;*/
    margin-bottom: 0px;
}

.navbar-brand {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  margin: auto;
  top: -5px;
}
/*Fix for navbar-brand 100% width, overlapping making this unclickable*/
.navbar-toggle {
    z-index: 10;
}

.navbar-li a:hover, a:focus {
    opacity: 1;
    text-decoration: none;
    color:aliceblue;
}

.navbar-li a{
    padding-left: 20px;
    padding-top: 45px;
    text-decoration: none;
    color:aliceblue;
    font-weight: 400;
    font-size: 100%;
    opacity: 0.6;
    transition: opacity ease 0.5s;
}
.dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a {
    background-image: none;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.open>a {
    background-image: -webkit-linear-gradient(top,#253746 100%,#253746 100%);
}
/*End Navbar related*/

/*Other base styles*/
h1, h2 {
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    font-family: Soho, Arial;
}

h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
    font-family: Soho, Arial;
}

footer {
    text-align: right;
}
  
/*--------------------*/
/*
Try to fix iphone scroll on UI elements
https://stackoverflow.com/a/46877070

html {
    margin: 0;
    overflow: hidden;
    height: 100%
}
body {
    margin: 0;
    overflow: auto;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}
*/
/*--------------------*/

html, body {
    -webkit-font-smoothing: antialiased;
    height:100%; 
    margin:0; 
    overflow:hidden;
    -webkit-overflow-scrolling: touch;
}


main {
    background: #fafafa;
    height:100%; 
    overflow-y:auto;
}
/*End Other base styles*/

/*Big links*/
.jumbotron:hover, .jumbotron:focus {
    /*Overskriv bootstrap*/
    color: floralwhite;
}
  
.jumbotron {
    color: aliceblue;
    background: #253746;
}

.biglink a{
    text-decoration: none;
}
  
.container {
    position: absolute;
    margin: auto;
    top: 125px;
    right: 0;
    bottom: 0;
    left: 0;
}
/*End big links*/

/*Messages header*/
.page-header {
    margin-top: 0px;
    margin-bottom: 0px;
}

/*Announcement Header*/
.announcement-bar {
    background-color:#08C;
    text-align: center;
}

.announcement-bar p {
    color: aliceblue; 
    margin:0px;
}