div.dashboard-v2 .academy .text {
    color: var(--text-secondary);
    font-size: 15.4px;
    line-height: 1.2;
}

/* STEP-BUBBLES */

div.dashboard-v2 .academy .step-bubbles {
    justify-content: left;
    margin: 24px 0px;
    flex-wrap: wrap;
    align-items: start;
    overflow: clip;
}

div.dashboard-v2 .academy .lms-card.collapsed .step-bubbles {
    display: none;
}

div.dashboard-v2 .academy .step-bubbles .bubble {
    width: 295px;
    height: 170px;
    margin: 36px 0 30px;
    -webkit-transition : color 100ms ease-out;
    -moz-transition : color 100ms ease-out;
    -o-transition : color 100ms ease-out;
    transition : color 100ms ease-out;
    color: var(--accent-blue);
    border-color: var(--border);
    padding: 5px 30px;
    font-weight: normal;
    text-transform: none;
}

div.dashboard-v2 .academy .step-bubbles .bubble:after {
    width: 100%;
    left: -50%;
}

div.dashboard-v2 .academy .step-bubbles .bubble:last-child:after {
    display: block;
}

div.dashboard-v2 .academy .step-bubbles .bubble.active {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

div.dashboard-v2 .academy .step-bubbles .bubble.completed {
    color: var(--success);
    border-color: var(--success);
}

div.dashboard-v2 .academy .step-bubbles .bubble:hover {
    color: var(--text);
}

div.dashboard-v2 .academy .step-bubbles .bubble:before {
    border: 2px solid var(--accent-blue-dark);
    transform: translateX(-50%);
    -webkit-transition : color 100ms ease-out, background-color 100ms ease-out;
    -moz-transition : color 100ms ease-out, background-color 100ms ease-out;
    -o-transition : color 100ms ease-out, background-color 100ms ease-out;
    transition : color 100ms ease-out, background-color 100ms ease-out;
}

div.dashboard-v2 .academy .step-bubbles .bubble.active:before {
    border-color: var(--primary-orange);
}

div.dashboard-v2 .academy .step-bubbles .bubble:hover:before {
    background-color: var(--accent-blue-dark);
}

div.dashboard-v2 .academy .step-bubbles .bubble.active:hover:before {
    background-color: var(--primary-orange);
}

div.dashboard-v2 .academy .step-bubbles .bubble.completed:hover:before {
    color: var(--text);
    background-color: var(--success);
    border-color: var(--success);
}

div.dashboard-v2 .academy .step-bubbles .bubble.completed:before {
    background-color: var(--background);
    border-color: var(--success);
    color: var(--success);
}

div.dashboard-v2 .academy .step-bubbles .bubble:after {
    background-color: var(--accent-blue-dark);
}

div.dashboard-v2 .academy .step-bubbles .bubble.active:after {
    background-color: var(--primary-orange);
}

div.dashboard-v2 .academy .step-bubbles .bubble.completed:after {
    background-color: var(--success);
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card {
    padding: 66.66% 0 0 0;
    border: 2px solid;
    border-color: inherit;
    cursor: pointer;
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card .thumbnail {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card .card-content {
    background-color: var(--background-overlay);
    color: var(--white);
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card .card-content .name {
    font-size: 1.2em;
    font-weight: 600;
    flex: 1;
    padding: 6px;
    text-align: center;
    justify-content: center;
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card .card-content .info {
    min-height: 40px;
    text-align: center;
}

/* OVERVIEW */

div.dashboard-v2 .academy .overview .overview-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border: 2px solid var(--primary-orange);
    background-color: var(--primary-orange);
    background-size: cover;
    background-position: center;
}

div.dashboard-v2 .academy .overview .overview-text {
    padding-left: 16px;
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card .check-icon-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: var(--background-overlay);
    color: var(--success);
    justify-content: center;
}

div.dashboard-v2 .academy .step-bubbles .bubble .competency-path-card .check-icon-container i {
    font-size: 124px;
}

/* ACADEMY LEARNING PATH */
div.dashboard-v2 .academy .categories {
    min-height: 100vh;
}

div.dashboard-v2 .academy .categories .category {
    padding: 16px;
}

div.dashboard-v2 .academy .categories .category .lms-card {
    position: relative;
    -webkit-transition : max-height 500ms ease-out;
    -moz-transition : max-height 500ms ease-out;
    -o-transition : max-height 500ms ease-out;
    transition : max-height 500ms ease-out;
}

div.dashboard-v2 .academy .categories .category .lms-card.collapsed {
    max-height: 55px;
}

div.dashboard-v2 .academy .categories .category .lms-card.collapsed:hover {
    background-color: var(--card-item-focused);
}

div.dashboard-v2 .academy .categories .category .lms-card.collapsed .category-description {
    display: none
}

div.dashboard-v2 .academy .categories .category .lms-card.collapsed .category-name {
    margin: 0px;
}