/* === FIGURE-AND-TEXT ====================================================== */

.figure-and-text {
  width: 100%;
  display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.figure-and-text .figure {
  flex: 0 1 auto;
  position: relative;
    top: 5px;
}

.figure-and-text figure img {
  height: 200px;
  width: 200px;
}

.figure-and-text .text {
  flex: 1 0 50%;
}

.figure-and-text .figure,
.figure-and-text .text {
  padding: 25px;
}

/* === RESPONSIVE-FIGURE ==================================================== */

figure.responsive img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* === CAROUSEL ============================================================= */

.carousel-indicators {
  width: 115px;
  padding: 5px;
  border-radius: 10px;
  margin-left: 5%;
}

.carousel-indicators li {
  box-sizing: initial;
  background-clip: inherit;
  border: 1px solid #fff;
  border-radius: 12px;
  width: 12px;
  height: 12px;
  margin: 0 8px;
}

.carousel-indicators .active li {
  border-radius: 14px;
  width: 13px;
  height: 13px;
}

@media (max-width: 768px) {
  .carousel-indicators {
    display: none;
  }
}

@media (max-width: 360px) {
  .carousel-item.active {
    position: relative;
    height: 40vh;
  }
  .carousel-item.active img {
    position: absolute;
    height: 100% !important;
    width: auto !important;
    left: -20%;
  }
}

/* === GALLERY ============================================================== */

.gallery {
  display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}

.gallery .gallery-item {
  padding: 10px;
  flex: 1 0 20%;
}
.gallery .gallery-item figure {
  max-width: 200px;
  min-width: 100px;
}
.gallery .gallery-item.empty {
  height: 0;
  padding: 0 10px;
}

/* === TICKER-BAR =========================================================== */
.ticker-bar {
  width: 100%;
  background-color: var(--color-text-emphasize);
  color: var(--color-bg-secondary);
  text-align: center;
}
