/* MAIN */

/*********/

.block04design2 .row {
    display: flex;
    justify-content: center;
}

.subheader-container {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
}

.course-breadcrumbs {
  display: flex;
  align-items: center;
}

.course-breadcrumbs ul {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.course-breadcrumbs ul li:first-child::before {
  content: " ";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-left: 5px solid black;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  margin-right: 5px;
}

.course-breadcrumbs ul li:not(:first-child)::before {
  content: " / ";
}

.course-title {
  font-size: 26px;
  font-weight: bold;
  color: rgb(20, 123, 250);
  padding-bottom: 15px;
}

.coursebox .content .teachers {
  display: none;
}

#id_selfheader {
  display: none;
}

/* Course Card */
.catalog .course-card {
  height: 200px;
  padding: 20px;
}

.category-catalog .course-card {
  height: 100%;
}

.category-catalog .course-card-body {
  padding: 20px;
}

.category-catalog .course-card .course-summary,
.catalog .course-card .course-summary {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.course-in-carousel .splide__slide__container {
  background-size: cover;
  background-position: center;
}

.course-in-carousel {
  cursor: pointer;
  border: 1px solid black;
}

/* Catalogo */
.courses-catalog .catalog h2 {
  color: rgb(20, 123, 250);
}

.courses-catalog .catalog .category-card {
  margin-top: 40px;
}

.courses-catalog .catalog .category-card:not(:first-child) {
  margin-top: 100px;
}

.courses-catalog .catalog .category-card:last-child {
  margin-bottom: 40px;
}

.courses-catalog .courses-searchbox-container {
  display: flex;
  justify-content: center;
}

.courses-catalog .courses-searchbox-form {
  width: 500px;
}

.catalog .catalog-footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
} 
  
/*  Courses Catalog */
.category-catalog .courses-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.category-catalog .course-card {
  width: 33%;
  cursor: pointer;
  border: 1px solid black;
}

.category-catalog .course-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Modale altri pagamenti */
.other-payments-modal .payments-info > div {
    background-color: lightgray;
    padding: 20px;
}

/* Blocco coupon dashboard */
section[data-block="coupon"] {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin: 15px;
}
section[data-block="coupon"] > div {
  padding: 0;
}

/* Navbar */
/* 288 - Barra menu completa visibile su tutte le pagine */
.navbar-nav {
  height: 100%;
}

/* 287 - verifica landing page a registrazione */
.show-catalog-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

    