/*********************************
6. Home
*********************************/

.home {
    width: 100%;
    height: 160px;
    background: #ffffff;
    border-bottom: solid 1px #edeff0;
}

.breadcrumbs_container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 13px;
    padding-left: 3px;
}

.breadcrumbs ul li {
    display: inline-block;
    position: relative;
}

.breadcrumbs ul li:not(:last-child)::after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 7px;
    margin-right: 4px;
    color: #384158;
}

.breadcrumbs ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #384158;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.breadcrumbs ul li a:hover {
    color: #14bdee;
}

/*********************************
7. Course
*********************************/

.course {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #FFFFFF;
}

.course_container {
    width: 100%;
}

.course_container > .card-header {
    padding: 5px 10px;
    background-color: #cefecb;
}

.course_title {
    font-family: 'Roboto Slab', serif;
    font-size: 27px;
    font-weight: 700;
    color: #384158;
}
.course_title i{
    color: #1c7430;
}

/*rating*/
.rating_r {
    margin-top: 0px;
}

.rating_r i::before {
    font-family: 'Font Awesome 5 Free';
    content: "\f5c0";
    font-weight: 900;
    font-style: normal;
    font-size: 14px;
    margin-right: 4px;
    color: #ecb80a;
}

.rating_r_1 i:first-child::before {
    content: "\f005";
}

.rating_r_2 i:first-child::before {
    content: "\f005";
}

.rating_r_2 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_3 i:first-child::before {
    content: "\f005";
}

.rating_r_3 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_3 i:nth-child(3)::before {
    content: "\f005";
}

.rating_r_4 i:first-child::before {
    content: "\f005";
}

.rating_r_4 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_4 i:nth-child(3)::before {
    content: "\f005";
}

.rating_r_4 i:nth-child(4)::before {
    content: "\f005";
}

.rating_r_5 i:first-child::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(3)::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(4)::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(5)::before {
    content: "\f005";
}

.leson-navigation{
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #e6f1df;
}
.navi-button{
    display: block;
    background-color: #1fe371;
    padding: 7px 10px;
    color: white;
    font-size: 16px;
}
.navi-button:hover{
    color: white;
    background-color: #39a0ee;
}

.course_image {
    /*margin-top: 21px;*/
    width: 100%;
}
.tab-panel-header{
    /*width: 100%;*/
    height: 100%;
    border: 1px solid #d9f9cd;
    padding-bottom: 20px;
    /*box-shadow: 1px 1px #8fc13e;*/
}
.tab-header-content{
    padding: 15px;
    font-size: 16px;
    color: #0c5460;
    font-weight: 500;
    line-height: 1.5;
}

.course_image img {
    max-width: 300px;
    width:inherit;
    padding: 15px;
}

.doc-lesson{
    margin-top: 20px;
    padding-top: 10px;
    border-top: 2px solid #feeebd;
}
.link-lesson{
    font-size: 16px;
    font-weight: 700;
    color: #db5246;
    padding: 10px 10px
}

.tab {
    height: 40px;
    background: #f2f4f5;
    font-size: 16px;
    color: #384158;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    /*text-transform: uppercase;*/
    cursor: pointer;
    margin-top: 20px;
    margin-right: 1px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tab.active,
.tab:hover {
    background: #14bdee;
    color: #FFFFFF;
}

.tab_panels {

}

.tab_panel {
    display: none !important;
    width: 100%;
    height: 100%;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    border: solid 1px #d9f9cd;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    /*box-shadow: 1px 1px #8fc13e;*/
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab_panel.active {
    display: block !important;
}

.tab_panel_title {
    font-size: 20px;
    font-weight: 700;
    color: #384158;
    text-align: center;
    padding-bottom: 20px;
}

.tab_panel_text {
    margin-top: 10px;
}

.tab_panel_text p {
    font-size: 16px;
    font-weight: 400;
    color: #2e3133;
    line-height: 1.75;
    text-align: justify;
}
.tab_panel_text p img{
    max-width: 100%;
    height: auto;
}
.tab_panel_taget{
    margin-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #2e3133;
    line-height: 1.75;
    text-align: justify;
    font-style: italic;
}

.tab_panel_subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #384158;
}

.tab_panel_bullets {
    margin-top: 9px;
}

.tab_panel_bullets li {
    position: relative;
    padding-left: 27px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #76777a;
}

.tab_panel_bullets li:not(:last-child) {
    margin-bottom: 2px;
}

.tab_panel_bullets li::before {
    display: block;
    position: absolute;
    top: 9px;
    left: 1px;
    width: 7px;
    height: 7px;
    background: #76777a;
    content: '';
    border-radius: 50%;
}

.tab_panel_faq {
    margin-top: 51px;
}

.tab_panel_2 {
    padding-bottom: 10px;
    padding-top: 0px;
}

.dropdowns {
    margin-top: 17px;
}

.dropdown_item {
    padding-top: 15px;
    padding-bottom: 25px;
    cursor: pointer;
}
/*.dropdown_item:nth-child(2){*/
    /*border-bottom: 2px solid #feeebd;*/
/*}*/
.dropdown_item
.dropdown_item_title {
    font-family: 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1c7430;
    padding: 5px;
    /*padding-top: 10px;*/
    background-color: rgba(233,249,198,0.29);
}
.dropdown_item_title:hover{
    color: #FF6347;
    background-color: #feeebd;
}

.dropdown_item_title span {
    font-size: 18px;
}

.dropdown_item_title::before {
    /*position: absolute;*/
    top: 1px;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    content: '\f044';
    font-weight: 900;
    font-size: 18px;
    color: #1c7430;
    padding-right: 5px;
}

.dropdown_item_title::after {
    position: absolute;
    top: -10px;
    right: 0;
    font-family: 'Font Awesome 5 Free';
    content: '\f0da';
    font-weight: 900;
    font-size: 30px;
    color: #8fc13e;
    padding: 5px;
}

.dropdown_item.active > .dropdown_item_title::after {
    content: '\f0d7';
}

.dropdown_item_text {
    margin-top: 10px;
}

.dropdown_item_text p {
    font-size: 16px;
    font-weight: 400;
    color: #76777a;
    line-height: 1.75;
}

.tab_panel_3 {
    padding-bottom: 42px;
}
/**/
.course-info-container {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 1px 2px 5px #c9f9bd;
    overflow: hidden;

}
.course-info-session{
    width: 100%;
    padding: 10px;
}
.course-info-session:not(:last-child){
    margin-bottom: 20px;
}

/*review*/
.review_rating {
    display: inline-block;
    text-align: center;
    padding-left: 20px;
    padding-top: 20px;
    vertical-align: top;
}

.review_rating_num {
    font-size: 40px;
    line-height: 0.75;
    font-weight: 900;
    color: #384158;
}

.review_rating_stars {
    margin-top: 27px;
    margin-left: 3px;
}

.review_rating_stars .rating_r i::before {
    color: #ffc80a;
    font-size: 18px;
}

.review_rating_text {
    font-size: 16px;
    color: #b5b8be;
    margin-top: 12px;
}

.review_rating_bars > .d-flex {
    padding: 5px;
}

.review_rating_bars .review_rating_star {
    padding: 5px;
    padding-right: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1c00cf;
}

.review_rating_bars .flex-grow-1 {
    background-color: #e8e9db;
}

.review_rating_bars .flex-grow-1 div {
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: #cceaa4;
    text-align: center;
    color: #1f61be;
}

/*comment*/
.comments_container {
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.comment_item {
    border-bottom: solid 1px #e5e5e5;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 16px;
}

.comment_image div {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.comment_image div img {
    max-width: 100%;
}

.comment_content {
    width: 100%;
    padding-left: 20px;
    margin-top: -7px;
}

.comment_author a {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 700;
    color: #384158;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.comment_author a:hover {
    color: #14bdee;
}

.comment_time {
    padding-top: 3px;
}

.comments_container .rating_r {
    margin-top: 3px;
    margin-left: 5px;
}

.comments_container .rating_r i::before {
    color: #ffc80a;

}

.comment_text {
    margin-top: 12px;
}

.comment_extras {
    margin-top: 13px;
}

.comment_reply {
    margin-left: 35px;
}

.comment_extras a {
    font-size: 14px;
    font-weight: 400;
    color: #76777a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.comment_extras a:hover {
    color: #14bdee;
}

.comment_extras a span {
    margin-left: 3px;
}

.comment_extras .comment_likes {
    color: #ffa53b;
    cursor: pointer;
}

.comment_extras .comment_likes:hover {
    color: #ff873f;
}

.comment_reply a i {
    color: #14bdee;
}

.comments_list li ul {
    padding-left: 99px;
}

.add_comment_container {
    margin-top: 24px;
    padding: 10px;
    background-color: #ddfecc;
}

.add_comment_title {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 700;
    color: #384158;
    padding-bottom: 10px;
}

.add_comment_text a {
    color: #14bdee;
    text-decoration: underline;
}

.review-title {
    color: #1c7430;
    font-weight: 500;
    font-size: 16px;
}

.btn-send-review {
    color: #edfee3;
    font-weight: 500;
    background-color: #ffa139;
}

.btn-send-review:hover {
    color: #fefdeb;
    background-color: #ff8d27;
}

.reply-form {
    margin-top: 5px;
    padding: 10px;
    background-color: #ebfed4;
}

.comments_container > .comments_list > li:nth-child(odd) > .comment_item {
    background-color: #f8f9eb;
}

.container-course-popular {
    padding: 15px;
    box-shadow: 1px 2px 5px #c9f9bd;
}

.container-course-popular .card-header {
    background-color: #f8f9eb;
    color: #1c00cf;
    font-weight: 500;
    font-size: 18px;
    margin: -15px;
    margin-bottom: 15px;
}
#course-popular{
    margin-bottom: -10px;
}
#course-popular img {
    width: 120px;
    height: 100px;
    object-fit: fill;
    border-radius: 3px;
    padding-left: 2px;
}

#course-popular .course-popular-content {
    padding: 5px;
}

#course-popular .course-popular-content .course-name-popular {
    color: #1c00cf;
    font-size: 16px;
    font-weight: 500;
}

#course-popular .course-popular-content .course-des-popular p {
    color: black;
    line-height: 1.4;
}

#course-popular .course-popular-content .course-price-popular {
    color: #ff8843;
    line-height: 1.4;
}

/**/
.owl-nav {
    top: -85px;
}

.owl-prev {
    width: 15px;
    height: 70px;
    position: absolute;
    left: -12px;
    display: block !important;
    border: 0px solid black;
}

.owl-next {
    width: 15px;
    height: 70px;
    position: absolute;
    right: -20px;
    display: block !important;
    border: 0px solid black;
}

.owl-prev i, .owl-next i {
    transform: scale(2, 4);
    color: #29a329;
    /*width: 30px;*/
}

/*********************************
8. Sidebar
*********************************/
.sidebar {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    box-shadow: 1px 2px 5px #888888;
}
.sidebar:last-child {
    margin-bottom: 0;

}

.sidebar_section:not(:last-child) {
    margin-bottom: 30px;
}

.sidebar_section-facebook {
    height: 440px;
    width: 100%;
    overflow: hidden;
}

.sidebar_section_title {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 700;
    color: #384158;
    line-height: 0.75;
    padding-top: 5px;
    padding-bottom: 10px;
    border-bottom: 2px solid #feeebd;
}

.sidebar_feature {
    margin-top: 5px;
}

.course_price {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 400;
    color: #14bdee;
}

.feature_list > .d-flex {
    padding-top: 5px;
    padding-bottom: 5px;
}

.feature:not(:last-child) {
    margin-bottom: 21px;
}

.feature_title_iconVN {
    position: relative;
    font-size: 20px;
    color: #0c5460;
}

.feature_title_iconVN img {
    margin-right: 10px;
}

.feature_title-course {
    font-size: 18px;
    color: #0c5460;
}

.feature_title-course-right {
    font-size: 16px;
    text-align: right;
    color: #ee9e41;
}

.feature_title-course i {
    font-size: 18px;
    color: #ee9e41;
    margin-right: 10px;
}

.sidebar_teacher {
    margin-top: 20px;
}

.sidebar_teacher img {
    width: 40%;
    height: 120px;
    border-radius: 3px;
}

.teacher_infor {
    padding-left: 15px;
}

.teacher_position {
    font-size: 15px;
    color: #00a23f;
    /*margin-top: 4px;*/
    /*line-height: 1.5;*/
}

.teacher_name {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: #14bdee;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    margin-top: -10px;
}

.teacher_meta_container {
    margin-top: 6px;
    color: #00a23f;
}

.teacher_meta_container .d-flex {
    border-bottom: 1px dotted #feeebd;
    margin-top: 2px;
    margin-bottom: 2px;
}

.teacher_meta_container i {
    color: #fba846;
}

.teacher_meta:not(:last-child) {
    margin-bottom: 9px;
}

.teacher_meta_title,
.teacher_meta_text span {
    font-size: 14px;
    font-weight: 400;
    color: #00a23f;
}

.teacher_meta_text span {
    margin-right: 4px;
}

.teacher_meta_text i {
    color: #14bdee;
}

.teacher_info {
    margin-top: 17px;
    color: #2e7f4b;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    font-style: italic;
    font-weight: 500;
}

.sidebar_latest {
    margin-top: 20px;
}

.latest {
    cursor: pointer;
}

.latest:not(:last-child) {
    margin-bottom: 20px;
}

.sidebar_section_facebook {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 700;
    color: #384158;
    line-height: 0.75;
    padding: 10px;
    padding-bottom: 20px;
}

.latest_image {
    padding-top: 5px;
    /*overflow: hidden;*/
}

.latest_image img {
    width: 120px;
    height: 90px;
    border-radius: 3px;
}

.latest_content {
    padding-left: 15px;
    margin-top: -4px;
}

.latest_title {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    font-weight: 700;
    color: #383749;
    line-height: 1.625;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.latest_title:hover {
    color: #14bdee;
}

.latest_des > p {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    color: #2e3133;
    line-height: 1.4;
    text-align: justify;
}

.latest_price {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 700;
    color: #fb8822;
    /*line-height: 0.75;*/
    margin-top: 10px;
}

.rating {
    border: none;
    margin: 0px;
    float: left;
}

.rating > input {
    display: none;
}

.rating.star > label {
    color: #78e2fb;
    margin: 1px 10px 0px 0px;
    background-color: #ffffff;
    border-radius: 0;
    height: 36px;
    float: right;
    width: 44px;
    border: none;
}

fieldset.rating.star > label:before {
    margin-top: 0;
    padding: 0px;
    font-size: 36px;
    font-family: FontAwesome;
    display: inline-block;
    content: "\2605";
    position: relative;
    top: -9px;
}

.rating > label:before {
    margin-top: 2px;
    padding: 5px 12px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
}

.rating.star > label {
    background-color: transparent !important;
}

.rating > label {
    color: #fff;
    margin: 1px 11px 0px 0px;
    background-color: #78e2fb;
    border-radius: 2px;
    height: 16px;
    float: right;
    width: 16px;
    border: 1px solid #c1c0c0;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label {
    background-color: red !important;
    cursor: pointer;
}

/* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label {
    background-color: red !important;
    cursor: pointer;
}

.rating.star:not(:checked) > label:hover, /* hover current star */
.rating.star:not(:checked) > label:hover ~ label {
    color: #ff8d27 !important;
    background-color: transparent !important;
    cursor: pointer;
}

/* hover previous stars in list */

.rating.star > input:checked + label:hover, /* hover current star when changing rating.star */
.rating.star > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating.star > input:checked ~ label:hover ~ label {
    color: #ff8d27 !important;
    cursor: pointer;
    background-color: transparent !important;
}

.star_rating {
    margin: 0 auto;
    border: 1px solid #ff0000;
    padding: 3px 30px 72px 35px;
    box-shadow: 0 0 15px red;
    margin-top: 2%;
    border-radius: 14px;
}

.sidebar_categories {
    /*margin-top: 16px;*/
}

.sidebar_categories ul li {
    position: relative;
    width: 100%;
    height: 51px;
}

.sidebar_categories ul li:not(:last-of-type) {
    border-bottom: solid 1px #e5e5e5;
}

.sidebar_categories ul li a {
    /*display: block;*/
    position: relative;
    font-size: 18px;
    color: #00a23f;
    font-weight: 700;
    line-height: 51px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.sidebar_categories ul li a::before {
    display: inline-block;
    position: relative;
    font-family: 'FontAwesome';
    /*content: '\f101';*/
    margin-right: 4px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.sidebar_categories ul li:hover a,
.sidebar_categories ul li:hover a::before {
    color: #14bdee;
}

.form-practice{
    padding: 20px 0px 20px 0px;
    border-bottom: 2px solid #feeebd;
}
.form-practice:last-child{
    border-top: 2px solid #feeebd;
}
.form-practice-label{
    font-size: 16px;
    font-weight: 700;
    color: #db5246;
}
.login-do-practice{
    font-size: 14px;
    font-weight: 400;
    margin-right: 25px;
    padding: 2px 5px;
    color: red;
    border: 1px solid #d1f1a9;
    border-radius: 5px;
}
.login-do-practice:hover{
    color: white;
    background-color: #8fc13e;
}
