@charset "utf-8";
.course-widget {
  width: 100%;
  margin-bottom: 2rem;
}

.course-widget .info, .course-widget .actions {
  display: flex;
  width: 100%;
}

.course-widget * {
  margin: 0;
  font-size: 16px;
  line-height: 1em;
}

.course-widget .info .date {
  width: 60%;
  background-color: #494847;
  color: #FFFFFF;
}

.course-widget .info .time-act {
  display: flex;
  width: 40%;
}

.course-widget .info .time {
  width: 50%;
  background-color: #BEBDBD;
  color: #494847;
}

.course-widget .info .act {
  width: 50%;
  background-color: #BEBDBD;
  color: #494847;
}

.course-widget .actions {
  margin-bottom: 0.5rem;
}

.course-widget .actions .weekdays {
  display: flex;
  flex-direction: row;
  width: 60%;
}

.course-widget .actions .weekdays>li {
  flex-grow: 1;
  text-align: center;
}

.course-widget .actions .weekdays>li.Y {
  background-color: #494847;
  color: #FFFFFF;
}

.course-widget .actions .weekdays>li.N {
  background-color: #BEBDBD;
  position: relative;
  color: transparent;
}

.course-widget .actions .weekdays>li.N:before {
  content: 'X';
  display: inline-block;
  width: 0;
  color: #494847;
}

.course-widget .actions .target {
  padding: 0px;
  width: 40%;
}

.course-widget .actions .button {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background-color: #BEBDBD;
  color: #FFFFFF;
}

.course-widget .actions .button:hover {
  background-color: #BEBDBD;
  color: #FFFFFF;
}

.course-widget .actions .button.register-now {
  background-color: #5F90CE;
  color: #FFFFFF;
}

.course-widget .actions .button.register-now:hover {
  background-color: #365275;
  color: #FFFFFF;
}

.course-widget p.notes {
  color: #575656;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: normal;
}

.course-widget .actions .button, .course-widget .actions .weekdays>li, .course-widget .info .date, .course-widget .info .time-act>div {
  padding: 10px;
}

.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;
}

.course-widget .info {
  border-bottom: 2px solid #FFFFFF;
}

.course-widget .info>:nth-child(1), .course-widget .info>:nth-child(2)>div:first-of-type, .course-widget .actions .weekdays>li {
  border-right: 2px solid #FFFFFF;
}

.course-widget-service {
  margin-bottom: 2rem;
}

.course-widget-packages>:last-child, .course-widget-service>:last-child {
  margin-bottom: 0;
}

@media (max-width:450px) {
  .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%;
  }
  .course-widget .actions .target {
    border-top: 2px solid #FFFFFF;
  }
  .course-widget .info>.date, .course-widget .actions .weekdays>li:last-of-type {
    border-right: none;
  }
  .course-widget .info>.date {
    border-bottom: 2px solid #FFFFFF;
  }
}