.gm_badge {
  padding: 2rem;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  margin: 1rem 0;
}
.gm_badge:first-child {
  margin-top: 0;
}
.gm_badge:last-child {
  margin-bottom: 0;
}
.gm_badge h2,
.gm_badge p,
.gm_badge a {
  color: #fff;
}
.gm_badge hr {
  border-color: currentColor;
}
.gm_badge .btn a,
.gm_badge button {
  color: #000;
  background-color: #fff;
}
.gm_badge.green {
  background-color: #C8E6C9;
  color: #2E7D32;
}
.gm_badge.green hr {
  border-color: #2E7D32;
}
.gm_badge.green h2,
.gm_badge.green p,
.gm_badge.green a {
  color: currentColor;
}
.gm_badge.green .btn a,
.gm_badge.green button {
  color: #fff;
  background-color: #000;
}

.gm-buy-credits-form,
.voucher-redeem-form {
  padding: 1rem;
  border: 1px solid #CFD8DC;
  border-radius: 5px;
  margin: 2rem auto;
}

.course-item {
  display: flex;
  padding: 1rem;
  border: 1px solid #CFD8DC;
  border-radius: 10px;
  margin: 1rem 0;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.course-item:last-child {
  margin-bottom: 0;
}
.course-item:first-child {
  margin-top: 0;
}
.course-item p {
  margin: 0;
  flex: 1 1 10rem;
}
.course-item p.btn {
  text-align: right;
  flex: 0 0 auto;
}
.course-item .course-item-title {
  font-size: 1.2rem;
}
.course-item .course-item-spots-fully_booked,
.course-item .course-item-spots-closed,
.course-item .course-item-spots-completed {
  color: red;
}
.course-item .course-item-spots-open {
  color: green;
}

.gm_courseform__payment {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1rem;
}
.gm_courseform__payment label {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #CFD8DC;
  justify-content: space-between;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.gm_courseform__payment label p {
  margin: 0;
}
.gm_courseform__payment label .gm_courseform__payment__item__check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
}
.gm_courseform__payment input[type=radio] {
  display: none;
}
.gm_courseform__payment input[type=radio]:checked + label {
  background-color: #CFD8DC;
}
.gm_courseform__payment input[type=radio]:checked + label .gm_courseform__payment__item__check {
  display: block;
}
.gm_courseform__payment__item__header {
  font-weight: 700;
}
.gm_courseform__payment__item__price, .gm_courseform__payment__item__discounted-price {
  font-size: 1.5rem;
  font-weight: 700;
}
.gm_courseform__payment__item__price.old-price, .gm_courseform__payment__item__discounted-price.old-price {
  font-size: 1rem;
  text-decoration: line-through;
}

.single-course-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 2rem 5rem;
}
.single-course-cols .newsletter {
  border-radius: 10px;
}

.page-title-book {
  font-size: 2.25rem;
}

.course-list-cols {
  display: flex;
  gap: 2rem;
}
.course-list-cols .course-list-left {
  flex: 1 1 25rem;
  padding-right: 2rem;
  border-right: 1px solid #CFD8DC;
}
.course-list-cols .course-list-right {
  flex: 3 1 25rem;
}
.course-list-cols .course-list-img {
  margin: 2rem 0;
  border-radius: 10px;
}

.gm__sponsor {
  padding: 2rem;
  background-color: var(--swun-grey);
  border-radius: 10px;
  margin: 2rem auto;
}
.gm__sponsor:last-child {
  margin-bottom: 0;
}
.gm__sponsor img {
  display: inline-block;
  height: 4rem;
  width: auto;
  margin: 0.5rem;
}

@media screen and (max-width: 768px) {
  .course-list-cols {
    flex-direction: column;
  }
  .course-list-cols .course-list-left {
    flex: 0 0 auto;
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: none;
    border-bottom: 1px solid #CFD8DC;
  }
}
.course-list-left-content {
  position: sticky;
  top: 2rem;
}
.course-list-left-content .newsletter {
  padding: 2rem;
  background-color: var(--swun-grey);
  border-radius: 10px;
  margin: 2rem auto;
  border: none;
}

.course-list-info {
  margin-top: 2rem;
}

.course-filter-form {
  padding: 1rem;
  border: 1px solid #CFD8DC;
  border-radius: 10px;
}
.course-filter-form .course-filter-form-flex {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.course-filter-form label {
  flex: 1 1 6rem;
  margin: 0;
}/*# sourceMappingURL=gm_coursemanager.css.map */