﻿#wr-conteudo {
    padding: 2rem 0;
}
#courseDetails {
    display: flex;
    flex-direction: row;
    padding: 1rem 0;
}
#courseThumbnail {
    margin-right: 1rem;
}
#courseThumbnail img {
    border-radius: 10px;
}
#courseInfo {
    max-width: 650px;
}
#courseTitle h1 {
    font-size: 2rem;
}
#courseDescription {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
#courseDescription.show-more {
    max-height: none;
}
#courseTags {
    font-size: .8rem;
}
#courseTags span {
    font-weight: 600;
}
#courseTags ul {
    list-style: none;
    padding: 0;
    display: inline;
}
#courseTags li {
    display: inline;
}
#courseTags li:after {
    content: ",";
}
#courseCheckout {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
}
#courseCheckout .btn-primary {
    width: 100%;
    margin-bottom: 1rem;
}
#courseCheckout .btn-secondary {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 2rem;
}
#checkoutDetails {
    list-style: none;
    text-decoration: none;
    padding: 0;
}
#checkoutDetails li {
    margin-bottom: 1rem;
}
#checkoutDetails li i {
    margin-right: 10px;
}
#courseTeachers {
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 0px 5px;
}
.teacher-info {
    font-size: .9rem;
	text-decoration: underline;
	cursor: pointer;
}
#showMore {
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 1rem;
    display: block;
    color: #696969;
}
#showMore i {
    font-size: .8rem;
    margin-left: .5rem;
}
#courseCheckout.sticky-top {
    top: 8rem;
}
img {
    width: 100%;
    max-width: 100%;
}
.course-activities {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    margin-top: .5rem;
}
.course-activities-title {
    font-size: 1.2rem;
    font-weight: 600;
}
.course-activities-list {
    padding: 1rem .5rem 0;
}
.course-activity-item {
    margin-bottom: .6rem;
}
.course-activity-item-title {
    padding-left: .5rem;
}
.course-activity-item-duracao {
    margin-left: 1rem;
    margin-right: 1rem;
    min-width: fit-content;
    font-weight: 600;
    font-size: .9rem;
}
.course-activity-item-palestrante {
    font-weight: 600;
    font-size: .9rem;
    margin-left: 1.7rem;
}
#courseActivitiesList .course-activity-item .course-activity-details {
    display: flex;
    align-items: center;
}
#teacherDetails .modal-header {
    font-size: .8rem;
	background-color: #f6f7f9;
    border-bottom: none;
}
#teacherDetails .modal-footer {
    border-top: none;
}
#teacherDetails .modal-body .teacher-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: .5rem;
}
#teacherDetails .modal-body .teacher-details .teacher-thumbnail {
    margin-bottom: 1rem;
}
#teacherDetails .modal-body .teacher-details .teacher-thumbnail img {
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
}
#teacherDetails .modal-body .teacher-details .teacher-resume {
    width: 100%;
	margin-left: 1rem;
    margin-right: 1rem;
}
#teacherDetails .modal-body .teacher-details .teacher-resume p {
	font-size: 1.2rem;
    font-weight: 600;
}
#teacherDetails .modal-body .teacher-courses p {
    font-size: 1rem;
    padding: .5rem .5rem;
    font-weight: 600;
	margin-bottom: 0.5rem;
}
#teacherDetails .modal-body .teacher-courses .course-thumbnail img {
    width: 100%;
    max-width: 191px;
    border-radius: 10px;
    padding: .2rem;
}
.btn-favorite {
    border-radius: 50%;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    margin-left: .3rem;
}
@media (min-width: 992px) {
    #teacherDetails .modal-body .teacher-details {
        display: flex;
        justify-content: center;
        flex-direction: row;
        margin-bottom: .5rem
    }
}
@media(max-width: 768px) {
    #courseDetails {
        flex-direction: column;
    }
    #courseThumbnail {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    #courseCheckout {
        border-radius: 0;
        border: none;
        border-top: 1px solid #c7c7c7;
    }
}
@media (min-width: 1200px) {
    .colCheckout {
        max-width: 360px;
    }
}