/*********************************
6. Home
*********************************/

.home {
    width: 100%;
    height: 130px;
    background: #ffffff;
    border-bottom: solid 1px #edeff0;
}

.breadcrumbs_container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 5px;
    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: 15px;
    padding-bottom: 15px;
    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: 1.4rem;
    font-weight: 700;
    color: #384158;
}

.container-course-popular {
    margin-top: 15px;
}

/*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";
}

.course_image_detail img {
    width: 100%;
    height: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.course_tabs_container {
    width: 100%;
    margin-top: 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-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: 25px;
    /*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-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #384158;
    text-align: center;
    margin-bottom: 15px;
}

.tab_panel_text {
    margin-top: 10px;
}

.tab_panel_text p {
    font-size: 17px;
    font-weight: 400;
    color: #2e3133;
    line-height: 1.75;
    text-align: justify;
}

.tab_panel_taget {
    margin-left: 10px;
    font-size: 1.0rem;
    font-weight: 400;
    color: #2e3133;
    line-height: 1.75;
    text-align: justify;
    font-style: italic;
}

.tab_panel_section {
    margin-top: 17px;
}

.tab_panel_subtitle {
    font-size: 1.0rem;
    font-weight: 700;
    color: #384158;
}

.tab_panel_bullets {
    margin-top: 9px;
}

.tab_panel_bullets li {
    position: relative;
    padding-left: 27px;
    font-size: 1.0rem;
    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;
}

.elements_accordions {
    margin-top: 34px;
}

.accordion_container:not(:last-child) {
    margin-bottom: 12px;
}

.accordion {
    width: 100%;
    padding-left: 38px;
    cursor: pointer;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.accordion div {
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 400;
    color: #384158;
}

.accordion::before {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1px;
    left: 0;
    height: 100%;
    font-family: 'FontAwesome';
    content: '\f105';
    font-size: 30px;
    color: #384158;
    font-weight: 400;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.accordion.active::before {
    content: '\f107';
}

.accordion_panel {
    padding-right: 8px;
    padding-left: 38px;
    padding-top: 9px;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion.active + .accordion_panel {
    margin-bottom: 20px;
}

.accordion_panel p {
    font-size: 16px;
    font-weight: 400;
    color: #76777a;
    line-height: 1.75;
}

.tab_panel_2 {
    padding-bottom: 10px;
}

.dropdowns {
    margin-top: 17px;
}

.dropdowns li ul {
    max-height: 0;
    padding-left: 30px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.dropdowns li {
    position: relative;
}

.dropdowns li.has_children > .dropdown_item {
    cursor: pointer;
}

.dropdown_item {
    padding-top: 26px;
    padding-bottom: 25px;
}

.dropdowns li:not(:last-child) .dropdown_item {
    border-bottom: solid 1px #e5e5e5;
}

.dropdown_item_title {
    font-family: 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #384158;
    padding-left: 24px;
    padding-top: 10px;
}

.dropdown_item_title span {
    font-size: 18px;
}

.dropdown_item_title::before {
    /*position: absolute;*/
    top: 1px;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0a4';
    font-size: 18px;
    color: #007bff;
    opacity: 0.65;
}

.has_children > .dropdown_item > .dropdown_item_title::after {
    position: absolute;
    top: -10px;
    right: 0;
    font-family: 'FontAwesome';
    content: '\f105';
    font-size: 30px;
    font-weight: 400;
    color: #384158;
}

.has_children.active > .dropdown_item > .dropdown_item_title::after {
    content: '\f107';
}

.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;
}

.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;
    margin-bottom: -10px;
    background-color: #ddfecc;
}

.add_comment_title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    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 .course-popular-container{
    height: 120px;
    padding: 0px;
}
#course-popular .course-popular-container img {
    width: 120px;
    height: 90px;
    border-radius: 3px;
    float: left;
    margin-right: 7px;
}

#course-popular .course-popular-container .course-popular-content {
    padding: 7px;
}

#course-popular .course-popular-content .course-name-popular {
    color: #1c00cf;
    font-size: 1.0rem;
    font-weight: 500;
}
#course-popular .course-popular-content .course-des-popular{
    height: 60px;
    overflow: hidden;
}
#course-popular .course-popular-content .course-des-popular p {
    color: black;
    line-height: 1.4;
}

#course-popular .course-price-popular {
    color: #fd2821;
    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: 15px;
    padding-bottom: 15px;
    box-shadow: 1px 2px 5px #888888;
    overflow: hidden;

}

.sidebar_section:not(:last-child) {
    margin-bottom: 30px;
}

.sidebar_section-facebook {
    height: 440px;
    width: 100%;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -15px;
}

.sidebar_section_title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    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 span{
    font-size: 1.0rem;
}

.feature_title_iconVN img {
    margin-right: 10px;
}

.feature_title-course {
    font-size: 1.0rem;
    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: 80px;
    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: 0.9rem;
    line-height: 1.7;
    text-align: justify;
    font-style: italic;
    font-weight: 500;
}

.sidebar_latest {
    margin-top: 10px;
}

.latest {
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidebar_section_facebook {
    font-family: 'Roboto Slab', serif;
    font-size: 21px;
    font-weight: 700;
    color: #384158;
    line-height: 0.75;
    padding: 10px;
    border-bottom: 2px solid #feeebd;
}

.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;
}

.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;
}
.top-left {
    position: absolute;
    top: 0px;
    left: 0px;
}
