@CHARSET "ISO-8859-1";

div.furnishing_container{
  display: flex;
  flex-direction: column;
}

nav.furnishing_navigation > ul > li {
  text-align: center;
}

div.furnishing_overview {
  display: block;
}

div.furnishing_detail,
div.furnishing_living,
div.furnishing_detail_text {
  display: none;
}

div.furnishing_description * {
  background: transparent;
}

div.furnishing_description,
div.furnishing_desc_text,
div.furnishing_detail_text {
  margin: 1em;
}

@media {

  nav.furnishing_navigation ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4,1fr);
    grid-gap: 0;
  }

  div.furnishing_description {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 1em;
  }

  div.furnishing_desc_text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  div.furnishing_desc_img2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  div.furnishing_desc_img3 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  div.furnishing_desc_img4 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }

  div.furnishing_desc_img4 {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }

} /* @media (min-width: 30em) */

@media (min-width: 65.1em) {

  nav.furnishing_navigation ul {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: 1fr;
    grid-gap: 1em;
  }

  div.furnishing_description {
    display: grid;
    grid-template-columns: 4fr 1fr 3fr 1fr 4fr;
    grid-template-rows: 3fr 1fr 2fr 1fr 3fr;
    grid-gap: 1em;
  }

  div.furnishing_desc_text {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }

  div.furnishing_desc_img1 {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
  }

  div.furnishing_desc_img2 {
    grid-column: 2 / 5;
    grid-row: 2 / 5;
  }

  div.furnishing_desc_img3 {
    grid-column: 1 / 3;
    grid-row: 4 / 6;
  }

  div.furnishing_desc_img4 {
    grid-column: 5 / 6;
    grid-row: 4 / 6;
  }

} /* @media (min-width: 65.1em) */

/********** Slideshow **********/

/* Slideshow container */
.furnishing_slides_container {
  position: relative;
  margin: 1em;
  display: flex;
  justify-content: center;
}

.furnishing_slides_container * {
  background: transparent;
  box-sizing: border-box;
}

/* Hide the images by default */
.furnishing_slides_image {
  display: none;
  max-width: 91%;
}

/* Next & previous buttons */
.furnishing_slides_prev, .furnishing_slides_next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 0.5em;
  color: #004036;
  font-weight: bold;
  font-size: 1.5em;
  transition: 0.6s ease;
  border-radius: 0.1em;
  user-select: none;
}

/* Position the "prev button" to the left */
.furnishing_slides_prev {
  left: 0;
}

/* Position the "next button" to the right */
.furnishing_slides_next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.furnishing_slides_prev:hover,
.furnishing_slides_next:hover {
  background-color: #004036;
  color: #ffffff;
}

/* Caption text */
.furnishing_slides_text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  text-align: center;
  left: 50%;
  translate: -50%;
}

/* Number text (1/3 etc) */
.furnishing_slides_numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.furnishing_slides_dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.furnishing_slides_active,
.furnishing_slides_dot:hover {
  background-color: #004036;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
