#courses {
  text-align: center;
  margin-bottom: 2%;
}
#load-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 2%;
  min-height: 30vh;
  align-items: center;
  text-align: center;
}
.course {
  padding: 3%;
  box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.39);
  -webkit-box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.39);
  border-radius: 10px;
}
.course .img {
  width: 100%;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.data h3 {
  font-size: 16px;
  margin-top: 4%;
  font-weight: bold;
  line-height: 1.5;
  min-height: 60px;
  text-align: left;
}
span.button-course {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  background: black;
  border-radius: 5px;
  padding: 2%;
  margin-top: 4%;
  color: white;
  font-weight: bold;
}
button#load-more {
  border: none;
  background: black;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  padding: 1% 2%;
  border-radius: 5px;
  font-weight: bold;
  display: none;
}
.msg-container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2%;
}
span.msg-status {
  padding: 2% 12%;
  border-radius: 5px;
  width: 100%;
    display: block;
}
span.msg-status.active {
  background: lightgreen;
  color: white;
}
span.msg-status.expire {
  background: darkred;
  color: white;
}
span.msg-status.hold {
  background: darkorange;
  color: white;
}
span.msg-status.cancell {
  background: darkgray;
  color: white;
}
a.course-active {
  background: lightgreen;
  color: darkslategrey;
  padding: 2% 4%;
  border-radius: 5px;
  display: inline-block;
  margin-left: 8%;
  font-size: 11px;
  text-transform: uppercase;
}
.button-course {
  margin-top: 2%;
}
.alert.alert-success {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1%;
  background: #7ca27c;
  color: white;
  border-radius: 10px;
  margin-top: 1%;
  font-weight: bold;
}
.alert.alert-danger {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1%;
  background: #cc1818;
  color: white;
  border-radius: 10px;
  margin-top: 1%;
  font-weight: bold;
}
.courses-single-list {
  margin: 2% 0;
}
#msg-course-load{
  display: none;
}
table.table-detail-courses {
  border: none !IMPORTANT;
}
td.table-detail-title {
  width: 50%;
}
td.table-detail-info{
  width: 25%;
  text-align: center;
}
div#cursos-message a {
  color: white;
  text-decoration: underline;
}