.side-nav {
}

    .side-nav .side-nav-item {
        cursor: pointer;
        margin-bottom: 10px;
    }

    .side-nav .side-nav-level-one .side-nav-item {
        margin-left: 0;
    }

    .side-nav .side-nav-level-two .side-nav-item {
        margin-left: 35px;
    }

    .side-nav .side-nav-level-three .side-nav-item {
        margin-left: 50px;
    }

.content-container {
    display: flex;
    flex-direction: column;
}

body {
    font-family: "Lato", sans-serif !important;
}

.courses {
    font-family: "Lato", sans-serif;
    background-color: white;
}

    .courses .course {
        display: flex;
        margin-top: 15px;
        margin-bottom: 15px;
        flex-direction: row;
        background-color: white !important;
        border-radius: 3px;
    }

        .courses .course .course-icon {
            flex: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 12px;
            color: #1a1a1a;
        }

            .courses .course .course-icon .course-icon-container {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100%;
                min-height: 85px;
                width: 100%;
                background-color: #f6ffe3;
            }

        .courses .course .course-content {
            flex: 8;
            padding: 15px 15px;
            color: #1a1a1a;
        }

        .courses .course .course-actions {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .courses .course .course-icon .course-icon-container .icon {
            color: #7ac142;
        }

        .courses .course .course-content .course-title {
            font-family: Raleway, serif;
            font-weight: 600;
            font-size: 1.2em;
            margin-bottom: 8px;
        }

        .courses .course .course-content .course-description {
            color: #3d3d3d;
        }

.groups {
}

    .groups .group-title {
        cursor: pointer;
    }

.h2, h2 {
    font-size: 26px !important;
}
/*skip links*/
.visually-hidden {
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.bypass-block-link {
    background: #ffc;
    padding: .2em;
    position: absolute;
    text-decoration: none;
    z-index: 10;
    color: black !important;
}

.visible-when-focused:focus {
    clip: auto;
    height: auto;
    margin: auto;
    overflow: visible;
    position: static;
    white-space: normal;
    width: auto;
}

.bypass-block-target:focus:target, [tabindex="0"]:focus, [tabindex="1"]:focus, a:focus, a:hover, button:focus, input:focus {
    outline-color: #4d90fe !important;
}

/*styling*/
.side-nav {
    background: #303030;
    height: fit-content;
    width: 100%;
    max-width: 270px;
    z-index: 0;
    padding-top: 20px;
    min-height: 175px;
    overflow-y: auto;
    top: 0px;
}

    .side-nav .side-nav-level-one .side-nav-item * {
        color: white;
    }

        .side-nav .side-nav-level-one .side-nav-item *:hover, .side-nav .side-nav-level-one .side-nav-item *:focus, span.active, div.active {
            color: #7ac142 !important;
        }

main {
    margin-top: 0em;
    padding: 0rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

h1, h2, h3, h4, h5 {
    /*font-family: "Open Sans",Helvetica Neue,Helvetica,Arial,sans-serif !important;*/
    font-weight: 300 !important;
    text-align: center;
}

.h1, h1 {
    font-size: 4rem;
}

.h2, h2 {
    font-size: 5rem !important;
}

.h3, h3 {
    font-size: 3.3rem;
    padding: 2rem 0rem 1rem 0rem;
}

.group-title {
    text-decoration: underline;
}

.content-container {
    max-width: 70%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    ul.nav.navbar-nav {
        background-color: #3b3b3b;
        padding: 0px 17px;
        margin-bottom: 0;
        list-style: none;
        margin-top: 135px;
        z-index: 10;
        position: absolute;
    }
}

@media (max-width: 991px) {
    .secRecherche {
        padding: 5px;
    }

    .content-container {
        max-width: 100%;
        margin: 0 auto;
    }

    main#app {
        padding-bottom: 4rem !important;
    }
    .side-nav {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 1024px) {
    .course-image-container {
        flex: 4 !important;
    }
}

@media (max-width: 628px) {
    .course-image-container {
        flex: 5 !important;
    }
}

@media (max-width: 528px) {
    .courses .course {
        flex-direction: column !important;
    }
}

.side-nav.open {
    background: #303030;
    width: 100%;
    max-width: 270px;
    display: block !important;
    position: fixed;
    z-index: 10;
    min-height: 175px;
    overflow-y: auto;
    top: 0px;
    height: 100% !important;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.close-sidebar.hidden-md.hidden-lg.hidden-xl {
    padding: 1rem;
    position: relative;
    margin-bottom: 40px;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}

    #overlay.open {
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 2;
        cursor: pointer;
    }

.navbar {
    border-radius: 0px;
}

/* Slide along */
.st-effect-4.st-menu-open .st-pusher {
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
}

.st-effect-4.st-menu {
    z-index: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

.st-effect-4.st-menu-open .st-effect-4.st-menu {
    visibility: visible;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.st-effect-4.st-menu::after {
    display: none;
}

.close-sidebar svg {
    cursor: pointer;
}
img.course-image {

    width: 100%;
    display: block;
    height: auto;
}
.course-image-container {
    flex: 3;
    padding: 15px;
}