/*** Header Intro ***/
.IcoIntroHeader {
  width: 52px;
}

/*** ACCORDION ***/
.accordion .card {
  background: #F3F3F3;
  border: 1px solid #E8EAEC;
  margin-bottom: 15px;
}

.accordion .card.bg-transparent {
  background: transparent !important;
  border: 1px solid black;
  margin-bottom: 15px;
}

.accordion .card>.card-header {
  background: initial;
  border: 0;
  height: 72px;
  line-height: 70px;
  margin: 0;
  padding: 0;
}

.accordion .card>.card-header>p {
  padding: 16px 10px 0 30px;
}

.accordion .card>.card-header>button {
  border: 0px !important;
  box-shadow: none !important;
  color: #2A2F3C;
  font-size: 16px;
  font-weight: 400;
  padding-left: 15px;
  outline: none !important;
  text-decoration: none !important;
}

.accordion .card>.card-header>button>svg {
  color: #3BCE60;
  font-size: 14px;
  margin-right: 5px;
}

.accordion .card.bg-transparent>.card-header>button>svg {
  color: black !important;
}

.accordion .card.open.transparent {
  background: transparent !important;
}

.accordion .card.open.bg-transparent {
  border: 1px solid;
}

.accordion .card .card-body {
  padding: 0 15px 15px;
}

.accordion .card>.card-header>button>svg {
  width: 10px;
}

.accordion .card>.card-header>button>svg.collapse-icon {
  display: inline;
}

.accordion .card>.card-header>button>svg.collapsed-icon {
  display: none;
}

.accordion .card>.card-header>button.collapsed>svg.collapse-icon {
  display: none;
}

.accordion .card>.card-header>button.collapsed>svg.collapsed-icon {
  display: inline;
}

.accordion .card.open {
  background: white;
  border: 0;
}

@media screen and (min-width: 768px) {
  .accordion .card>.card-header>button {
    font-size: 20px;
  }
}

/*** AREA LIST ***/
.area-list {
  display: flex;
  list-style-type: none;
  margin: 10px 0;
  min-height: 24px;
  padding: 0;
}

.area-list>li {
  border: 1px solid;
  font-size: 11px;
  font-weight: 400;
  height: 24px;
  margin-right: 10px;
  line-height: 24px;
  text-align: center;
  width: 24px;
}

/*** BOX MESSAGE ***/
.box-message {
  font-size: 12px;
  color: #353B4A;
  padding: 16px;
  border: 1px solid;
}

.box-message.success {
  background-color: rgba(59, 206, 96, 0.1);
  border-color: #3BCE60;
}

.box-message.warning {
  background-color: rgba(240, 206, 52, 0.1);
  border-color: #F0CE34;
}

/*** CAROUSEL ***/
.carousel-indicators {
  justify-content: right !important;
  margin: 0 !important;
  margin-bottom: 0px !important;
  margin-right: 20px !important;
  width: auto !important;
}

.carousel-indicators>li {
  background: white !important;
  border-radius: 50% !important;
  border: 1px solid #6B26BA !important;
  height: 10px !important;
  margin: 0 !important;
  margin-left: 8px !important;
  opacity: 1 !important;
  width: 10px !important;
}

.carousel-indicators>li.active {
  background: #6B26BA !important;
}

.carousel-item--HomeMobile .course-item-simple {
  background-color: transparent;
  background-image: url('/themes/afcfmt/images/bg-home-slider.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 90%;
  height: 400px;
}

.carousel-item--HomeMobile .course-item-simple>div {
  width: 85%;
}

.carousel-item--HomeMobile .course-item-simple .btn {
  width: 130px;
}

#carouselPromotedCoursesHome .carousel-indicators {
  position: relative;
  top: 3rem;
  left: inherit;
  justify-content: flex-start !important;

}

#carouselPromotedCoursesHome .carousel-indicators>li:first-child {
  margin-left: 0 !important;
}

@media screen and (max-width: 767px) {
  #carouselPromotedCourses .carousel-item {
    background-image: none !important;
    height: auto;
  }

  #carouselPromotedCourses div.h-fix {
    display: none !important;
  }

  .carousel-indicators {
    display: none !important;
  }
}

/*** CODE ***/
.code-toast {
  background: #fcff00;
  color: #252933;
  font-size: 20px;
  font-weight: 700;
  line-height: 85px;
}

.code-toast a {
  border: 1px solid #252933;
  color: #252933;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.code-toast a:hover {
  background: #252933;
  color: white;
}

@media screen and (max-width: 767px) {
  .code-toast {
    line-height: 40px;
    padding: 15px;
  }

  .code-toast a {
    margin-top: 15px;
    display: block;
    line-height: 15px;
    text-align: center;
  }
}

/*** DOCS LIST ***/
ul.docs-list {
  background: #FCFCFC;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  ul.docs-list {
    flex-direction: row;
  }
}

ul.docs-list>li {
  padding: 20px;
  flex: 0 1 25%;
}

ul.docs-list>li a {
  color: #32C356;
  margin-left: 10px;
  text-decoration: underline !important;
}

ul.docs-list>li>div:last-child {
  border-bottom: 1px solid #E8EAEC;
  margin-bottom: 10px;
  padding-bottom: 16px;
}

ul.docs-list>li .docs-description {
  display: -webkit-box;
  height: 52px;
  overflow: hidden;
  line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*** EVENT ROW ***/
.event-row {
  background: #eee;
  padding: 10px 15px;
  margin: 0 15px;
}

.event-card-special {
  width: 100%;
  background: #ccc;
  background-position: center;
  color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .event-card-special .col-md-6 {
    border: 0px !important;
  }
}

.event-card-button {
  width: auto !important;
  padding: 0 50px !important;
}

.event-info-box {
  display: none;
  margin: 0 30px;
  margin-bottom: 30px;
}

/*** FACULTY BOX ***/
.faculty-box {
  background: #FAFAFA;
  cursor: pointer;
  height: 225px;
  padding-top: 20px;
  text-align: center;
  width: 195px;
}

.faculty-box .faculty-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  height: 64px;
  margin: auto;
  width: 64px;
}

.faculty-box>a {
  color: #2BA84A;
  display: block;
  font-size: 16px;
  font-weight: 500;
  height: 45px;
  margin-top: 15px;
  text-decoration: underline;
  text-transform: uppercase;
}

#faculty-firstname,
#faculty-lastname {
  text-transform: uppercase;
}

.faculty-box>p {
  color: #353B4A;
  font-size: 12px;
  font-weight: 300;
  height: 40px;
  padding: 15px;
}

.faculty-box>p {
  color: #353B4A;
  font-size: 12px;
  font-weight: 300;
  height: 40px;
  margin-top: 1rem;
  padding: 0 15px;
}

.faculty-box>div {
  color: white;
  background-color: #32C356;
  font-size: 12px;
  padding: 5px;
  text-align: center;
}

/*** PARTICIPANT BOX ***/
.participant-box {
  background: #FAFAFA;
  height: 225px;
  padding-top: 20px;
  text-align: center;
}

.participant-box .participant-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  height: 64px;
  margin: auto;
  width: 64px;
}

.participant-box>a {
  color: #6B26BA;
  display: block;
  font-size: 16px;
  font-weight: 500;
  height: 45px;
  margin-top: 15px;
  text-decoration: underline;
}

.participant-box>p {
  color: #6B26BA;
  font-size: 12px;
  font-weight: 300;
  height: 40px;
  padding: 15px;
}

.participant-box>p {
  color: #6B26BA;
  font-size: 12px;
  font-weight: 300;
  height: 40px;
  margin-top: 1rem;
  padding: 0 15px;
}

.participant-box>div {
  color: white;
  background-color: #6B26BA;
  font-size: 10px;
  padding: 5px;
  text-align: center;
}

/*** FORM ***/
.checkbox {
  background: white;
  border: 1px solid #E8EAEC;
  color: white;
  cursor: pointer;
  float: left;
  font-size: 8px;
  height: 16px;
  line-height: 16px;
  margin-top: 0px;
  transition: .5s;
  width: 16px;
}

.checkbox.active {
  background: white;
  border: 1px solid #32C356;
  color: #32C356;
}

.front-form .form-control {
  /*border: 1px solid #CB3C2E;*/
  box-shadow: initial;
  color: black;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 0 15px;
  text-align: right;
}

.front-form .form-control-wrapper {
  height: 50px;
}

.front-form .form-control-wrapper svg {
  color: #32C356;
  position: relative;
  margin-left: 35px;
  left: -50%;
  top: 30px;
}

.front-form .form-select {
  appearance: initial !important;
}

.upload-container {
  color: #6B26BA;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}

/*** LIST LINKS ***/
.block-links {
  padding: 3rem 0;
}

.block-link-item {
  border-radius: 10px;
  background: white;
  /*height: 213px;*/
  height: 170px;
  padding: 30px 20px;
  text-align: center;
}

.block-link-item p {
  color: black;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  margin-top: 10px;
  text-transform: uppercase;
}

.block-link-item div {
  background: #F4F4F4;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 300;
  margin: auto;
  margin-top: 10px;
  padding: 3px;
  width: 90px;
}

.block-links .owl-item {
  background: transparent !important;
}

.block-links .owl-dots {
  display: none !important;
}

/*** MAGAZINE LIST ***/
ul.magazine-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.magazine-list>li {
  width: 25%;
}

/*** NOTIFICATION ***/
#btn-notifications {
  padding-left: 3rem;
}

#bell-indicator {
  background: #F0CE34;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  line-height: 12px;
  height: 12px;
  position: absolute;
  right: 43px;
  text-align: center;
  top: 19px;
  width: 12px;
}

#notifications-box {
  background: #2A2F3C;
  height: 100%;
  padding: 3rem;
  position: fixed;
  right: -450px;
  top: 0;
  transition: .5s all;
  width: 450px;
  z-index: 9999;
}

#notifications-box.visible {
  right: 0px;
  transition: .5s all;
}

#notifications-box-container {
  color: white;
  font-size: 30px;
  height: calc(100% - 150px);
  margin-left: 0px;
  margin-top: 4rem;
  overflow-y: auto;
  padding: 0;
  text-align: center;
}

#notifications-box-container>li {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.notification-item {
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.notification-item.success {
  border-left: 5px solid #51BA7F;
}

.notification-item.warning {
  border-left: 5px solid #F0CE34;
}

.notification-item.error {
  border-left: 5px solid #CB3C2E;
}

.notification-item .notification-item-title {
  line-height: 24px;
}

.notification-item .notification-item-title>a {
  font-size: 20px;
}

.notification-item.success .notification-item-title>a {
  color: #51BA7F;
}

.notification-item.warning .notification-item-title>a {
  color: #F0CE34;
}

.notification-item.error .notification-item-title>a {
  color: #CB3C2E;
}

.notification-item .notification-item-date {
  color: #9AA3AE;
  font-size: 12px;
  font-weight: 100;
}

.notification-item .notification-item-description {
  color: #E8EAEC;
  font-size: 12px;
  font-weight: 100;
}

.notification-item .notification-item-cta a {
  border: 1px solid #E8EAEC;
  color: #E8EAEC;
  display: block;
  float: left;
  font-size: 12px;
  height: 100;
  margin-top: 10px;
  padding: 2px;
  text-align: center;
  text-decoration: none;
  transition: .5s all;
  width: 50px;
}

.notification-item .notification-item-cta a:hover {
  background: #E8EAEC;
  color: #2A2F3C;
  transition: .5s all;
}

/*** SEARCH LIST ***/
#container-filters {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  width: 100%;
}

#container-filters>li {
  background: #32C356;
  border-radius: 3px;
  color: white;
  float: left;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-right: 8px;
  margin-top: 1rem;
  padding: 5px 15px;
}

#container-filters>li>img {
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  cursor: pointer;
  margin-left: 10px;
  margin-top: -2px;
  padding: 3px;
}

/*** SEARCH **/
.search-separator {
  background-color: #3BCE60;
  height: 4px;
  width: 100%;
}

.search-input-wrapper {
  background: #f4f4f4;
  margin-top: 15px;
  padding: 10px 15px;
}

.search-input {
  background: transparent;
  border: 0 !important;
  border-left: 1px solid #707070 !important;
  font-size: 20px;
  font-weight: 700;
  height: 45px;
  line-height: 45px;
  margin: 15px 0;
  margin-left: 9px;
  /*margin: 0;
	margin-left: 0;*/
  outline: none !important;
  padding: 0 15px;
  /*width: 100%;*/
  width: calc(100% - 109px);
}

.search-input::placeholder {
  font-weight: 100;
}

.search-button {
  background: transparent;
  border: 0;
  color: #2BA84A;
  float: right;
  font-weight: 700;
  height: 45px;
  margin-left: 20px;
  margin-top: 2rem;
  outline: 0;
  line-height: 45px;
  width: 80px;
}

/*** START CARD ***/
.start-card {
  box-shadow: 0px 0px 24px 1px rgb(0, 0, 0, .16);
  height: 220px;
  padding: 15px 20px;
  width: 300px;
}

.start-card .start-card-cluster {
  color: white;
  float: left;
  font-size: 10px;
  font-weight: 700;
}

.start-card .start-card-cluster {
  color: white;
  float: left;
  font-size: 10px;
  font-weight: 700;
}

.start-card .start-card-gap {
  background: rgba(255, 255, 255, .16);
  border-radius: 3px;
  color: white;
  float: right;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 15px;
}

.start-card .start-card-title {
  color: white;
  display: -webkit-box;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  line-clamp: 2;
  margin-top: -5px;
  overflow: hidden;
  width: 60%;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.start-card .start-info {
  margin-left: 170px;
  position: absolute;
  margin-top: -50px !important;
}

.start-card .start-info a {
  color: white;
  text-decoration: none !important;
}

.start-card .start-card-progress {
  background: rgba(255, 255, 255, .32);
  height: 8px;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
}

.start-card .start-card-progress>div {
  background: white;
  height: 8px;
  border-radius: 10px;
}

.start-card .start-card-value {
  color: white;
  float: left;
  font-size: 12px;
  font-weight: 100;
  margin-bottom: 5px;
  margin-right: 15px;
  width: calc(50% - 15px);
}

.start-card .start-card-value .start-card-value-label {
  float: left;
  width: 60%;
}

.start-card .start-card-value .start-card-value-value {
  font-size: 24px;
  float: right;
  text-align: right;
  width: 40%;
}

.start-card .start-card-activities {
  color: white;
  font-size: 12px;
  margin-top: 8px;
  text-decoration: underline;
}

.start-card.no-gap {
  background: white !important;
}

.start-card.no-gap .start-card-cluster {
  color: #7B7A7E;
}

.start-card.no-gap .start-card-progress {
  background: #E7E7E7;
}

.start-card.no-gap .start-card-value {
  color: #191C24;
}

.start-card.no-gap .start-card-activities {
  color: #7B7A7E;
  text-decoration: none;
}

.start-card.half-gap .start-card-cluster {
  color: #7B7A7E;
}

.start-card.half-gap .start-card-title {
  color: #191C24;
}

.start-card.half-gap .start-card-progress {
  background: #E7E7E7;
}

.start-card.half-gap .start-card-value {
  color: #191C24;
}

/*** START BOX ***/
.start-box-wrapper {
  background-image: url(/themes/afcfmt/images/background-menu-progetti.png);
  background-repeat: no-repeat;
  background-size: 55% 536px;
}

.start-box {
  display: flex;
  flex-wrap: wrap;
  float: right;
  list-style-type: none;
  margin: 0;
  margin-bottom: 3rem;
  padding: 0;
  width: 484px;
}

.start-box li {
  background: red;
  height: 256px;
  margin-bottom: 3rem;
  margin-left: 3rem;
  padding: 2rem;
  width: 218px;
}

.start-box li.area-1 {
  background: rgba(21, 96, 100, .8);
}

.start-box li.area-2 {
  background: rgba(202, 46, 85, .8);
}

.start-box li.area-3 {
  background: rgba(10, 145, 187, .8);
}

.start-box li.area-4 {
  background: rgba(245, 131, 81, .8);
}

.start-box li .start-category {
  border: 1px solid white;
  color: white;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}

.start-box li .start-category-title {
  color: white;
  font-size: 16px;
  font-weight: 700;
  height: 46px;
  margin-top: 2rem;
}

.start-box li .start-activities {
  color: white;
  font-size: 11px;
  font-weight: 500;
  margin-top: 110px;
  text-decoration: underline;
}

.start-box .start-info {
  margin-left: 170px;
  position: absolute;
  margin-top: -103px;
}

.start-box .start-info a {
  color: white;
  text-decoration: none !important;
}

.start-box .start-card .start-category {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  width: 24px;
}

.start-box .start-card .start-card-gap-assessment {
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}

.start-box .start-card .start-card-gap-value {
  color: white;
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
}

.start-box .start-card .start-card-gap-novalue {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
}

.start-box .start-card .start-category-title {
  display: -webkit-box;
  height: 23px;
  overflow: hidden;
  line-clamp: 1;
  margin-top: 8px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.start-box .start-card .start-card-value .start-card-value-label {
  font-size: 11px;
  line-height: 14px;
  padding-top: 5px;
}

.start-box .start-card .start-card-value .start-card-value-value {
  font-size: 20px;
  padding-top: 5px;
}

.start-box .start-card .start-activities {
  margin-top: 3px;
}

@media screen and (max-width: 767px) {
  .start-box-wrapper {
    background: none
  }

  .start-box {
    width: 100%;
  }

  .start-box li {
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .start-box .owl-item.active {
    background-color: transparent;
  }

  .start-box .owl-dots {
    display: none;
  }

  .block-start-intro {}

  .block-start-intro>div {
    width: 80%;
  }

  .block-start-bg {
    background-image: url('/themes/afcfmt/images/sfondo-ret-grigio-home.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right;
  }
}

@media screen and (max-width: 992px) {
  .start-box-wrapper {
    background-size: cover;
    background-position: center;
  }
}

/*** TABS LIST ***/
#container-tags {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  width: 100%;
}

#container-tags>li {
  background: #F4F4F4;
  border-radius: 3px;
  border-color: #E8EAEC;
  color: #6B26BA;
  cursor: pointer;
  float: left;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-right: 8px;
  margin-top: 1rem;
  padding: 5px 15px;
}

#container-tags>li.active {
  background: #6B26BA;
  border-color: #6B26BA;
  color: white;
}

#container-tags>li>img {
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  margin-left: 10px;
  margin-top: -2px;
  padding: 3px;
}

#container-tags>li.active>img {
  display: initial;
}

/*** STEPPER ***/
.stepper ul {
  display: inline-flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.stepper ul>li {
  width: 50px;
}

.stepper ul>li.active>div {
  background: #3BCE60;
  border: 1px solid #2BA84A;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.stepper ul>li>div {
  background: white;
  border: 1px solid #2BA84A;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.stepper .stepper-indicator {
  background: #9AA3AE;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -11.5px;
  width: 160px;
}

/*** TAGS LIST ***/
ul.tags-list {
  display: inline-flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.tags-list>li {
  background: #F4F4F4;
  border: 1px solid #E8EAEC;
  border-radius: 6px;
  color: #6B26BA;
  font-size: 14px;
  font-weight: 500;
  height: 33px;
  line-height: 33px;
  margin-right: 8px;
  padding: 0 15px;
  text-align: center;
}

/*** TAGS ***/
.tag {
  background: red;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  width: fit-content;
}

.tag>svg {
  font-size: 9px;
}

/*** TIMELINE ***/
.timeline {
  margin-top: 30px;
  min-height: 170px;
  min-width: 100%;
  padding-bottom: 10px;
  width: max-content;
}

.timeline .timeline-separator {
  background: #7B7A7E;
  height: 1px;
  position: relative;
  left: 15px;
  top: 160px;
  width: 100%;
}

.timeline-item {
  background: #FCFCFC;
  border: 1px solid #7B7A7E;
  float: left;
  height: 100px;
  padding: 12px 15px;
  width: 170px;
}

.timeline-item.available {
  background: rgba(107, 38, 186, 0.1);
  border-color: #6B26BA;
}

.timeline-item.completed {
  background: rgba(81, 186, 127, 0.1);
  border: 0;
  height: 85px;
  margin-top: 15px;
}

.timeline-item.even {
  margin-left: -60px;
  margin-right: -60px;
  margin-top: 220px;
}

.timeline-item .timeline-item-separator {
  background: #7B7A7E;
  height: 60px;
  margin-left: -1px;
  position: absolute;
  top: 130px;
  width: 1px;
}

.timeline-item.even .timeline-item-separator {
  top: 191px;
}

.timeline-item.available .timeline-item-separator {
  background: rgba(107, 38, 186);
}

.timeline-item.completed .timeline-item-separator {
  background: rgba(81, 186, 127);
}

.timeline-item .timeline-item-separator>div {
  background: white;
  border: 1px solid;
  border-radius: 50%;
  height: 8px;
  margin-left: -4px;
  margin-top: 56px;
  width: 8px;
}

.timeline-item.even .timeline-item-separator>div {
  margin-left: -4px;
  margin-top: -4px;
}

.timeline-item.available .timeline-item-separator>div {
  background: rgba(107, 38, 186);
  border-color: rgba(107, 38, 186);
}

.timeline-item.completed .timeline-item-separator>div {
  background: rgba(81, 186, 127);
  border-color: rgba(81, 186, 127);
}

.timeline-item .timeline-item-course {
  align-items: flex-end;
  /*display: flex;	*/
  height: 30px;
  line-height: 15px;
  font-size: 12px;
  margin-left: 10px;
  position: absolute;
  text-transform: uppercase;
  top: 145px;
  width: 170px;
}

.timeline-item.even .timeline-item-course {
  align-items: flex-start;
  top: 205px;
}

.timeline-item .timeline-item-type {
  font-size: 10px;
}

.timeline-item .timeline-item-title {
  color: #7B7A7E;
  height: 23px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-item.available .timeline-item-title {
  color: #6B26BA;
}

.timeline-item.completed .timeline-item-title {
  color: #7B7A7E;
  font-weight: 700;
}

.timeline-item .timeline-item-date {
  color: #2A2F3C;
  font-size: 10px;
  height: 15px;
}

.timeline-item.completed .timeline-item-date {
  color: #51BA7F;
  font-weight: 700;
}

.timeline-item .timeline-item-action {
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  margin-top: 5px;
  text-decoration: underline;
}

.timeline-item.available .timeline-item-action {
  color: #6B26BA;
  font-weight: 700;
}

.timeline-item.blocked .timeline-item-action {
  color: #F0CE34;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
}

/*** TOAST ***/
.toast-notification {
  color: #2A2F3C;
  font-size: 12px;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
}

.toast-notification.toast-warning {
  background-color: rgba(240, 206, 52, .32);
}

.toast-notification.toast-success {
  background-color: rgba(81, 186, 127, .32);
}

.toast-notification.toast-primary {
  background-color: #6B26BA;
  height: 44px;
  line-height: 44px;
}

.toast-notification a {
  color: #2A2F3C;
  text-decoration: underline;
}

/*** IMG HEADER RESPONSIVE ***/
.ImageResponsiveHeader img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .ImageResponsiveHeader.ImageResponsiveHeader--NewsArchive img {
    max-height: 250px;
    width: auto;
  }
}

.logo-item {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo-item>img {
  width: 80% !important;
}

*[data-tooltip] {
  position: relative;
}

*[data-tooltip]::before {
  content: attr(data-tooltip);

  position: absolute;
  top: -20px;
  right: 0px;

  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -ms-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;

  display: block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  color: #9AA3AE;
  line-height: 16px;
  background: rgb(42, 47, 60);
  padding: 4px 8px;
  border: 1px solid rgb(42, 47, 60);
  /*border-radius: 10px;*/
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

*[data-tooltip]:hover::before {
  opacity: 1;
}