

/*Border radius pÃ¥ podcastbildene*/
img {
    border-radius: 0.75rem;
	padding: 5px; 
}

    /*Tar ned paddingen rundt logo fra 65px til 20px*/
    img.logo {
        padding: 20PX 0;
    }

/*Sentrere tableheader*/
.table thead th {
    text-align: center;
}

/*Nedskalarere font-size toppliste UKE*/
.filters-bar div.week-select {
    font-size: 30px;
    font-weight: bold;
}

p.description {
    color: #fff;
}

@media screen and (max-width: 992px) and (orientation:portrait) {
    /*Ã˜kt fontstÃ¸rrelsen pÃ¥ podcast description fra 1.25rem til 1.8rem*/
    h1 {
        /*padding: 1rem;*/
        padding: 2vh;
        padding-bottom: 1vh;
        padding-top: 1vh;
        font-size: 4.5vh;
    }

    .form-control {
        font-size: 1.5vh;
    }

    h5 {
        font-size: 2vh;
    }

    /*Index-siden*/
    .filters-bar a.btn-clear {
        font-size: 1.5vh;
    }

    dl.podcasts dt {
        font-size: 1.2vh;
    }

    .filters-bar div.week-select {
        font-size: 26px;
    }

    .filters-bar a {
        font-size: 1.5vh;
    }

    .podcast-list td {
        font-size: 1.5vh;
    }



    td.number {
        font-size: 3vh;
    }

    .utgiver {
        font-size: 1.2vh;
    }

    .podcast-list th {
        font-size: 1.5vh;
    }

    .pagination {
        font-size: 2.5vh;
    }


    /*Setter padding pÃ¥ podcastbildet*/
    img.podcast-image {
        padding: 2vh;
    }

    p.description {
        /*font-size: 1.8rem;*/
        font-size: 2vh;
        /*padding: 1rem;*/
        padding: 2vh;
        padding-bottom: 1vh;
        padding-top: 1vh;
    }

    dl.podcasts dd {
        font-size: 1.2vh;
    }

    span.info {
        /*font-size: 1.8rem;
        padding: 1rem;*/
        font-size: 2vh;
        padding: 2vh;
        padding-bottom: 1vh;
    }

    .utgiver {
        font-size: 15px;
    }

    .upanddown {
        font-size: 1vh;
    }

    /*Detaljer - podcastview*/
    .btn {
        padding: 1vh;
        font-size: 2vh;
    }


    /*.accordion dd > p {
        font-size: 1.8rem;
    }*/

    .accordion {
        padding: 2vh;
    }

    .accordionTitle {
        font-size: 1.8vh;
    }

    .accordion dd {
        font-size: 1.5vh;
    }

    .accordionTitle:before {
        font-size: 1.8vh;
        line-height: inherit;
    }
}


/*This targets Iphones in landscape and portrait - hide columns in table*/
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation:portrait) { /* STYLES GO HERE */
    .d-sm-none {
        display: none !important;
    }

    ul.top-nav li a {
        /*font-size: 20px;*/
        font-size: 1.7vh;
    }
}

/*Sikre at bakgrunnsfargen ikke blir hvit under loading - hentet fargekode fra bakgrunnsbilde*/
body {
    background-color: #715063;
}

    body.podcast {
        background-color: #715063;
    }


/*Accordion styling - about view*/

@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.accordion dt > a {
    text-align: center;
    font-weight: 700;
    padding: 2em;
    display: block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: background-color 0.5s ease-in-out;
}

.accordion dd {
    background-color: #715063;
    color: #fafafa;
    /*font-size: 1rem;*/
    line-height: 1.5em;
}

    .accordion dd > p {
        padding: 1em 2em 0em 2em;
        margin-bottom: 0rem;
    }

        .accordion dd > p:last-child {
            margin-bottom: 1rem;
        }



.accordion {
    position: relative;
}

.accordioncontainer {
    max-width: 960px;
    margin: 0 auto;
    padding: 2em 0 2em 0;
}

.accordionTitle {
    background-color: #22313F;
    border-bottom: 1px solid #2c3e50;
}

    .accordionTitle:before {
        content: "+";
        /*font-size: 1.5em;*/
        line-height: 0.5em;
        float: left;
        -moz-transition: -moz-transform 0.3s ease-in-out;
        -o-transition: -o-transform 0.3s ease-in-out;
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
    }

    .accordionTitle:hover {
        background-color: #2c3e50;
    }

.accordionTitleActive {
    background-color: #34495e;
}

    .accordionTitleActive:before {
        -webkit-transform: rotate(-225deg);
        -moz-transform: rotate(-225deg);
        transform: rotate(-225deg);
    }

.accordionItem {
    height: auto;
    overflow: hidden;
}

@media all {
    .accordionItem {
        max-height: 100em;
        -moz-transition: max-height 1s;
        -o-transition: max-height 1s;
        -webkit-transition: max-height 1s;
        transition: max-height 1s;
    }
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: 100em;
        -moz-transition: max-height 0.5s;
        -o-transition: max-height 0.5s;
        -webkit-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

.accordionItemCollapsed {
    max-height: 0;
}

.animateIn {
    -webkit-animation-name: accordionIn;
    -webkit-animation-duration: 0.65s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: normal;
    -moz-animation-duration: 0.65s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionIn;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
}

.animateOut {
    -webkit-animation-name: accordionOut;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: accordionOut;
    -moz-animation-duration: 0.75s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionOut;
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes accordionIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
    }
}

@-moz-keyframes accordionOut {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
    }

    100% {
        opacity: 0;
        -moz-transform: scale(0.8);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.nopaddingtop {
    padding-top: 0rem;
}

.accordionul {
    padding-left: 4rem;
    margin-top: 1rem;
    margin-bottom: 0rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
}

#styringsgruppe {
    color: #FFFFFF;
    background: transparent;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    border-top: none;
    border-bottom: 2px solid #FFF;
}


/*
    Select-listene
*/

/*.custom-select, .custom-select-lg {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-position: 98% center;
    background-repeat: no-repeat;
    outline: none;
    background-size: 4rem;
    border-color: #B2B2B9;
    box-shadow: none;
    color: #FFF;
    background-color: #10102C;
    width: 15rem;
    border-color: transparent;
    font-size: 16px;
    font-weight: 700;
    content: "\f005";
}*/

.custom-select2, .custom-select-lg2 {
    /* you should keep these firsts rules in place to maintain cross-browser behaviour */
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-position: 98% center;
    background-repeat: no-repeat;
    outline: none;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20x%3D%2212px%22%20y%3D%220px%22%20width%3D%2224px%22%20height%3D%225px%22%20viewBox%3D%220%200%206%203%22%20enable-background%3D%22new%200%200%206%203%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23fff%22%3E%3Cpolygon%20points%3D%225.992%2C0%202.992%2C3%20-0.008%2C0%20%22/%3E%3C/svg%3E);
    background-size: 4rem;
    border-color: #B2B2B9;
    box-shadow: none;
    color: #FFF;
    background-color: #10102C;
    width: 15rem;
    border-color: transparent;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 0rem;
}

.custom-select, .custom-select-lg {
    /* you should keep these firsts rules in place to maintain cross-browser behaviour */
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-position: 98% center;
    background-repeat: no-repeat;
    outline: none;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20version%3D%221.1%22%20x%3D%2212px%22%20y%3D%220px%22%20width%3D%2224px%22%20height%3D%225px%22%20viewBox%3D%220%200%206%203%22%20enable-background%3D%22new%200%200%206%203%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23fff%22%3E%3Cpolygon%20points%3D%225.992%2C0%202.992%2C3%20-0.008%2C0%20%22/%3E%3C/svg%3E);
    background-size: 4rem;
    border-color: #B2B2B9;
    box-shadow: none;
    color: #FFF;
    background-color: #10102C;
    width: 15rem;
    border-color: transparent;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 0rem;
}

#uke {
    width: 10rem;
}

select::-ms-expand {
    display: none;
}

/*Drop-downknapp*/

/* Dropdown Button */
.dropbtn {
    /*background-color: #4CAF50;*/
    background-color: #10102C;
    color: white;
    /*padding: 16px;*/
    font-size: 16px;
    font-weight: 700;
    border: none;
    /*width: 10rem;*/
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #10102C;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #715063;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #10102C;
    filter: brightness(85%);
}



@media screen and (max-width: 992px) and (orientation: portrait) {
    .custom-select, .custom-select-lg {
        font-size: 1.5vh;
        width: 25rem;
    }


    .filters-bar a.btn-clear {
        font-size: 1.2vh;
    }
}


/*Fjerner tykk rÃ¸d border under uketall - overskrift*/
.filters-bar div.week-select span {
    border-bottom: none;
}

/*Venstrestille utgiverfelt*/
.podcast-list td.utgiver {
    text-align: left;
}

/*Cookieconsent*/



.cookieConsentContainer {
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
}

    .cookieConsentContainer .cookieTitle a {
        font-family: OpenSans, arial, "sans-serif";
        color: #FFFFFF;
        font-size: 22px;
        line-height: 20px;
        display: block;
    }

    .cookieConsentContainer .cookieDesc p {
        margin: 0;
        padding: 0;
        font-family: OpenSans, arial, "sans-serif";
        color: #FFFFFF;
        font-size: 13px;
        line-height: 20px;
        display: block;
        margin-top: 10px;
    }

    .cookieConsentContainer .cookieDesc a {
        font-family: OpenSans, arial, "sans-serif";
        color: #FFFFFF;
        text-decoration: underline;
    }

    .cookieConsentContainer .cookieButton a {
        display: inline-block;
        font-family: OpenSans, arial, "sans-serif";
        color: #FFFFFF;
        font-size: 14px;
        font-weight: bold;
        margin-top: 14px;
        background: #000000;
        box-sizing: border-box;
        padding: 15px 24px;
        text-align: center;
        transition: background 0.3s;
    }

        .cookieConsentContainer .cookieButton a:hover {
            cursor: pointer;
            background: #3E9B67;
        }

p.privacy {
    margin-left: 2rem;
    margin-right: 2 rem;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100% !important;
    }

        .cookieConsentContainer .cookieDesc p {
            font-size: 1.7vh;
            line-height: inherit;
        }

        .cookieConsentContainer .cookieButton a {
            font-size: 1.7vh;
        }

    p.privacy {
        font-size: 2vh;
    }

    h1.h1privacy {
        padding: 0;
    }
}

/*Privacy*/
h1.h1privacy {
    margin-top: 1rem;
    margin-left: 2rem;
}

.sticky-top {
    position: relative;
}


.podcast-list th {
    position: sticky;
    top: 0;
}

.podcast-list th {
    color: #FFFFFF;
    background: transparent;
}

    .podcast-list th.scrolled {
        background-color: #000 !important;
        transition: background-color 600ms linear;
    }



#search {
    width: 15rem;
    vertical-align: top;
}

select::-ms-expand {
    display: none;
}

.form-control {
    display: inline;
}

/*Disclaimer*/
#disclaimer {
    background-color: #715063;
    border-radius: 0;
    color: #fff;
}

.fjernpaddingbottom {
    padding-bottom: 0rem !important;
}


.scrollable-menu {
    height: auto !important;
    max-height: 300px !important;
    overflow: auto !important;
}

