/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
.card {
  border: 2px solid teal;
  border-radius: 5px;
  overflow: hidden;
}

/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.c-switchoptions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 2rem;
}

.c-switches {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.c-switches__reset {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 200%;
  width: 2px;
  height: 2px;
  margin-bottom: 0;
  margin-right: 1rem;
  padding: 1rem;
  cursor: pointer;
}
@media (max-width: 993px) {
  .c-switches__reset {
    font-size: 150%;
    width: 1.5px;
    height: 1.5px;
    margin-right: 0.6666666667rem;
    padding: 0.6666666667rem;
  }
}
.c-switches__gridtolist {
  display: flex;
  justify-content: flex-end;
  font-size: 150%;
}
@media (max-width: 1201px) {
  .c-switches__gridtolist {
    display: none;
  }
}
.c-switches__gridtolist--radioinput {
  display: none;
}
.c-switches__gridtolist--radioinput:checked + .c-switches__gridtolist--radiolabel {
  color: teal;
}
.c-switches__gridtolist--radiolabel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  cursor: pointer;
}
.c-switches__gridtolist--radiolabel:hover {
  color: teal;
}

.c-wizard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-wizard__option {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.c-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.39);
}
.c-card__info {
  color: black;
  margin-bottom: 1rem;
}
.c-card__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}
.c-card__tijd {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.c-card__img {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.c-card__preview {
  height: 100%;
  width: 100%;
}
.c-card__thumbnail {
  width: 100%;
  height: auto;
}

.c-showcase {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  background-color: rgba(128, 128, 128, 0.39);
  border: 2px solid teal;
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
}
.c-showcase__difficulty {
  display: flex;
  align-items: center;
  width: 9rem;
}
.c-showcase__difficulty--icon {
  width: 8%;
  height: auto;
  margin-left: 5px;
}
@media (max-width: 1200px) {
  .c-showcase {
    flex-direction: column;
  }
}
.c-showcase__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
@media (max-width: 1200px) {
  .c-showcase__img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
}
.c-showcase__text {
  padding: 3rem;
}
.c-showcase__info {
  display: flex;
  margin-right: 1rem;
}
.c-showcase__tijd {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: smaller;
}
.c-showcase__tijd--icon {
  margin-right: 0.5px;
}

.c-selected {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.c-selected__guide {
  display: flex;
  align-items: center;
  border: 1px solid teal;
  border-radius: 5px;
  margin-right: 1rem;
  margin-top: 1rem;
  width: 12rem;
  overflow: hidden;
}
.c-selected__name {
  margin: 0;
  font-size: x-small;
}
.c-selected__img {
  width: 50%;
  height: 100%;
  margin-right: 10px;
}
.c-selected__stars {
  font-size: x-small;
}

.c-preview-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.c-preview-img__image {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  height: auto;
  border: 1px solid grey;
  border-radius: 5px;
  margin: 5px;
  overflow: hidden;
}
.c-preview-img__image--pointer {
  cursor: pointer;
}

.c-pagination__link {
  color: rgba(0, 128, 128, 0.555);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.2rem 0.6rem;
}
.c-pagination__link--prev, .c-pagination__link--next {
  font-size: 0.9rem;
}
.c-pagination__link--hide {
  visibility: hidden;
}
.c-pagination__link:hover {
  color: teal;
}
.c-pagination__link--active {
  color: white;
  background-color: teal;
  border-radius: 0.2rem;
  cursor: default;
}
.c-pagination__link--active:hover {
  color: white;
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/
.u-hidden {
  display: none;
}