@charset "utf-8";
.container .header .logo {
    position: relative;
    margin-bottom: 10px;
}

div#courses-content {
position: relative;
display: block;
float: left;
}
section#courses-wrapper {
    position: relative;
    display: flex;
    gap: 15px;
}

section#courses-wrapper.row {
    flex-direction: row;
    padding-right: 10px;
}

section#courses-wrapper.column {
    flex-direction: column;
    padding-right: 0px;
}

/* THIRD coursesass Margin Fix */
section#courses-wrapper #ci.third {
    margin-right: 0;
}

/*FROM LERANING CONTENT */
section#courses-wrapper a.cell {
    display: table !important;
    padding: 0;
    position: relative;
    font-size: 12px;
    height: 85px;
    border-radius: 2px;
}

section#courses-wrapper a.cell div {
    display: table-cell !important;
    padding: 0 3px 0 3px;
    width: 100%;
    height: 85px;
    vertical-align: middle;
}

section#courses-wrapper a.cell p {
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    line-height: 20px;
}

/*FROM LEARNING CONTENT*/

/*NEW 2025*/
section#courses-wrapper #intro {
    flex-basis: 30%;
}

section#courses-wrapper #intro #intro-wrapper {
    top: 10px;
}

section#courses-wrapper #intro #intro-blurb {
    border-top: 5px solid #cd4900;
    padding: 20px 30px;
}

section#courses-wrapper #intro #intro-blurb p {
    color: #333;
    font-size: 18px !important;
    font-family: roboto;
    font-weight: 100;
    line-height: 25px;
}

section#courses-wrapper #intro h1 {
    font-size: 40px;
    font-weight: bold;
    margin: 15px 0;
    font-family: roboto;
}

section#courses-wrapper #courses {
    flex-basis: 70%;
}

section#courses-wrapper #courses .group {
    border: 1px solid #cccccc;
    background-color: #fbfbfb;
    height: 50px;
    overflow: hidden;
}


section#courses-wrapper #courses .group:first-child {
    margin-top: 0;
}

section#courses-wrapper #courses .group .group-header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 13px;
    width: 100%;
    cursor: pointer;
}

section#courses-wrapper #courses .group .group-header:hover {
    background-color: #f7f2f0;
}

section#courses-wrapper #courses .group .group-content {
    margin-top: 45px;
}

section#courses-wrapper #courses .group h2 {
    position: relative;
    display: block;
    font-size: 22px;
line-height:24px;
    font-weight: normal;
    margin: 0;
    color: #5E5E5E;
width:90%;
    font-family: roboto;
 white-space: nowrap;         /* Forces the text onto a single line */
  overflow: hidden;            /* Hides the text that spills past the edge */
  text-overflow: ellipsis;     /* Appends the "..." automatically */
}

section#courses-wrapper #courses .group div.toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 13px;
    right: 10px;
    width: 23px;
    height: 23px;
    background-color: #cd4900;
    margin: 0;
    padding: 0;
}

section#courses-wrapper #courses .group div.toggle span {
    font-size: 23px;
    font-weight: 300;
    color: white;
    margin: 0;
    padding: 0;
    line-height: 15px;
    font-family: roboto;
}

section#courses-wrapper #courses .group ul.course-list {
    padding-left: 33px;
}

section#courses-wrapper #courses .group ul.course-list>li {
    padding-left: 7px;
    color: #005596;
    cursor: pointer;
}

section#courses-wrapper #courses .group ul.course-list>ul {
    padding-left: 25px;
    height: 0px;
    overflow: hidden;
}
section#courses-wrapper #courses .group ul.course-list>ul li {
padding-top:1px;
padding-bottom:1px;
}

section#courses-wrapper #courses .group ul.course-list>li::marker {
    content: "🡺";
    font-size: 12px;
    transition: transform 0.5s ease;
}

section#courses-wrapper #courses .group ul.course-list>li.down::marker {
    content: "🡾";
    transform: rotate(90deg);
    font-size: 12px;
}


section#courses-wrapper #courses .group .expand section#courses-wrapper #intro p {
    font-weight: 300;
    font-size: 18px;
    font-family: roboto;
}

section#courses-wrapper #courses .group ul div.subject-description {
    margin-bottom: 10px;
    padding: 15px 10px 10px 0px;
}

section#courses-wrapper #courses .group ul div.subject-description h3 {
    font-family: roboto;
    color: #5E5E5E;
    margin-bottom: 0;
}

section#courses-wrapper #courses .group ul div.subject-description p {
    font-family: roboto;
    color: #5E5E5E;
    margin: 5px 0 0 0;
}

section#courses-wrapper #courses .group p,
section#courses-wrapper #courses .group li {
    color: #333;
    font-size: 18px !important;
    font-family: roboto;
    font-weight: 100;
    line-height: 25px;
}

section#courses-wrapper div.assist {
    margin: 10px 0;
    padding: 5px 21px;
}

section#courses-wrapper div.assist p {
    color: white !important;
    font-size: 15px !important;
    font-style: italic;
    line-height: 25px;
}

section#courses-wrapper div.assist p a {
    color: white !important;
    text-decoration: underline;
}

.sticky {
    position: sticky;
}


/**/