/* This is the main stylesheet for all the CSS within this plugin */

/*### My Course Dropdown Widget CSS ###*/
.llms-courses-dropdown {
    position: relative;
}
/* Icon CSS */
.llms-courses-dropdown__icon {
    cursor: pointer;
}
/* Icon CSS */

/* Content CSS */
.llms-courses-dropdown__content {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    z-index: 9999;
    width: 426px;
    top: 52px;
    -webkit-transform: translateY(-10px) translateX(-50%);
    transform: translateY(-10px) translateX(-50%);
    left: 50%;
    border-top: 6px solid var(--e-global-color-a75a058);
    transition: .5s;
}
.llms-courses-dropdown:hover .llms-courses-dropdown__content {
    display: block;
}
.llms-courses-dropdown__content:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: -17px;
    right: 50%;
    transform: translateX(50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--e-global-color-a75a058);
}
/* Content CSS */

/* Footer CSS */
.llms-courses-dropdown__footer{
    background-color: var(--e-global-color-51a985e);
    padding: 20px 20px 20px 20px;
    text-align: center;
}
.llms-courses-dropdown__button-link {
    color: #ffffff;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    background-image: linear-gradient(180deg, var(--e-global-color-9534cd2) 0%, var(--e-global-color-a75a058) 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    border-style: none;
    border-radius: 0px 0px 0px 0px;
    padding: 13px 24px 11px 24px;
    display: inline-block;
}
.llms-courses-dropdown__button-link:hover {
    color: #ffffff;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--e-global-color-a75a058) 0%, var(--e-global-color-9534cd2) 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
/* Footer CSS */
/*### End of My Course Dropdown Widget CSS ###*/

/*### My Favorites Dropdown Widget CSS ###*/
.llms-favorites-dropdown {
    position: relative;
}
/* Icon CSS */
.llms-favorites-dropdown__icon {
    cursor: pointer;
}
/* Icon CSS */

/* Content CSS */
.llms-favorites-dropdown__content {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    z-index: 9999;
    width: 426px;
    top: 52px;
    -webkit-transform: translateY(-10px) translateX(-50%);
    transform: translateY(-10px) translateX(-50%);
    left: 50%;
    border-top: 6px solid var(--e-global-color-a75a058);
    transition: .5s;
}
.llms-favorites-dropdown:hover .llms-favorites-dropdown__content {
    display: block;
}
.llms-favorites-dropdown__content:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: -17px;
    right: 50%;
    transform: translateX(50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--e-global-color-a75a058);
}
/* Content CSS */

/* Footer CSS */
.llms-favorites-dropdown__footer{
    background-color: var(--e-global-color-51a985e);
    padding: 20px 20px 20px 20px;
    text-align: center;
}
.llms-favorites-dropdown__button-link {
    color: #ffffff;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    background-image: linear-gradient(180deg, var(--e-global-color-9534cd2) 0%, var(--e-global-color-a75a058) 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    border-style: none;
    border-radius: 0px 0px 0px 0px;
    padding: 13px 24px 11px 24px;
    display: inline-block;
}
.llms-favorites-dropdown__button-link:hover {
    color: #ffffff;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--e-global-color-a75a058) 0%, var(--e-global-color-9534cd2) 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
/* Footer CSS */
/*### End of My Favorites Dropdown Widget CSS ###*/

/*### LMS Notifications Dropdown Widget CSS ###*/
.llms-notification-dropdown {
    position: relative;
}
/* Icon CSS */
.llms-notification-dropdown__icon {
    cursor: pointer;
}
.llms-notification-dropdown__icon-image {
    width: 15px;
}
.llms-notification-dropdown__icon-badge {
    position: absolute;
    font-size: 10px;
    line-height: 10px;
    height: 16px;
    min-width: 16px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-weight: 600;
    top: -2px;
    right: -8px;
    background: var(--e-global-color-accent);
    padding: 4px;
    border-radius: 100%;
}
/* Icon CSS */

/* Content CSS */
.llms-notification-dropdown__content {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    z-index: 9999;
    width: 540px;
    top: 52px;
    -webkit-transform: translateY(-10px) translateX(-80%);
    transform: translateY(-10px) translateX(-80%);
    left: 50%;
    border-top: 6px solid var(--e-global-color-a75a058);
    transition: .5s;
}
.llms-notification-dropdown:hover .llms-notification-dropdown__content {
    display: block;
}
.llms-notification-dropdown__content:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: -17px;
    right: 19.5%;
    transform: translateX(19.5%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--e-global-color-a75a058);
}
.llms-notification-dropdown__list {
    max-height: 350px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 20px 20px;
}
/* Content CSS */

/* Footer CSS */
.llms-notification-dropdown__footer{
    background-color: var(--e-global-color-51a985e);
    padding: 20px 20px 20px 20px;
    text-align: center;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.llms-notification-dropdown__button-link {
    color: #ffffff;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    background-image: linear-gradient(180deg, var(--e-global-color-9534cd2) 0%, var(--e-global-color-a75a058) 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    border-style: none;
    border-radius: 0px 0px 0px 0px;
    padding: 13px 24px 11px 24px;
    display: inline-block;
}
.llms-notification-dropdown__button-link:hover {
    color: #ffffff;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--e-global-color-a75a058) 0%, var(--e-global-color-9534cd2) 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
.llms-notification-dropdown__mark-read .llms-notification-dropdown__button-text {
    cursor: pointer;
    font-family: var(--e-global-typography-secondary-font-family);
  font-size: 15.3px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--e-global-color-9534cd2);
}
/* Footer CSS */

/* ###################### THESE CSS NEED TO LLMS ADDONS PLUGINS  ###################### */
.llms-notifications-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.llms-notifications-card-list__icon {
    width: 90px;
    flex-shrink: 0;
    margin-top: 8px;
}
.llms-notifications-card-list__icon .llms-svg-icon {
    border-width: 4px;
    border-style: solid;
    border-radius: 100%;
    padding: 15px;
    width: 90px;
    height: 90px;
}
.llms-notifications-card-list__icon img,
.llms-notifications-card-list__icon svg {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.notification-type-quiz-awaiting-review .llms-svg-icon {
    border-color: #2295FF !important;
}
.notification-type-quiz-awaiting-review .llms-svg-icon svg path {
    fill: #243C56 !important;
}

.notification-type-quiz-graded .llms-svg-icon {
    border-color: #F77F00 !important;
}
.notification-type-quiz-graded .llms-svg-icon svg path {
    fill: #DE4B1B !important;
}

.notification-type-quiz-passed .llms-svg-icon {
    border-color: #2295FF !important;
}
.notification-type-quiz-passed .llms-svg-icon svg path {
    fill: #243C56 !important;
}

.notification-type-quiz-failed .llms-svg-icon {
    border-color: #F77F00 !important;
}
.notification-type-quiz-failed .llms-svg-icon svg path {
    fill: #DE4B1B !important;
}

.notification-type-lesson-complete .llms-svg-icon {
    border-color: #2295FF !important;
}
.notification-type-lesson-complete .llms-svg-icon svg path {
    fill: #243C56 !important;
}

.notification-type-section-complete .llms-svg-icon {
    border-color: #2295FF !important;
}
.notification-type-section-complete .llms-svg-icon svg path {
    fill: #243C56 !important;
}

.notification-type-enrollment .llms-svg-icon {
    border-color: #2295FF !important;
}
.notification-type-enrollment .llms-svg-icon svg path {
    fill: #243C56 !important;
}

.notification-type-course-complete .llms-svg-icon {
    border-color: #2295FF !important;
}
.notification-type-course-complete .llms-svg-icon svg path {
    fill: #243C56 !important;
}

.llms-notifications-card-list__item {
    display: flex;
    gap: 30px;
}
.llms-notifications-card-list__info .llms-notification-title {
  font-family: var(--e-global-typography-primary-font-family);;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02px;
  color: var(--e-global-color-text);
  margin-bottom: 8px;
}
.llms-notifications-card-list__info .llms-notification-details {
  font-family: var(--e-global-typography-secondary-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02px;
  text-align: left;
  color: var(--e-global-color-4cde579);
  margin-bottom: 8px;
}
.llms-notifications-card-list__info .llms-notification-time {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}
.llms-notifications-card-list__info .llms-notification-time .time-value{
  font-family: var(--e-global-typography-secondary-font-family);
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  line-height: 1.25;
  letter-spacing: 0.02px;
  text-align: left;
  color: var(--e-global-color-4cde579);
}
.llms-notifications-card-list__info .llms-notification-time .time-icon img {
    width: 15px;
    margin-top: -2px;
}
.llms-notifications-card-list__info .llms-notification-time .time-icon {
    display: inline-block;
}
.llms-notifications-card-list__divider {
    background: var(--e-global-color-571db8e);
    height: 1px;
    width: 100%;
    margin-top: 25px;
}

@media only screen and (max-width: 840px) {
    .llms-notifications-card-list__item {
        gap: 15px;
    }

    .llms-notifications-card-list__icon .llms-svg-icon {
        padding: 10px;
        width: 60px;
        height: 60px;
    }
}

/* ###################### THESE CSS NEED TO LLMS ADDONS PLUGINS  ###################### */
/*### End of LMS Notifications Dropdown Widget CSS ###*/