/* ==========================================================================
   Operam Academy — Login Screen (Split Hero)
   ========================================================================== */

/* Brand + sizing tokens */
:root {
  --brand: #2F6AFF;
  --brand-dark: #00205C;
  --ink: #231F20;
  --muted: #70798d;
  --line: #e5e7ee;
  --bg: #f5f6f9;
}

/* --------------------------------------------------------------------------
   Auth page detector
   Matches login, password-reset, and forgot-password forms only.
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) {
  background: var(--bg) !important;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden !important;
}

/* Hide breadcrumb/title on auth pages */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) .breadcrumb,
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) .page-title {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Page container — centers the split card
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: calc(100svh - 180px) !important;
  margin: 0 auto !important;
  padding: 24px clamp(12px, 3vw, 28px) !important;
  max-width: 1100px !important;
}

/* --------------------------------------------------------------------------
   THE SPLIT CARD
   The .ef-block-content becomes the white form panel on the right.
   We inject the brand panel on the left via ::before.
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content {
  /* form panel (right side) */
  flex: 0 0 clamp(380px, 42vw, 480px);
  width: clamp(380px, 42vw, 480px);
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-left: none !important;
  border-radius: 0 16px 16px 0 !important;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 3.5vw, 48px) !important;
  text-align: left;
  box-shadow: 0 20px 50px rgba(15, 30, 60, 0.08);

  /* entrance */
  opacity: 0;
  transform: translateY(20px);
  animation: oaFadeRise 700ms cubic-bezier(.2, .8, .2, 1) 100ms forwards;
}

/* The brand panel (left side) — injected before the form */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .container::before {
  content: "";
  flex: 0 0 clamp(360px, 38vw, 460px);
  align-self: stretch;
  min-height: 520px;
  background:
    linear-gradient(135deg, var(--brand) 0%, #1E4FD9 100%);
  border-radius: 16px 0 0 16px;
  position: relative;

  /* Decorative pattern: soft radial highlights */
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand) 0%, #1E4FD9 100%);

  /* entrance */
  opacity: 0;
  transform: translateX(-20px);
  animation: oaSlideIn 700ms cubic-bezier(.2, .8, .2, 1) forwards;
}

/* Brand panel content — overlaid via ::after on the container */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .container::after {
  content: "OPERAM ACADEMY \A \A Keep learning. \A Keep growing. \A \A Sign in to continue your courses \A and track your progress.";
  white-space: pre-line;
  position: absolute;
  left: clamp(32px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  max-width: clamp(280px, 30vw, 360px);
  color: #fff;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  pointer-events: none;

  /* entrance */
  opacity: 0;
  animation: oaFadeIn 700ms ease 300ms forwards;
}

/* --------------------------------------------------------------------------
   Strip legacy inner panels so nothing double-boxes
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block,
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content .panel,
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content .panel-body,
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content .card,
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content .card-body {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* --------------------------------------------------------------------------
   Form heading — login
   -------------------------------------------------------------------------- */
body:has(#login_form) #main-content .ef-block-content::before {
  content: "Welcome back";
  display: block;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

body:has(#login_form) #main-content .ef-block-content::after {
  content: "Sign in to pick up where you left off.";
  display: block;
  text-align: left;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   Form heading — reset / forgot
   -------------------------------------------------------------------------- */
body:is(
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content::before {
  content: "Reset your password";
  display: block;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

body:is(
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content::after {
  content: "We'll email you a link to set a new one.";
  display: block;
  text-align: left;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   Inputs
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .form-control {
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 10px !important;
  border: 1px solid #d9dce3 !important;
  height: 44px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}

body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .form-control:hover {
  border-color: #b8bdc9 !important;
}

body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .form-control:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent) !important;
  outline: none !important;
}

/* Field labels — if your template renders them */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* --------------------------------------------------------------------------
   Primary button
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .btn.btn-primary {
  width: 100%;
  height: 44px !important;
  padding: 0 22px !important;
  border-radius: 10px !important;
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.01em !important;
  margin-top: 4px !important;
  cursor: pointer !important;
  transition: background 0.15s ease, transform 0.06s ease, box-shadow 0.2s ease !important;
}

body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--brand) 88%, var(--brand-dark)) !important;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 30%, transparent) !important;
}

body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .btn.btn-primary:active {
  transform: translateY(1px);
}

/* --------------------------------------------------------------------------
   Forgot password / secondary links inside the form
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content a {
  color: var(--brand) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 13px !important;
}

body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) #main-content .ef-block-content a:hover {
  text-decoration: underline !important;
}

/* --------------------------------------------------------------------------
   Support button — only on auth pages
   -------------------------------------------------------------------------- */
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) header a[href*="support"],
body:is(
  :has(#login_form),
  :has(form#initiate_password_form),
  :has(form[action*="password_change"]),
  :has(form[action*="forgot"])
) a[href*="support"] {
  display: inline-block !important;
  background-color: var(--brand) !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  border: none !important;
  font-size: 13px !important;
}

/* ==========================================================================
   RESPONSIVE — stack on tablet/mobile
   ========================================================================== */
@media (max-width: 900px) {
  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .container {
    flex-direction: column !important;
    min-height: auto !important;
    padding: 32px 16px !important;
    max-width: 480px !important;
  }

  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .container::before {
    flex: 0 0 auto;
    width: 100%;
    min-height: 200px;
    border-radius: 16px 16px 0 0;
  }

  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .container::after {
    left: 32px;
    right: 32px;
    top: 100px;
    transform: none;
    max-width: none;
    text-align: left;
  }

  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .ef-block-content {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 0 0 16px 16px !important;
    border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-top: none !important;
    padding: 32px 28px !important;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes oaFadeRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oaSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes oaFadeIn {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .container::before,
  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .container::after,
  body:is(
    :has(#login_form),
    :has(form#initiate_password_form),
    :has(form[action*="password_change"]),
    :has(form[action*="forgot"])
  ) #main-content .ef-block-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ==========================================================================
   End of Login Screen
   ========================================================================== */

div.ef-block {
    margin-bottom: 0px;
}

.alert-info hr {display:none;}

div.alert button[type="button"].close {
  position:relative;
  bottom:8px;
  color:black !important;
}

div.alert.alert-info:before {
    content: '\f02d';
    padding: 0px 17px 0px 12px;
    font-size: 4.5rem;
  	color:#01AEE9
}

div.alert.alert-info {
  	color:black;
  background-color: #F6FAFB !important;
}


/*support button icon*/
.emailicon {

    content: '\f0e0' !important;
  font-size: 50px;
  color:white;

}

/*Removal of 'Seminars' bar from eSeminar*/

#lessonTree_lesson\3a 242 > div {
 background-color:white;
  display:none !important;
}

#lessonTree_lesson\3a 242 {display:none;}

.ef-unit-tree ul > li.ef-courses-list-item.lesson-entry:nth-child(odd):not(.unit-entry) {
    background-color: white;
}

/* Adjust the Operam logo size in the header */
#ef-navbar .navbar-header img {
    max-height:80px !important;  /* adjust height */
    width: auto !important;       /* keep correct proportions */
}

/* Control logo size in the New UI */
.new-ui-html header img[title="Operam Academy"] {
    max-height: 80px !important;  /* adjust as needed */
    height: auto !important;
    width: auto !important;
}


/*changes the table menu colour*/
.topTitle, 
.topTitle a:link,
.topTitle a:visited
{
  color: #fff;
} 

/*Announcement */
.alert-warning hr {

    border-top-color: #f7e1b5;
    display: none;

}

#announcement_1_93 {
 border: 3px solid #2F6AFF;
  
}

div.alert button[type="button"].close {

    color: black;
    opacity: 0.85;
    text-shadow: 0 1px 0 #888;

}

div.alert {

padding: 20px 15px 20px 90px;
color: white;
font-weight: 300;  
}



.alert::before {

    font-weight: normal;
    font-family: FontAwesome;
    font-size: 26px;
    content: '\f12a';
    position: absolute;
    top: 50%;
    left: 40px;
    height: 40px;
    width: 30px;
    margin-top: -20px;
    text-align: center;
    line-height: 40px;
}

/*ANNOUNCEMENT END */


/*changes the sytem font colour*/
body {
  /*font-family: 'arial', sans-serif;*/
  /*color:#4B606F;*/
   }

/*changes the breadcrumb text to white*/

.breadcrumb-x .ef-breadcrumb li.active a {
font-size: 14px;
font-weight: 600;
color: #ffffff;
  }

/*Grid table AKA the course boxes*/
table.sortedTable {
  background-color:#253746;
  top: 2px; 
  border-radius:4px;
}
/*Odd rows*/
tr.oddRowColor {
  background: #C7C8CA;
  border-bottom: 1px solid #D0D0D0;
  border-top: 1px solid #D0D0D0;
}
 
/*Even rows*/
tr.evenRowColor {
  background:#C7C8CA;
}
/*On hover above row color*/
tr.oddRowColor:hover,tr.evenRowColor:hover {
  background: #C7D7F3;
}
/*Grid footer*/
td.sortedTableFooter {
  background-color:#4B606F
;
}

.h5p-create-container {
  float: none !important;
}

.ef-my-courses ul li.ef-my-courses-category > div.ef-entry-head span.ef-entry-name {
 text-transform: inherit;
}
/*Reduce size of search bar*/
#ef-navbar .container .navbar-header { max-width: 200px;}

/*Make Category text lowercase*/
.ef-card-entries .ef-card .ef-card-wrap div.caption .ef-plain.ef-category {    text-transform: none;
    font-size: 0.75em;
}

.ef-dashboard-header .ef-category-name {
 font-size: 1.2rem;
 text-transform: none;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

#searchDiv {
    background-color: #EEEFF1!important;
}
#ef-navbar form.navbar-form .selectize-input, #ef-navbar form.navbar-form input[type=text], #ef-navbar form.navbar-form span.search-handle {
    background-color: #EEEFF1;
}
.searchDivRight {
    background-color: #EEEFF1!important;
}
#sResultsDiv {
    background: #EEEFF1!important;
}
.ef-active > #searchDiv {
    background-color: #EEEFF1!important;
}
.active-search-input {
    background-color: #EEEFF1!important;
}
.searchDivCenter >.active-search-input {
    background: #EEEFF1!important;
}
.searchDivRight > span.search-handle {
    background-color: #EEEFF1!important;
}
#searchInputContainer > .clickableRow:nth-child(even) {
      background: #EEEFF1!important;
}
#sResultsDiv > .clickableRow:nth-child(even) {
      background: #EEEFF1!important;
}
#sResultsDiv > .clickableRow {
      background: #EEEFF1!important;
}
.clickableRow:hover {
        background: #EEEFF1!important;
}
.clickableRow:nth-child(even) {
        background: #EEEFF1!important;
}
.clickableRow:nth-child(even):hover {
        background: #EEEFF1!important;
}
#ef-navbar .container .row, #ef-navbar .container .row > * {
        background: #EEEFF1!important;
}

.label-ef-completed {
    background-color: #2F6AFF!important;
}
*.progress .progress-bar.progress-bar-success {
    background-color: #C1D2FF!important;
}
#ef-navbar form.navbar-form input, #ef-navbar form.navbar-form span.search-handle {
    color: #373A36!important;
}
.breadcrumb-x {
    min-height: 40px;
}
div.breadcrumb-x {
    height: 47px;
}
#ef-navbar {
    height: 72px;
}
#ef-navbar .container ul.nav.navbar-nav > li > button, #ef-navbar .container ul.nav.navbar-nav > li a.dropdown-toggle {
    color: #2F6AFF!important;
}
.breadcrumb-x {
    min-height: 40px !important;
    margin: 0 0 20px 0;
}
#ef-navbar {
  height: 100px !important;
}
div#userNavBar {
    padding: 20px 0;
}
#ef-navbar > .container #searchInputContainer {
    padding: 20px 0;
}
#ef-navbar .container ul.nav.navbar-nav > li > a:hover, #ef-navbar .container ul.nav.navbar-nav > li > button:hover, #ef-navbar .container ul.nav.navbar-nav > li > button:active {
    color: #253746;
}
#ef-navbar .container ul.nav.navbar-nav > li > a {
    color: #2F6AFF;
}
#ef-navbar .container ul.nav.navbar-nav > li > button, #ef-navbar .container ul.nav.navbar-nav > li a.dropdown-toggle {
    color: #2F6AFF;
}
div.breadcrumb-x > div > ol > li > a {
    color: white;
}

tr.text-danger td a {
    color: #A94442;
}

.ef-main-action-button .btn-success {
    background-color: #2F6AFF !important;
    border-color: #2F6AFF !important;
    color: #fff !important;
}
.ef-main-action-button .btn-success:hover {
    background-color: #243FCC !important;
    border-color: #243FCC !important;
}

/* 1. Course link hover color (bright blue) */
.ef-unit-link:hover,
.ef-unit-link.passed:hover {
  color: #2F6AFF !important;
}


/* 2. Active lesson left border color (red instead of orange) */
.ef-entry-head.row.active-content::before,
.ef-entry-head.row.current::before {
  background-color: #FF261F !important; /* your red */
}




/* 4. Change "Incomplete" button color to #F9AF2B */
.btn-primary.ef-incomplete-button {
  background-color: #F9AF2B !important;
  border-color: #F9AF2B !important;
  color: #fff !important; /* keep text white for contrast */
  text-transform: none !important; /* optional - remove all caps */
}

/* 5. Course rating stars color */
div.ef-course-rating-stars i.fa-star,
div.ef-course-rating-stars button i.fa-star {
  color: #F9AF2B !important;
}
/* Change catalog/course card rating stars to #F9AF2B */
.ef-rate .fa-star.active,
.ef-rate .fa-star {
  color: #F9AF2B !important;
}

/* Force rounded corners on the search bar */
#ef-navbar form.navbar-form #searchDiv.input-group,
#ef-navbar form.navbar-form #searchDiv.input-group #ef-search-bar {
  border-radius: 12px !important;
}
/* Fix right side of search bar curve */
.searchDivRight,
.searchDivRight .search-handle.input-group-addon {
  border-top-right-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}
/* Change ONLY the category title bars (not the individual courses) */
li.ef-my-courses-category > div.ef-entry-head {
  background-color: #263845 !important;
  color: #fff !important;
}

/* Keep text and icons white for readability */
li.ef-my-courses-category > div.ef-entry-head h2,
li.ef-my-courses-category > div.ef-entry-head .btn,
li.ef-my-courses-category > div.ef-entry-head .fa {
  color: #fff !important;
}
/* 7. Lesson title hover only (bright blue on hover) */
a.ef-entry-link:hover {
  color: #2F6AFF !important;
  text-decoration: none !important;
}
/* 3. "Completed, Let's Continue" button color override (bright blue) */
.btn-success.ef-completed-button {
  background-color: #2F6AFF !important;
  border-color: #2F6AFF !important;
  /* optional: keep white text readable */
  color: #fff !important;
  text-transform: none !important; /* remove ALL CAPS */
}

/* Change active course view icon to bright blue */
.ef-my-courses-toggle-view.active i,
.ef-my-courses-toggle-view[aria-checked="true"] i {
  color: #2F6AFF !important;
}

/* Optional: hover effect for better feedback */
.ef-my-courses-toggle-view:hover i {
  color: #1E4ED8 !important; /* slightly darker blue on hover */
}
/* Hide all Curriculum badges */
.label-ef-curriculum {
    display: none !important;
}

/* DO NOT ADD/EDIT AFTER THIS LINE */
div.breadcrumb-x{background-color:#EA0696;border-color:#EA0696;}
#ef-navbar, #ef-navbar li a.dropdown-toggle[aria-expanded="true"]{background-color:#FFFFFF;border-color:#FFFFFF;}
*.btn.btn-primary, *.btn.btn-primary:not(.active), *.btn.btn-primary:hover, *.btn.btn-primary:hover:not(.active), *.btn.btn-primary:focus, *.btn.btn-primary:focus:not(.active){background-color:#2F6AFF;border-color:#2F6AFF;}
html.new-ui-html:root{--c-brand-primary:#263845;--c-brand-primary-darken-5:#fafafa;--c-brand-primary-darken-7:#f8f8f8;--c-brand-primary-darken-10:#f5f5f5;--c-brand-primary-darken-15:#f0f0f0;--c-brand-primary-darken-17:#eeeeee;--c-brand-primary-darken-20:#ebebeb;--c-brand-primary-darken-25:#e6e6e6;--c-brand-primary-lighten-7:#ffffff;--c-brand-primary-lighten-40:#ffffff;}
html,body, body.new-ui.learner-user .ef-block, body.new-ui.learner-user #talentCraft-unit-footer, .ef-bg-color{background-color:#F4F4F4;}
html,body{background-color:#EEEFF2;}
div.ef-block, div.dashboard-panel div.panel-body{background-color:#FFFFFF;}
