div.courses, div.sessions {
  display: flex;
  flex: 0 1 auto;
  justify-content: space-evenly;
  align-content: stretch;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.sessions {

  .course {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .course_wrapper {
    width: 100%;
    max-width: unset;
  }

  .left {
    padding: 10px;
    max-width: 50%;
    border-right: 1px dotted lightgray;
  }

  .right {
    padding: 10px;
    max-width: 50%;
    width: 100%;
  }

}

.course_wrapper {
  flex: 0 1 auto;
  flex-grow: 1;
  margin: 1em;
  padding-bottom: 1em;
  width: 300px;
  max-width: 300px;
  max-height: 450px;

}

.courses .course_wrapper .image {
  max-height: 250px;
}

.courses .course_wrapper .image img,
.sessions .course_wrapper .image img {
  border-radius: unset;
  box-shadow: unset;
  max-width: 100%;
  vertical-align: middle;
  border: unset;
  display: unset;
  margin: unset;
  transition: unset;
  height: 100%;
}

.courses table .image img {
  max-height: 150px;
}

.image {
  text-align: center;
}

.course {
  /*border-radius: 5px;*/
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  background: #ffffff;
  padding: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course_full .image img {
  max-height: 300px;
}

.course_description {
  flex: 1;
  /*height: 180px;*/
  overflow: auto;
  /*text-overflow: ellipsis;*/
}

.course_line {
  border-top: 1px dashed lightgrey;

}

.course_action {
  margin-top: 15px;
  text-align: center;
  padding: 15px;

  gap: 1px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.course .course_action a {
  padding: 5px 10px;
  background: #0A246A;
  color: white;
  /*font-weight: bold;*/
  text-decoration: none;
  text-wrap: nowrap;
  text-wrap: none;
}

.course .course_action a:hover {
  box-shadow: -1px 3px 10px 0 rgb(0 0 0 / 22%);
  color: white;
}

.card-header-text {
  margin: 0 16px;
}

.card-header .card-title {
  margin-bottom: 12px;
  font-size: 20px;
}

.card-title {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
}

.card-actions, .card-subtitle, .card-content {
  display: block;
  margin-bottom: 16px;
}

.card-header .card-subtitle:not(:first-child) {
  margin-top: -8px;
}

.card-subtitle, .card-content {
  font-size: 16px;
}

.card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}


/* width */
.course ::-webkit-scrollbar {
  width: 8px;

}

/* Track */
.course ::-webkit-scrollbar-track {
  background: #f1f1f1;

}

/* Handle */
.course ::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
.course ::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.poweredByRooganize {
  text-align: center;
}


.rg_error_message {
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding: 10px;
  background: lightyellow;
}

.rg_text_session {
  width: 33%;
  margin-bottom: 0.75em;
}

.rg_text_session .rg_text_session_inner {
  padding: 0.5em;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rg_text_session h4 {
  font-size: 24px;
  /*margin: 0.5em 0;*/
}

.rg_text_session h5 {
  font-size: 20px;
  /*margin: 0.5em 0;*/
}

.rg_text_session .course_action {
  margin: 0;
}

@media (max-width: 1024px) {


  .rg_text_session {
    width: 50%;
  }
}

@media (max-width: 426px) {
  .course_wrapper {
    width: 100%;
    max-width: unset;
    margin: 0 0 25px;
  }

  .course {
    padding: 0 5px;
  }

  .rg_text_session {
    width: 100%;
  }
}


