
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 600,
  'GRAD' 0,
  'opsz' 48
}

body {
  /* overflow: hidden; */
  margin: 0;
  font-size: 0;
  font-family: 'Roboto', sans-serif;
  background: #FFFFFF;
  color: #1E1E1E;
}

p {
  font-size: 12px;
}

h1 {
  font-size: 26px;
  font-weight: bold;
  color: #AE5F25;
  text-transform: uppercase;
}

h2 {
  font-size: 26px;
  font-weight: normal;
  color: #AE5F25;
  text-transform: uppercase;
}

h3 {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}

h4 {
  color: #E37626;
  font-size: 12px;
}

.hidden {
  display: none;
}

.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-space-around {
  justify-content: space-around;
}

.section {
  background: white;
  border-left: 3px solid var(--border, #E06912);
  padding: 16px 20px ;
  margin: 4px 0;
  position: relative;
}
.section img {
  max-width: 100%;
}
.section p {
  margin-left: 10px;
}
.section h3:first-child {
  margin-top: 0;
}
.section.button {
  cursor: pointer;
}
.section.button.room:hover, .section.button.room.hovered {
  color: #E06912;
}
.section.button.room[data-go]:hover::after, .section.button.room.hovered[data-go]::after {
  position: absolute;
  right: 10px;
  font-weight: bold;
  content: "Ver >";
}

.button.medium {
  display: inline-block;
  background: #E06912;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 16px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.main-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  padding: 30px;
  display: flex;
  flex-direction: row;
}

.landing {
  padding: 0;
}
.landing img{
  width: 50%;
  object-fit: cover;
  opacity: 0.6;
  height: 100%;
}
.landing a {
  text-decoration: none;
}
.landing a:hover {
  text-decoration: underline;
}

.landing-floating {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-floating > div {
  background: #F2EDE8;
  opacity: 0.9;
  width: 700px;
  padding: 20px 50px;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  margin: 10px;
}
.landing-floating-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.landing-floating-buttons > * {
  margin: 5px 0;
}

.sidebar {
  width: 50%;
  max-width: 600px;
  background: #F2EDE8;
  margin-right: 30px;
  padding: 20px 15px;
  box-sizing: border-box;
  overflow-y: auto;
}

.viewport-container {
  flex-grow: 1;
  position: relative;
  width: 0;
}

.viewport-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  background: #E06912;
  border-radius: 5px;
  padding: 3px 5px;
}
.viewport-zoom > div {
  padding: 0 5px;
  cursor: pointer;
}

.viewport-toggles {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
}

.viewport-toggles > div {
  font-size: 16px;
  text-transform: uppercase;
  background: #F2EDE8;
  padding: 8px;
  border-radius: 5px;
  margin: 16px 12px;
  color: var(--color);
  display: flex;
  cursor: pointer;
  --color: #4D4D4D;
}
.viewport-toggles > div.active {
  --color: #E06912;
}
.toggle {
  border: 1px solid var(--color);
  border-radius: 20px;
  width: 36px;
  height: 18px;
  display: flex;
  justify-content: right;
  margin-right: 8px;
}
.toggle > div {
  background: var(--color);
  width: 18px;
  border-radius: 20px;
}
.viewport-toggles > div.active .toggle {
  justify-content: left;
}

.margin-left {
  margin-left: 30px;
}

@media (max-width: 900px) {
  .main-wrapper {
    flex-direction: column-reverse;
    padding: 0;
  }
  .landing img {
    width: 100%;
    height: 50%;
  }
  .sidebar {
    flex-grow: 1;
    width: auto;
    margin: 20px;
  }
  .viewport-container {
    max-height: 50%;
    width: 100%;
  }
  .viewport-toggles > div {
    font-size: 13px;
  }
}