/* Clase contenedor NO BORRAR */
.container-day {
    display: flex;
    justify-content: center;
    width: 100%;
}
/* Color Dia */
.change-color-hero {
  color: var(--colorBrown);
  transition: background-color 0.5s, color 0.5s;
  margin: 0;
  padding: 0;
}
/* Color Noche */
.change-color-hero.night-mode {
  background-color: #222 !important;
  color: #ffffff !important; 

  .tumbler {
    transform: translateX(calc(140% - 2px));
  }
  .post {
    border-bottom: 1px dashed #d9d9d9; /* Aproximación a darken(white, 15%) */
  }
}
.room-detail > .container-fluid > .row > [class^="col-"]:first-of-type {
    padding-left: 0;
}
.room-detail > .container-fluid > .row > [class^="col-"]:first-of-type > .container-fluid {
    padding: 0;
}
.container-header {
    position: relative;
    text-align: right;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    margin: auto;
}

.header__title {
  display: block;
}
/* CSS Botn cambio dia noche */
.tumbler-wrapper {
  width: 60px;
  height: 30px;
  background-color: var(--colorPrimary);
  border: 1px solid #45666e; /* Aproximación a darken(#aae2f1, 40%) */
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  cursor: pointer;
  position: relative;
}

.tumbler-wrapper svg {
  width: 15px;
  height: 15px;
}

.tumbler {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.5s, background-color 0.5s;
  will-change: transform;
}
.sun-svg,
.moon-svg {
  display: none;
}
.main {
  width: 80vw;
  max-width: 500px;
  padding: 0 1rem;
  margin: auto;
}

.loveSvg svg {
  display: block;
  height: 1rem;
  max-width: 1rem;
}
.img-hero {
  transition: opacity 0.5s ease;
}
.night-mode .img-hero {
  opacity: 0.85;
}

.wfixed{
    position: fixed;
    top: 2%;
    left: 49%;
    z-index: 100;
}
@media (max-width: 767px) {
    .room-detail > .container-fluid > .row > [class^="col-"] > .container-fluid > .row > .col {
        padding: 0;
    }
    .wfixed{
        top: 1%;
        left: 43%;
    }
}