.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
.grid > article {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

.grid > article:hover {
  border: 1px solid gray;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.8);
}

.grid > article a {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.grid > article a:before {
  content: "";
}
.grid > article img {
  max-width: 100%;
}
.text {
  padding: 0 20px 20px;
  color: #444;
}
.text > button {
  border: 0;
  padding: 10px;
  width: 100%;
  flex-grow: 1;
  color: white;
}
.shopBtn {
  background: var(--main-bg-color);
  border: 1px solid var(--main-bg-color);
  color: white;
}
.fullBookedBtn {
  background-color: #ed174b !important;
}
.text ul {
  list-style-type: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
}

.text ul li {
  width: 100%;
}
.pagination {
  text-align: center;
  margin: 20px;
}
/* Full Class Message  */
.classFullMsg {
  margin: 10px 0px;
  padding: 12px;
  color: #d8000c;
  background-color: #ffd2d2;
  font-weight: 500;
}
.edit_class_section {
  display: none;
}
/* contact us form massages*/
.gform_confirmation_message_8  .gform_confirmation_message{
  text-align: center;
}