<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*

----------------------------
|**DATE*******|*TIME*|*ACT*|
|--------------------------|
|***WEEKDAYS**|**TARGET****|
----------------------------
*********NOTES**************

*/

.course-widget {
  width: 100%;
  margin-bottom: 2rem;
}

.course-widget .info,
.course-widget .actions {
  display: flex;
  width: 100%;
}

.course-widget *:not(.button) {
  margin: 0;
  font-size: 16px;
  line-height: 1em;
  font-family: 'Krub';
}

/* Info Row */

.course-widget .info .date {
  width: 60%;
  background-color: #cfcfcf;
  color: #494847;
}

.course-widget .info .time-act {
  display: flex;
  width: 40%;
}

.course-widget .info .time {
  width: 50%;
  background-color: #cfcfcf;
  color: #494847;
}

.course-widget .info .act {
  width: 50%;
  background-color: #cfcfcf;
  color: #494847;
}

/* Action Row */

.course-widget .actions {
  margin-bottom: 0.5rem;
}

.course-widget .actions .weekdays {
  display: flex;
  flex-direction: row;
  width: 60%;
}

.course-widget .actions .weekdays &gt; li {
  flex-grow: 1;
  text-align: center;
}

.course-widget .actions .weekdays &gt; li.Y {
  background-color: #cfcfcf;
  color: #494847;
  line-height: 20px;
}

.course-widget .actions .weekdays &gt; li.N {
  background-color: #e5e5e5;
  position: relative;
  color: transparent;
}

.course-widget .actions .weekdays &gt; li.N:before {
  content: 'X';
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  color: #494847;
}

.course-widget .actions .target {
  padding: 0px;
  width: 40%;
}

/* Notes */

.course-widget p.notes {
  color: #494847;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: normal;
}

/* Padding */

.course-widget .actions .button,
.course-widget .actions .weekdays &gt; li,
.course-widget .info .date,
.course-widget .info .time-act &gt; div {
  padding: 10px;
}

/* Border Radius */

.course-widget .info {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  overflow: hidden;
}

.course-widget .actions {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
}

/* Border */

.course-widget .info {
  border-bottom: 1px solid #FFFFFF;
}

.course-widget .info &gt; :nth-child(1),
.course-widget .info &gt; :nth-child(2) &gt; div:first-of-type,
.course-widget .actions .weekdays &gt; li {
  border-right: 1px solid #FFFFFF;
}

/* Buttons */

.course-widget .actions .button {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background-color: #FFFFFF;
  color: #494847;
}

.course-widget .actions .button:hover {
  background-color: #FFFFFF;
  color: #FFFFFF;
}

.course-widget .actions .button.register-now {
  background-color: #223F8F;
  color: #FFFFFF;
}

.course-widget .actions .button.register-now:hover {
  background-color: #223F8F;
  color: #FFFFFF;
}

/****************************************
* Containing Divs
****************************************/

.course-widget-service {
  margin-bottom: 2rem;
}

.course-widget-packages &gt; :last-child,
.course-widget-service &gt; :last-child {
  margin-bottom: 0;
}

/****************************************
* Mobile
****************************************/

@media (max-width: 830px) {
  .course-widget .actions li,
  .course-widget .actions a.button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .course-widget .actions li,
  .course-widget .actions a.button {
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  /* Layout */

  .course-widget .info,
  .course-widget .actions {
    flex-direction: column;
  }

  .course-widget .info .date,
  .course-widget .info .time,
  .course-widget .info .act,
  .course-widget .actions .weekdays,
  .course-widget .actions .target,
  .course-widget .info .time-act {
    width: 100%;
  }

  /* Border */

  .course-widget .actions .target {
    border-top: 1px solid #FFFFFF;
  }

  .course-widget .info &gt; .date,
  .course-widget .actions .weekdays &gt; li:last-of-type {
    border-right: none;
  }

  .course-widget .info &gt; .date {
    border-bottom: 1px solid #FFFFFF;
  }
}</pre></body></html>