/***********************************
############ DEFAULT EAD ###########
***********************************/

:root {
    --font-distak: 'Rubik', sans-serif;
    --font-default: 'Poppins', sans-serif;

    --color-distak: #376bfa;
}
body {
    font-family: var(--font-default);
}


.wc_ead_content{
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
}

.wc_ead_content.content-flex {

    display: flex;
    align-items: center;
    justify-content: center;
}

.wc_ead_header_center{
    text-align: center;
    border: 0;
    margin-bottom: 30px;
    color: #555;
}

.wc_ead_header_center h1{
    font-size: 2em;
    font-weight: 300;
}

.wc_ead_header_center p{
    text-transform: uppercase;
    font-size: 0.8em;
}

/*UPLOAD*/
.wc_ead_upload{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

.wc_ead_upload_progress{
    display: block;
    font-size: 3em;
    margin: auto;
    color: #fff;
    text-shadow: 1px 1px #000;
}

.wc_ead_load{
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    text-align: center;
    color: #fff;
    z-index: 999;
}

.wc_ead_load_content{
    display: inline-block;
    margin: auto;
}

.wc_ead_load_content_msg{
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 1px 1px #000;
    margin-top: 15px;
}

/*ALERT MENSAGES*/
.wc_ead_alert{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 99;
}

.wc_ead_alert a{
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.wc_ead_alert a:hover{
    text-decoration: underline;
}

.wc_ead_alert_box{
    display: block;
    width: 600px;
    max-width: 90%;
    margin: auto;
    background: #555;
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 4px 0 #000;
}

.wc_ead_alert_box.green{background: #008068;}
.wc_ead_alert_box.blue{background: #096397;}
.wc_ead_alert_box.yellow{background: #E7A049;}
.wc_ead_alert_box.red{background: #C54550;}

.wc_ead_alert_close,
.wc_ead_alert_text,
.wc_ead_alert_icon{
    display: inline-block;
    vertical-align: middle;
}

.wc_ead_alert_icon{
    width: 8%;
    font-size: 2em;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    text-align: center;
}

.wc_ead_alert_text{
    width: 84%;
    padding: 0 20px;
}

.wc_ead_alert_title{
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1;
}

.wc_ead_alert_content{
    font-size: 0.875em;
    font-weight: 300;
}

.wc_ead_alert_close{
    width: 8%;
    text-align: center;
}

.wc_ead_alert_close span{
    line-height: 1;
    background: rgba(0,0,0,0.3);
    padding: 9px 10px 7px 10px;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
}

.wc_ead_alert_close span:hover{
    background: rgba(0,0,0,0.5);
}

/*MODAL IN INDEX.PHP*/
.wc_ead_modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.wc_ead_modal_box{
    display: block;
    width: 560px;
    max-width: 90%;
    margin: auto;
    background: #fff;
    position: relative;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 5px 0 #000;
}

.wc_ead_modal_box b{
    font-weight: bold;
    color: #000;
}

.wc_ead_modal_content > a{
    color: #111;
    font-weight: bold;
    text-decoration: none;
}

.wc_ead_modal_content > a:hover{
    text-decoration: underline;
}

.wc_ead_modal_close{
    position: absolute;
    right: -10px;
    top: -10px;
    background: #C54550;
    color: #fff;
    padding: 7px 10px;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 2px solid #fff;
    text-shadow: 1px 1px 1px darkred;
    cursor: pointer;
}

.wc_ead_modal_close:hover{
    background: #F45563;
}

.wc_ead_modal_title{
    padding: 20px;
    background: #eee;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    line-height: 1;
    border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
}

.wc_ead_modal_title.green{
    background: #008068;
    color: #fff;
}

.wc_ead_modal_title.blue{
    background: #096397;
    color: #fff;
}

.wc_ead_modal_title.yellow{
    background: #FAAD50;
    color: #fff;
}

.wc_ead_modal_title.red{
    background: #C54550;
    color: #fff;
}

.wc_ead_modal_content{
    padding: 30px;
}

.wc_ead_modal_content p{
    font-size: 1em;
    font-weight: 500;
    color: #333;
    margin-top: 20px;
}

.wc_ead_modal_content p:first-child{
    margin-top: 0;
}

.wc_ead_modal_help{
    padding: 15px;
    background: #fbfbfb;
    border-top: 1px solid #f5f5f5;
    text-align: center;
    font-size: 0.75em;
    color: #ccc;
    border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
}

.wc_ead_modal_help a{
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.wc_ead_modal_help a:hover{
    text-decoration: underline;
}

/*LOGIN.PHP*/
.wc_ead_enter {
    background: #fbfbfb;
}
.wc_ead_enter header{
    text-align: center;
    display: block;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    line-height: 1;
    color: #555;
}

.wc_ead_enter header h1{
    font-size: 1.6em;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--font-distak);
    color: var(--color-distak);
}

.wc_ead_enter header p{
    font-size: 0.875em;
    font-weight: 300;
    display: inline-block;
    padding-bottom: 10px;
    color: #000;
}

.wc_ead_enter label{
    display: block;
    margin-bottom: 20px;
}

.wc_ead_enter label span{
    font-size: 0.8em;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.wc_ead_enter input{
    font-size: .9em;
    font-weight: 400;
    border: 1px solid #ccc;
    background: #fff !important;
    border-radius: 2em;
    outline: none;
    color: #000;
    transition: all .2s ease;
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    -webkit-box-shadow: 0 1px 5px -4px #000;
    -moz-box-shadow: 0 1px 5px -4px #000;
    box-shadow: 0 1px 5px -4px #000;
}
.wc_ead_enter input:focus {
    outline: none;
    border-color: var(--color-distak);
    box-shadow: none;
}

.wc_ead_enter select{
    border: 2px solid #ccc;
}

.wc_ead_enter_actions{
    display: block;
    text-align: right;
}

.wc_ead_enter_actions img{
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    margin-left: 10px;
    display: none;
}

.wc_ead_login_recover{
    display: inline-block;
    vertical-align: middle;
    font-size: 0.7em;
    font-weight: 400;
    margin-right: 10px;
    color: #555;
    text-decoration: none;
}

.wc_ead_login_recover:hover{
    text-decoration: underline;
}

.wc_ead_enter .btn{
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 2em;
}

.wc_ead_login{
    padding: 0 30px;
}

.wc_ead_login_single,
.wc_ead_login, 
.wc_ead_register{
    display: block;
    width: 500px;
    max-width: 100%;
    margin: 1% auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .2);
}

.wc_ead_register{
    padding: 30px;
    box-shadow: 0 0 3px 0 #ccc;
}

/* DASHBOARD */
.wc_ead {
    background: #fbfbfb;
    position: relative;
    padding: 70px 0;
}

.wc_ead > .wc_ead_content:not(.module) {
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
}
.wc_ead .wc_ead_content > .wc_ead_home_courses {
    background: #fff;
}

/*EAD HOME.PHP*/

.wc_ead_home_header{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    color: #555;
}

.wc_ead_home_header h1{
    line-height: 1;
    font-size: 1.25em;
    font-weight: bold;
    font-family: var(--font-distak);
    color: var(--color-distak);
}

.wc_ead_home_header p{
    display: inline-block;
    padding: 10px 0 5px;
    font-size: 0.75em;
    font-weight: 400;
}

.wc_ead_home_student{
    display: inline-block;
    width: 25%;
    vertical-align: top;
}

.wc_ead_home_student_thumb{
    padding: 30px;
    text-align: center;
    line-height: 1;
}

.wc_ead_home_student_thumb img{    
    border: 2px solid var(--color-distak);
    margin-bottom: 10px;
    padding: 5px;
}

.wc_ead_home_student_thumb h1{
    font-size: 1.2em;
    font-weight: 500;
}

.wc_ead_home_student_thumb p{
    font-size: 0.75em;
    font-weight: 300;
    padding: 5px 0;
}

.wc_ead_home_student_content{
    padding-bottom: 60px;
}

.wc_ead_home_student_nav{
    display: block;
    width: 100%;
    list-style: none;
}

.wc_ead_home_student_nav a{
    display: block;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 500;
    cursor: pointer;
    color: #555;
    text-decoration: none;
    border-left: 2px solid transparent;
}

.wc_ead_home_student_nav a::before {
    font-size: 1.3em;
    margin-right: 25px;
}
.wc_ead_home_student_nav a.wc_active,
.wc_ead_home_student_nav a:not(.exit):hover{
    background: #fff;
    color: #000;
    border-left: 2px solid var(--color-distak);
}
.wc_ead_home_student_nav a.wc_active {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.wc_ead_home_student_nav a.exit:hover{
    background: #F45563;
    color: #fff;
}

.wc_ead_home_help{
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 0 0 0;
    font-size: 0.7em;
    text-transform: uppercase;
    color: #555;
}

.wc_ead_home_help a{
    color: #333;
    text-decoration: none;
}

.wc_ead_home_help a:hover{
    text-decoration: underline;
}

.wc_ead_win{
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

.wc_ead_win_default{
    display: none;
}

.wc_ead_win_box{
    display: block;
    width: 500px;
    max-width: 90%;
    margin: auto;
    background: #fff;

}

.wc_ead_win_box_content{
    padding: 20px 20px 30px 20px;
}

.wc_ead_win_box_content .title{
    font-size: 2em;
    line-height: 1;
    margin: 0;
}

.wc_ead_win_box_content p{
    margin: 20px 0;
}

.wc_ead_win_image{
    background: #00B494;
    color: #fff;
    text-align: center;
    display: block;
    text-align: center;
    font-size: 6em;
    padding: 40px 0;
    text-shadow: 1px 1px #000;
}

/*ORDERS*/
.wc_ead_studend_orders{
    padding: 15px;
    background: #f5f5f5;
}

.wc_ead_studend_orders h1.row{
    width: 40%;
    text-align: left;
}

.wc_ead_studend_orders:nth-child(2n+0){
    background: #fbfbfb;
}

.wc_ead_studend_orders .row{
    font-weight: 300;
    display: inline-block;
    font-size: 0.875em;
    vertical-align: middle;
    width: 20%;
    text-align: right;
}

.wc_ead_studend_orders .row b{
    font-weight: 500;
}

.wc_ead_studend_orders .row_pay span{
    display: inline-block;
    margin-right: 5px;
}

/*CURSOS*/
.wc_ead_home_courses{
    padding: 40px;
    display: inline-block;
    width: 75%;
    vertical-align: top;
}

.wc_ead_home_courses_course{
    padding: 15px;
    background: #ffffff;
    display: inline-block;
    box-shadow: 0 5px 20px -5px #d4d4d4;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}
.wc_ead_home_courses_course {
    margin-bottom: 35px;
}

.wc_ead_home_courses_course_details,
.wc_ead_home_courses_course_rank {
    display: inline-block;
    vertical-align: top;
}
.wc_ead_home_courses_course_details {
    width: 230px;
}
.wc_ead_home_courses_course_rank {
    width: calc(100% - 245px);
    margin-left: 15px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
    position: relative;
    overflow: auto;
}
.wc_ead_home_courses_course_thumb{
    position: relative;
}
.wc_ead_home_courses_course .progress {
    position: relative;
    padding: 0 10px;
    min-height: 30px;
    margin-bottom: 10px;
}
.wc_ead_home_courses_course .progress_bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: #096397 !important;
}
.wc_ead_home_courses_course .progress i,
.wc_ead_home_courses_course .progress p {
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    font-style: normal;
    font-size: .65em;
    padding:0;
    font-weight: bold;
    z-index: 10;
    position: relative;
}
.wc_ead_home_courses_course .progress p {
    float: left; }
.wc_ead_home_courses_course .progress i {
    float: right; }


/* RESULTADO DO RANKING GERAL */
.wc_ead_home_courses_course_rank{
    overflow: hidden;
}
.wc_ead_home_courses_course_rank .rank-title {
    background: #096397;
    padding: 0 10px;
    color: #fff;
    font-weight: 400;
    display: block;
    font-size: .7em;
    text-transform: uppercase;
    line-height: 25px;
    height: 25px;
}

.wc_ead_home_courses_course_rank .rank-list {
    overflow-x: hidden;
    max-height: 100%;
    position: absolute;
    top: 25px;
    height: calc(100% - 25px);
    width: 100%;
}
.wc_ead_home_courses_course_rank .rank-list::-webkit-scrollbar-track{ 
    background-color: transparent; }
.wc_ead_home_courses_course_rank .rank-list::-webkit-scrollbar{ 
    width: 0px; background-color: transparent; }
.wc_ead_home_courses_course_rank .rank-list::-webkit-scrollbar-thumb{ 
    background-color: transparent; }

.rank-user.tether-element,
.wc_ead_home_courses_course_rank .rank-list li {
    height: 55px;
    line-height: 55px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #e9e9e9;
    display: flex;
	justify-content: space-between;
}
.rank-user.tether-element {
    pointer-events: none;
}
.wc_ead_home_courses_course_rank .rank-list li:nth-child(odd) {
    background: #fbfbfb;
}
.rank-user.tether-element p:nth-child(1),
.wc_ead_home_courses_course_rank .rank-list p:nth-child(1) {
    padding: 0 5px;
    font-weight: bold;
    font-size: 1.2em;
    color:#096397;
}
.rank-user.tether-element p:nth-child(2),
.wc_ead_home_courses_course_rank .rank-list p:nth-child(2) {
    width: 45px;
    margin-top: -2.5px;
}
.rank-user.tether-element p:nth-child(3),
.wc_ead_home_courses_course_rank .rank-list p:nth-child(3) {
    width: 50%;
    font-size: .875em;
}
.rank-user.tether-element p:nth-child(4) span,
.wc_ead_home_courses_course_rank .rank-list p:nth-child(4) span {
    border-radius: 3px;
    background: #096397;
    color: #fff;
    font-size: .875em;
    padding: 2px 5px;
}
.rank-user.tether-element p:nth-child(5),
.wc_ead_home_courses_course_rank .rank-list p:nth-child(5) {
    font-size: .875em;
    font-style: italic;
    color:#555;
}
.rank-user.tether-element img,
.wc_ead_home_courses_course_rank .rank-list img {
    max-width: 100%;
    border-radius: 50%;
}


.rank-user.tether-element {
    background: #008068;
}



/* BREADCUMBS */
.top-breadcumb {
    margin-bottom: 25px;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
}
.top-breadcumb span,
.top-breadcumb a {
    display: inline-block;
    padding: 0 0 10px;
    text-decoration: none;
    font-family: var(--font-distak);
}
.top-breadcumb > *::before {
    margin: 0 20px;
    font-size: .9em;
}
.top-breadcumb span {
    color: #555;
}
.top-breadcumb a {
    color: var(--color-distak);
}
.top-breadcumb a:hover {
    opacity: .7;
}

.wc_ead_home_courses_course_bonus{
    position: absolute;
    right: 12px;
    top: 10px;
    color: #eee;
    text-shadow: 1px 1px 0 #000;
    cursor: pointer;
    text-decoration: none;
}

.wc_ead_home_courses_course_bonus:hover{
    color: #fff;
}

.wc_ead_home_courses_course_renew{
    top: 40px;
    text-decoration: none;
}

.wc_ead_home_courses_course_content{
    padding: 0;
}

.wc_ead_home_courses_course_title {
    font-size: 0.975em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #121212;
    flex: 1 100%;
}

.wc_ead_home_courses_course_title a{
    color: #000;
    text-decoration: none;
    font-family: var(--font-distak);
    margin: 5px 0;
    display: block;
    font-weight: 500;
}

.wc_ead_home_courses_course_title a:hover{
    text-decoration: underline;
}

.wc_ead_home_courses_course_content > p:not(.center){
    font-size: 0.8em;
    color: #555;
    padding: 5px 0;
    border-top: 1px solid #d4d4d4;;
    margin-top: 2px;
    border-radius: 3px;
}
.wc_ead_home_courses_course_content > p:not(.center):first-of-type {
    border: none;
}
.wc_ead_home_courses_course_content .center {
    font-size: 0.8em;
    color: #555;
    padding: 5px;
    background: #fff;
    border: 1px solid #d4d4d4;;
    margin-top: 2px;
    border-radius: 3px;
    display: block;
    text-align: center;
    margin: 10px 0;
}

.wc_ead_home_courses_course_content > p:not(.wc_tooltip) span {
    float: right;
    font-weight: bold;
}
.wc_ead_home_courses_course_content > .btn {
    width:100%;
    text-align: center;
}
.wc_ead_home_courses_course_content > p.icon-info {
    background:transparent;
    text-align: center;
    border:none;
    font-size: .65em;
    margin-top: 30px;
    padding:0;
}

.wc_ead_home_courses_certifications{
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 0.8em;
    background: #eee;
    color: #ccc;
}

.wc_ead_home_courses_certifications_true{
    background: #2c7fba;
    color: #fff;
    cursor: pointer;
}

.wc_ead_home_courses_certifications_true:hover{
    background: #379ce5;
}

.wc_ead_home_courses_certifications_print{
    color: #fff;
    background: #008068;
    cursor: pointer;
    text-decoration: none;
}

.wc_ead_home_courses_certifications_print:hover{
    background: #00B494;
}

.wc_ead_home_courses form{
    padding: 20px;
    background: #fbfbfb;
    border-radius: 5px;
}

.wc_ead_home_courses form select,
.wc_ead_home_courses form input {
    font-size: 0.875em;
    font-weight: 300;
    border: 1px solid #ccc;
    outline: none;
    margin-bottom: 20px;
    border-radius: 7px;
    padding: 5px;
    width: 100%;
    color: #000;
}
.wc_ead_home_courses form select {
    background-color: #fff !important;
    background-size: auto 55%;
    height: 27px;
}
.wc_ead_home_courses form input:focus {
    border-color: var(--color-distak);
}

.wc_ead_home_courses form span{
    font-size: 0.875em;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.wc_ead_home_courses form h2{
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px 0 20px 0;
    padding-bottom: 10px;
    color: #ccc;
    border-bottom: 1px dotted #ccc;
}

.wc_ead_home_courses form .form_actions{
    vertical-align: middle;
    text-align: right;
}

.wc_ead_home_courses form .btn{
    vertical-align: middle;
    padding: 10px 20px;
    background: #008068;
    color: #fff;
    font-weight: inherit;
}

.wc_ead_home_courses form .btn:hover{
    background: #009068;
    color: #fff;
    font-weight: inherit;
}

.wc_ead_home_courses form .form_actions img{
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    margin-left: 10px;
    display: none;
}

/* PROVAS */
.course--item {
    padding: 15px;
    background: #ffffff;
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: 0 5px 20px -5px #d4d4d4;
    -moz-box-shadow: 0 5px 20px -5px #d4d4d4;
    box-shadow: 0 5px 20px -5px #d4d4d4;
}
.course--item:not(:first-of-type) {
    margin-top: 20px;
}
.course--title {
    font-size: 1.2em;
    color: #999;
    margin: 20px 0 10px;
}
.course--title:not(:first-of-type) {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #e6e6e6;
}
.test--title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}
.test--title span {
    display: inline-block;
    width: auto;
    border-radius: 5px;
    background: #0f96e5;
    color: #fff;
    font-size: .7em;
    padding: 3px 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .05rem;
}

.course--description {
    font-size: .875em;
    color: #777777;
    margin: 10px 0;
}
.course--item .box {
    padding: 0;
    margin: 0;
    width: 50%;
}
.course--item .box p {
    padding-top: 10px;
}
















/*CURSO.PHP*/
.wc_ead_course_course{
    border-bottom: 1px solid #eee;
}

.wc_ead_course_course_header{
    text-align: center;
    margin-bottom: 20px;
}

.wc_ead_course_course_header img{
    width: 260px;
    max-width: 80%;
    padding: 20px;
    background: #fff;
}

.wc_ead_course_course_header h1{
    margin: 20px 0 10px 0;
    font-size: 2em;
    font-weight: bold;
}

.wc_ead_course_course .box{
    text-align: center;
    padding: 20px 10px;
    background: #096397;
    color: #fff;
    vertical-align: middle;
    margin-bottom: 0 !important;
}

.wc_ead_course_course .box .icon{
    display: inline-block;
    font-size: 2em;
}

.wc_ead_course_course .box .title{
    font-size: 0.65em;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}
.wc_ead_course_course .box .note{
    font-weight: bold;
    font-size: 2.4em;
    background: #fff;
    display: inline-block;
    border-radius: 5px;
    padding: 2px 10px;
    color: #096397;
}
.wc_ead_course_course .box p{
    margin-top: 7px;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.wc_ead_course_course .box .progress{
    margin-top: 9px;
    text-align: left;
}

.wc_ead_course_course .progress_bar {
    padding: 5px;
    vertical-align: top;
}

.wc_ead_course_course .box a{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.wc_ead_course_course .box a:hover{
    text-decoration: underline;
}


.wc_ead_course_module{
    padding-top: 30px;
}

.wc_ead_course_module .module_header{
    margin: 0 0 20px 0;
    border-bottom: 1px solid #ccc;
    line-height: 0;
}

.wc_ead_course_module .module_header h1{
    font-size: 1.6em;
    font-weight: 500;
    color: #555;
    line-height: 1;
    margin-bottom: 5px;
}

.wc_ead_course_module .module_header p{
    font-size: 0.8em;
    color: #888;
    line-height: 1.2;
}

.wc_ead_course_module .module_header span:not(.wc_tooltip_balloon){
    font-size: 0.4em;
    line-height: 1.4;
}
.wc_ead_course_module .module_header span:last-of-type {
    margin-top: 10px;
}

.wc_ead_course_module_bar{
    display: inline-block;
    width: 40%;
    background: #ccc;
    height: 5px;
    margin-top: 15px;
}

.wc_ead_course_module_class{
    display: block;
    width: 100%;
    padding: 14px 15px 15px 15px;
    background: #fbfbfb; 
    line-height: 1;

}

.wc_ead_course_module_class.active{
    background: #00B494 !important;
}

.wc_ead_course_module_class.active:hover{
    background: #008068 !important;
}

.wc_ead_course_module_class.active *{
    color: #fff;
}

.wc_ead_course_module_class:nth-child(2n+0){
    background: #f5f5f5;
}

.wc_ead_course_module_class:hover{
    background: #eee;
}

.wc_ead_course_module_class h1.row{
    display: inline-block;
    width: 40%;
    font-size: 0.875em;
    vertical-align: middle;
    text-align: left;
    font-weight: 300;
    color: #000;
    border: none;
}

.wc_ead_course_module_class .row{
    display: inline-block;
    width: 12%;
    font-size: 0.8em;
    vertical-align: middle;
    text-align: center;
    border-left: 1px dotted #ccc;
    font-weight: 300;
    color: #555;
}

.wc_ead_course_module_class a{
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.wc_ead_course_module_class a:hover{
    text-decoration: underline;
}

.simul {
    background: #fff;
}
.simul .wc_ead_content {
    padding-top: 10px;
    border: none !important;
    box-shadow: none !important;
}


/* NOTA FINAL DA PROVA [abaixo da lista de modulos] */
.course--total {
    text-align: center;
    margin: 40px 0 70px;
}
.course--total > * {
    display: inline-block;
}

.course--total .required {
    font-size: .875em;
    padding: 10px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
}
.course--total .required:not(.bar_green):hover {
    opacity: .8;
}
.course--total .wc_tooltip span {
    text-transform: inherit;
    font-size: .95em;
}
.certification--info {
    color: #999;
    font-size: 1em;
    font-weight: bold;
    margin: 15px 0;
    display: block;
}




/* detalhes antes de iniciar simulado */
.simul_intro {
    max-width: 100%;
    margin: 2em auto;
}
.simul_intro.mini {
    width: 568px;
}
.simul_intro .btn_download {
    display: inline-block;
    margin: 20px 0;
    background-color: #f95959;  
    text-shadow: 1px 1px #c22d2e;
}
.simul_intro .btn_download:hover {
    opacity: .75;
}
.simul_intro-text {    
    width: 768px;
    max-width: 100%;
    margin: 0 auto;
}
.simul_intro-text h1 {
    font-size: 1.45em;
    margin: 45px 0 25px;
    color: #111;
}
.simul_intro-text p {
    color:#333;
    margin: 25px 0;
    display: block;
}
.simul_intro-cta {
    text-align: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin: 3em 0 1em;
    padding: 10px 20px;
}
.simul_intro-cta p {
    position: relative; 
    padding-left: 25px;
    text-align: left;
    font-size: .875em;
    color: #000;
    display: inline-block;
}
.simul_intro-cta input {
    display: none; }
.simul_intro-cta label {
    cursor: pointer;
    width: 15px;
    height: 15px;
    background: #e5e5e5;
    position: absolute;
    top: 2.5px; left: 0;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}
.simul_intro-cta input:checked + label {
    background: #309bd9 url(./images/check.svg) no-repeat center center;
    background-size: 80%;
    border-color: #096397;
}
.simul_intro-cta a {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border-radius: 3px;
    margin-top: 30px;
    border: 1px solid #096397;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(#379fdb, #096397);
    box-shadow: inset 0 0 1px 1px #0e6ba1;
    font-weight: bold;
    letter-spacing: .03em;
    font-size: .875em;
}
.simul_intro-cta a:hover {
    background: linear-gradient(#379fdb, #1d7bb1);
}
.simul_intro-cta .info-danger {
    text-align: center;
}
.simul_intro-cta .info-danger p {
    color: #f05658;
    text-align: center;
    margin: 10px 0 0;
    padding: 0;
}
.simul_intro-cta .info-danger a {
    opacity: .6;
    user-select: none;
    cursor: not-allowed;
}

/* quando simulado ja foi iniciado */
.simul_intro-counter {
    background: transparent;
    margin-top: 15px;
    width: 568px;
    max-width: 100%;
    margin: 0 auto;
}    
.simul_intro-counter .simul_intro-cta {
    margin-top: 5px;
}
.simul_intro-counter .simul_intro-cta a {
    margin:20px 0;
}

/* tabela com rendimento do aluno */
.simul_intro-table {
    width: 768px;
    max-width: 100%;
    margin: 0 auto;
}
.table-row {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    flex-wrap: no-wrap;
    -webkit-flex-wrap: no-wrap;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.wrapper {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    flex-grow: 0;
    -webkit-flex-grow: 0;
}
.text-4,
.text-2,
.text {
    flex-grow: 1;
    -webkit-flex-grow: 1;
    align-items: center;
}
.text {
    padding-right: 20px;
    width: 180px;
    font-size: .875em;
}

/*
* Media queries: optimize for different screen widths.
*/
@media all and (max-width: 1100px) {
    .text-2 {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
    .text-2 div {
        flex-grow: 0;
        -webkit-flex-grow: 0;
        width: 100%;
    }
    .text-2 {
        width: 180px;
    } 
}
@media all and (max-width: 580px) {
    .text-4 {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
    .text-4 div {
        flex-grow: 0;
        -webkit-flex-grow: 0;
        width: 100%;
    }
    .text-4 {
        width: 180px;
    } 
}
@media all and (max-width: 320px) {
    .table-row {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
    .table-row div {
        flex-grow: 0;
        -webkit-flex-grow: 0;
        width: 100%;
    }
}
  
.table-row {
    border-bottom: 1px solid #d4d4d4;
    border-collapse: collapse;
    padding: 5px 10px;
}
.table-row .text-2 > div:first-child{
    text-align: left;
}
.table-row .text-2 > div:last-child{
    text-align: right;
}
.table-row.header {
    background-color: #e7f4f9;
    font-weight: bold;
    padding-top: 8px;
    padding-bottom: 8px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.table-row.danger {
    background-color: rgba(255, 0, 0, 0.29);
}
.table-row.header .text {
    width: 180px;
    font-weight: 600;
    font-style: italic;
    font-size: .9em;
}



/*TAREFA.PHP*/
.wc_ead_course_task .wc_ead_content {
    padding: 0;
}

.wc_ead_course_task header h1{
    font-size: 1.65em;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-distak);
}

.wc_ead_course_task header .course{
    display: inline-block;
    border-bottom: 4px solid #ccc;
    padding-bottom: 10px;
}

.wc_ead_course_task header .course span{
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
    color: #888;
}

.wc_ead_course_task header .course a{
    display: inline-block;
    vertical-align: middle;
    color: #555;
    font-size: 0.8em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    font-weight: bold;
}

.wc_ead_course_task header .course a:hover{
    color: #000;
    text-decoration: underline;
}

.wc_ead_course_task_media{
    background: #000;
}

.wc_ead_course_task_media_play{
    padding: 0 0.5%;
    width: 960px;
    max-width: 90%;
    margin: 0 auto;
}

.wc_ead_course_task_media_nav{
    width: 960px;
    max-width: 90%;
    margin: 30px auto 0 auto;
    text-align: center;
}

.wc_ead_course_task_media_nav .a,
.wc_ead_course_task_media_nav a{
    display: inline-block;
    width: 39%;
    margin: 0 0.5%;
    padding: 10px 20px;
    background: #222;
    color: #888;
    font-size: 0.8em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
}

.wc_ead_course_task_media_nav a:hover{
    background: #333;
    color: #fff;
}

.wc_ead_course_task_media_nav .a{
    width: 19%;
}

.wc_ead_course_task_media_nav .a.active:hover,
.wc_ead_course_task_media_nav .a.check:hover{
    background: #008068;
    color: #fff;
    cursor: pointer;
}

.wc_ead_course_task_media_nav .a.active{
    background: #008068;
    color: #ccc;
}

.wc_ead_course_task_media_play .task{
    text-align: right;
    margin-bottom: 20px;
    font-weight: bold;
}

.wc_ead_course_task_media_play .task span{
    font-size: 0.7em;
    color: #555;
    display: inline-block;
    margin-left: 10px;
}

.wc_ead_course_task_media_download{
    display: block;
    text-align: center;
}

.wc_ead_course_task_media_download a{
    display: inline-block;
    width: 100%;
    padding: 10px 30px;
    background: #222;

    color: #888;
    font-weight: bold;
    text-decoration: none;
}

.wc_ead_course_task_media_download a:hover{
    background: #333;
}
.wc_ead_course_task_content {
    margin: 30px 0 0;
}
.wc_ead_course_task_content .wc_ead_content {
    padding: 15px 0;
}
.wc_ead_course_task_content_content footer{
    margin-top: 30px;
    background: #fbfbfb;
    padding: 0.5%;
}

.wc_ead_course_task_content_content footer a{
    display: inline-block;
    width: 49%;
    margin: 0.5%;
    padding: 10px;
    background: #eee;
    font-size: 0.8em;
    text-align: center;
    text-decoration: none;
    color: #555;
}

.wc_ead_course_task_content_content footer a:hover{
    background: #ddd;
}

.wc_ead_course_task_content_sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,.2);
}

.wc_ead_course_task_content_sidebar .course_cover{
    width: 100%;
    margin-bottom: 15px;
}

.wc_ead_course_task_content_sidebar header{
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.wc_ead_course_task_content_sidebar header h1{
    display: inline-block;
    margin: 20px 0 0 0;
    padding-bottom: 10px;
    color: #555;
    font-weight: bold;
    border-bottom: 4px solid #ccc;
}

.wc_ead_course_task_content_sidebar_links a{
    display: block;
    width: 100%;
    padding: 10px;
    background: #eee;
    border-bottom: 1px solid #fff;
    font-size: 0.8em;
    text-decoration: none;
    color: #555;
}

.wc_ead_course_task_content_sidebar_links a:hover{
    background: #ddd;
}

.wc_ead_course_task_content_sidebar_links a.active{
    background: #008068;
    color: #fff;
}

/* LEGENDA ACIMA DAS QUESTOES */
.box-legend {
    margin-bottom: 25px;
}
.box-legend .legend {
    height: 15px;
    line-height: 15px;
    position: relative;
    display: block;
    margin: 2px 0;
    font-size: .75em;
    padding-left: 20px;
    font-weight: bold;
}
.box-legend .legend::before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0; left: 0;
    border-radius: 3px;
}
.box-legend .legend-success { color:#099769; }
.box-legend .legend-success::before { background: #099769; }

.box-legend .legend-error { color: #b13939; }
.box-legend .legend-error::before { background: #b13939; }

.box-legend .legend-infor { color: #096397; }
.box-legend .legend-infor::before { background: #096397; }

/* LISTA DE QUESTOES */
.box-questions .question {
    position: relative;
    margin: 15px 0 20px;
    padding: 15px 15px 25px;
    display: block;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
}
.box-questions .question:first-child {
    margin-top:0;
}
.box-questions .question .number {
    content: '';
    position: absolute;
    top: 24px;
    left: -46px;
    border-radius: 50%;
    height: 40px;
    width: 60px;
    text-align: right;
    line-height: 40px;
    font-size: 2em;
    font-weight: bold;
    color: #096397;
}
.box-questions .question--title {
    margin-bottom: 15px;
    font-size: 1.15em;
    color: #096397;
    font-weight: 400;
}
.box-questions .question--description {
    border-bottom: 1px solid #d0d0d0;
}
.box-questions .question--description p {
    font-size: .875em;
    color: #333;
    margin-bottom: 15px;
}
/* lista de opções */
.question--options {
    padding-top: 15px;
}
.question--options .option {
    position: relative;
    font-size: .875em;
    color: #000;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fbfbfb;
    margin-bottom: 5px;
    padding-left: 45px;
    min-height: 45px;
    list-style: none;
}
.question--options .option input {
    display: none; }
.question--options .option-label {
    position: absolute;
    top: 5px; left: 5px;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    background: #fff;    
    cursor: pointer;
    border: 1px solid #dedede;
    -webkit-box-shadow: 0 0 10px -2px #e3e3e3;
    -moz-box-shadow: 0 0 10px -2px #e3e3e3;
    box-shadow: 0 0 10px -2px #e3e3e3;
}
.question--options .option-label:hover,
.question--options input:checked + .option-label {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: #90d6ff;
    border-color: #096397;
}
.question--options .option-label.checked {
    background: #096397 url(./images/check.svg) no-repeat center center !important;
    background-size: 65% !important; 
    border-color: #096397;
}
/* imagens da questao e das opcoes */
.question--images,
.option--images {
    margin: 10px 0 0;
    padding-bottom: 10px;
}
.question--images {
    border-bottom: 1px solid #d0d0d0;
}
.question--images li,
.option--images li {
    width: calc(100% / 4 - 5px);
    display: inline-block;
    margin: 5px 2.5px;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
    background: #f9f9f9;
}
.option--images li {
    background: #ffffff;
}
.question--images a,
.option--images a {
    color: #333;
    text-decoration: none;
}
.question--images span,
.option--images span {
    display: block;
    font-size: .7em;
    margin-top: 5px;
}
.option--images span {
    font-size: .8em;
}
.question--images li:hover a,
.option--images li:hover a{
    color: #000;
}
.question--images li:hover {
    background: #ffffff;
}
.option--images li:hover {
    background: #f9f9f9;
}


/* peso de cada questao */
.question--weight {
    position: absolute;
    bottom: -10px;
    height: 25px;
    line-height: 25px;
    right: 10px;
    border-radius: 5px;
    background: #096397;
    color: #fff;
    padding: 0 10px;
    font-size: .65em;
    font-weight: bold;
    text-transform: uppercase;
}

/* FINALIZAR SIMULADO */
.box-questions .finalize {
    display: block;
    text-align: center;
}
.box-questions .finalize button {
    height: 55px;
    line-height: 55px;
    font-size: .9em;
    padding: 0 25px;
    background: #096397;
    color: #fff;
    letter-spacing: .03rem;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}
.box-questions .finalize button:hover {
    opacity: .7;}

/* LISTA DE QUESTÕES CORRIGIDAS */
.box-questions.finalize .option-label {
    pointer-events: none;
}
.box-questions.finalize .question .number,
.box-questions.finalize .question .question--title {
    font-weight: bold;
}

/* nao respondeu */
.box-questions.finalize .question {
    margin-top: 35px; }
.box-questions.finalize .question::after {
    position: absolute;
    top: -20px;
    left: 0;
    height: 20px;
    line-height: 20px;
    padding: 0 15px;
    width: 100%;
    font-size: .7em;
    text-transform: uppercase;
    text-align: center;
}
.box-questions.finalize .question.grey::after {
    background: #ddd;
    content: "VOCÊ NÃO RESPONDEU ESSA QUESTÃO"; }
.box-questions.finalize .question.green {
    border-color: #90f0bb; }
.box-questions.finalize .question.green::after {
    background: #90f0bb;
    content: "PARABÉNS - VOCÊ ACERTOU"; }
.box-questions.finalize .question.red {
    border-color: #ffaaaa; }
.box-questions.finalize .question.red::after {
    background: #ffaaaa;
    content: "VOCÊ ERROU"; }

.box-questions.finalize .question.grey .number,
.box-questions.finalize .question.grey .question--title {
    color: #9a9a9a; }

/* respondeu corretamente */
.box-questions.finalize .question.green .number,
.box-questions.finalize .question.green .question--title {
    color: #099769; }
.box-questions.finalize .option.green .option-label {
    background: #099769 url(./images/check.svg) no-repeat center center !important;
    background-size: 65% !important; 
    border-color: #099769 !important; }
.box-questions.finalize .option.green {
    font-weight: bold;
    color: #099769 !important; }

/* errou a resposta */
.box-questions.finalize .question.red .number,
.box-questions.finalize .question.red .question--title {
    color: #b13939; }
.box-questions.finalize .option.red .option-label {
    background: #b13939 url(./images/uncheck.svg) no-repeat center center !important;
    background-size: 65% !important; 
    border-color: #b13939 !important; }
.box-questions.finalize .option.red {
    font-weight: bold;
    color: #b13939 !important; }

/* resposta que deveria ser correta */
.box-questions.finalize .option.blue .option-label {
    background: #096397 url(./images/check.svg) no-repeat center center !important;
    background-size: 65% !important; 
    border-color: #096397 !important; }
.box-questions.finalize .option.blue {
    color: #096397 !important; }

/* explicação da resposta */
.question--explanation {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #77cdff;
    border-radius: 3px;
    background: #eff9ff;
}
.question--explanation .exp-title {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #77ccfc;
    font-size: .7em;
    font-weight: bold;
    opacity: .5;
}
.question--explanation .exp-description {
    font-size: .75em;
}
    

/* TIMER */
.side_timer p {
    font-size: 1.5em !important;
    font-weight: bold;
}    
.side_timer small {
    font-weight: 300;
    font-size: .5em;
    text-transform: uppercase;
}
.side_timer small:not(:last-of-type) {
    margin-right: 15px;
}

/* box timer */
.box-timer {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.box-timer.warning {
    background: #eb2323;
}



.wc_ead_course_task_media_nav_bar{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.wc_ead_course_task_media_nav_bar .a.active,
.wc_ead_course_task_media_nav_bar .a,
.wc_ead_course_task_media_nav_bar a{
    width: 100%;
    margin: 0;
    background: #222;
}

.wc_ead_course_task_media_nav_bar .a:hover{
    background: #333 !important;
}







/*FÓRUM*/
.wc_ead_course_task_forum_header{
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.wc_ead_course_task_forum_header h1{
    font-size: 1.8em;
    font-weight: bold;
    color: #555;
}

.wc_ead_course_task_forum_header p{
    font-size: 0.8em;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 4px solid #eee;
}

.wc_ead_course_task_forum_none{
    font-size: 1.2em;
    font-weight: 300;
    color: #ccc;
    text-align: center;
}

.wc_ead_course_task_forum_ticket{
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #eee;
}

.wc_ead_course_task_forum_ticket:last-child{
    margin-bottom: 0;
}

.wc_ead_course_task_forum_ticket_thumb{
    display: inline-block;
    width: 15%;
    padding-right: 30px;
    vertical-align: top;
}

.wc_ead_course_task_forum_ticket_thumb img{
    padding: 5px;
    background: #eee;
}

.wc_ead_course_task_forum_ticket_thumb.admin .thumb{
    background: #00B494;
}

.wc_ead_course_task_forum_ticket_content{
    display: inline-block;
    width: 85%;
    padding: 20px;
    background: #fbfbfb;
    vertical-align: top;
}

.wc_ead_course_task_forum_ticket_header{
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.wc_ead_course_task_forum_ticket_header h1{
    font-size: 1em;
    font-weight: 500;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 4px solid #eee;
}

.wc_ead_course_task_forum_ticket_header span{
    display: inline-block;
    vertical-align: top;
}

.wc_ead_course_task_forum_ticket_header .user{
    font-weight: bold;
}

.wc_ead_course_task_forum_ticket_header .status{
    font-size: 0.7em;
    margin-left: 10px;
}

.wc_ead_course_task_forum_ticket_content .htmlchars{
    padding: 0;
}

.wc_ead_course_task_forum_ticket_line{
    padding: 2px;
    margin-top: 20px;
    background: #fff;
}

.wc_ead_course_task_forum_response .wc_ead_course_task_forum_ticket{
    margin: 0;
    border: 0;
    margin-top: 30px;
    padding: 20px;
    background: #fff;
}

.wc_ead_course_task_forum_ticket_actions{
    display: block;
    width: 100%;
    text-align: right;
}

.wc_ead_course_task_forum_ticket_new header{
    margin-bottom: 20px;
}

.wc_ead_course_task_forum_ticket_new header h1{
    font-size: 1.8em;
    font-weight: bold;
    color: #555;
}

.wc_ead_course_task_forum_ticket_new header p{
    font-size: 0.8em;
    font-weight: 300;
    text-transform: uppercase;
}

.wc_ead_course_task_forum_ticket_actions span{
    display: inline-block;
    margin-top: 20px;
    margin-left: 10px;
}

.wc_ead_course_task_forum_ticket_new .text_editor{
    padding: 0 8px;
    background: #F5F5F5;
}

.wc_ead_course_task_forum_ticket_new .form_actions{
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: right;
}

.wc_ead_course_task_forum_ticket_new .form_actions img{
    width: 25px;
    display: none;
}

.wc_ead_student_task_ticket_closed{
    padding: 30px;
    background: #fbfbfb;
}

.wc_ead_student_task_ticket_closed h3{
    font-size: 2em;
    font-weight: 500;
}

.wc_ead_student_task_ticket_closed p{
    margin-top: 20px;
}

.wc_ead_student_task_ticket_closed a{
    color: #008068;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.wc_ead_student_task_ticket_closed_icon{
    font-size: 8em;
    text-shadow: 0 8px #fff;
}

.wc_ead_student_task_ticket_closed a:hover{
    color: #00B494;
}

.wc_ead_course_task_modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

.wc_ead_course_task_modal_content{
    position: relative;
    width: 640px;
    max-width: 90%;
    background: #fff;
    margin: auto;
}

.wc_ead_course_task_modal_content_close{
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 0.8em;
}

.wc_ead_course_task_modal_content_icon{
    font-size: 3em;
}

.wc_ead_course_task_modal_content header{
    line-height: 1;
    text-align: center;
    padding: 30px 10px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.wc_ead_course_task_modal_content .review{
    background: #096397;
}

.wc_ead_course_task_modal_content .reply{
    background: #008068;
}

.wc_ead_course_task_modal_content header h1{
    font-size: 1.6em;
    margin-bottom: 5px;
}

.wc_ead_course_task_modal_content_desc{
    padding: 20px;
}

.wc_ead_course_task_modal_content_desc label{
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.wc_ead_course_task_modal_content_desc label .span{
    display: block;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.wc_ead_course_task_modal_content_desc label select,
.wc_ead_course_task_modal_content_desc label textarea{
    resize: none;
    border: 2px solid #ccc;
    background-color: #fff;
    font-size: 1em;
}

.wc_ead_course_task_modal_content_desc .form_actions{
    text-align: right;
}

.wc_ead_course_task_modal_content_desc .form_actions img{
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    margin-top: -2px;
    display: none;
}


/*CERTIFICATION*/
.wc_ead_certificate{
    width: 3508px;
    position: relative;
    left: 0;
    top: 0;
    background: #fff;
}

.wc_ead_certificate_name{
    position: absolute;
    left: 1000px;
    top: 990px;
    font-size: 105px;
    font-weight: bold;
    line-height: 0;
    text-transform: uppercase;
}

.wc_ead_certificate_course{
    position: absolute;
    left: 1000px;
    top: 1330px;
    font-size: 105px;
    font-weight: bold;
    line-height: 0;
    text-transform: uppercase;
}

.wc_ead_certificate_document{
    position: absolute;
    left: 1000px;
    top: 1118px;
    font-size: 80px;
    font-weight: bold;
    line-height: 0;
    text-transform: uppercase;
    color: #555;
}

.wc_ead_certificate_workload{
    position: absolute;
    left: 1740px;
    top: 1550px;
    font-size: 80px;
    font-weight: bold;
    line-height: 0;
    text-transform: uppercase;
    color: #555;
}

.wc_ead_certificate_validate{
    position: absolute;
    left: 1000px;
    width: 2508px;
    bottom: 0;
    font-size: 30px;
    font-weight: bold;
    line-height: 0;
    text-transform: uppercase;
    color: #555;
    text-align: center;
    padding: 70px 0;
    color: #ccc;
}


.wc_ead_certificate_overload{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: #000;
}

.wc_ead_certificate_overload_box{
    display: block;
    color: #fff;
    text-align: center;
    margin: auto;
}

.wc_ead_certificate_overload_box p{
    font-size: 1em;
    font-weight: 500;
    margin-top: 15px;
    text-transform: uppercase;
}

/***********************************
######## MEDIA QUERIES EAD #########
***********************************/
@media(max-width: 66em){
    .wc_ead_content{
        width: 94%;
    }

    .wc_ead_home_student,
    .wc_ead_home_courses{
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }

    .wc_ead_home_student{
        margin: 0;
    }

    .wc_ead_course_module_class h1.row{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .wc_ead_course_module_class .row{
        width: 50%;
        text-align: center;
        border: none;
    }

    .wc_ead_course_module_class .views{
        display: none;
    }

    .wc_ead_course_task_media_nav .a,
    .wc_ead_course_task_media_nav a{
        width: 100%;
    }

    .wc_ead_course_task_content_content{
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .wc_ead_course_task_content_content footer a{
        width: 99%;
    }

    .wc_ead_course_task_content_sidebar{
        width: 100%;
    }

    .wc_ead_course_task_content_sidebar .course_cover{
        display: none;
    }
}

@media(max-width: 48em){
    .wc_ead_studend_orders h1.row,
    .wc_ead_studend_orders .row{
        width: 100%;
        text-align: center;
        border-bottom: 1px dotted #ccc;
        padding: 10px;
    }
}

@media(max-width: 44em){
    .wc_ead_course_task_forum_ticket_thumb{
        display: none;
    }

    .wc_ead_course_task_forum_ticket_content{
        width: 100%;
    }
}