/*
Here you can write your own CSS styles.
*/
body {
  font-family: helvetica, arial, verdana, sans-serif;
  font-size: 12px;
  overflow-y: scroll;
  min-width: 320px;
}

.elo-toasts {
  position: fixed;
  width: 400px;
  margin-left: -200px;
  left: 50%;
  z-index: 20001;
}

.elo-toast {
  min-width: 200px;
  max-width: 400px;
  min-height: 20px;
  height: auto;
  position: relative;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  -webkit-box-shadow: 0 0 24px -1px rgba(56, 56, 56, 1);
  -moz-box-shadow: 0 0 24px -1px rgba(56, 56, 56, 1);
  box-shadow: 0 0 24px -1px rgba(56, 56, 56, 1);
  border-radius: 5px;
}

.elo-fading {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}

.elo-fadein {
  opacity: 1;
}

.elo-slidein {
  -webkit-animation: elo-slide 0.5s 0s 1 ease forwards;
  animation: elo-slide 0.5s 0s 1 ease forwards;
}

@-webkit-keyframes elo-slide {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes elo-slide {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.elo-toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIdJREFUeNpiYBjygBGZ09DQMB9IGQCxA5D9EU2OH0gdAOILQHYiTJwJzUADKD4A1YCuGSYPByxoBjggKQQZ4gAVh4ldgKrB7gUstl1ActkFbF5jxBYwaIYw4NKMLQwoiwWKvYBFM9ZARDYE3QsYCqGKHaBiBlA1OMPgAjZb0Ay5wDC8AECAAQCALUKkr+pwBgAAAABJRU5ErkJggg==');
}

.elo-toast-type-error .elo-toast-close {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMZBgk6Vk541gAAAGlJREFUOMvdkcENgCAMRVvjnZXYlFXcAFdhgudBSLBBNBgv/EuTtv8lvxWZS0AAIuAaM5dnoQeInLpAKjNA7AGchbR6TzGs4b35BtI1L398YjzC5yOOvHE1jD1Xr6qpNFU1AV5EtmpnFh1dIe4MQ/wW4gAAAABJRU5ErkJggg==');
}

.elo-toast-close:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFhJREFUeNpiYBh2YD4Qnwdifixy/FC5+fgMACn4j8UQfjQ5nIAfiyH8eAwmyhCSNGMzBK9mJlrEBEVeoDgQSY5GFjQDLkBpByD+iCT+ESp2AEnNcAEAAQYAF08ryR06PQIAAAAASUVORK5CYII=');
}

.elo-toast-type-info {
  background-color: #f5f5f5;
  color: grey;
}

.elo-toast-type-error {
  background-color: red;
  color: white;
}

.elo-toast-title {
  font-size: 16px;
  padding-bottom: 4px;
}

.elo-toast-message {
  font-size: 12px;
}

.enrollment-error {
  border: 1px solid #f17c75;
  background-color: #ffe5e5;
  margin-top: 30px;
  padding: 15px;
  font-size: 13px;
  }



/* Grid Layout */

.main-wrapper,
.content-wrapper {
  position: relative;
  margin: 0 auto;
  width: 95%;
  max-width: 1400px;
  min-width: 290px;
}

.page-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  display: flex;
}

.content-sidebar-right {
  position: absolute;
  min-width: 270px;
  width: 25%;
  top: 0;
  right: 0;
}

.content-sidebar-left {
  position: absolute;
  width: 250px;
  top: 0;
  left: 0;
}

.content-left {
  max-width: calc(100% - 280px);
  width: calc(75% - 30px);
}

.content-right {
  max-width: calc(100% - 280px);
  width: 100%;
  margin-left: 280px;
}

.content-wrapper .content-left {
  max-width: none;
  padding-right: 30px;
  flex-basis: calc(75% - 30px);
  flex-grow: 1;
}

.content-wrapper .content-sidebar-right {
  position: relative;
  width: 25%;
  min-width: 270px;
  max-width: 350px;
}

@media (max-width:991px) {

  .content-wrapper {
    display: block;
  }

  .content-left,
  .content-right {
    max-width: none;
    width: 100%;
    margin-left: 0;
  }

  .content-wrapper .content-sidebar-right,
  .content-sidebar-right,
  .content-sidebar-left {
    position: static;
    right: auto;
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  body.single-course .page-wrapper:not(.content-wrapper) {
    margin-top: 0;
  }

  body.single-course .page-wrapper .content-left {
    margin-bottom: 40px;
  }

  .page-wrapper .content-sidebar-right {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
  }

  .page-wrapper .content-sidebar-right>* {
    flex: 1 1 0;
    margin-right: 20px;
    flex-wrap: wrap;
    min-width: 250px;
  }
}




/* Global Basics */

.page-description {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}

.search .search-text {
  font-size: 12px;
  padding: 18px 32px 18px 15px;
  height: 39px;
}

.search .search-reset {
  position: absolute;
  cursor: pointer;
  display: block;
  padding: 5px;
  right: 44px;
  top: 7px;
  z-index: 6;
  color: #aaa;
}

.search .search-reset:hover {
  color: #666;
}

.search .search-button {
  background: #eee;
  font-size: 13px;
  padding: 9px 9px;
  height: 39px;
  width: 39px;
}

.compatibility-note {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.compatibility-note.active {
  display: table;
}

.compatibility-note>div {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.compatibility-note .message-box {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 50px;
  display: table;
}

.compatibility-note .message-box>div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.compatibility-note .message-box h1 {
  font-size: 26px;
  margin: 0;
}

.compatibility-note .message-box .glyphicon {
  font-size: 80px;
  color: #f00;
  margin: 30px 0;
}

.compatibility-note .message-box p {
  line-height: 1.6em;
  font-size: 20px;
  margin: 0;
}

@media (max-height:540px) {
  .compatibility-note .message-box {
    top: 0;
    height: 100%;
    padding: 30px;
  }
}

.component-container {
  width: 100%;
  height: 100%;
}

/* Skeleton */

.skeleton .placeholder-item {
  -webkit-animation-name: placeholder-shimmer;
  -moz-animation-name: placeholder-shimmer;
  -ms-animation-name: placeholder-shimmer;
  -o-animation-name: placeholder-shimmer;
  animation-name: placeholder-shimmer;
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  -o-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #f6f7f8;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f7f8), color-stop(20%, #edeef1), color-stop(40%, #f6f7f8), color-stop(100%, #f6f7f8));
  background-image: -webkit-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-image: -moz-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-image: -o-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-image: linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 200px;
  position: relative;
  overflow: hidden;
}

.skeleton .line {
  display: inline-block;
  width: 60%;
}

.skeleton .line-80 {
  width: 80%;
}

.skeleton .line-40 {
  width: 40%;
}

.skeleton .placeholder-filter-group {
  margin: 10px 10px;
  position: relative;
  display: block;
  padding: 10px 15px;
}

@-webkit-keyframes placeholder-shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@-moz-keyframes placeholder-shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@-ms-keyframes placeholder-shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@-o-keyframes placeholder-shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@keyframes placeholder-shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}




/* Page Menu */

page-menu {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #F2F2F2;
  font-size: 1.25em;
  padding: 0;
}

page-menu a {
  display: inline-block;
  border-bottom: 3px solid transparent;
  padding: 13px 12px 10px;
  color: #666;
}

body.start page-menu .page-menu-start,
body.catalog page-menu .page-menu-catalog,
body.learning-paths page-menu .page-menu-learning-paths,
body.medialibrary page-menu .page-menu-medialibrary,
body.my-courses page-menu .page-menu-my-courses,
body.certificates page-menu .page-menu-certificates {
  border-color: #f59c00;
  text-decoration: none;
  color: #333;
}

page-menu a:hover,
page-menu a:active,
page-menu a:focus {
  text-decoration: none;
  color: #000;
}




/* Start Page */

.start-image {
  height: 350px;
  background-size: cover;
  display: block;
  background-color: #F2f2f2;
}

.start-banner {
  height: 350px;
  margin-top: -350px;
}

.start-banner-card {
  height: 200px;
  width: 500px;
  right: 0;
  top: 50%;
  margin-top: -100px;
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  text-align: right;
}

.start-banner-card h1 {
  font-size: 28px;
  margin: 10px 0 10px;
}

.start-banner-card p {
  font-size: 16px;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.7);
}

.start-banner-card a.btn {
  margin-bottom: 10px;
  background-color: #4b4d52;
  border-color: #4b4d52;
  color: #fff;
}

.start-banner-card a.btn:hover {
  background-color: #3a3b3f;
  border-color: #3a3b3f;
}

.start-banner-card a.btn-primary {
  background-color: #f59c00;
  border-color: #f59c00;
}

.start-banner-card a.btn-primary:hover {
  background-color: #dc8c00;
  border-color: #dc8c00;
}

@media (max-width:1400px) {
  .start-image {
    height: 290px;
  }

  .start-banner {
    height: 290px;
    margin-top: -290px;
  }
}

@media (max-width:991px) {
  .start-image {
    height: 200px;
  }

  .start-banner {
    width: 100%;
    height: 200px;
    margin-top: -200px;
  }

  .start-banner-card {
    background: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width:800px) {
  .start-image {
    height: 140px;
  }

  .start-banner {
    height: auto;
    margin-top: 0;
    background: #f4f4f4;
  }

  .start-banner-card {
    height: auto;
    position: relative;
    top: 0;
    text-align: left;
    margin: 0 auto;
    width: 95%;
    max-width: 1400px;
    min-width: 290px;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .start-banner-card h1 {
    font-size: 24px;
  }
}

@media (max-width:500px) {
  .start-image {
    height: 120px;
  }

  .start-banner-card h1 {
    font-size: 20px;
  }

  .start-banner-card p {
    font-size: 15px;
  }
}

/* Course list */
courses-list {
  position: relative;
  display: block;
}

/* Course Item */

courses-list .nothing-found {
  font-size: 13px;
  color: #888;
  padding: 40px 0 20px;
  text-align: center;
}

course-item-skeleton,
course-item {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

course-item .course-item {
  position: relative;
  height: 305px;
  border: 1px solid #dcdcdc;
  display: flex;
  flex-direction: column;
}

course-item .course-item.course-item-grid {
  height: unset;
}


course-item:hover .course-item-hover {
  -webkit-box-shadow: 2px 2px 5px 1px rgba(207, 207, 207, 0.5);
  -moz-box-shadow: 2px 2px 5px 1px rgba(207, 207, 207, 0.5);
  box-shadow: 2px 2px 5px 1px rgba(207, 207, 207, 0.5);
  -webkit-transform: scale(1.008);
  transform: scale(1.008);
  transform-origin: top center;
}

course-item .course-item.course-item-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 1fr 50px;
  grid-template-areas:
    "image content"
    "image footer";
}

@media (max-width: 600px) {
  course-item .course-item.course-item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 50px;
    grid-template-areas:
      "image content"
      "image footer";
  }

  course-item .course-item.course-item-grid .footer .enrollment {
    max-width: 70%;
  }
}

@media (max-width: 500px) {
  course-item .course-item.course-item-grid {
    grid-template:
      "image"
      "content"
      "footer";
  }
}


course-item .course-item.course-item-grid .image {
  grid-area: image;
}

course-item .course-item.course-item-grid .content {
  grid-area: content;
  height: 36px;
}

course-item .course-item.course-item-grid .name {
  text-overflow: ellipsis;
  white-space: nowrap;
}

course-item .course-item.course-item-grid .course-item-labels {
  float: right;
}

course-item .course-item.course-item-grid .footer {
  grid-area: footer;
  height: max-content;
}

course-item .course-item.course-item-grid .footer .left {
  max-width: 50%;
  padding-right: 0;
}

course-item .course-item.course-item-small {
  min-height: 48px;
  max-height: 60px;
  display: flex;
  flex-direction: row;
  align-content: center;
}

course-item .course-item.course-item-small .image {
  width: 20%;
  height: initial;
}

course-item .course-item.course-item-small .content {
  padding-left: unset;
  height: 100%;
}

course-item .course-item.course-item-small .title {
  font-size: 1.2em;
}

course-item .course-item.course-item-small .title .name {
  max-height: 43px;
}

course-item .course-item.course-item-small .footer {
  display: none;
}

course-item a {
  color: black;
  cursor: pointer;
  text-decoration: none !important;
}

course-item-skeleton .image,
course-item .image {
  background-color: #f5f5f5;
  height: 110px;
  display: block;
  position: relative;
  background-size: cover;
}

@-o-keyframes fadeIt {
  0% {
    background: rgba(0, 0, 0, 0.2);
  }

  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@keyframes fadeIt {
  0% {
    background: rgba(0, 0, 0, 0);
  }

  100% {
    background: rgba(0, 0, 0, 0.2);
  }
}

course-item .image .hover-info {
  display: none;
  width: 100%;
  height: 100%;
  font-size: 50px;
  text-align: center;
  padding-top: 25px;
  color: white;
}

course-header .image .main-wrapper {
  position: static;
}

course-header .image .enrollment,
course-item .image .enrollment {
  position: absolute;
  background-color: #0d5086;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 1.1em;
  bottom: 0;
}

course-header .image .enrollment {
  padding: 10px 15px;
  font-size: 1.5em;
}

course-header .image .enrollment-line,
course-item .image .enrollment-line {
  position: absolute;
  background-color: #0d5086;
  height: 6px;
  width: 100%;
  bottom: 0;
}

course-header .COMPLETED .enrollment,
course-header .COMPLETED .image .enrollment-line,
course-item .COMPLETED .enrollment,
course-item .COMPLETED .image .enrollment-line {
  background-color: #2d5f10;
}

course-header .RUNNING .enrollment,
course-header .RUNNING .image .enrollment-line,
course-item .RUNNING .enrollment,
course-item .RUNNING .image .enrollment-line {
  background-color: #dc8c00;
}

course-item .course.item-hover:hover .image .hover-info {
  display: block;
  background: rgba(0, 0, 0, 0.2);
  -o-animation: fadeIt 0.25s ease-in-out;
  animation: fadeIt 0.25s ease-in-out;
}

course-item-skeleton .content,
course-item .content {
  height: 140px;
  display: block;
  overflow: hidden;
  position: relative;
}

.course-item-labels {
  margin: 12px 15px 0px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
}

.course-item-label {
  background-color: unset;
  font-weight: bold;
  color: inherit;
  font-size: 1.2em;
  flex-basis: auto;
}

course-item-skeleton .title,
course-item .title {
  display: flex;
  justify-content: space-between;
  font-size: 1.4em;
  font-weight: bold;
  padding: 10px 15px;
  color: #1479cc;
}

course-item .title .name {
  position: relative;
  line-height: 20px;
  max-height: 48px;
  min-height: 1.5em;
  display: block;
  overflow: hidden;
}

course-item-skeleton .title .language,
course-item .title .language {
  color: #888;
  font-weight: normal;
  border: 1px solid #ccc;
  background: transparent;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 5px;
  margin-right: unset;
}

course-item-skeleton .description,
course-item .description {
  font-size: 14.4px;
  display: block;
  padding: 0px 15px 0px 15px;
}

course-item .content.truncated-description:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 50%;
  height: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), white 75%);
}

course-item .title .name:after {
  content: "";
  text-align: right;
  position: absolute;
  top: 1.4em;
  right: 0px;
  width: 35%;
  height: 1.7em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 75%);
}

course-item .type {
  background-color: #dc8c00;
  color: #ffffff;
  margin-right: -15px;
  padding: 5px 15px;
  display: inline;
  position: absolute;
  top: 15px;
}

course-item-skeleton .price,
course-item .price {
  font-weight: bold;
  color: #1479cc;
}

course-item .enrollment {
  background-color: #0d5086;
  color: #ffffff;
}

course-item .enrollment-line {
  position: absolute;
  background-color: #0d5086;
  height: 6px;
  width: 100%;
  bottom: 0;
}

course-item .COMPLETED .enrollment,
course-item .COMPLETED .enrollment-line {
  background-color: #2d5f10;
}

course-item .RUNNING .enrollment,
course-item .RUNNING .enrollment-line {
  background-color: #dc8c00;
}

course-item-skeleton .footer,
course-item .footer {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  padding: 15px;
}

course-item-skeleton .footer>*,
course-item .footer>* {
  overflow: hidden;
  max-width: 49%;
  text-overflow: ellipsis;
  padding: 5px 15px;
  margin-left: -15px;
  margin-right: -15px;
}

course-item-skeleton .footer>*:last-child,
course-item .footer>*:last-child {
  text-align: right;
  margin-left: auto;
}

course-item-skeleton .footer>*.left,
course-item .footer>*.left {
  text-align: left;
  margin-right: auto;
  margin-left: -15px;
}

course-item .course-item-hover:hover .title {
  color: #0d5086;
  transition: 0.25s ease-in;
}

course-item .enrollment-small {
  display: none;
}

@media (max-width: 767px) {
  course-item .content:after {
    bottom: -15px;
  }
}

course-item.learning-path .footer .left {
  max-width: 50%;
  margin-right: 0;
  padding-right: 0;
}

course-item.learning-path .footer .enrollment {
  max-width: 60%;
  margin-left: 0;
}

@media (max-width:500px) {
  course-item.learning-path .course-item {
    max-height: 50em;
    height: unset;
  }
}

/* Course Item List */

@media (min-width:500px) {

  course-item-skeleton.list,
  course-item.list {
    height: 102px;
    margin-bottom: 15px;
  }

  course-item.list:hover {
    transform-origin: left;
  }

  course-item-skeleton.list .image,
  course-item.list .image {
    height: 100px;
    width: 250px;
    display: inline-block;
    position: absolute;

  }

  course-item.list>a {
    overflow: hidden;
    position: relative;
    height: 100%;
  }

  course-item.list .image .hover-info {
    font-size: 38px;
    padding-top: 20px;
  }

  course-item-skeleton.list .content,
  course-item.list .content {
    height: auto;
    padding-left: 253px;
    width: 100%;
  }

  course-item-skeleton.list .title,
  course-item.list .title {
    padding: 15px 15px 0px 15px;
    white-space: nowrap;
  }

  course-item.list .course-item-labels {
    margin: 5px 15px -20px 15px;

  }

  course-item-skeleton.list .title {
    margin-top: 15px;
    font-size: 1.1em;
  }

  course-item.list .description {
    font-size: 1.1em;
    height: auto;
    white-space: nowrap;
    width: calc(100% - 1px);
    position: relative;
  }

  course-item-skeleton.list .description {
    font-size: 0.9em;
  }

  course-item.list .title .name:after,
  course-item.list .description:after {
    content: "";
    text-align: right;
    position: absolute;
    top: 0;
    right: -1px;
    width: 33%;
    height: 1.8em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 75%);
  }

  course-item.list .content:after {
    content: unset;
  }

  course-item-skeleton.list .footer,
  course-item.list .footer {
    margin: 0 0 5px 0;
    padding: 0px 9px 0 268px;
    height: 15px;
    position: absolute;
    width: 100%;
    bottom: 0px;
  }

  course-item-skeleton.list .footer {
    padding-top: 0;
    font-size: 0.8em;
  }
}

/* Course Item Learning Path */

course-item-skeleton .related-courses,
course-item .related-courses {
  display: none;
}

course-item-skeleton.learning-path .skeleton,
course-item.learning-path>a {
  position: relative;
  display: block;
}

course-item.learning-path .title {
  padding: 10px 15px 10px 15px;
}

course-item-skeleton.learning-path .content,
course-item.learning-path .content,
course-item-skeleton.learning-path .description,
course-item.learning-path .description {
  height: auto;
}

course-item.learning-path .description::after {
  display: none;
}

course-item.learning-path .content:after {
  bottom: -15px;
  visibility: hidden;
}

course-item-skeleton.learning-path .related-courses,
course-item.learning-path .related-courses {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  border: none;
  padding: 20px 15px 0;
}

course-item.learning-path .related-courses.skip-items::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 75%);
}

course-item-skeleton.learning-path .related-courses h2,
course-item.learning-path .related-courses h2 {
  margin: 0 0 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

course-item-skeleton.learning-path .related-courses ul {
  list-style: none;
  margin: 0;
  padding: 15px 0 0 10px;
}

course-item.learning-path .related-courses ul {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 5px 0 0 10px;
  border-left: 2px solid #dcdcdc;
}

course-item-skeleton.learning-path .related-courses ul li,
course-item.learning-path .related-courses ul li {
  padding: 5px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

course-item.learning-path .related-courses ul li::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: -22px;
  background-color: #dcdcdc;
}

course-item.learning-path .related-courses .nothing-found {
  display: block;
  font-size: 13px;
  color: #888;
  padding: 40px 0 20px;
  text-align: center;
}

course-item.learning-path .footer .left {
  width: 100%;
}

course-item-skeleton.learning-path .footer .right {
  display: none;
}

@media (min-width:500px) {

  course-item-skeleton.learning-path .image,
  course-item.learning-path .image,
  course-item-skeleton.learning-path .content,
  course-item.learning-path .content,
  course-item-skeleton.learning-path .footer,
  course-item.learning-path .footer {
    width: 50%;
  }

  course-item-skeleton.learning-path .content,
  course-item.learning-path .content {
    height: 120px;
  }

  course-item.learning-path .content::after {
    visibility: visible;
  }

  course-item-skeleton.learning-path .description,
  course-item.learning-path .description {
    height: 3em;
  }

  course-item.learning-path .description::after {
    display: block;
  }

  course-item-skeleton.learning-path .related-courses,
  course-item.learning-path .related-courses {
    position: absolute;
    width: 50%;
    height: 100%;
    border-left: 1px solid #dcdcdc;
    padding: 20px;
    max-height: none;
    background: #fff;
    right: 0;
    top: 0;
  }

  course-item.learning-path .related-courses::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 75%);
  }
}


/* Course Header */

course-header-skeleton,
course-header {
  padding: 0;
  display: block;
}

course-header-skeleton .image,
course-header .image {
  width: 100%;
  height: 350px;
  max-height: 400px;
  display: block;
  position: relative;
}

course-header-skeleton .image {
  background-size: 3000px 500px !important;
}

course-header .image {
  background-size: cover;
  background-color: #f5f5f5;
  background-position: center center;
  background-repeat: no-repeat;
}

course-header .type {
  background-color: #dc8c00;
  color: #ffffff;
  font-size: 1.5em;
  margin-right: -15px;
  padding: 10px 20px;
  display: inline;
  position: absolute;
  top: 10%;
  left: 0%;
}

course-header-skeleton .content-sidebar-right,
course-header .content-sidebar-right {
  margin-top: 30px;
  z-index: 1000;
}

course-header-skeleton .course-info,
course-header .course-info {
  display: block;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #dcdcdc;
  width: 100%;
  padding: 20px;
}

course-header-skeleton .course-info-title,
course-header .course-info-title {
  margin: 0 0 10px;
  padding: 0 0 10px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.4em;
}

course-header-skeleton .course-info-content,
course-header .course-info-content {
  padding: 0 5px;
}

course-header-skeleton .course-info .info-value,
course-header .course-info .info-value {
  font-size: 1.2em;
  display: block;
  width: 55%;
  padding-left: 5px;
}

course-header-skeleton .course-info-content,
course-header .course-info-content {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

course-header-skeleton .course-info-content>span,
course-header .course-info-content>span {
  padding-bottom: 8px;
}

course-header-skeleton .course-info .info-property,
course-header .course-info .info-property {
  padding-right: 5x;
  font-size: 1.2em;
  width: 45%;
}

course-header .course-info .info-property:after {
  content: ":";
}

course-action-buttons .course-info-buttons .btn-group {
  position: relative;
}


course-header-skeleton .course-info-buttons,
course-header .course-info-buttons {
  margin-top: 5px;
}

course-header-skeleton .course-info-buttons .glyphicon,
course-header .course-info-buttons .glyphicon {
  margin-right: 4px;
}

course-header-skeleton .course-info-buttons .btn-group:nth-child(n+2),
course-header .course-info-buttons .btn-group:nth-child(n+2) {
  margin-top: 10px;
}

course-header-skeleton .course-info-buttons>.btn-group>.btn,
course-header .course-info-buttons>.btn-group>.btn {
  margin-top: 5px;
}

course-header-skeleton .course-info-buttons .btn.disabled,
course-header .course-info-buttons .btn.disabled {
  box-shadow: none;
  outline: 0;
  pointer-events: auto;
  cursor: default;
}

.course-info-buttons a.btn.loading span {
  filter: blur(10px);
}

.course-info-buttons a.btn.loading {
  -webkit-animation-name: placeholder-shimmer;
  -moz-animation-name: placeholder-shimmer;
  -ms-animation-name: placeholder-shimmer;
  -o-animation-name: placeholder-shimmer;
  animation-name: placeholder-shimmer;
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  -o-animation-duration: 0.7s;
  animation-duration: 1.7s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(25%, rgba(0, 0, 0, 0.25)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(75%, rgba(0, 0, 0, 0.25)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5)8 40%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -moz-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-image: -o-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-image: linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  /* background-repeat: repeat-x; */
  background-size: 800px 200px;
  position: relative;
  overflow: hidden;
  /* filter: blur(10px); */
}

course-header .coursestatus-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.coursestatus-badge .badge-strap {
  position: absolute;
  background-color: #f59c00;
  bottom: 42px;
  right: -32px;
  height: 25px;
  width: 200px;
  transform: rotate(-40deg);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 25px;
  font-size: 11px;
}

@media (min-width:991px) {

  course-header-skeleton .content-sidebar-right,
  course-header .content-sidebar-right {
    top: -300px;
  }

  course-header-skeleton .course-info,
  course-header .course-info {
    height: 360px;
  }

  course-header-skeleton .course-info-buttons,
  course-header .course-info-buttons {
    position: absolute;
    width: calc(100% - 50px);
    margin: 0;
    bottom: 25px;
    left: 25px;
  }

  course-header-skeleton .course-info-buttons>.btn-group,
  course-header-skeleton .course-info-buttons>.btn-group>.btn,
  course-header .course-info-buttons>.btn-group,
  course-header .course-info-buttons>.btn-group>.btn,
  course-header .course-info-buttons>div>.btn-group,
  course-header .course-info-buttons>div>.btn-group>.btn,

  .content-sidebar-right knowledge-board .btn-knowledgeSpace {
    width: 100%;
  }
}

@media (max-width:1400px) {

  course-header-skeleton .image,
  course-header .image {
    height: 290px;
  }
}

@media (max-width:991px) {
  course-header div .main-wrapper:nth-child(2) {
    float: right;
    width: 50%;
    margin-left: 30px;
    margin-bottom: 30px;
  }

  course-header .course-info,
  course-header .course-info {
    background: #fafafa;
  }

  course-header-skeleton .image,
  course-header .image {
    height: 200px;
  }

  course-header-skeleton .course-info-buttons .btn-group:nth-child(n+2),
  course-header .course-info-buttons .btn-group:nth-child(n+2) {
    margin-top: 0px;
    padding-left: 10px;
  }

  course-header .coursestatus-badge {
    right: 20px;
  }
}

@media (max-width:800px) {

  course-header-skeleton .image,
  course-header .image {
    height: 140px;
  }
}

@media (max-width:500px) {
  course-header div .main-wrapper:nth-child(2) {
    float: unset;
    width: 95%;
    margin: 0 auto;
  }

  course-header-skeleton .image,
  course-header .image {
    height: 120px;
  }

  course-header-skeleton .course-info-buttons .btn-group:nth-child(n+2),
  course-header .course-info-buttons .btn-group:nth-child(n+2) {
    margin-top: 10px;
    padding-left: 0px;
  }
}

@media (max-width: 991px) {

  course-header-skeleton .course-info-buttons .btn-group,
  course-header-skeleton .course-info-buttons .btn-group .btn,
  course-header .course-info-buttons .btn-group,
  course-header .course-info-buttons .btn-group .btn {
    width: 100%;
  }
}

course-header-skeleton {
  line-height: 1.3em;
}




/* Course Filter */

course-filter .search {
  margin-bottom: 30px;
}

.content-sidebar-left course-filter .search {
  margin-bottom: 20px;
}

course-filter .search-text {
  font-size: 12px;
  padding: 18px 15px;
  height: 39px;
}

course-filter .search-button {
  background: #eee;
  font-size: 13px;
  padding: 9px 9px;
  height: 39px;
  width: 39px;
}

course-filter-group h2 {
  font-size: 1.25em;
  margin: 20px 0 10px;
}

course-filter-group .list-group-item {
  cursor: pointer;
}

course-filter-group .list-group-item.inactive {
  cursor: default;
  border-color: #eee;
  background: #fff;
  color: #aaa;
}

course-filter-group .remove {
  display: none;
  float: right;
  font-size: 1.2em;
}

course-filter-group .list-group-item:hover .remove {
  display: inline-block;
}

/* Course Basics */

.course-not-found-info {
  color: #666;
  text-align: center;
  margin-top: 25vh;
  margin-bottom: 15vh;
}

.course-not-found-info p {
  font-size: 14px;
  margin: 15px 0 20px;
}

.course-not-found-info h1 {
  font-size: 24px;
}

.course-labels {
  margin-top: 15px;
  margin-bottom: -20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 15px;
}

.course-label {
  background-color: unset;
  color: inherit;
  font-weight: bold;
  font-size: 1.4em;
  flex-basis: auto;
}

.course-title {
  font-size: 1.8em;
  line-height: 1.5;
  font-weight: bold;
  display: block;
  margin-top: 15px;
  padding-top: 15px;
}

.course-title .language {
  color: #888;
  font-weight: normal;
  border: 1px solid #ccc;
  background: transparent;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  margin-left: 5px;
  position: relative;
  top: -3px;
}

.course-description {
  font-size: 1.3em;
  color: #666;
  margin: 0;
}

.course-content {
  font-size: 1.2em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
}

.course-requirements {
  padding: 15px 15px 5px 15px;
  border: 1px solid #dcdcdc;
  margin: 0 0 30px;
  display: block;
}

.course-requirements>h1 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #555;
}

.course-requirements .requirements-descr {
  margin: 0 0 10px;
}

.course-community .community-header {
  margin-top: 70px;
  padding: 20px 0 0;
  background: #f2f2f2;
  margin-bottom: -5px;
}

.course-community .community-header h1 {
  font-size: 20px;
  margin: 0;
}




/* Related Courses */

related-courses {
  margin: 50px 0 30px;
  display: block;
}

related-courses .path-line {
  margin-left: 15px;
  border-left: 3px solid #dcdcdc;
}

related-courses .path-content {
  margin-left: 20px;
}

related-courses .circle {
  border-radius: 17px;
  width: 36px;
  height: 36px;
  margin-left: -40px;
  background-color: #dcdcdc
}

related-courses .circle .done {
  text-align: center;
  width: 100%;
  font-size: 14pt;
  padding-top: 7px;
  color: #717171;
}

related-courses .circle-small {
  position: absolute;
  border-radius: 11px;
  width: 15px;
  height: 15px;
  margin-left: -29px;
  background-color: #dcdcdc;
}

related-courses .learning-path-list .circle-small {
  margin-top: 43px;
}

related-courses .learning-path-list {
  padding: 20px 0 0 0;
}




/* Sessions List */

sessions-list {
  border: 1px solid #dcdcdc;
  max-height: 300px;
  overflow-y: auto;
  display: block;
}

sessions-list > course-session > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

sessions-list> course-session > ul>li {
  border-top: 1px solid #E3E4E5;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
}

sessions-list> course-session > ul>li:first-child {
  border: none;
}

sessions-list> course-session > ul>li:hover {
  background: #f2f2f2;
}

sessions-list> course-session > ul>li.active {
  background: #4972a5;
  color: #fff;
}

sessions-list>.nothing-found {
  padding: 10px 15px;
  font-size: 14px;
  color: #888;
  cursor: default;
  background: transparent;
}

sessions-list  course-session .session.full {
  color: lightgray;
}

sessions-list  course-session  .badge {
  float: right;
  margin-top: 3px;
}
course-session .badge {
  white-space: inherit;
}
course-session .badge.available {
  background-color: #7CCB52;
}

course-session .badge.lastseats {
  background-color: #EBBF14;
}

course-session .badge.full {
  background-color: #E11313;
}
course-session .badge.booked {
  background-color: #7CCB52;
}

.session .local-time {
  color: #888;
  margin-left: 5px;
}


/* Course Session */

course-session {
  padding: 15px 15px 20px 15px;
  border: 1px solid #dcdcdc;
  margin: 0 0 30px;
  display: block;
}

course-session[type="list-item"] {
  padding: 0px;
  border: none;
  margin: 0px;
  display: inherit;
}

course-session:not([type="list-item"]) {
  border: 1px solid #dcdcdc;
  padding-bottom: 5px;
  max-height: 400px;
  overflow-y: auto;
  display: block;
}

course-session>h2 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #555;
}


course-session .session .session-title>div {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-content: center;
  align-items: stretch;
}

course-session .session .session-title>div>*:last-child {
  display: inline-block;
  margin-left: auto;
  height: fit-content;
  float: right;
  margin-top: 3px;
}

course-session .session .location {
  margin-left: 10px;
}

course-session .session ul.session-timesets {
  list-style-type: disc;
  margin: 0;
}

course-session .session ul.session-timesets li {
  display: none;
}

course-session .session ul.session-timesets.open {
  margin: 10px 0px;
}

course-session .session ul.session-timesets.open:before {
  content: attr(aria-label);
  font-size: 1.2rem;
  margin-left: -15px;
  margin-bottom: 8.5px;
}

course-session .session ul.session-timesets.open li {
  display: list-item;
}

course-session .session-chevron {
  padding: 2px;
  margin-right: 5px;
  cursor:pointer;
  color: #808182;
}


course-session .session {
  list-style: none;
  margin: 0;
  padding: 0;
}

course-session:not([type="list-item"]) .session>li {
  border-top: 1px solid #E3E4E5;
  padding: 10px 0px;
  font-size: 14px;
}
course-session:not([type="list-item"]) .session>li:first-child {
  border-top: none;
}

/* Course Location */

course-location>div {
  padding: 15px 15px 20px 15px;
  border: 1px solid #dcdcdc;
  margin: 0 0 30px;
  display: block;
}

course-location>div>h1 {
  margin: 0 0 5px;
  font-size: 15px;
  color: #555;
}

course-location>div>div {
  font-size: 18px;
  text-align: center;
}

course-location>div div.location-location {
  font-weight: bold;
}

course-location>div address.location-address {
  margin-top: 10px;
}

/* Course Instructor */

course-instructor {
  text-align: center;
  display: block;
  padding: 10px 12px 20px;
  border: 1px solid #dcdcdc;
  margin-bottom: 30px;
}

course-instructor .title {
  text-align: left;
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  display: block;
}

course-instructor .image {
  margin: 0 auto;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  display: block;
  background-color: #f2f2f2;
}

course-instructor .name {
  padding: 10px 0 5px 0;
  display: block;
  font-size: 1.4em;
}

course-instructor .position {
  display: block;
}

course-instructor .company {
  display: block;
}




/* Course Materials */

course-materials {
  display: block;
  margin: 30px 0;
}

course-materials .nav-link {
  font-size: 1.1em;
}

course-materials .nav-tabs {
  border: none;
}

course-materials .tab-content>.tab-pane {
  border: 1px solid #ddd;
  padding: 7px 13px;
}

course-materials .material {
  display: block;
  padding: 7px 0;
}

course-materials .material .type {
  height: 24px;
  width: 24px;
  background-size: contain;
  background-position: center;
  position: absolute;
}

course-materials .material .name {
  display: block;
  margin-left: 24px;
  height: 24px;
  padding: 3px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Course certificate */

course-certificate {
  margin: 0 0 30px;
  display: block;
}

course-certificate>div>h1 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #555;
}

course-certificate certificate-item {
  margin-bottom: 0px;
}

course-certificate certificate-item .certificate .content {
  min-height: unset;
  margin-bottom: 20px;
}

course-certificate certificate-item .certificate .title {
  font-size: 20px;
}

course-certificate certificate-item .certificate .footer {
  display: none;
}

/* Knowledge Board */

knowledge-board iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.content-sidebar-right knowledge-board .component-container {
  height: unset;
}

.content-sidebar-right knowledge-board .component-container>div {
  padding: 15px 15px 20px 15px;
  border: 1px solid #dcdcdc;
  margin: 0 0 30px;
  display: block;
}

.content-sidebar-right knowledge-board .component-container>div>h1 {
  margin: 0 0 20px;
  font-size: 15px;
  color: #555;
}

.content-sidebar-right knowledge-board .component-container>div>div {
  font-size: 18px;
  text-align: center;
  margin-left: 5px;
  margin-right: 10px;
}

.content-sidebar-right knowledge-board .component-container>div>div>.btn {
  color: #064f82;
  background-color: #fff;
  border-color: #05406a;
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.3333333;
  border-radius: 2px;
}

.content-sidebar-right knowledge-board .component-container>div>div>.btn .glyphicon {
  margin-right: 4px;
}

.content-sidebar-right knowledge-board .component-container>div>div>.btn:hover {
  color: #fff;
  background-color: #064f82;
}

/* My Courses */
.my-courses-wrapper .btn-inactive {
  color: rgba(0, 0, 0, 0.4);
  border: 1px solid #064f82;
}

.my-courses-wrapper .nav-tabs {
  font-size: 14px;
}

.my-courses-wrapper .tab-content>.tab-pane {
  padding: 30px 0 0;
}

/*
.my-courses-wrapper courses-list .content-sidebar-left {
  position: inherit;
}
@media (min-width: 991px) {
  .my-courses-wrapper courses-list {
    display: flex;
    justify-content: space-between;
  }

  .my-courses-wrapper courses-list .content-right {
    max-width: unset;
    margin-left: 20px;
  }
} */

/* Course Statistics */

courses-statistics {
  margin-bottom: 10px;
  display: block;
}

courses-statistics .chart-item {
  border: 1px solid #dcdcdc;
  padding: 10px;
  margin-bottom: 20px;
}

courses-statistics .chart-item .title {
  padding: 12px 12px 12px 15px;
  display: block;
  margin: -10px -10px 10px -10px;
  font-size: 14px;
}

courses-statistics .chart-item button.toggle-zoom {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: transparent;
  float: right;
  margin-top: -12px;
  height: 44px;
  width: 44px;
  margin-right: -12px;
  font-size: 1.05em;
  border: none;
  outline: none !important;
}

courses-statistics .chart-item button.toggle-zoom:hover {
  /*background-color: #f2f2f2;*/
  font-size: 1.2em;
  -webkit-transition: font-size 0.25s;
  -moz-transition: font-size 0.25s;
  -o-transition: font-size 0.25s;
  transition: font-size 0.25s;
}

courses-statistics .chart-item.zoom {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 1000;
  top: 0;
  left: 0;
}

courses-statistics .chart-item.zoom .title {
  font-size: 1.4em;
}
courses-statistics .chart-item.zoom canvas.chart {
  width: auto !important;
  max-width: 100vw !important;
  height: auto !important;
  max-height: 100vh !important;
}

courses-statistics .chart-item.zoom button.toggle-zoom {
  position: relative;
  right: 10px;
  font-size: 1.2em;
}

/*courses-statistics .chart-item.zoom button.toggle-zoom:hover {
  font-size: 1.05em;
}*/




/* Certificates */

.certificates-descritpion {
  margin-bottom: 30px;
  font-size: 15px;
  color: #666;
}

certificate-item {
  border: 1px solid #dcdcdc;
  margin-bottom: 30px;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  background-image: url('../images/certificate-background.png');
  background-repeat: repeat;
}

certificate-item:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(207, 207, 207, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(207, 207, 207, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(207, 207, 207, 0.5);
  transition: 0.25s ease-in;
  border-color: #bcbcbc;
}

certificate-item .certificate {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}

certificate-item .certificate-badge {
  position: absolute;
  right: 10px;
  top: 0;
}

certificate-item .certificate-badge .badge-strap {
  position: absolute;
  background-color: #f59c00;
  top: 40px;
  right: -48px;
  height: 25px;
  width: 200px;
  transform: rotate(40deg);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  line-height: 25px;
  font-size: 11px;
}

certificate-item .certificate-badge .badge-star {
  display: none;
}

certificate-item .certificate .content {
  padding: 20px 25px 0;
  min-height: 200px;
}

certificate-item .certificate .title {
  font-size: 24px;
  margin: 0 0 8px;
  color: #333;
}

certificate-item .certificate .description {
  font-size: 14px;
  color: #666;
}

certificate-item .certificate .name {
  font-size: 20px;
  color: #1479cc;
  font-weight: bold;
  margin: 8px 0;
}

certificate-item .certificate .category {
  color: #333;
  font-size: 14px;
}

certificate-item .certificate .footer {
  overflow: hidden;
  width: 100%;
  padding: 15px 25px;
  color: #666;
  height: 45px;
}

certificate-item .certificate .footer div {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 50%;
  white-space: nowrap;
}

certificate-item .certificate .footer .left {
  float: left;
}

certificate-item .certificate .footer .right {
  text-align: right;
  float: right;
}




/* Web based Training Page */

body.wbt {
  overflow: hidden;
}

body.wbt .ctrl-page-header,
body.wbt .ctrl-page-footer {
  display: none;
}

.wbt-menu {
  padding: 0;
  font-size: 15px;
  height: 43px;
  display: block;
}

.wbt-menu.light {
  /*background-color: #f2f2f2;*/
  background-color: #fff;
  border-bottom: 1px solid #dcdcdc;
}

.wbt-menu .wbt-btn-close {
  display: inline-block;
  padding: 11px;
  text-decoration: none;
  color: #666;
}

.wbt-menu .wbt-btn-close:hover {
  background-color: #f59c00;
  color: #fff;
}

.wbt-menu .wbt-course-name {
  display: inline-block;
  font-weight: bold;
  padding: 11px;
}

.wbt-menu .wbt-btn-downloads,
.wbt-menu .wbt-btn-video,
.wbt-menu .wbt-btn-community {
  padding: 11px 15px;
  float: right;
  position: relative;
  cursor: pointer;
}

.wbt-menu .wbt-btn-downloads.active,
.wbt-menu .wbt-btn-video.active,
.wbt-menu .wbt-btn-community.active {
  border-bottom: 4px solid #f59c00;
  color: #333;
  padding-bottom: 7px;
}

.wbt-menu .wbt-btn-downloads:hover,
.wbt-menu .wbt-btn-video:hover,
.wbt-menu .wbt-btn-community:hover {
  color: #000;
}

.wbt-content iframe {
  position: absolute;
  width: 100%;
  height: calc(100% - 43px);
  border: none;
}

app-video iframe {
  position: absolute;
  width: 100%;
  height: calc(100% - 43px);
  border: none;
}

.wbt-content.sidepanel-active iframe {
  width: 65%;
  max-width: calc(100% - 450px);
}

.wbt-sidepanel {
  width: 35%;
  min-width: 450px;
  position: absolute;
  height: calc(100% - 43px);
  right: 0;
}

.wbt-sidepanel>* {
  border-left: 1px solid #dcdcdc;
  z-index: 2000;
  position: relative;
}

.wbt-contents {
  padding: 15px;
}

.wbt-community iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width:1100px) {

  .wbt-menu .wbt-course-name {
    display: none;
  }

  .wbt-content.sidepanel-active iframe,
  .wbt-sidepanel {
    width: 50%;
  }
}

@media (max-width:850px) {

  .wbt-menu .wbt-course-name,
  .wbt-menu .wbt-btn-text {
    display: none;
  }

  .wbt-sidepanel {
    width: 100%;
  }

  .wbt-content.sidepanel-active {
    display: none;
  }
}


@media (max-width:991px) {

  course-header .course-info {
    width: calc(100% - 20px);
  }

  course-materials {
    margin-top: 0px;
  }
}

/** Video */

body.video {
  overflow: hidden;
}

body.video .ctrl-page-header,
body.video .ctrl-page-footer {
  display: none;
}

body.video video {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 44px);
}

body course-item-skeleton .medialibrary .image,
body course-item .medialibrary .image {
  height: 200px;
}

body course-item-skeleton .medialibrary .title,
body course-item .medialibrary .title {
  padding: 10px 15px;
}

body course-item .medialibrary .title .name {
  width: 100%;
}

body course-item .medialibrary .title .name:after {
  top: 0;
  width: 15%;
}

body course-item-skeleton .medialibrary .content,
body course-item .medialibrary .content {
  height: 65px;
}

body course-item .medialibrary .footer {
  padding: 10px 15px;
}

course-item .lock-info {
  width: 100%;
  height: 100%;
  font-size: 35px;
  text-align: center;
  padding-top: 25px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}

course-item .direct-action {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

course-item .direct-action:hover {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 35px;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.25);
}

/** Modals **/
.sol-learning-modal.modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.sol-learning-modal .modal-dialog-centered {
  padding: 30px;
}

.sol-learning-modal .modal-header {
  position: relative;
  background: transparent;
  border-bottom: none;
  padding: 15px 0 0;
  font-size: 16px;
}

.sol-learning-modal .modal-descr {
  font-size: 13px;
  margin-bottom: 10px;
}

.sol-learning-modal label {
  display: inline;
  font-weight: normal;
}

.sol-learning-modal .modal-descr-thin {
  font-size: 13px;
}

.sol-learning-modal .modal-body {
  padding: 10px 0px;
}

.sol-learning-modal .modal-footer {
  padding: 5px 0px;
  border-top: 0px;

  display: flex;
  justify-content: flex-end;
  text-align: unset;
}

.sol-learning-modal .modal-footer button {
  padding: 10px 20px;
  font-size: 12px;
  display: inline-block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  min-height: 27px;
  min-width: 83px;
  border: none;
}

.sol-learning-modal .modal-footer .btn+.btn {
  margin-left: 10px;
  margin-bottom: 0;
}

.sol-learning-modal .modal-footer button:focus {
  outline: none;
}

.sol-learning-modal .modal-footer button.btn-previous {
  color: #000;
  background-color: #ccc;
}

.sol-learning-modal .modal-footer button.btn-cancel {
  color: #000;
  background-color: #ccc;
}

.sol-learning-modal .modal-footer button.btn-next {
  color: #fff;
  background-color: #064f82;
}

.sol-learning-modal .modal-footer button.btn-enroll {
  color: #fff;
  background-color: #064f82;
}

.sol-learning-modal .modal-footer button:not([disabled]):hover .sol-learning-modal .modal-footer button.disabled {
  background-color: #ccc;
  color: #000;
}

.sol-learning-modal .modal-header>span.glyphicon-remove {
  position: absolute;
  color: #888;
  height: 40px;
  width: 40px;
  right: 0px;
  top: -15px;
  padding-top: 15px;
  cursor: pointer;
  text-align: center;
}

.sol-learning-modal .modal-header>ol {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-inline-start: unset;
  position: relative;
  margin-top: 20px;
}

.sol-learning-modal .modal-header>ol:after {
  content: " ";
  border-bottom: 1px solid #FFB400;
  ;
  position: absolute;
  width: 100%;
}

.sol-learning-modal .modal-header>ol li {
  background: #fff;
  color: #888;
  padding: 0 20px;
  list-style-position: inside;
  z-index: 1;
}

.sol-learning-modal .modal-header>ol li.available {
  color: inherit;
}

.sol-learning-modal .modal-header>ol li.active {
  color: #1479cc;
}

.sol-learning-modal h2 {
  color: #1479cc;
  font-size: 16px;
}

.sol-learning-modal .modal-body .carousel-item {
  display: none;
}

.sol-learning-modal .modal-body .carousel-item.active {
  display: block;
}

.sol-learning-modal .carousel-indicators {
  top: 5px;
  bottom: unset;
}

.sol-learning-modal .carousel-indicators li {
  border: 1px solid #ccc;
}

.sol-learning-modal .carousel-indicators .active {
  background-color: #ccc;
}

.sol-learning-modal .modal-descr.modal-confirmation {
  text-align: center;
}

.sol-learning-modal .course-item-modal {
  cursor: unset;
}

.sol-learning-modal .modal-expanded {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.sol-learning-modal .modal-expanded+div {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sol-learning-modal .modal-expanded:checked+div {
  line-clamp: unset;
  -webkit-line-clamp: unset;
}

.sol-learning-modal .modal-expanded~label {
  color: #064f82;
  margin: 5px auto 20px;
  display: block;
  text-align: center;
}

.sol-learning-modal label.required:after {
  content: "*";
}

.sol-learning-modal .modal-expanded:focus~label:before {
  outline: -webkit-focus-ring-color auto 5px;
}

.sol-learning-modal textarea {
  position: relative;
  display: block;
  width: 100%;
  resize: none;
  outline: none;
  border-color: rgb(118, 118, 118);
  border-width: 1px;
  border-style: solid;
}

.sol-learning-modal textarea:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, grey, white);
  top: -1px;
  left: 0;
}

.sol-learning-modal textarea:focus {
  outline: none;
}

.sol-learning-modal .interaction-elements>* {
  margin-top: 15px;
}