.add-banner-wrapper {
    position: relative;
    left: 0;
    top: 0;
}
.banner {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    min-width:100%;
    height:500px;
    overflow:hidden;
}

.banner img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: opacity 3s ease-out;
    -moz-transition: opacity 3s ease-out;
    -o-transition: opacity 3s ease-out;
    transition: opacity 3s ease-out;

}

.date-time{
    color: #BBBBBB;
    padding-bottom: 20px;
    font-size: 0.9em;
}

.innlegg-title-line {
    margin-bottom: 0;
    margin-top: 10px;
}

.innlegg-title {
    font-size: 24px;
}

.welcome-wrapper{
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    left: 0;
    opacity: 0;
    background-color: #fff;
    width: 100%;
    text-align: center;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-size: 24px;
    -webkit-transition: opacity 2s ease-out;
    -moz-transition: opacity 2s ease-out;
    -o-transition: opacity 2s ease-out;
    transition: opacity 2s ease-out;
}

.instrument {
    position: relative;
    top: 0;
    left:0;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    animation: spin 30s cubic-bezier(.22,.68,0,1.71) infinite;
    -webkit-animation: spin 30s cubic-bezier(.22,.68,0,1.71) infinite;
    -moz-animation: spin 30s cubic-bezier(.22,.68,0,1.71) infinite;
    -o-animation: spin 30s cubic-bezier(.22,.68,0,1.71) infinite;
}

.instrument-gruppe {
    position: relative;
    width: 100%;
    padding-bottom: 25px;
}
.instrument-gruppe .medlemmer {
    position:absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:100%;
    width:100%;
    align-items: center;
}

.medlemmer {
    position: relative;
}

.minside .ubesvart-aktivitet{
    padding-right: 0!important;
}
.minside .ubesvart-aktivitet button:first-child{
    flex-grow: 1;
    margin: 5px 5px 10px 0;
}
.minside .ubesvart-aktivitet button:last-child{
    flex-grow: 1;
    margin: 5px 0 10px 5px;
}

.minside .icon-wrapper {
    align-self: center;
    padding: 20px;
    margin-bottom: 10px;
}

.minside a, .minside a:hover {
    color: inherit;
    text-decoration: inherit;
}
.minside .menu-item {

    padding: 10px;
    border-radius: 20px;
    text-align: center;

}

.minside .menu-item i{
    font-size: 3em;
    color: darkseagreen;
    transition: letter-spacing 0.3s ease;
    -webkit-transition: color 0.5s ease-out;
    -moz-transition: color 0.5s ease-out;
    -o-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}

.minside .menu-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;

}
.minside .menu-item:hover i{
    color: darkgreen;
}

.besetning-wrapper {
    height: 600px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.besetning-wrapper .besetning {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    /* Apply animation to this element */
    -moz-animation: scroll-up 30s linear infinite;
    -webkit-animation: scroll-up 30s linear infinite;
    animation: scroll-up 30s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-up {
    0%   { -moz-transform: translateY(100%); }
    100% { -moz-transform: translateY(-650%); }
}
@-webkit-keyframes scroll-up {
    0%   { -webkit-transform: translateY(100%); }
    100% { -webkit-transform: translateY(-650%); }
}
@keyframes scroll-up {
    0%   {
        -moz-transform: translateY(100%); /* Browser bug fix */
        -webkit-transform: translateY(100%); /* Browser bug fix */
        transform: translateY(100%);
    }
    100% {
        -moz-transform: translateY(-650%); /* Browser bug fix */
        -webkit-transform: translateY(-650%); /* Browser bug fix */
        transform: translateY(-650%);
    }
}