/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /*font: inherit;*/
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

/* Global Typography */
*,
:before,
:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.2;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    font-weight: 400;
}

/* font face */
/* Global Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}

h1 {
    color: #000000;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 32px;
    font-weight: 400;
}

h2 {
    color: #000000;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    font-weight: 500;
}

/* General Text Formatting */
p {
    line-height: 1.5em !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global Link style */
a {
    color: #006498;
    text-decoration: underline;
    outline: none;
    transition: all 0.3s ease-in-out;
}

    a:hover,
    a:focus {
        color: #006498;
    }

/* Global Button Styles */
button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.btn {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.6px;
    line-height: 16px;
    border-radius: 2px;
    transition: background-color 0.5s ease-in-out;
}

    .btn:focus {
        box-shadow: none;
    }

    .btn.disabled {
        opacity: 0.35;
    }

.primary-btn {
    background-color: #006498;
    padding: 13.5px 22px;
    border-radius: 2px;
}

    .primary-btn:focus {
        color: #ffffff;
    }

    .primary-btn:hover {
        background-color: #3382ac;
        color: #ffffff;
    }

.secondary-btn {
    color: #3382ac;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    border-radius: 2px;
    padding: 13.5px 22px;
}

    .secondary-btn:hover {
        box-shadow: 0 2px 5px 0 #b3b3b3;
        color: #3382ac;
    }

.tertiary-btn {
    padding: 0;
    color: #006498;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 16px;
}

.for-enrollment .tertiary-btn.btn {
    padding: 0;
}

.tertiary-btn:hover {
    color: #006498;
}

.tertiary-secondary-btn {
    border: 1px solid #859d00;
    border-radius: 2px;
    background-color: #fefff9;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 16px;
}

.for-enrollment .tertiary-secondary-btn.btn {
    padding: 14px 22.8px;
    margin-left: 22px;
}

.tertiary-secondary-btn:disabled {
    opacity: 1;
    cursor: pointer;
}

/* Global Input Styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 25px white inset !important;
    box-shadow: 0 0 0 25px white inset !important;
}

/*input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    z-index: 4;
    margin: 0;
    top: 0;
    right: 0;
    height: 34px;
    width: 100%;
    cursor: pointer;
}*/

input:focus {
    outline: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.form-field {
    margin-bottom: 30px;
    position: relative;
}

.information-field-wrap {
    display: flex;
}

.field-description-wrapper {
    position: relative;
    margin-left: 6px;
}

.field-description {
    position: absolute;
    width: 350px;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 14px 0 rgba(209, 209, 209, 0.5);
    color: #000000;
    font-size: 12px;
    letter-spacing: 0.51px;
    line-height: 15px;
    padding: 10px;
    left: -25px;
    top: 32px;
    display: none;
    z-index: 2;
}

    .field-description:after {
        content: "";
        position: absolute;
        top: -10px;
        left: 23px;
        height: 18px;
        width: 18px;
        transform: rotate(45deg);
        border: solid #e6e6e6;
        border-width: 1px 0px 0px 1px;
        border-radius: 2px;
        background-color: #ffffff;
    }

.description-info-icon {
    cursor: pointer;
    height: 16px;
    width: 16px;
}

.field-description-wrapper:hover .field-description {
    display: block;
}

.description-info-icon:after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    height: 16px;
    width: 16px;
    background: url(../../../images/v3/Info-grey.svg) no-repeat;
}

.form-field-wrap {
    border: 1px solid #e1e1e1;
    background-color: #ffffff;
    display: flex;
    padding: 12px 12.5px;
    position: relative;
}

.enrollment-filtering .form-field-wrap {
    flex-direction: column;
}

/* .form-field-wrap:active  {
  border: 1px solid rgba(102, 161, 193, 0.5);
  background-color: #ffffff;
  box-shadow: 0 0 8px 0 rgba(102, 161, 193, 0.4);
} */
.field-title {
    color: #666666;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.43px;
    line-height: 11px;
    margin-bottom: 5.5px;
    text-transform: uppercase;
}

.input-field {
    border: 0;
    background: transparent;
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 16px;
    width: 100%;
}

    .input-field::placeholder {
        opacity: 0.4;
    }

    .input-field:focus, .InputXShort:focus {
        outline: 0;
        box-shadow: none;
    }

.validation-msg {
    color: #ff6a6a;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.51px;
    line-height: 13px;
    margin-top: 4px;
    display: none;
}

.error-field .validation-msg {
    display: block;
}

.locking-accounts .error-field {
    position: relative;
}

    .locking-accounts .error-field .validation-msg {
        position: absolute;
        bottom: -16px;
        left: 0;
        white-space: nowrap;
    }

.error-field .form-field-wrap {
    position: relative;
    padding-right: 36px;
    border-color: #ff6a6a;
}

    .error-field .form-field-wrap:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 13.5px;
        transform: translateY(-50%);
        background: url(../../../images/v3/error-icon.svg);
        height: 16px;
        width: 17px;
    }

.checkbox-form-field {
    margin-top: 8px;
    text-align: left;
}

.checkbox-form-value {
    color: #000000;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
}

.checkbox-title .checkbox-form-value {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.69px;
    line-height: 19px;
}

.form-field .last-login-field {
    padding: 0;
}

.last-login-field {
    border: 0;
    background: transparent;
    padding-left: 0;
}

    .last-login-field span {
        color: #333333;
        font-size: 14px;
        letter-spacing: 0.6px;
        line-height: 18px;
    }

.password-icon {
    cursor: pointer;
    position: relative;
    height: 24px;
    width: 24px;
}

    .password-icon:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 24px;
        width: 24px;
        background: url("../../../images/v3/hide-password.svg") no-repeat;
    }

    .password-icon.show-password:after {
        background: url("../../../images/v3/show-password.svg") no-repeat;
    }

.radio-button-field {
    border: 0;
    padding-left: 0;
    background: transparent;
    flex-direction: column;
}

    .radio-button-field .radio-container {
        margin-right: 15px;
    }
        .radio-button-field .radio-container:last-child {
            margin-bottom: 0;
        }

/*global search styles form close*/
.options-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}
.options-menu .search-field-wrap {
    position: relative;
}
    .options-menu .search-field-wrap.active {
        height: 46px;
        width: 281px;
        border: 1px solid #e1e1e1;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        clip-path: none;
        justify-content: space-between;
    }

.close-search-field {
    position: absolute;
    left: -33px;
    height: 32px;
    width: 32px;
    top: 50%;
    background: #fff;
    transform: translateY(-50%);
    display: none;
}

.options-menu .search-field-wrap.active .close-search-field {
    display: block;
}

.options-menu .search-field-wrap .search-field {
    opacity: 0.4;
    color: #333333;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 13px;
    border: 0;
    padding: 5px 10px;
    height: 20px;
    width: calc(100% - 45px);
    display:none;
}
.options-menu .search-field-wrap.active .search-field {
    display: block;
    opacity: 1;
}
.options-menu .close-search-btn {
    display: flex;
    text-align: right;
}
.options-menu .features-options {
    background: #f2f2f2;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
    .options-menu .features-options.close-search {
        display: none;
        background: transparent;
        margin-right: 2px;
    }
.options-menu .search-field-wrap.active .close-search {
    background: transparent;
}
@media only screen and (max-width: 767.98px) {
    .options-menu .search-field-wrap.active {
        height: 34px;
    }
}
@media only screen and (max-width: 539.98px) {
    .options-menu .search-field-wrap.active {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 4;
        height: 32px;
        width: calc(100% + 186px);
    }
}



/*global search styles form close*/
/* global multiselect styles */
.multiselect-dropdown-search.selection-procedure {
    display: block;
}

    .multiselect-dropdown-search.selection-procedure h3 {
        margin-bottom: 6px;
    }

.multiselect-search-field {
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 13px;
}

    .multiselect-search-field .input-field {
        height: 26px;
    }

    .multiselect-search-field svg {
        height: 13.5px;
        width: 13.5px;
    }

        .multiselect-search-field svg g {
            fill: #4d4d4d;
        }

.multiselect-close-icon {
    display: none;
}

.time-filters-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .time-filters-wrap .time-select {
        width: 150px;
        position: relative;
    }

        .time-filters-wrap .time-select:before {
            content: "";
            height: 1px;
            width: 8px;
            position: absolute;
            background-color: #cdcdcd;
            top: 65%;
            right: -19px;
            transform: translateY(-50%);
        }

        .time-filters-wrap .time-select:last-child:before {
            height: 0;
            width: 0;
        }

/* global multiselect styles */
/* global select box styles */
.select-box-wrapper {
    position: relative;
    margin-bottom: 24px;
}

    .select-box-wrapper select {
        width: 100%;
        border: 1px solid #cfcfcf;
        border-radius: 2px;
        background-color: #ffffff;
        height: 41px;
        color: #666666;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 18px;
        padding: 0 28px 0 14.5px;
    }

        .select-box-wrapper select:focus {
            outline: 0;
        }

    .select-box-wrapper .icon-down-arrow {
        position: absolute;
        top: 50%;
        right: 17.5px;
        transform: translateY(-50%);
    }

        .select-box-wrapper .icon-down-arrow svg {
            max-width: 100%;
            max-height: 100%;
            height: 5.6px;
            width: 8px;
        }

/* global select box styles */
/* Global Classes Styles */
.d-flex {
    display: flex;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

    .disabled svg {
        opacity: 0.35;
        pointer-events: none;
    }

.selectbox-disabled {
    background-color: #f7f7f7;
    pointer-events: none;
}

.textarea-disabled {
    background-color: #f7f7f7 !important;
}

.ft-0 {
    font-size: 0;
}

.scrollable-height {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    padding-top: 3px;
}

.heading-sub-part {
    color: #333333;
    font-size: 12px;
    letter-spacing: 0.51px;
    line-height: 13px;
    margin-left: 2px;
}

.img-content {
    font-size: 12px;
    line-height: 10px;
}

.activity-sec .multiple-head-wrap {
    display: block;
}

.heading-copy-content div {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 5px;
}

.video-content-wrapper .scrollable-height {
    max-height: none;
    overflow: visible;
}

.icon-search {
    cursor: pointer;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.pl-0,
.table .pl-0 {
    padding-left: 0;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pd-0 {
    padding: 0 !important;
}

.width-65 {
    width: 65%;
}

.width-60 {
    width: 60%;
}

.width-40 {
    width: 40%;
}

.width-20 {
    width: 20%;
}

.width-15 {
    width: 15%;
}

.width-10 {
    width: 10%;
}

.placeholder-modal-email-notification .modal-container {
    width: 956px;
}

    .remove-all-btn .btn {
        color: #006498;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.6px;
        line-height: 18px;
        padding: 0;
    }

.document-widget-details .documents-details-wrap .title-content-enhancement .name-width {
    width: 100%;
}

.documents-details-wrap .title-content-enhancement .document-details .document-name {
    width: 100%;
    text-overflow: unset;
    overflow: visible;
    white-space: normal;
}

.count-information-text {
    color: #4D4D4D;
    margin-bottom: 15.5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
}

.user-learning-path-activity-wrapper .multiple-components {
    display: flex;
    padding-left: 35px;
    margin-top: -10px;
}

.user-learning-path-activity-wrapper .completion-status-on {
    margin-top: 13px;
    margin-right: 15px;
}

.ilt-module-wrapper .documents-details-wrap .actions-width {
    font-size: 14px;
}

.calculated-cost-wrap {
    position: absolute;
    bottom: 24px;
    right: 21px;
}

.pending-status {
    color: #333333;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 15px;
    padding: 1.5px 7px;
    display: inline-block;
    text-transform: capitalize;
    border: 1px solid #9ac0d4;
    border-radius: 2px;
    background-color: #e6f6ff;
    position: absolute;
    top: 31px;
    right: 10px;
    z-index: 2;
}
.course-duration-code .pending-status {
    position:static;
    padding:0 7px;
}
.heading-inner-page-icon {
    display:flex;
    align-items:flex-start;
}
/* Global style */
.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.heading-icon-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .heading-icon-content img {
        height: 33px;
        width: 33px;
        margin-right: 12px;
        border-radius: 50%;
        margin-top: 3px;
    }

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.text-ellipsis {
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
    outline: 0;
}
.multiple.language-selectbox, .single.language-selectbox {
    height:110px;
}

    select:focus {
        outline: 0;
    }
.and-btn {
    height: 25px;
    width: 48px;
    border: 1px solid #b3b3b3;
    border-radius: 2px;
    background-color: #e2e2e2;
    color: #000000;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 15px;
    font-weight: 400;
    padding: 0;
    cursor: unset !important;
}

.highlighted-content {
    font-weight: 700;
}

.current-auth-providers .slider {
    border-color: rgba(51, 51, 51, 0.4);
}

    .current-auth-providers .slider:before {
        background-color: rgba(51, 51, 51, 0.4);
    }

.current-auth-providers input:checked + .slider {
    border-color: #006498;
}

    .current-auth-providers input:checked + .slider:before {
        background-color: #006498;
    }

.locking-accounts {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    flex-wrap: wrap;
    margin-top: -23px;
    padding-left: 22px;
}
.email-notification-details-wrapper .locking-accounts .language-selectbox {
    width: 250px;
    margin: 0 12px;
    height:auto;
}
/* hover over button styling*/
.btn-options {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .btn-options button,
    .btn-options a {
        background: transparent;
        height: 33px;
        width: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .btn-options button:hover svg g,
        .btn-options a:hover svg g {
            fill: #006397;
        }

        .btn-options button:hover,
        .btn-options a:hover {
            height: 33px;
            width: 33px;
            border-radius: 2px;
            background-color: #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-options button.terminate-icon:hover {
            right: 0;
            left: auto;
        }

.hover-state,
.hover-over-icon {
    position: relative;
}

.table span span.hover-over-icon,
.table .tooltip-custom {
    white-space: normal;
    overflow: visible;
    width: auto;
}

.hover-state:hover .tooltip-custom,
.hover-over-icon:hover .tooltip-custom {
    display: block;
    white-space: nowrap;
}

.hover-over-icon img {
    cursor: pointer;
}

/* hover over button styling */

/*profile image delete styles*/
.delete-profile-image {
    position: absolute;
    top: -9px;
    right: -14px;
    z-index: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background-color: #ececec;
}

    .delete-profile-image span {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

        .delete-profile-image span svg g {
            fill: #4d4d4d;
        }

.cursor-pointer:hover {
    cursor: pointer;
}

/* global tabbing styles */
.details-tabbing {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .details-tabbing li a {
        border-radius: 2px 0 0 2px;
        background-color: #f1f3f4;
        color: #4d4d4d;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 16px;
        padding: 12.5px 18.4px 12.5px 20px;
        cursor: pointer;
        text-transform: uppercase;
        text-decoration: none;
        transition: none;
    }

    .details-tabbing li.active a {
        border: 1px solid #e6e6e6;
        background-color: #ffffff;
        box-shadow: 0 0 6px 0 rgba(193, 199, 204, 0.3);
        color: #006498;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 16px;
    }

    .details-tabbing .error-listing {
        position: relative;
    }

        .details-tabbing .error-listing a {
            padding-left: 40px;
        }

        .details-tabbing .error-listing:after {
            content: '';
            background: url('../../../../../default/templates/iconsets/v3/exclamatory-sign.svg') no-repeat;
            height: 16px;
            width: 18px;
            position: absolute;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
        }

/* header-styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 0 14px 0 rgba(193, 199, 204, 0.3);
}

.logo-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .logo-menu-wrap .menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .logo-menu-wrap .menu li {
            padding: 22px 0;
            margin-right: 41px;
            position: relative;
        }

            .logo-menu-wrap .menu li:last-child {
                margin-right: 0;
            }

            .logo-menu-wrap .menu li.active:after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                height: 2px;
                width: 100%;
                background-color: #006498;
            }

            .logo-menu-wrap .menu li a {
                color: #4d4d4d;
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 0;
                line-height: 16px;
                text-decoration: none;
            }

            .logo-menu-wrap .menu li.active a {
                color: #000000;
            }

.hamburger {
    display: none;
}

.hamburger-logo {
    margin-right: 76px;
}

.logo img {
    margin-top: 4px;
}

.head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sign-in {
    padding: 22px 0px;
}

.profile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .profile-menu li {
        margin-right: 24px;
        margin-top: -4px;
        position: relative;
    }

        .profile-menu li:last-child {
            margin-right: 0;
        }

        .profile-menu li.announcements-notification {
            display: block;
        }

        .profile-menu li .notification-number {
            top: -8px;
            right: -11px;
        }

        .profile-menu li .shout-icon svg g {
            fill: #4d4d4d;
        }

        .profile-menu li button {
            padding: 0;
        }

        .profile-menu li .user-profile {
            height: 32px;
            width: 32px;
            background-color: #006498;
            color: #ffffff;
            font-size: 12px;
            letter-spacing: 0;
            line-height: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 0;
            margin-top: 4px;
        }

        .profile-menu li .user-profile-img {
            height: 32px;
            width: 32px;
            border-radius: 50%;
            margin-right: 0;
            margin-top: 4px;
            display: inline-block;
        }

            .profile-menu li .user-profile-img img {
                border-radius: 50%;
                width: 100%;
                height: 100%;
                margin-top: -2px;
            }
/* header-styles */
/* notification number styles */
.notification-number {
    position: absolute;
    top: 9px;
    right: 8px;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14px;
    width: 20px;
    border-radius: 6.5px;
    background-color: #e20000;
}

.features-options .notification-number {
    top: 7px;
    right: 5px;
}

/* notification number styles */
/* Loading state styles */
.loading-state {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loading-state .icon-loader {
        vertical-align: middle;
    }

    .loading-state .loading-text {
        color: #333333;
        font-size: 12px;
        letter-spacing: 0.6px;
        line-height: 13px;
        margin-left: 8px;
    }

/* Loading state styles */

/* tooltip  styles */
.tooltip-custom {
    border-radius: 12px;
    background-color: #ffe5b6;
    box-shadow: 0 2px 4px 0 rgba(179, 171, 156, 0.2);
    position: absolute;
    top: -39px;
    right: 9px;
    color: #000000;
    font-family: Montserrat;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 11px;
    text-align: center;
    padding: 8px 13px;
    display: none;
    font-style: normal;
}

.table-tooltip {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 14px 0 rgba(209, 209, 209, 0.5);
    width: 368px;
    position: absolute;
    bottom: 28px;
    left: 106px;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0.51px;
    line-height: 15px;
    padding: 8.5px 16px;
    z-index: 1;
}

    .table-tooltip:after {
        content: "";
        height: 15px;
        width: 15px;
        position: absolute;
        bottom: -8px;
        right: 100px;
        transform: rotate(45deg);
        z-index: 1;
        border: 1px solid #e6e6e6;
        border-width: 0px 1px 1px 0px;
        border-radius: 2px;
        background-color: #ffffff;
    }

/* tooltip  styles */
/* Sorting and filtering styles */

.sorting-wrap,
.filtering-wrap,
.sliding-menus {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 368px;
    background-color: #ffffff;
    z-index: 11;
    padding: 30px 14px 30px 23px;
    transform: translateX(800px);
    transition: all 0.9s ease;
    z-index: 14;
}

.sliding-menus {
    padding: 0;
    width: 448px;
}

    .sorting-wrap.active,
    .filtering-wrap.active,
    .sliding-menus.active {
        transform: translateX(0);
    }

        .sorting-wrap.active:after,
        .filtering-wrap.active:after,
        .sliding-menus.active:after {
            content: "";
            position: fixed;
            width: calc(100vh - -100vw);
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            top: 0;
            right: 368px;
        }

        .sliding-menus.active:after {
            right: 100%;
        }

    .sliding-menus .head-close {
        padding: 31px 22px 31px 41px;
        border-bottom: 1px solid #e1e1e1;
    }

.head-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .head-close h2 {
        color: #000000;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 0.6px;
        line-height: 13px;
    }

.language-listing-wrap {
    overflow-y: auto;
    height: 100vh;
}

.sign-in-user {
    margin-left: 15px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: -1px;
}

.profile-options-menu li {
    margin: 0;
}

    .profile-options-menu li a {
        padding: 31px 22px 31px 41px;
        border-bottom: 1px solid #e1e1e1;
        margin-right: 0;
        display: block;
        color: #000000;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.6px;
        line-height: 16px;
        text-transform: uppercase;
        text-decoration: none;
    }

.profile-options-menu .signout-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: auto;
}

    .profile-options-menu .signout-list a span {
        cursor: pointer;
    }

    .profile-options-menu .signout-list a .signin-info {
        color: #848484;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.51px;
        line-height: 15px;
        text-transform: none;
        cursor: auto;
    }

.impersonating-user {
    font-weight: 400;
    text-transform: capitalize;
}

.language-selector {
    color: #006498;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 15px;
    display: inline-block;
    padding: 0;
    position: relative;
}

.back-btn {
    text-transform: uppercase;
}

.language-selector:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c8c8c8;
}

.language-listing-wrap li {
    margin-right: 0;
}

    .language-listing-wrap li a {
        padding: 20.5px 38px 15.5px 40.5px;
        color: #676767;
        font-size: 12px;
        letter-spacing: 0.6px;
        line-height: 16px;
        border-bottom: 1px solid #e1e1e1;
        display: block;
    }

    .language-listing-wrap li.active a {
        background-color: #e2e9e8;
        color: #000000;
        position: relative;
        text-decoration: none;
    }

        .language-listing-wrap li.active a:after {
            content: "";
            position: absolute;
            background: url("../../../iconsets/v3/tick.svg") no-repeat;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            height: 8.88px;
            width: 12px;
        }

.signin-info strong {
    color: #000000;
    font-weight: bold;
}

.sorting-options-menu {
    margin-top: 33px;
}

    .sorting-options-menu .sorting-btn {
        border: 1px solid #dbe0df;
        border-radius: 3px;
        background-color: #ffffff;
        color: #676767;
        padding: 8px 13px;
        font-size: 12px;
        letter-spacing: 0;
        line-height: 13px;
        margin-bottom: 13px;
        text-transform: capitalize;
        transition: background 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

        .sorting-options-menu .sorting-btn.active,
        .sorting-options-menu .sorting-btn:hover {
            background-color: #e2e9e8;
            color: #333333;
            font-weight: 500;
        }

.filtering-scrollable-height {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.filtering-wrap .primary-btn {
    padding: 12px 44px;
    margin-top: 34px;
}

.status-select {
    margin-top: 32px;
}

.selection-procedure {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

    .selection-procedure h3 {
        color: #000000;
        font-size: 12px;
        letter-spacing: 0.6px;
        line-height: 13px;
        margin-right: 6px;
        text-transform: uppercase;
    }

    .selection-procedure .unselect {
        color: #006397;
        font-family: Montserrat;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 16px;
        text-transform: capitalize;
    }

.learning-selection {
    margin-top: 22px;
    margin-bottom: 11px;
}

.checkbox-wrap {
    margin-bottom: 11.2px;
}

.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    /*cursor: pointer;*/
    color: #676767;
    font-size: 12px;
    letter-spacing: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selection-boxes .checkbox-wrap:last-child {
    margin-bottom: 0;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

    .checkbox-container input[disabled] + .checkmark,
    .radio-container input[disabled] + .checkmark {
        background-color: #E0E0E0;
        pointer-events: none;
        opacity: 0.5;
    }

    .radio-container input[disabled],
    .checkbox-container input[disabled] {
        pointer-events: none;
    }

    .checkbox-container input[disabled]:hover + .tooltip-custom {
        display:inline-flex;
    }
        /* Create a custom checkbox */
        .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 14px;
    cursor: pointer;
    width: 14px;
    border: 1px solid #b1bddc;
    border-radius: 1px;
    background-color: #ffffff;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked + .checkmark {
    background-color: #006498;
    border: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked + .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Sorting and filtering styles */
/* breadcrumb styles */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

    .breadcrumb li {
        color: #545454;
        font-size: 10px;
        letter-spacing: 0.5px;
        line-height: 13px;
        margin-right: 15px;
        position: relative;
    }

        .breadcrumb li:last-child {
            margin-right: 0;
        }

        .breadcrumb li a {
            color: #006498;
            text-decoration: none;
        }

        .breadcrumb li .page-locator {
            position: relative;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 520px;
        }

        .breadcrumb li:before {
            content: "";
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -8px;
            height: 77%;
            width: 1.3px;
            background-color: #545454;
        }

        .breadcrumb li:last-child:before {
            height: 0;
            width: 0;
        }

/* breadcrumb styles */

/*page loader styles*/
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    height: 100%;
    width: 100%;
}

/*page loader styles*/

/*Progress Circle Start*/
.circle-background,
.circle-progress {
    fill: none;
}

.circle-background {
    stroke: #ddd;
}

.circle-progress {
    stroke: #a0bd00;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.circle-text {
    font-size: 1em;
    font-weight: normal;
}

.text-white {
    fill: white;
}

.text-black {
    fill: black;
}

.learning-path-progress-circle.progress {
    background: #fff;
    border-radius: 50%;
}

    .learning-path-progress-circle.progress .text-black {
        font-size: 10px;
        font-weight: bold;
        letter-spacing: 0.43px;
        line-height: 11px;
    }

/*Progress Circle End*/

/* empty-state */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.empty-state-img {
    margin-bottom: 52px;
}

    .empty-state-img img {
        width: 221px;
    }

.empty-learning-content {
    color: #575757;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 27px;
    text-align: center;
    margin-bottom: 40px;
}

    .empty-learning-content .not-assigned {
        display: block;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 19px;
        margin-top: 4px;
    }

        .empty-learning-content .not-assigned .special-character {
            color: #000;
        }

.browse-btn {
    padding: 16px 22px;
}

/*Catalog details Pages Pre-requisite tab styles*/
.for-enrollment {
    text-align: right;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .for-enrollment .btn {
        padding: 13.5px 44px;
    }

.notification-text-content {
    color: #000000;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    padding: 0 15px;
}

.content-details {
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 16px;
    margin-top: 4px;
}

.content-type-detail {
    color: #333333;
}

@media only screen and (max-width: 767.98px) {
    .empty-state-img {
        margin-bottom: 32px;
    }

    .empty-learning-content {
        font-size: 16px;
        margin-bottom: 35px;
    }

        .empty-learning-content .not-assigned {
            font-size: 14px;
            margin-top: 15px;
        }
}

/* text transformation*/
.upper-case {
    text-transform: uppercase;
}

.lower-case {
    text-transform: lowercase;
}

.capitalize-case {
    text-transform: capitalize;
}

/* text transformation*/
/* Notification styles */
.notification-show-hide {
    display: none;
}

.notifications-popup-wrapper {
    background-color: #ffffff;
    box-shadow: 0 0 44px 0 rgba(115, 115, 115, 0.5);
    width: 518px;
    position: absolute;
    top: 37px;
    right: -94px;
    z-index: 11;
    padding: 35px;
}

.blocker {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: " ";
    background: transparent;
    z-index: 11;
}

.notification-show-hide.active {
    display: block;
}

.notifications-popup-wrapper:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    top: -4px;
    right: 96px;
}

.for-empty-state {
    height: 488px;
    width: 468px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .for-empty-state img {
        width: 114px;
        margin-bottom: 12px;
        margin-right: 19px;
    }

.notification-empty-state {
    text-align: center;
}

.notification-heading {
    color: #000000;
    font-weight: 500;
    font-size: 20.4px;
    letter-spacing: 0.1px;
    line-height: 13px;
    margin-bottom: 10px;
}

.no-notification {
    color: #575757;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 13px;
}

.notifications-listing-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .notifications-listing-wrapper h2 {
        color: #000000;
        font-size: 20px;
        letter-spacing: 0;
        line-height: 22px;
    }

    .notifications-listing-wrapper .mark-read {
        color: #106592;
        font-size: 12px;
        letter-spacing: 0;
        line-height: 13px;
    }

.notification-listing li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-right: 0;
    margin-bottom: 30px;
}

    .notification-listing li.single-liner {
        align-items: center;
    }

.notification-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.notification-img {
    margin-right: 17px;
}

    .notification-img img {
        height: 33px;
        width: 33px;
        border-radius: 50%;
    }

.notify-content {
    color: #333333;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
    width: 326px;
}

    .notify-content strong {
        font-weight: bold;
    }

.notification-date {
    color: #a5a5a5;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 13px;
    margin-top: 2px;
}

.notification-listing li.single-liner .notification-date {
    margin-top: 0;
}

.notification-read .notify-content {
    opacity: 0.6;
}

.all-notification {
    text-align: center;
}

.all-notification-btn {
    color: #106592;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 13px;
    display: inline-block;
}

    .all-notification-btn:hover {
        color: #106592;
    }

/* Most recent notification */
.recent-notification-wrapper {
    width: 630px;
    background-color: #ffffff;
    box-shadow: 0 0 14px 0 rgba(221, 221, 221, 0.5);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -77px);
    padding: 14px 22px;
    z-index: 13;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease-in-out;
}

    .recent-notification-wrapper.active {
        transform: translate(-50%, 77px);
    }

    .recent-notification-wrapper .notify-content {
        width: auto;
        color: #131313;
        line-height: 13px;
    }

    .recent-notification-wrapper .notification-img {
        margin-right: 12px;
    }

.close-btn {
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
}

/*ckeditor styles*/
.cke_inner {
    background: transparent !important;
    padding: 0 !important;
}

.cke_top,
.cke_contents,
.cke_bottom {
    display: block;
    overflow: hidden;
    height: auto !important;
    max-height: 150px;
}

.cke_top {
    border-bottom: 0 !important;
    background: transparent !important;
    height: auto !important;
    position: absolute !important;
    bottom: -46px !important;
    width: 80% !important;
    left: 0 !important;
    padding: 0 !important;
}

.cke_chrome {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.discussion-field-wrapper {
    width: calc(100% - 126px);
}

.cke_wysiwyg_frame,
.cke_wysiwyg_div {
    background-color: transparent !important;
    padding: 0 !important;
}

.cke_bottom {
    display: none !important;
}

.sender-message .post-message {
    border: 0;
    width: 100%;
    padding: 0;
}

.sender-message .reply-message-container {
    border: 1px solid #dcdcdc;
    border-radius: 2px;
    background-color: #ffffff;
    margin-top: 5px;
    padding: 8px 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sender-message .cke_top {
    bottom: -35px !important;
}

/* Radio button styles */
.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    /*cursor: pointer;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 2px;
}

    /* Hide the browser's default radio button */
    .radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        left: 0;
        z-index: 2;
        top: 2px;
    }

    /* Create a custom radio button */
    .radio-container .checkmark {
        position: absolute;
        top: 50%;
        left: 0;
        background-color: #fff;
        border: 1px solid #bfbfbf;
        border-radius: 50%;
        transform:translateY(-50%);
    }

    /* When the radio button is checked, add a blue background */
    .radio-container input:checked + .checkmark {
        border-color: #006498;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .radio-container .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .radio-container input:checked + .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .radio-container .checkmark:after {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #006498;
    }

/* Radio button styles */
/*badge styles*/
.icon-badge {
    position: relative;
    margin-top: -8px;
    margin-left: 3px;
    width: auto;
    padding: 0.5px 4.3px;
    border-radius: 100px;
    border: 2px solid #979797;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-badge .badge-count {
        color: #e03100;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0;
        display: block;
    }

.icon-badge-ticker {
    position: absolute;
    bottom: -9.9px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
}

.badge-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

    .badge-wrapper .icon-badge {
        margin-top: 7px;
        margin-left: 6px;
        height: 17px;
    }

        .badge-wrapper .icon-badge .icon-badge-ticker {
            bottom: -9.6px;
        }

.icon-badge-ticker svg {
    display: block;
}

/*badge styles*/
/* toggle button styles */
.toggle-btn {
    display: flex;
    align-items: center;
    width: 177px;
    justify-content: space-between;
}

.selected-widget {
    color: #2d2d2d;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 15px;
    font-weight: 500;
}

    .selected-widget.active {
        font-weight: 700;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 27px;
    height: 15px;
    margin: 0 6.5px;
    cursor: pointer;
}

    .switch.disabled {
        pointer-events: none;
        opacity: 0.5;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #006498;
    border-radius: 7px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 10px;
        width: 10px;
        left: 2px;
        top: 1.5px;
        background-color: #006498;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider:before {
    -webkit-transform: translateX(11px);
    -ms-transform: translateX(11px);
    transform: translateX(11px);
}

input[value="true"] + .slider:before {
    -webkit-transform: translateX(11px);
    -ms-transform: translateX(11px);
    transform: translateX(11px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 7px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/* toggle button styles */
/*Error state styles*/
.empty-error-state .empty-state-img {
    margin-bottom: 19px;
}

.empty-error-state .secondary-btn,
.empty-error-state .primary-btn {
    padding: 17px 19.5px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 16px;
}

.empty-error-state .primary-btn {
    color: #ffffff;
    font-weight: bold;
    padding: 17px 33px;
    margin-left: 19.5px;
}

.empty-error-state .empty-learning-content {
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 17px;
    margin-bottom: 65px;
}

.required-asterisk {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: #b54959;
    margin-top: -5px;
}

select:disabled {
    opacity: 0.5 !important;
}

/*Error state styles*/
.green-tick {
    margin-right: 6px;
}

/*Sorting styles*/
.sort-action-ASC,
.sort-action-DESC {
    margin-right: 0;
    margin-left: 3px;
    display: inline-block;
    cursor: pointer;
}

    .sort-action-ASC img,
    .sort-action-DESC img {
        width: 8px;
    }

    .sort-action-DESC img {
        transform: rotate(180deg);
    }

/*Sorting styles*/
.timeline-form-field {
    width: 17%;
    position: relative;
    display: flex;
    border: 1px solid #e1e1e1;
}

.timeline-details {
    background-color: #ececec;
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 18px;
    padding: 0 9px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-form-field .form-field-wrap {
    border: 0;
    width: 100%;
}

/* multiple icons color and hover effect */
.group-dashboard-wrapper .options-menu {
    display: flex;
    align-items: center;
}

    .group-dashboard-wrapper .options-menu li {
        margin-right: 1px;
        position: relative;
    }

        .group-dashboard-wrapper .options-menu li:last-child {
            margin-right: 0px;
        }

        .group-dashboard-wrapper .options-menu li:hover .features-options,
        .group-dashboard-wrapper .options-menu li.active .features-options {
            background-color: #006498;
        }

        .group-dashboard-wrapper .options-menu li .features-options span {
            font-size: 18px;
            font-weight: 400;
        }

        .group-dashboard-wrapper .options-menu li:hover .features-options span:before,
        .group-dashboard-wrapper .options-menu li.active .features-options span:before {
            color: #ffffff;
        }
        .group-dashboard-wrapper .options-menu li:hover .search-field-wrap .close-search-btn span:before,
        .group-dashboard-wrapper .options-menu li.active .search-field-wrap .close-search-btn span:before {
            color: #4d4d4d;
        }

        .group-dashboard-wrapper .options-menu li:hover .tooltip-custom {
            display: inline-block;
            bottom: -33px;
            right: 0;
            top: auto;
            width: max-content;
            z-index: 1;
        }

.group-dashboard-wrapper .group-enrollments-page-search .options-menu li:hover .features-options,
.group-dashboard-wrapper .group-enrollments-page-search .options-menu li.active .features-options {
    background: #f2f2f2;
}

.group-enrollments-page-search .search-field-wrap.active {
    position: static;
}

.group-dashboard-wrapper .options-menu .features-options.close-search {
    background: transparent;
}

.group-dashboard-wrapper .options-menu li:hover .features-options.close-search,
.group-dashboard-wrapper .options-menu li.active .features-options.close-search {
    background: transparent;
}

.group-enrollments-page-search .options-menu li {
    margin-right: 12px;
}

    .group-enrollments-page-search .options-menu li:last-child {
        margin-right: 0;
    }

.group-enrollments-page-search .options-menu .delete-btn {
    margin: 0;
}

.profile-details-wrapper .admin-ckeditor-section .form-field {
    width: 100%;
    margin-bottom: 0;
}

.user-agreement-wrapper .profile-other-information .form {
    width: 100%;
}

.user-agreement-wrapper .form-field {
    margin-bottom: 12px;
}

/*star rating*/
.ratings-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

    .ratings-wrap .star-rating {
        margin-right: 8.6px;
    }

        .ratings-wrap .star-rating li {
            position: relative;
        }

            .ratings-wrap .star-rating li span {
                display: block;
            }

            .ratings-wrap .star-rating li .checked-star {
                position: absolute;
                top: 0;
                left: 0;
                width: 65px;
                overflow: hidden;
            }

    .ratings-wrap .module-avg-rating {
        color: #757575;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 13px;
        margin-top: 4px;
    }

        .ratings-wrap .module-avg-rating strong {
            color: #000000;
        }

.aceept-cookies-container {
    width: 90.8%;
    border-radius: 4px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: -200px;
    transition: all 0.5s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 11;
}

    .aceept-cookies-container.active {
        bottom: 2px;
    }

    .aceept-cookies-container .cookies-text {
        color: #000000;
        margin-bottom: 8px;
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 22px;
    }

    .aceept-cookies-container .cookies-desc {
        color: #333333;
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 15px;
    }

    .aceept-cookies-container .checkbox-form-value {
        font-size: 12px;
    }

.data-import-error-table-wrap .content-description {
    background-color: #FFEFEF;
    align-items: center;
    padding: 15px 10px 15px 9px;
}

.data-import-error-table-wrap .table th,
.data-import-error-table-wrap .table td {
    text-align: left;
}

.modal-content-wrapper .ilt-notification-btn {
    position: absolute;
    right: 0px;
    top: 12px;
    padding: 9px 12px;
}

.notifyyou-btn {
    color: #7A7A7A;
    border: 1px solid #CCCCCC;
    pointer-events: none;
}


.footer-section-wrapper {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    padding: 15px 0;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-listing {
    display: flex;
    align-items: center;
}

    .footer-listing li {
        position: relative;
        margin-right: 15px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 15px;
        color: #4D4D4D;
    }

        .footer-listing li:last-child {
            margin-right: 0;
        }

        .footer-listing li::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -8px;
            height: 12px;
            width: 1px;
            background: #4D4D4D;
        }

        .footer-listing li:last-child:after {
            height: 0;
            width: 0;
        }

.data-import-error-table-wrap .table td {
    padding: 22px 24px;
    position: relative;
    white-space: nowrap;
}

.data-import-error-table-wrap .table th {
    position: relative;
}

    .data-import-error-table-wrap .table td:hover .tooltip-custom,
    .data-import-error-table-wrap .table th:hover .tooltip-custom {
        display: block;
        white-space: nowrap;
        top: auto;
        left: 20px;
        right: auto;
        bottom: -12px;
    }

    .data-import-error-table-wrap .table th:hover .tooltip-custom {
        bottom: 0;
    }

.data-import-error-table-wrap .scrollable-height {
    overflow-x: auto;
    text-align: left;
}

.data-import-error-table-wrap .modal-container {
    width: 956px;
}
/* Reports Styles */
.report-menu-container-wrap {
    position: relative;
}

.report-menu-wrapper {
    position: absolute;
    top: 45px;
    right: 0;
    width: 634px;
    border: 1px solid #DEDEDE;
    background-color: #FFFFFF;
    box-shadow: 0 6px 14px 0 rgba(209,209,209,0.5);
    padding: 16px;
    padding-bottom: 6px;
    z-index: 11;
    display: none;
}

    .report-menu-wrapper.active {
        display: block;
    }

.report-menu {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .report-menu li {
        border: 1px solid rgba(151,151,151,0.23);
        border-radius: 2px;
        background-color: #FFFFFF;
        box-shadow: 0 6px 14px 0 rgba(209,209,209,0.5);
        padding: 7px 13px;
        width: 194px;
        margin-right: 9px;
        margin-bottom: 10px;
        cursor: pointer;
    }

.report-widget-details .report-menu li:nth-child(3n) {
    margin-right: 0;
}

.report-menu-heading {
    color: #006498;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 6px;
}

.report-menu-info {
    color: #4D4D4D;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 13px;
}

.report-menu li:hover {
    background-color: #006498;
}

    .report-menu li:hover .report-menu-heading, .report-menu li:hover .report-menu-info {
        color: #E6E6E6;
    }

/* Selected tags styling */
.items-selected {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgba(193, 199, 204, 0.3);
    padding: 18.5px 16.5px;
    height: 250px;
    padding-right: 0;
    overflow-y: auto;
    margin-bottom: 8px;
}

.total-items-selected li {
    display: flex;
    justify-content: flex-start;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 18px;
    margin-bottom: 12px;
    align-items: center;
}

    .total-items-selected li .icon-remove {
        margin-right: 8px;
        cursor: pointer;
    }

    .total-items-selected li:last-child {
        margin-bottom: 0;
    }

.remove-all-btn {
    color: #006498;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.51px;
    line-height: 15px;
    padding: 0;
    text-align: right;
    margin-bottom: 10px;
}

.items-selected-location .information-field-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.selection-btn {
    color: #006498;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    padding: 0;
}
/* Selected tags styling */
/* Add button styles */
.auth-provider {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 0;
    cursor: pointer;
}

    .auth-provider .add-btn {
        height: 33px;
        width: 33px;
        background-color: #dcfff1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00c076;
        font-size: 28px;
        font-weight: 400;
        border-radius: 50%;
        margin-right: 6px;
    }

.informational-note {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 18px;
    margin-bottom: 24px;
}

.checkbox-sub-title {
    color: #808080;
    font-size: 12px;
    letter-spacing: 0.51px;
    line-height: 15px;
}

.valid-date-time-wrapper {
    display: flex;
}

    .valid-date-time-wrapper .form-field-wrap {
        margin-right: 20px;
    }

.multiple-components .language-selectbox {
    margin: 0;
}

    .multiple-components .language-selectbox select {
        height: 44px;
        width: 83px;
    }
/* Certifications styles */
.accrediting-organization {
    margin: 30px 0 20px;
}

.attached-input {
    width: 88px;
    margin-left: 10px;
}

.month-selectbox .language-selectbox select {
    width: 140px;
}
/* Certifications styles */

/*Resource Management create edit styles*/
.resource-management-wrapper .users-allocation {
    padding-left: 0;
}

.email-notification-details-wrapper .form-field.input-field_Description_Field,
.email-notification-details-wrapper .form-field.discussion-field-wrapper {
    width: 100%;
}
.merger-account-content {
    color: #333333;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
}
.resource-management-wrapper .merger-account-content {
    margin: 5px 0 10px;
}
.parent-resource-selection {
    margin: 10px 0;
}
.parent-resource-selection div {
    display:flex;
    align-items:center;
}
    .parent-resource-selection .icon-remove {
        margin-right: 5px;
    }
.resource-management-wrapper.learning-assets-wrapper .document-type-details .document-type-details-text {
    margin-left: 1px;
}
.resource-management-wrapper .users-radio-list .form-field {
    width:100%;
}
/*Resource Management create edit styles*/
/*certifications page styles*/
.certifications-page-wrapper .locking-accounts {
    margin: 0;
    padding: 0;
}
    .certifications-page-wrapper .locking-accounts .form-field {
        margin: 0;
        width: 5.8%;
    }

    .certifications-page-wrapper .locking-accounts .language-selectbox {
        height: 44px;
        margin-left: 12px;
        width: 130px;
    }
.attached-input-error {
    position:relative;
}
    .attached-input-error .validation-msg {
        position: absolute;
        top: 100%;
        white-space: nowrap;
        left: 10px;
    }
.certification-attached-courses .total-items-selected li {
    margin-bottom: 25px;
}
/*certifications page styles*/
/* Responsive styles for header and notification */
@media only screen and (min-width: 768px) {
    .details-tabbing li.active a {
        display: inline-block;
    }
}

@media only screen and (max-width: 1023.98px) {
    .for-enrollment {
        text-align: left;
    }

    .table-tooltip {
        left: 49px;
    }

    .footer-section-wrapper {
        display: none;
    }
}

@media only screen and (max-width: 810.98px) {

    /* Header styles */
    .hamburger-logo {
        margin-right: 36px;
    }

    /* Header styles */
}

@media only screen and (max-width: 767.98px) {
    h1 {
        font-size: 16px;
        font-weight: bold;
        line-height: 26px;
    }

    /* Header styles */
    .header {
        padding: 13px 0;
    }

    .hamburger-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .hamburger {
        display: block;
        width: 15px;
        padding: 0;
        margin-right: 17px;
        position: relative;
        z-index: 12;
    }

        .hamburger span {
            height: 2px;
            width: 15px;
            background: #000000;
            display: block;
            margin-bottom: 2px;
        }

            .hamburger span:last-child {
                margin-bottom: 0;
            }

    .logo {
        width: 71px;
    }

    .logo-menu-wrap .menu {
        display: block;
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 11;
        padding: 67px 20px 45px 40px;
        box-shadow: -3px 0 12px 7px rgba(0, 0, 0, 0.2);
        transform: translateX(-107%);
        transition: all 0.65s ease-in-out;
    }

        .logo-menu-wrap .menu.active {
            transform: translateX(0);
        }

    .profile-menu li.announcements-notification {
        display: none;
    }

    .sliding-menus {
        width: 100%;
    }

    .breadcrumb li .page-locator {
        width: 290px;
    }

    /* Header styles */
    .filtering-wrap .primary-btn {
        position: absolute;
        bottom: 15px;
        width: 90%;
        z-index: 1;
        left: 50%;
        right: 0;
        transform: translateX(-50%);
    }

    .filtering-scrollable-height {
        height: calc(100% - 60px);
    }

    /* Notification styles */
    .notifications-popup-wrapper {
        width: 338px;
        right: -98px;
        padding: 35px 16px;
    }

        .notifications-popup-wrapper:before {
            right: 94px;
        }

    .notification-img {
        height: 33px;
        width: 33px;
        display: inline-block;
    }

    .notify-content {
        width: 170px;
    }

    .recent-notification-wrapper {
        width: 93%;
        padding: 14px 16px;
    }

        .recent-notification-wrapper .notify-content {
            font-size: 10px;
        }

    /* Notification styles */
    .badge-wrapper {
        align-items: center;
    }

    /*progress bar responsive*/
    .learning-path-progress-circle.progress {
        height: 38px;
        width: 38px;
        left: 15px;
    }

        .learning-path-progress-circle.progress svg {
            height: 38px;
            width: 38px;
        }

    .badge-wrapper .icon-badge .icon-badge-ticker {
        bottom: -14.6px;
    }

    .badge-wrapper .icon-badge {
        margin-top: 0px;
    }

    .course-heading h1 .course-parts {
        line-height: 20px;
        margin-top: 2px;
    }

    /*tabbing styles*/
    .details-tabbing li a {
        background-color: #ffffff;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 13px;
    }

    .details-tabbing li.active a {
        border-radius: 1px;
        background-color: #f5f7f6;
        box-shadow: 0 2px 4px 0 rgba(214, 214, 214, 0.5);
        color: #006498;
        border: 0 !important;
    }
}

@media only screen and (max-width: 539.98px) {
    .breadcrumb li .page-locator {
        width: 120px;
    }

    .table-tooltip multiple-head-wrap {
        width: 310px;
        color: #000000;
        font-size: 10px;
        letter-spacing: 0.43px;
        line-height: 13px;
        left: 0;
    }
}

.tab-error a {
    border: 2px solid red !important;
}

.field-row {
    cursor: move;
}
.icon-calendar {
    cursor:pointer;
}

.multiple-components > .information-field-wrap {
    margin-bottom: 10px;
}

.multiple-components .language-selectbox {
    margin: 0;
    margin-right: 12.8px;
}

    .multiple-components .language-selectbox select {
        height: 44px;
        width: 83px;
    }

.valid-date-time-wrapper .form-field-wrap {
    margin-right: 20px;
}

.valid-dates-wrapper {
    margin-bottom: 17px;
}

.multiple-selectbox-wrapper {
    display: flex;
}
.file-upload-wrapper .task-upload-wrapper {
    margin-bottom: 0;
}
.file-upload-wrapper .favourite-icon-image {
    margin-top: 25px;
    margin-bottom: 0;
}
    .file-upload-wrapper .favourite-icon-image.show {
        margin-bottom: 40px;
    }
.custom-upload-file {
    height: 44px;
    width: 216px;
    border: 1px solid #e1e1e1;
    background-color: #ffffff;
    color: #666666;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.43px;
    line-height: 13px;
    padding: 15px 20px;
    position: relative;
    cursor: pointer;
}
.different-options {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.learning-assets-wrapper .different-options {
    justify-content: flex-end;
    margin-bottom: 25px;
}
.ruleset-course-enrollments-wrapper .admin-configuration-section .form {
    width: 100%;
}
.multiple-components-wrapper .language-selectbox, .locking-accounts .language-selectbox {
    margin-bottom: 0;
    margin-top: 0;
    height: auto;
}

/*my profile globalization*/
.my-profile-wrapper {
    padding: 25px 0 50px;
}
.my-profile-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.profile-details-wrapper {
    border: 1px solid #e1e1e1;
    background-color: #ffffff;
}

.profile-details {
    padding: 26.5px 38.5px;
    display: flex;
    align-items: flex-start;
}
.profile-other-information .form {
    width: 37%;
}
.profile-updation-btn {
    background-color: #ececec;
    text-align: center;
    padding: 13px;
}
    .profile-updation-btn .btn {
        padding: 12px 32.3px;
        margin: 0 8px;
    }

    /*Activities styles*/
.my-activities-wrapper {
    padding: 25px 0 45px;
}

    .my-activities-wrapper.admin-account-settings {
        padding: 25px 0 45px;
    }

.course-detail-wrap {
    padding: 23px 0 50px;
}

.activity-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .activity-sec .heading-icon-content h1 {
        margin-bottom: 0;
    }
.search-delete-wrap .options-menu li {
    margin-right: 12px;
}

    .search-delete-wrap .options-menu li:last-child {
        margin-right: 0;
    }

.my-profile-wrapper .btn-options {
    justify-content: flex-end;
}
.tabbing-add-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
    .tabbing-add-wrapper .details-tabbing {
        margin-bottom: 0;
    }
.external-training-title {
    width: calc(100% - 75%);
}
.external-training-comments span, .external-training-title span, .enrollment-statistics-wrapper .table .title-text div {
    text-overflow: ellipsis;
    width: 343px;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}
.external-training-title span, .enrollment-statistics-wrapper .table .title-text div {
    width: 200px;
}
.external-training-title span {
    white-space: normal;
    width: 100%;
}
/*div-type listing styles*/
.document-widget-details .different-options {
    display: flex;
}
.discussion-data-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22.5px 0 24.5px;
    margin-bottom: 12px;
}
.data-head-wrap {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 18px;
}
.name-width {
    width: 30%;
}
.data-message {
    display: flex;
    align-items: center;
}
.message-width {
    width: 47%;
}
.documents-details-wrap .message-width {
    width: 25%;
}
.documents-details-wrap .name-width {
    width: 50%;
    display: flex;
}
.actions-width {
    width: 230px;
    text-align: left;
}
.star-icon, .documents-details-wrap .actions-width {
    font-size: 0;
    text-align: right;
}
.documents-details-wrap .actions-width {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.discussion-main-data, .certification-main-data.discussion-main-data, .proctoring-widget-task-wrap .proctoring-task-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgb(193 199 204 / 30%);
    margin-bottom: 15.5px;
    padding: 14.5px 16.5px 13.5px 24.5px;
}
.documents-details-widget-wrapper {
    padding: 26px 23px;
}
.document-details {
    width: calc(100% - 45px);
}

    .document-details .document-name {
        color: #006397;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 18px;
        display: inline-block;
        margin-bottom: 1px;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        white-space: nowrap;
        text-decoration:none;
    }
.documents-details-wrap .document-details .document-name {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 18px;
    text-decoration: none;
}
.discussion-message-details {
    cursor: pointer;
    /* position: relative; */
}
.documents-details-column, .document-type-details {
    display: flex;
    align-items: center;
}
.document-type-details {
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 15px;
}
    .document-type-details .document-type-details-text {
        margin-left: 5px;
    }
.email-notification-details-wrapper .document-type-details .document-type-details-text {
    margin-left: 1.5px;
}
.documents-icon {
    height: 30.34px;
    width: 29.29px;
    margin-right: 13px;
    display: block;
}
    .documents-icon img {
        width: 100%;
        height: 100%;
    }
.documents-details-wrap .documents-icon {
    height: 36px;
    width: 29.41px;
    display: inline-block;
}
.widget-body-content {
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    box-shadow: 0 3px 8px 0 rgb(220 220 220 / 50%);
    margin-bottom: 40px;
    padding: 19.5px 30px 4px 29px;
    position: relative;
    height: 301px;
}
.transcript-body-content {
    padding: 0;
}
.print-details {
    position: relative;
}
.print-details-list {
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgb(165 165 165 / 50%);
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    width: 162px;
    z-index: 11;
    bottom: auto;
}
.print-details .dropdown-icon {
    display: inline-block;
    width: 8px;
    margin-left: 14px;
}
.print-details-list li {
    color: #666666;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 16px;
    border-bottom: 1px solid #e1e1e1;
    padding: 12px 16px;
    text-transform: uppercase;
    cursor: pointer;
}
.document-details .related-info {
    color: #757575;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 15px;
}
.my-activity-tabbing-content, .enrollment-statistics-wrapper, .top-enrollment-stats, .enrollment-stats-chart {
    height: 100%;
}
.widget-body-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 5%;
}
.widget-body h2 {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 11px;
    text-transform: capitalize;
}
.documents-details-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.documents-details-wrap .message-width {
    width: 25%;
}
.multiple-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .multiple-items li {
        margin-right: 20px;
        position: relative;
    }

        .multiple-items li:last-child {
            margin-right: 0;
        }

        .multiple-items li:after {
            content: "";
            position: absolute;
            top: 2px;
            right: -10px;
            height: 74%;
            width: 1px;
            background: #757575;
        }

        .multiple-items li:last-child:after {
            height: 0;
            width: 0;
        }
.activities-trancript-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
    .activities-trancript-widget .details-tabbing {
        margin-bottom: 0;
    }

/*Discussion tab global styles*/

.details-tabbing-content, .bg-colored-scrollable .course-modules .details-tabbing-content, .discussion-widget-details-wrap .course-modules .details-tabbing-content {
    background-color: #f5f7f6;
    padding: 25px 20px;
    height: calc(100vh - 235px);
    overflow-y: auto;
}
.activites-grid-spacing .details-tabbing-content, .active-modules-wrap .details-tabbing-content {
    background: transparent;
    padding: 0;
    height: auto;
    overflow-y: visible;
}
.messaging-space {
    position: relative;
    padding: 34px 0 0 17px;
}
.discussion-board-name {
    position: absolute;
    top: -2px;
    left: 20px;
    display: inline-block;
    color: #101010;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 19px;
    width: calc(100% - 37px);
}
.messages-wrapper {
    height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
}
    .messages-wrapper ul, .messages-wrapper ol {
        /*padding-left: 2rem;*/
        list-style-position: inside;
    }
    .messages-wrapper ul {
        list-style-type: disc;
    }
    .messages-wrapper ol {
        list-style-type: decimal;
    }
.older-messages {
    border-radius: 25px;
    background-color: rgba(216, 216, 216, 0.55);
    color: rgba(51, 51, 51, 0.6);
    font-size: 12px;
    letter-spacing: 0;
    line-height: 13px;
    text-align: center;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 3.6px 17.6px;
}



.left-thread {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 32px;
}

    .left-thread .sender-message {
        width: 91%;
    }

.profile-display {
    height: 33px;
    width: 33px;
    background-color: #fff3ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a3b1b;
    font-size: 12px;
    letter-spacing: 0.51px;
    line-height: 13px;
    margin-right: 12px;
    margin-top: -2px;
}

    .profile-display img {
        border-radius: 50%;
        height: 100%;
    }

.sender-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2px;
}

    .sender-name h2 {
        color: #000000;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 0.51px;
        line-height: 13px;
        margin-right: 5px;
    }

.message-time {
    color: #565656;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.51px;
    line-height: 13px;
}

.extra-message p {
    color: #585858;
    font-size: 12px;
    letter-spacing: 0.51px;
    line-height: 13px;
}

.extra-message video {
    width: 98%;
    height: 100%;
}

.extra-message a {
    color: #006498;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 16px;
}

.no-extra-message p {
    color: #585858;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 16px;
}

.padding-right {
    padding-right: 20px;
}

.like-reply-wrapper {
    display: inline-flex;
    border-radius: 2px;
    background-color: #f2f2f2;
    margin-top: 8px;
}

.icon-reply,
.icon-like {
    margin-right: 5px;
}

    .icon-reply svg g,
    .icon-like svg g {
        fill: #777777;
    }

.reply-btn {
    color: #777777;
    font-size: 10px;
    letter-spacing: 0.43px;
    line-height: 11px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .reply-btn:hover {
        color: #777777;
    }

.like-btn {
    color: #0000ff;
}

    .like-btn:hover {
        color: #0000ff;
    }

    .like-btn .icon-like svg g {
        fill: #0000ff;
    }

.right-thread {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 33px;
    padding-right: 10px;
}

    .right-thread .sender-message {
        background-color: #d9f2ff;
        padding: 9px 5px 4px 24px;
    }

.more-info {
    display: flex;
    align-items: center;
    position: relative;
}

    .more-info button {
        padding: 0 8px;
    }

.message-actions {
    position: absolute;
    top: 50px;
    right: 0;
    border: 1px solid #cbcbcb;
    border-radius: 2px;
    background-color: #fffce6;
    z-index: 1;
}

.left-thread .message-actions {
    top: 30px;
}

.message-actions li {
    height: 43px;
    width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

    .message-actions li:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 42px;
        border-bottom: 1px solid #cbcbcb;
    }

    .message-actions li:last-child:after {
        height: 0;
        width: 0;
    }

.post-message {
    border-top: 1px solid #e5e5e5;
    padding-top: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.post-message-btn {
    padding: 0;
    color: #006498;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 13px;
    text-transform: uppercase;
}

.messenger-input-box {
    border: 0;
    outline: 0;
    background: transparent;
    color: #989898;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 16px;
    width: calc(100% - 120px);
}

.icon-send {
    vertical-align: 1px;
    margin-left: 2px;
}

.post-message-btn .icon-send svg g {
    fill: #006498;
}
.approve-icon img, .reject-icon img {
    vertical-align:-3px;
}
.catalog-course-inventory li span {
    vertical-align: middle;
}
.catalog-course-inventory li span:before {
    font-size:26px;
}
.close-search-btn .icon-close-btn:before {
    color: #4d4d4d;

}
.calendar-view .icon-calendar:before {
    color: #4d4d4d;
}
.cards-view-wrap span.active:before {
    color: #ffffff;
}
.v-middle {
    vertical-align:middle;
}
.activities-trancript-widget .print-details .dropdown-icon:before {
    color:#ffffff;
}
.previous-arrow-icon {
    transform: rotate(180deg);
    font-size: 10px;
}
.next-arrow-icon {
    font-size:10px;
}
.card-grid .other-details .icon-lock img {
    height:auto;
}
.communication-center-menu li:hover .tooltip-custom {
    display: inline-flex;
}
.checkboxdiv {
    position:relative;
}
    .checkboxdiv:hover .tooltip-custom {
        display: inline-flex;
        top: 23px;
        right: auto;
        white-space: nowrap;
        left: 0;
        z-index: 2;
    }
#DeleteLearningPathMaterialsModalContainer .content-info-alignmid {
    text-align: center;
}

.dim-icon {
    opacity: 0.3 !important;
}

.PaginationLink {
    text-align: center;
    margin: 20px;
}

    .PaginationLink a {
        padding: 10px;
        border-radius: 2px;
        background: #006498;
        text-decoration: none;
        color: #ffffff !important;
        font-weight: bold;
    }

        .PaginationLink a:hover {
            color: #ffffff !important
        }