/*======================
    Media queries
======================*/

@media screen and (max-width: 320px) {
    #wb-bnr>div>div {
        background: black;
    }

    div.icon {
        display: none;
    }
}

@media screen and (max-width: 540px) {
    div.landing-container {
        padding-right: 25px;
    }
    div.course-header>div>h2 {
        width: 320px;
    }


}
@media screen and (min-width: 541px) {
    div.course-header>div>h2 {
        width: 540px;
    }
}
@media screen and (min-width: 541px) {
    div.course-header>div>h2 {
        width: 540px;
    }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 992px) {
    #buffylogo {
        padding-left: 25px;
    }

    #section-list>div.tbody {
        padding-bottom: 15px;
    }

    div.pager {
        background-color: white;
        position: fixed;
        width: 100%;

        height: 70px;
        bottom: -25px;
        padding-top: 10px;
    }
}

@media screen and (max-width:990px) {
    #wb-bar>div>div.row {
        flex-direction: row;
    }

    #wb-sec {
        display: none;
    }

}

@media screen and (min-width:990px) {
    div.course-header>div>h2 {
        width: 480px;
    }
}

/*/
media query minimum
/*/

@media screen and (min-width:0px) {
    .slider-text {
        margin-bottom: 2em;
    }
}

@media screen and (min-width: 768px) {
    
    #wb-cont>div>div {
        max-width: 750px;
    }

    div.landing-container>div>#section-list {
        flex-flow: row wrap;
        max-width: 600px;
    }

    #section-list>div.theading {
        max-width: 105px;
        flex-grow: .5;
        flex-basis: 100%;
        padding-right: 0px;
    }

    #section-list>div.tdivider {
        flex-grow: 1;
        flex-basis: 100%;
        height: 0px;
        visibility: hidden;
    }

    #section-list>div.tbody {
        padding-left: 0px;
        max-width: 490px;
    }


}


@media screen and (min-width:990px) {
    .home-slider {
        flex-direction: row;
        align-items: stretch;
    }

    .img-container {
        flex: basis 5em;
    }

    .slider-text {
        margin-bottom: 0;
    }


    div.container.green {
        display: flex;
        flex-flow: row;

    }

    div.container.green>div {
        width: 100%
    }

    div.course-header {
        flex-flow: row;
        padding: 10px;
        align-items: center;
    }

    div.course-header>div {
        padding: 0px 30px;
    }

    div.screenReader>* {
        border: 0px;
    }

    div.course-header>div>h2 {
        margin: 0px;
    }

    ul.course-top-menu {
        display: flex;
        flex-direction: row;
        margin: 0px 0px 0px 10px;
    }

    div.screenReader>.controls,
    div.screenReader>.progress-time {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    #audio-instruction {
        font-size: .5em;

    }

    nav>ul.course-top-menu>li {
        padding: 0px;

    }

    nav>ul.course-top-menu>li>a {
        font-size: 18px;
        padding: 0px 20px;
        border-left: 1px solid white;
        border-top: 0px;
    }

    #right-panel {
        width: 30%;
    }

}


@media screen and (min-width:992px) {
    #wb-cont>div>div {
        min-width: 968px;
    }

}


@media screen and (min-width:1200px) {
    .slider-text {
        margin-bottom: 0;
        width: 100%;
    }

    .img-container {
        width: 40%;
    }

    #wb-cont>div>div {
        min-width: 1170px;
    }

}

/*

@media (min-width: 768px) {}
@media (min-width:992px) {}
@media (min-width:1200px) {}
@media (max-device-width: 480px) and (orientation: landscape){}

*/