#iframe_sample_lesson{
    margin: 20px 0;
}
#iframe_container.hide{
    display: none;
}
header {
    margin-bottom: 50px;
}

article{
    padding: 0;
    /*  -webkit-box-shadow: 9px 0 6px -7px rgba(0,0,0,0.50), -9px 0 6px -7px rgba(0,0,0,0.50);
      box-shadow: 9px 0 6px -7px rgba(0,0,0,0.50), -9px 0 6px -7px rgba(0,0,0,0.50);*/
}

a.prereq_link{
    color: #000000;
    text-decoration: underline;
}
a.prereq_link:hover{
    color: #aa0304;
    text-decoration: none;
}


#courses-content{
    background: none;
    background-color: #FFFFFF;
}


.container{
    background: #FFFFFF;
    /* -webkit-box-shadow: 0px 10px 14px 2px #000000;
     box-shadow: 0 10px 14px 2px #000000;*/
}

h2.alt, h3 {
    text-align: left;
    color: #aa0304;
    margin-bottom: 0.5rem;
}

.video-responsive{
    margin:20px 0;
}

#course-intro strong, .cart_textbook {
    font-size: 1.1rem;
    color: #aa0304;
    display: block;
    font-weight: 700;
}

#course-intro strong{
    line-height: 1.2;
    margin-bottom: 5px;
}

.cart_textbook{
    cursor: pointer;
    line-height: 1.5;
}

#course-intro strong span {
    color: #000000;
}
#course-intro {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
}

/*
#course-intro > div:first-of-type{
    padding: 0 20px 0 0;
}
*/

#course-intro{
    padding: 0 0 20px;
    margin: 0 20px;
    border-bottom: 2px solid #aa0304;
    width: 100%;
}

#course-intro > div:first-of-type{
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

#course-intro > div:last-of-type{
    width: 100%;
}
#btn-course-demo{
    position: relative;
}

#btn-course-demo:after{
    content: "";
    width: 50px;
    height: 41px;
    background: url("/wp-content/themes/ontario-vs/inc/courses/css/demo-lesson.png");
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 2px;
    left: 75%;
    transition: all .55s ease-out;
}
#btn-course-demo:hover:after{
    content: "";
    width: 50px;
    height: 41px;
    background: url("/wp-content/themes/ontario-vs/inc/courses/css/demo-lesson-hover.png");
   background-position: center;
    background-size: cover;
    position: absolute;
    top: 2px;
    left: 75%;
}

.single-course-headers{
    font-size: 1.2rem;
    color: #a61919;
    font-weight: 600;
}
table#course-timeline {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: medium none;
    vertical-align: middle;
    margin-top: 30px;
    text-align: left;
}
table#course-timeline thead{
    display: none;
}

table#course-timeline thead th {
    color: #fff;
    background-color: #a61919;
    border: 2px solid #fff;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

table#course-timeline tr{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #FFFFFF;
}

table#course-timeline tr td:first-of-type{
    order: 1;
    width: 50%;
}
table#course-timeline tr td:nth-child(2){
    order: 3;
    width: 100%
}
table#course-timeline tr td:last-of-type{
    order: 2;
    width: 50%
}

table#course-timeline td {
    background: #f7f7f7;
    color: #000;
    padding: 10px;
    font-size: 1.1rem;
    border: none;
}

table#course-timeline tr td.mid-semester {
    background: #d6d6d6;
    text-transform: uppercase;
    font-weight: 600;
    width: 100% ;
}

table#course-timeline tr td.total {
    background: #d6d6d6;
    font-weight: 600;
    text-align: right;
}

#unit-time-line {
    overflow-x: auto;
    margin-bottom: 30px;
}

.course-header {
    background: #3f3f3f;
    padding: 15px 10px;
    margin-bottom: 20px;
    cursor:pointer;
}

.course-header.open {
    background: #a61919;
}

.course-header h2,
.course-header h3,
.course-header h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    text-align: left;
    color: #FFFFFF;
    margin: 0;
}

.course-body {
    background: #FFFFFF;
    display: block;
    margin-left: 10px;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.course-info-testimonials .course-body{
    margin-left: 0;
}


.course-body ol, .course-body ul{
    margin-left: 35px ;
    margin-bottom: 15px;
}

.course-body.open {
    max-height: 1000vh;
    transition: max-height 0.5s ease-in;
}


#accordion-courses .course-header:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    text-decoration: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    content: "\f078";
    float: right;
    padding: 5px 0;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .23s ease-in;
}

#accordion-courses .course-header.open:before {
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}


.cart-hide{
    visibility:hidden;
    opacity: 0;
}

.cart-fadeout {
    transition:all 0.5s linear;
    visibility:hidden;
    opacity: 0;
}

.cart-fadein {
    transition:opacity 0.5s linear;
    opacity: 1;
}

blockquote p,
blockquote{
    font-family: 'Lato', sans-serif;
    line-height: 1.4;
    font-size: 100%;
    text-transform: capitalize;
}

blockquote .cite{
    margin-top: 15px;
    font-size: 1.1rem;
    color:#a61919;
    font-weight: 600;
}


.bg-red blockquote:before {
    color: rgba(255, 255, 255, 0.15);
}
.bg-red blockquote .cite{
    color:#000000;
}


.wpac{
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif!important;
    color: #333;
    margin-bottom: 20px;
}

.wp-google-name{
    color: #427fed!important;
    text-decoration: none!important;
    display: block;
}

.wp-google-left {
    display: table-cell;
    padding-right: 10px;
    vertical-align: top;
}

.wp-gr .wp-google-right {
    display: table-cell;
    vertical-align: top;
    width: 100%;
}

.wp-google-rating {
    color: #e7711b;
    font-size: 20px;
    margin: 0 6px 0 0;
}
.wp-google-powered {
    color: #777;
    margin:0;
}
.wp-google-name {
    text-decoration: none;
    font-weight: 600;
    display: block;
}
.wp-google-stars .wp-star {
    padding: 0 4px 0 0;
    line-height: 22px;
}



.open .course-testimonial-container{
    margin-bottom: 20px;
}

.course-testimonial-item{
    background-color: #f7f7f7;
}
.course-testimonial-item.bg-red{
    background-color: #aa0304;
}
.course-google-review-item{
    margin-bottom: 15px;
    display: flex;
}
.course-google-review-item,.course-google-review-item p{
    color: #222;
    font-size: 13px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 18px;
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

.course-google-review-item p{
    margin-bottom: 2px;
    color: #999999;
}
.course-google-review-item div:first-child {
    flex: 0 0 65px;
}

.course-google-review-item div:last-child {
    display: inline-block;
    margin-right: 4px!important;
}
.course-google-review-item a{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color:#427fed;
    font-weight: 700;
    margin: 0 0 2px;
    padding-right: 6px;
}
.course-testimonial-footer{
    margin-top: 20px;
}

.course-google-review-item .wp-stars .wp-star {
    padding: 0 4px 0 0;
    line-height: 22px;
}

.course-google-review-item .wp-stars {
    vertical-align: text-top;
}

@media (min-width: 48em) {
    .single-course-headers{
        font-size: 1.3rem;
    }

    table#course-timeline thead{
        display: table-header-group;
    }

    table#course-timeline tr{
        display: table-row;
        flex-wrap: nowrap;
        border-bottom:none;
    }



    table#course-timeline tr td:first-of-type{
        width: auto;
    }
    table#course-timeline tr td:nth-child(2){
        width: auto;
    }
    table#course-timeline tr td:last-of-type{
        width: auto;
    }

    table#course-timeline td {
        border:2px solid #fff
    }


    #btn-course-demo:after{
        left: 60%;
    }
    #btn-course-demo:hover:after{
        left: 60%;
    }


}


@media (min-width: 64em) {
    #course-intro > div:first-of-type{
        text-align: left;
        width: 25%;
        margin-bottom: 0;
    }

    #course-intro > div:last-of-type{
        width: 75%;
    }

    /*ARTICLE PADDING NEED FOR BACKGROUND IMAGE..*/
    article{
        padding: 0 20px;
        /*  -webkit-box-shadow: 9px 0 6px -7px rgba(0,0,0,0.50), -9px 0 6px -7px rgba(0,0,0,0.50);
          box-shadow: 9px 0 6px -7px rgba(0,0,0,0.50), -9px 0 6px -7px rgba(0,0,0,0.50);*/
    }

    a.btn-course,.btn-course{
        margin-right: 20px;
        width: 40%;
    }
    #btn-course-demo:after{
        left: 75%;
    }
    #btn-course-demo:hover:after{
        left: 75%;
    }
}

@media (min-width: 75em) {
    .container-fixed, .container {
        width: 61rem;
        max-width: 100%;
    }
    #course-intro > div:first-of-type{
        width: 22%;
    }

    #course-intro > div:last-of-type{
        width: 78%;
    }

    h1{
        font-size: 2.2rem;
    }


}