:root {
  --colour1: #000000;
  --colour2: #ffffff;
  --colour3: #0585fe;
  --colour4: #35b350;
  --colour5: #ffab00;
  --colour6: #1e1d22;
  --colour7: #3c3b40;
  --colour8: #151515;
  --colour9: #ff0000;
}

.climaslidercnt {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items:end;
  justify-content:center;
pointer-events: none;

}
#climaslider {
  display: flex;
  position: absolute;
	pointer-events: all;
  width: 30rem;
  margin: 20px;
}

.suncnt{
  display: none;
  position: absolute;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  /*animation: rotarh  4s infinite linear ;
  transform: rotate(20);*/
}
.ani1{
  display: flex;
  position:absolute;
}
.aureolas{
  width: 1.5rem;
}
.sunani{
width: .7rem;
bottom: 0%;
transform: rotate(0deg);
animation: rotarh 4s infinite linear reverse;
}
.moonani{
  width: .5rem;
  top: 1.5%;
  transform: rotate(0deg);
  animation: rotarh 4s infinite linear reverse;
}

@keyframes rotarh{
  0%{
    transform: rotate(0deg);
  }
    
  
  100%{
    transform: rotate(360deg);
  }
}
.layerctn {
  display: flex;
  position: absolute;
  flex-direction: row;
  background-color: #0000006f;
  left: -200%;
  top: 50%;
  border-radius: 0.7rem;
  padding: 2%;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.layeropc {
  display: flex;
  position: relative;
  background-color: var(--colour8);
  border: 1px solid var(--colour8);
  border-radius: 20%;
  width: 3rem;
  height: 3rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0.1rem;
  transition: all 0.3s;
}
.layeropc:hover > object {
  transform: scale(90%);
  transition: all 0.3s;
}

.sateimg {
  display: flex;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.6rem;
}
.materialselectn {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: end;
  justify-content: center;
  z-index: 50;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.materiasele {
  display: flex;
  position: absolute;
  white-space: nowrap;
  max-width: 80%;
  height: 17%;
  margin: 3rem;
  background-color: #ffffff41;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s;
  transform: scale(0.9);
  overflow: auto;
  flex-direction: row;
}

.materiasele:hover {
  background-color: #d7d7d7;
  transform: scale(1);
}
.materiasele:hover > .btnapplyctn {
  box-shadow: 1px 1px 10px #00000063;
}
.itemctn {
  overflow-x: auto;
  flex: 1;
  transition: all 0.3s;
  scroll-behavior: smooth;
}
.itemm {
  display: inline-block;
  position: relative;
  pointer-events: all;
  transition: all 0.3s;
  width: 90px;
  height: 90px;
  margin: 10px;
  background-color: #983333;
  color: #ffffff00;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.itemm:hover {
  box-shadow: 3px 3px 5px #0000007b;
  text-shadow: 1px 1px 2px#00000096;
  transform: scale(1.05);
  color: #ffffff;
}
.itemselect {
  border: 3px solid rgb(255, 255, 255);
  box-shadow: 3px 3px 5px #0000007b;
  text-shadow: 1px 1px 2px#00000096;
  transform: scale(1.05);
  color: #ffffff;
}

.ckm {
  display: flex;
  position: absolute;
  width: 25%;
  align-self: center;
  top: 40%;
  left: 40%;
  filter: invert(100%);
  visibility: hidden;
  opacity: 0;
}
.btnapplyctn {
  display: flex;
  background-color: #c0111100;
  height: 100%;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 10px #00000000;
}
.btnapply {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: #39a845;
  border-radius: 0.4rem;
  margin: 0.5rem;
  pointer-events: all;
  cursor: pointer;
  height: 3rem;
  width: 5rem;
  transition: all 0.3s;
  font-size: 16px;
  overflow: hidden;
  transform: scale(0.9);
  cursor: pointer;
}
.btnapply:hover {
  transform: scale(1);
}

::-webkit-scrollbar {
  height: 10px;
  background-color: #c2c2c253;
  border-radius: 5rem;
}
::-webkit-scrollbar-thumb {
  background-color: #adadad87;
  max-width: 1rem;
  border-radius: 5rem;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-bottom: 25px;
  cursor: pointer;
}

g {
  fill: var(--colour2);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;
  border-radius: 5px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #aaa;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #2196f3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sliderhud,.slidersensi,.slidermove {
  -webkit-appearance: none;
  appearance: none;
  width: 10rem;
  height: .4rem;
  background: #FFFFFF;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.sliderhud::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: .4rem;
  height: 1.5rem;
  background: #FFFFFF;
  cursor: pointer;
}

.sliderhud::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ffffff;
  cursor: pointer;
}
.slidersensi::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: .4rem;
  height: 1.5rem;
  background: #FFFFFF;
  cursor: pointer;
}

.slidersensi::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ffffff;
  cursor: pointer;
}
.slidermove::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: .4rem;
  height: 1.5rem;
  background: #FFFFFF;
  cursor: pointer;
}

.slidermove::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ffffff;
  cursor: pointer;
}

body {
  margin: 0px;
  background-color: black;
  font-family: "outfit", sans-serif;
}

#playerUI {
  width: 100%;
  height: 100%;
}

:fullscreen {
  backdrop-filter: none;
  /* o cualquier otro estilo que desees */
}

#overlay {
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  color: var(--colour2);
  backdrop-filter: none;
  pointer-events: none;
}

.btnopciones {
  display: flex;
  background-color: var(--colour8);
  border: 1px solid var(--colour8);
  border-radius: 50%;
  position: relative;
  width: 3rem;
  height: 3rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0.1rem;
}

.controlsh {
  display: flex;
  position: absolute;
  font-family: "Jaldi", sans-serif;
  z-index: 10;
  left: 2.8rem;
  top: 140%;
  flex-direction: column;
  pointer-events: all;
  transition: all 0.2s;
  background-color: #00000069;
  padding: 0.1rem;
  border-radius: 10rem;
  opacity: 0;
  visibility: hidden;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 70px;
  color: var(--colour2);
  text-align: center;
  border-radius: 15px;
  padding: 0px 10px;
  font-family: "Jaldi", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.75px;
  /* Position the tooltip */
  position: absolute;
  top: 0;
  transform: translateY(-25%);
  right: 125%;
  z-index: 20;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  background-color: var(--colour7);
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
									supported by Chrome, Edge, Opera and Firefox */
}

.panel {
  color: #eee;
  overflow-y: auto;
  padding: 1em;
}

input {
  text-align: right;
}

/* Flat buttons */
input[type="button"] {
  background-color: transparent;
  color: var(--colour2);
  font-family: "Jaldi", sans-serif;
  border: 3px solid var(--colour3);
  border-radius: 1rem;
  font-size: 0.75rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

input[type="button"]:hover {
  background-color: var(--colour3);
  transition: ease 0.3s;
}

input[type="button"]:active {
  background-color: transparent;
}

select,
input[type="number"] {
  background-color: var(--colour7);
  color: var(--colour2);
  border: 1px solid var(--colour6);
  padding: 0.25rem;
  font-family: "Jaldi", sans-serif;
  border-radius: 0.25rem;
}

input[type="number"]::-webkit-inner-spin-button {
  margin-left: 0.5rem;
}

input[type="number"]:disabled {
  padding-right: 0.5rem;
  /*-moz-appearance: textfield;*/
}

input[type="number"]:disabled::-webkit-inner-spin-button {
  display: none;
}

#minimize {
  display: none;
}

/* menu de pausa 
.button {
	width: 2cm;
	height: 2cm;
	margin-right: 3mm;
	background-color: #3498db;
	border: none;
	cursor: pointer;
	outline: none;
	border-radius: 5px;
}
*/

/* Estilo de los iconos de los botones */
.button-icon {
  font-size: 1.5cm;
  color: #fff;
  line-height: 2cm;
  text-align: center;
}

/* Estilo del panel de botones con fondo difuminado */
.button-panel {
  margin-top: 50vh;
}

/* Estilo del contenedor principal */
.vertical-align-container {
  height: 100vh;
}

.container1 {
  position: absolute;
  justify-content: center;
  align-items: center;
  display: flex;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(20px);
  /* Ajusta la cantidad de desenfoque según tus preferencias */
  background-color: #ffffff70;
  /* Ajusta el color de fondo y la opacidad */
  pointer-events: all;
  transition: all 0.1s;
  z-index: 30;
}

.panelhud {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 1rem;
}

.Configurationpanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  z-index: 30;
  width: 300px;
  background-color: #0000009c;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.panel-text {
  color: #ffffff;
}

.panelsensi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 1rem;
}

.panelsensi > input {
  width: 10rem;
}

.panelmove {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 1rem;
}

.panelmove > input {
  width: 10rem;
}

.options {
  padding-bottom: 1rem;
}

.circle {
  z-index: 10;
  width: 5px;
  /* Cambia el tamaño según tu preferencia */
  height: 5px;
  /* Cambia el tamaño según tu preferencia */
  background-color: #ffffff;
  /* Cambia el color de fondo del círculo */
  border-radius: 50%;
  /* Hace que el elemento sea un círculo */
  transition: all 0.3s;
  /* Agrega una transición suave para cambios de estilo */
}

.circle.expanded {
  width: 10px;
  /* Cambia el tamaño del círculo cuando se expande */
  height: 10px;
  /* Cambia el tamaño del círculo cuando se expande */
  background-color: transparent;
  /* Hace que el círculo sea transparente cuando se expande */
  border: 2px solid #ffffff;
  /* Agrega un borde al círculo cuando se expande */
}

.circle-cotainer {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: absolute;
  z-index: 50;
  background-color: #2195f300;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.keyW {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  font-size: 40px;
  background-color: #ffffff00;
  border-radius: 15%;
}

.keyA {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  font-size: 40px;
  background-color: #ffffff00;
  border-radius: 15%;
}

.keyS {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  font-size: 40px;
  background-color: #ffffff00;
  border-radius: 15%;
}

.keyD {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  font-size: 40px;
  background-color: #ffffff00;
  border-radius: 15%;
}

.keyss {
  width: 60px;
  height: 60px;
}

.panelawsd {
  flex-direction: column;
  position: absolute;
  display: flex;
  margin: 30px;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  scale: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.panelmause {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.row {
  display: flex;
}

.mouse {
  width: 120px;
  height: 120px;
}

.mouseg {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 30px;
}

.mousel {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 30px;
  opacity: 0.69;
}

.mouser {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 30px;
  opacity: 0.69;
}

.HUD {
  display: flex;
}

.menuopc {
  background-color: rgba(0, 0, 0, 0.5);
  height: 4rem;
  width: 100%;
  display: flex;
  position: absolute;
  pointer-events: all;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.out {
  background-color: rgba(0, 0, 0, 0);
}

.despop {
  display: flex;
  position: absolute;
  border-left: 25%;
  border-radius: 4rem;
  right: 3%;
  height: 3rem;
  width: 6rem;
  background-color: #0000007f;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  top: 11%;
}

.iconmenu {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

.btnopciones:hover .iconmenu {
  width: 1.3rem;
  height: 1.3rem;
  transition: all 0.3s;
}

.btnopciones:active {
  border: 2px solid #c24616;
}

.fotoper {
  display: flex;
  position: absolute;
  border: 0.05rem solid #ffffff00;
  border-radius: 4rem;
  background-color: rgb(255, 255, 255);
  pointer-events: all;
  width: 2.5rem;
  height: 2.5rem;
  top: 7%;
  left: 0.2rem;
}

.fotoper1 {
  display: flex;
  width: 100%;
}

.trebarra {
  display: flex;
  top: 0.5rem;
  left: 3.5rem;
  height: 2rem;
  width: 1.4rem;
  position: absolute;
  pointer-events: all;
  cursor: pointer;
  background-color: #02fa2300;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.xr div:first-child {
  transform: translateY(0.65rem) rotate(45deg);
}

.xr div:last-child {
  transform: translateY(-0.65rem) rotate(-45deg);
}

.xr div:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.barras {
  transition: all 0.3s;
  display: flex;
  height: 1.5rem;
  width: 1.6rem;
  background-color: #ffffff;
  margin: 0.26rem;
  border-radius: 1rem;
}

.btnbarra {
  font-size: 1.5rem;
  pointer-events: all;
  cursor: pointer;
  padding-bottom: 0.3rem;
  border-bottom: 0.1rem solid #ffffff00;
  transition: all 0.3s;
  margin-left: 2%;
  margin-right: 2%;   
  padding-left: 1rem;
  padding-right: 1rem;
}

.btnbarra:hover {
  border-bottom: 0.1rem solid #c24616;
}

.btnbarracon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #00000000;
  pointer-events: all;
  opacity: 0;
  visibility: hidden;
}

.logo {
  position: absolute;
  display: flex;
  background-color: #3dd80e00;
  width: 10%;
  align-items: center;
  justify-content: left;
  height: 100%;
  pointer-events: all;
  opacity: 0;
  visibility: hidden;
  margin-left: 30px;
}

.logoeco {
  margin-right: 1%;
  margin-left: 1%;
  width: 100%;
}

.selected {
  border-bottom: 0.1rem solid #c24616;
}

.panelfiltros {
  display: flex;
  position: absolute;
  background-color: #0084ff00;
  height: 80%;
  width: 30rem;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6rem;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  font-family: "Jaldi", sans-serif;
}

.panelfiltroderecha {
  transform: translatex(-16rem);
}

.surfacef {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.budgetf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.bedroomcountf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.countcontainer {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}

.bedcount {
  display: flex;
  font-size: 16px;
  background-color: #00000057;
  margin: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  border: 3px solid #ffffff;
  pointer-events: all;
  cursor: pointer;
}

.filtrotxt {
  font-size: 16px;
  margin: 0rem;
}

.bathroomcountf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.availabilityf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.avaitext {
  display: flex;
  font-size: 12px;
  background-color: #00000057;
  border: 2px solid #ffffff;
  margin: 0.1rem;
  margin-bottom: 0rem;
  padding: 0.15rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  border-radius: 10rem;
  pointer-events: all;
  cursor: pointer;
}

.avaicontainer {
  display: flex;
  flex-direction: row;
}

.surfaceslider > input {
  background: red;
  pointer-events: all;
  cursor: pointer;
  width: 12rem;
}

.budgetslider > input {
  background: red;
  pointer-events: all;
  cursor: pointer;
  width: 12rem;
}

.surfaceslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: red;
}

.unitselect {
  position: absolute;
  display: flex;
  top: 8rem;
  left: 5rem;
  width: 20rem;
  height: 22rem;
  background-color: #00000063;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
}

.unitselect {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.ftitle {
  width: 100%;
  text-align: center;
  border-bottom: 2px solid #ffffff;
  left: 6rem;
}

.fcuerpo {
  font-family: "Jaldi", sans-serif;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: left;
  padding-left: 2rem;
  color: #ffffffac;
}

.fcuerpo > p > b {
  font-weight: bold;
  color: #ffffff;
}

.liveitbtn {
  justify-content: center;
  text-align: center;
  align-items: center;
  display: flex;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f0f0f000;
  margin: 0.5rem;
  pointer-events: all;
  cursor: pointer;
  height: 2rem;
  transition: all 0.2s;
}

.liveitbtn:hover {
  background-color:#c24616;
  border: 2px solid rgba(255, 255, 255, 0);
  transform: scale(1.05);
}

.txtlive {
  color: #000000;
  display: flex;
  width: 7rem;
  pointer-events: none;
  transition: all 0.2s;
  margin-left: 15px;
}

.liveitbtn:hover > .txtlive {
  font-size: 18px;
  color: #ffffff;
}

.reservebtn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 230, 9, 0.5);
  border: 0px solid #ffffff;
  border-radius: 1rem;
  margin: 0.5rem;
  pointer-events: all;
  cursor: pointer;
  height: 2rem;
  transition: all 0.3s;
  font-size: 16px;
  width: 8rem;
  overflow: hidden;
}

.reservebtn:hover {
  background-color: rgb(0, 249, 8, 0.5);
  transform: scale(1.1);
}

.reservebtn:hover > .txtreser {
  transform: translateX(0.8rem);
}

.reservebtn:hover > .logobolsag {
  transform: translateX(2.5rem);
}



.txtreser {
  margin-top: 15px;
  display: flex;
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
}

.atrasbtn {
  display: flex;
  position: absolute;
  background-color: #ffffff;
  border-radius: 3rem;
  width: 2rem;
  height: 2rem;
  left: -0.5rem;
  cursor: pointer;
  pointer-events: all;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.atrasbtn:hover {
  transform: scale(1.05);
}

.atrasbtn1 {
  width: 1.5rem;
  pointer-events: none;
}

#cuerpoi {
  transition: all 3s;
}

.disable {
  border: 2px solid #ffffff50;
  background-color: #ffffff20;
  color: #0000002b;
  transition: all 0.2s;
  color: #ffffff;
}

.btnpoidisa {
  background-color: #7a7a7a;
  pointer-events: none;
  border-color: #7a7a7a;
  fill: #e80000;
  opacity: 0;
}

.unitreserved {
  display: flex;
  position: absolute;
  font-family: "Jaldi", sans-serif;
  color: #d1d1d1;
  opacity: 0;
  visibility: hidden;
  flex-direction: row;
}

.unitreserved > div {
  color: #f2d64ba9;
}

.unitsold {
  display: flex;
  position: absolute;
  font-family: "Jaldi", sans-serif;
  color: #d1d1d1;
  opacity: 0;
  visibility: hidden;
  flex-direction: row;
}

.unitsold > div {
  color: #f22259a9;
}

.resetbtn {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
}

.resetbtn > div {
  position: absolute;
  display: flex;
  top: 103%;
  left: 30%;
  border: 1px solid #ffffff;
  padding: 0.2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 2rem;
  pointer-events: all;
  cursor: pointer;
}

.resetbtn > div:hover {
  border: 1px solid #ffffff;
  background-color: #ff000063;
}

.iconreser2 {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
}

.panelbtnjuego {
  display: flex;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  z-index: 30;
}

.menupausa-container {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.548);
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.continuectn {
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.continuebtt {
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 1.5rem;
}

.continueicon {
  width: 85%;
  height: 85%;
  pointer-events: none;
}

.continuebtt:hover {
  transform: scale(1.1);
}

.btnatraslv {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #ffffff00;
  border: 1px solid #ffffff;
  border-radius: 0.4rem;
  margin: 2rem;
  pointer-events: all;
  cursor: pointer;
  height: 1.5rem;
  width: 10rem;
  font-size: 16px;
  padding: 0.2rem;
  align-self: baseline;
  justify-self: baseline;
  transition: all 0.3s;
}

.btnatraslv:hover {
  border: 0px solid #ffffff73;
  background-color: #ffffff73;
  transform: scale(1.1);
}

.unitselect2 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-self: center;
  left: 70%;
  margin: 5rem;
  width: 18rem;
  height: 22rem;
  font-size: 20px;
}

.reservebtn2 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 230, 9, 0.5);
  border: 0px solid #ffffff;
  border-radius: 0.4rem;
  margin: 0.5rem;
  pointer-events: all;
  cursor: pointer;
  height: 1.5rem;
  width: 8rem;
  font-size: 16px;
  transition: all 0.3s;
  overflow: hidden;
}

.reservebtn2:hover {
  background-color: rgb(0, 249, 8, 0.5);
  transform: scale(1.1);
}

.reservebtn2:hover > .iconreser2 {
  transform: translateX(0.8rem);
}

.reservebtn2:hover > .logobolsag {
  transform: translateX(3rem);
}

.logobolsag {
  display: flex;
  position: absolute;
  width: 12%;
  right: 100%;
  transition: all 0.3s;
  pointer-events: none;
}

.ftitle2 {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  left: 6rem;
}

.fcuerpo2 {
  font-family: "Jaldi", sans-serif;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: left;
  color: #ffffffac;
  width: 80%;
  padding-left: 1rem;
}

.fcuerpo2 > p > b {
  font-weight: bold;
  color: #ffffff;
}

.moreoptionsctn {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: all;
}

.moreoptionsbtt {
  display: flex;
  position: absolute;
  margin: 1.5rem;
  width: 14%;
  height: 10%;
  pointer-events: all;
  cursor: pointer;
}

.moreoptionstxt1 {
  display: flex;
  position: absolute;
  width: 90%;
  height: 40%;
  display: flex;
}
.lineasombra {
  display: flex;
  position: absolute;
  background-color: #00000069;
  border-radius: 5rem;
  filter: blur(30px);
  width: 110%;
  height: 40%;
  left: -10%;
}
.showmorebtn {
  display: flex;
  position: absolute;
  width: 100%;
  border: 1px solid white;
  padding: 0.3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 5rem;
  border-radius: 0.4rem;
  pointer-events: all;
  cursor: pointer;
}
.showmorebtn:active {
  background-color: #ffffff83;
}
.showmoreicon {
  width: 100%;
  pointer-events: none;
}

.select-block {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 10;
  width: 70px;
  height: 25px;
  font-size: 16px;
}

.responses-block {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 10;
  color: white;
  font-size: 18px;
  font-family: "Jaldi", sans-serif;
}

#responses-list {
  overflow: hidden;
  max-height: 400px;
  display: flex;
  flex-direction: column-reverse;
}

#responses-list p {
  margin: 0;
}

.streamingg {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  height: 100vh;
  width: 100%;
  top: auto;
  background-color: #0586fe00;
  cursor: auto;
}
.streaming {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  height: 100vh;
  width: 100%;
  top: auto;
  background-color: #0586fe00;
  cursor: auto;
}
.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }

  100%,
  0% {
    transform: scale(1);
  }
}

.gifloading {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.joycontainer {
  display: none;
}

.sbtncontainer {
  display: none;
}

.reservewindowcon {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.reservewindow {
  display: flex;
  position: absolute;
  width: 20%;
  height: 20%;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.5rem;
}

.logowin {
  width: 2rem;
  height: 2rem;
  position: relative;
  margin: 0.1rem;
}

.logowinicon {
  width: 100%;
  height: auto;
  position: absolute;
}

.mensajereser {
  display: flex;
  position: relative;
  color: #0c0d34;
  font-size: 24px;
}

.cartbtncontainer {
  display: flex;
  position: relative;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  border-radius: 0.5rem;
  pointer-events: all;
  cursor: pointer;
  background-color: #0c0d34;
  font-size: 20px;
}

.cartbtncontainer:active {
  background-color: #340c0c;
}

.keepexcontainer {
  font-size: 13px;
  color: #49494991;
  pointer-events: all;
  cursor: pointer;
}

.keepexcontainer:active {
  color: #ff2c2c;
}

@keyframes puertaa {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes puertac {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.Puertaani {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}

.puertaa {
  position: absolute;
  display: flex;
  width: 10%;
  animation: puertaa 1s cubic-bezier(0, 1, 0, 1) infinite;
  pointer-events: none;
}

.puertac {
  position: absolute;
  display: flex;
  width: 10%;
  animation: puertac 1s cubic-bezier(0, 1, 0, 1) infinite;
  pointer-events: none;
}
.slidersun{
  -webkit-appearance:none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: #FFFFFF;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}
.slidersun::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 25px;
  background: #ffffff;
  cursor: pointer;
}

.slidersun::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ffffff;
  cursor: pointer;
}
.visible {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1025px) {
  .pnfiltro {
    display: flex;
    width: 14rem;
    height: 6rem;
    background-color: rgba(0, 0, 0, 0.4);
    margin-left: 3rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    padding: 0.4rem;
    transition: all 0.3s;
  }
}

/* Estilos para pantallas más pequeñas (por ejemplo, teléfonos) */
@media screen and (max-width: 768px) {
  .avisoh {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #b91467;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
  }

  .showmorebtn {
    display: flex;
  }

  .moreoptionstxt1 {
    display: none;
  }

  .menuopc {
    background-color: rgba(0, 0, 0, 0.5);
    height: 2.5rem;
    width: 100%;
    display: flex;
    position: absolute;
    pointer-events: all;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    align-items: center;
  }

  .btnbarra {
    font-size: 1rem;
    pointer-events: all;
    cursor: pointer;
    padding-bottom: 0.3rem;
    border-bottom: 0.1rem solid #ffffff00;
    transition: all 0.3s;
    margin-left: 1%;
    margin-right: 1%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fotoper {
    display: flex;
    position: absolute;
    border: 0.05rem solid #ffffff00;
    border-radius: 4rem;
    background-color: rgb(255, 255, 255);
    pointer-events: all;
    width: 1.5rem;
    height: 1.5rem;
    top: 11%;
    left: 0.2rem;
  }

  .fotoper1 {
    width: 100%;
  }

  .despop {
    display: flex;
    position: absolute;
    border-left: 25%;
    border-radius: 4rem;
    right: 1%;
    height: 2rem;
    width: 4.5rem;
    background-color: var(--colour8);
    z-index: 40;
    opacity: 1;
    visibility: visible;
    top: 10%;
  }

  .trebarra {
    display: flex;
    top: 0.15rem;
    left: 2.5rem;
    height: 1.7rem;
    width: 1.4rem;
    position: absolute;
    pointer-events: all;
    cursor: pointer;
    background-color: #02fa2300;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .controlsh {
    position: absolute;
    font-family: "Jaldi", sans-serif;
    display: flex;
    z-index: 10;
    left: 2rem;
    top: 140%;
    flex-direction: column;
    pointer-events: all;
    transition: all 0.2s;
    background-color: #00000069;
    padding: 0.1rem;
    border-radius: 10rem;
    opacity: 0;
    visibility: hidden;
  }

  .btnopciones {
    display: flex;
    background-color: var(--colour8);
    border: 1px solid var(--colour8);
    border-radius: 50%;
    position: relative;
    width: 2rem;
    height: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0.1rem;
  }

  .btnopciones:hover .iconmenu {
    width: 0.9rem;
    height: 0.9rem;
    transition: all 0.3s;
  }

  .btnopciones:active {
    border: 1px solid #ff0000;
  }

  .iconmenu {
    display: flex;
    width: 1.1rem;
    height: 1.1rem;
    pointer-events: none;
  }

  .barras {
    transition: all 0.3s;
    display: flex;
    height: 2rem;
    width: 1.3rem;
    background-color: #ffffff;
    margin: 0.22rem;
    border-radius: 1rem;
  }

  .xr div:first-child {
    transform: translateY(0.55rem) rotate(45deg);
  }

  .xr div:last-child {
    transform: translateY(-0.55rem) rotate(-45deg);
  }

  .xr div:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }

  .btnbarra:hover {
    border-bottom: 0.1rem solid #473737;
  }

  .selected {
    border-bottom: 0.1rem solid #ff2c2c;
  }

  .panelfiltros {
    display: flex;
    position: absolute;
    background-color: #0084ff00;
    height: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 6rem;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    font-family: "Jaldi", sans-serif;
    align-items: end;
  }

  .panelfiltroderecha {
    transform: translatey(8rem);
  }

  .pnfiltro {
    display: flex;
    width: 20%;
    height: 6rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 12%;
  }

  .surfacef {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .surfaceslider {
    justify-content: center;
    align-items: center;
    width: 85%;
  }

  .surfaceslider > input {
    background: red;
    pointer-events: all;
    cursor: pointer;
    width: 100%;
  }

  .budgetslider {
    justify-content: center;
    align-items: center;
    width: 85%;
  }

  .budgetslider > input {
    background: red;
    pointer-events: all;
    cursor: pointer;
    width: 100%;
  }

  .bedroomcountf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .countcontainer {
    display: flex;
    flex-direction: row;
    margin-bottom: 5%;
    width: 90%;
    height: 50%;
    align-items: center;
    justify-content: center;
  }

  .bedcount {
    display: flex;
    font-size: 16px;
    background-color: #00000057;
    margin: 3%;
    padding: 10%;
    width: 10%;
    height: 15%;
    border-radius: 6rem;
    justify-content: center;
    align-items: center;
    border: 3px solid #ffffff;
    pointer-events: all;
    cursor: pointer;
  }

  .avaitext {
    display: flex;
    font-size: 14px;
    background-color: #00000057;
    border: 2px solid #ffffff;
    margin: 0.1rem;
    margin-bottom: 3%;
    padding: 0rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    border-radius: 10rem;
    pointer-events: all;
    cursor: pointer;
  }

  .availabilityf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .resetbtn {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
  }

  .resetbtn > div {
    position: absolute;
    display: flex;
    top: -50%;
    left: 36%;
    border: 1px solid #ffffff;
    border-radius: 2rem;
    pointer-events: all;
    cursor: pointer;
  }

  /*uniselected*/
  .unitselect {
    position: absolute;
    display: flex;
    top: 25%;
    left: 2rem;
    width: 25%;
    height: 17rem;
    background-color: #00000063;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
  }

  .unitselect {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }

  .ftitle {
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #ffffff;
    left: 6rem;
  }

  .fcuerpo {
    font-family: "Jaldi", sans-serif;
    line-height: 1;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: left;
    padding-left: 2rem;
    color: #ffffffac;
  }

  .fcuerpo > p > b {
    font-weight: bold;
    color: #ffffff;
  }

  .liveitbtn {
    width: 40%;
    height: 1.8rem;
    background-color: #ffffff;
    border-radius: 0.8rem;
    border: 0px solid #ffffff00;
    margin: 0.5rem;
    pointer-events: all;
    cursor: pointer;
    padding-top: 0rem;
  }

  .liveitbtn:hover {
    background-color:#c24616;
    border: 2px solid rgba(255, 255, 255, 0);
    transform: scale(1.05);
  }

  .reservebtn {
    display: flex;
    width: 40%;
    height: 1.8rem;
    align-items: center;
    justify-content: center;
    background-color: #05910273;
    border: 1px solid #ffffff;
    border-radius: 0.8rem;
    margin: 0rem;
    pointer-events: all;
    cursor: pointer;
    padding: 0rem;
  }

  .reservebtn:hover {
    background-color: #05910273;
    border: 1px solid #ffffff;
  }

  .iconlive {
    width: 100%;
    height: 100%;
  }

  .iconreser {
    width: 100%;
    height: 100%;
  }

  .atrasbtn {
    display: flex;
    position: absolute;
    background-color: #ffffff;
    border-radius: 3rem;
    width: 2rem;
    height: 2rem;
    left: -0.5rem;
    cursor: pointer;
    pointer-events: all;
    justify-content: center;
    align-items: center;
  }

  .atrasbtn1 {
    width: 1.5rem;
  }

  .btnpoidisa {
    background-color: #7a7a7a;
    pointer-events: none;
    border-color: #7a7a7a;
    fill: #e80000;
    opacity: 0;
  }

  .joycontainer {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #a8101000;
    align-items: end;
    justify-content: left;
    pointer-events: none;
  }

  .joystick {
    display: flex;
    width: 100px;
    height: 100px;
    background: #ffffff63;
    border-radius: 50%;
    position: absolute;
    touch-action: none;
    align-items: center;
    justify-content: center;
    margin: 3%;
    pointer-events: all;
  }

  .stick {
    width: 50px;
    height: 50px;
    background: #ffffff63;
    border-radius: 50%;
    position: absolute;
    touch-action: none;
    /* Evita el desplazamiento en la pantalla táctil */
  }

  .HUDG {
    display: none;
  }

  .out {
    background-color: rgba(0, 0, 0, 0);
  }

  .panelbtnjuego {
    display: flex;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    z-index: 30;
  }

  .sbtncontainer {
    pointer-events: none;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .zoomcontainer {
    pointer-events: none;
    position: absolute;
    display: flex;
    justify-content: start;
    width: 100%;
    height: 100%;
  }

  .zoombtn {
    position: absolute;
    display: flex;
    top: 40%;
    margin: 2%;
    margin-left: 3%;
    width: 3.5%;
    height: auto;
    border-radius: 50%;
    pointer-events: all;
    padding: 1%;
  }

  .zoombtn:active {
    background-color: #ffffff57;
  }

  .lupazoom {
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  .interactcontainer {
    position: absolute;
    display: flex;
    justify-content: end;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .interactbtn {
    position: absolute;
    display: flex;
    top: 40%;
    right: 10%;
    margin: 2%;
    margin-right: 4%;
    width: 4%;
    height: 8.5%;
    padding: 0.5%;
    border-radius: 50%;
    pointer-events: all;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: all;
  }

  .interactbtn:active {
    background-color: #ffffff57;
  }

  @keyframes Mano {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes Mano2 {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  .Mano1 {
    position: absolute;
    display: flex;
    width: 50%;
    animation: Mano 1s cubic-bezier(0, 1, 0, 1) infinite;
    pointer-events: none;
  }

  .Mano2 {
    position: absolute;
    display: flex;
    width: 50%;
    animation: Mano2 1s cubic-bezier(0, 1, 0, 1) infinite;
    pointer-events: none;
  }

  .reservewindowcon {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    z-index: 30;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }

  .reservewindow {
    display: flex;
    position: absolute;
    width: 20%;
    height: 20%;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0.5rem;
    padding: 1rem;
  }

  .logowin {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    margin: 0.1rem;
  }

  .logowinicon {
    width: 100%;
    height: auto;
    position: absolute;
  }

  .mensajereser {
    display: flex;
    position: relative;
    color: #0c0d34;
    font-size: 16px;
  }

  .cartbtncontainer {
    display: flex;
    position: relative;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    border-radius: 0.5rem;
    pointer-events: all;
    cursor: pointer;
    background-color: #0c0d34;
    font-size: 16px;
  }

  .cartbtncontainer:active {
    background-color: #340c0c;
  }

  .keepexcontainer {
    font-size: 10px;
    color: #49494991;
    pointer-events: all;
    cursor: pointer;
  }

  .keepexcontainer:active {
    color: #ff2c2c;
  }

  .panelawsd {
    display: none;
  }

  .panelmause {
    display: none;
  }

  .unitselect2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-self: center;
    left: 65%;
    margin: 5rem;
    width: 12rem;
    height: 19rem;
    font-size: 13px;
  }

  .iconreser2 {
    transform: translateX(0.8rem);
  }

  .logobolsag {
    transform: translateX(3rem);
  }

  .logobolsag {
    display: flex;
    position: absolute;
    width: 12%;
    right: 100%;
    transition: all 0.3s;
    pointer-events: none;
  }

  .continuetxt1 {
    display: none;
  }

  .visible {
    opacity: 1;
    visibility: visible;
  }

  .disable {
    border: 2px solid #ffffff50;
    background-color: #ffffff20;
    color: #0000002b;
    transition: all 0.2s;
    color: #ffffff;
  }
}

/* Estilos para pantallas medianas (por ejemplo, tabletas) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .avisoh {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #b91467;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
  }

  .menuopc {
    background-color: rgba(0, 0, 0, 0.5);
    height: 2.5rem;
    width: 100%;
    display: flex;
    position: absolute;
    pointer-events: all;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    align-items: center;
  }

  .btnbarra {
    font-size: 1rem;
    pointer-events: all;
    cursor: pointer;
    padding-bottom: 0.3rem;
    border-bottom: 0.1rem solid #ffffff00;
    transition: all 0.3s;
    margin-left: 1%;
    margin-right: 1%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fotoper {
    display: flex;
    position: absolute;
    border: 0.05rem solid #ffffff00;
    border-radius: 4rem;
    background-color: rgb(255, 255, 255);
    pointer-events: all;
    width: 1.5rem;
    height: 1.5rem;
    top: 11%;
    left: 0.2rem;
  }

  .fotoper1 {
    width: 100%;
  }

  .despop {
    display: flex;
    position: absolute;
    border-left: 25%;
    border-radius: 4rem;
    right: 1%;
    height: 2rem;
    width: 4.5rem;
    background-color: var(--colour8);
    z-index: 40;
    opacity: 1;
    visibility: visible;
    top: 10%;
  }

  .trebarra {
    display: flex;
    top: 0.15rem;
    left: 2.5rem;
    height: 1.7rem;
    width: 1.4rem;
    position: absolute;
    pointer-events: all;
    cursor: pointer;
    background-color: #02fa2300;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .controlsh {
    position: absolute;
    font-family: "Jaldi", sans-serif;
    display: flex;
    z-index: 10;
    left: 2rem;
    top: 140%;
    flex-direction: column;
    pointer-events: all;
    transition: all 0.2s;
    background-color: #00000069;
    padding: 0.1rem;
    border-radius: 10rem;
    opacity: 0;
    visibility: hidden;
  }

  .btnopciones {
    display: flex;
    background-color: var(--colour8);
    border: 1px solid var(--colour8);
    border-radius: 50%;
    position: relative;
    width: 2rem;
    height: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0.1rem;
  }

  .btnopciones:hover .iconmenu {
    width: 0.9rem;
    height: 0.9rem;
    transition: all 0.3s;
  }

  .btnopciones:active {
    border: 1px solid #ff0000;
  }

  .iconmenu {
    display: flex;
    width: 1.1rem;
    height: 1.1rem;
    pointer-events: none;
  }

  .barras {
    transition: all 0.3s;
    display: flex;
    height: 2rem;
    width: 1.3rem;
    background-color: #ffffff;
    margin: 0.22rem;
    border-radius: 1rem;
  }

  .xr div:first-child {
    transform: translateY(0.55rem) rotate(45deg);
  }

  .xr div:last-child {
    transform: translateY(-0.55rem) rotate(-45deg);
  }

  .xr div:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }

  .btnbarra:hover {
    border-bottom: 0.1rem solid #473737;
  }

  .selected {
    border-bottom: 0.1rem solid #ff2c2c;
  }

  .panelfiltros {
    display: flex;
    position: absolute;
    background-color: #0084ff00;
    height: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 6rem;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    font-family: "Jaldi", sans-serif;
    align-items: end;
  }

  .panelfiltroderecha {
    transform: translatey(8rem);
  }

  .pnfiltro {
    display: flex;
    width: 20%;
    height: 6rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 12%;
  }

  .surfacef {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .surfaceslider {
    justify-content: center;
    align-items: center;
    width: 85%;
  }

  .surfaceslider > input {
    background: red;
    pointer-events: all;
    cursor: pointer;
    width: 100%;
  }

  .budgetslider {
    justify-content: center;
    align-items: center;
    width: 85%;
  }

  .budgetslider > input {
    background: red;
    pointer-events: all;
    cursor: pointer;
    width: 100%;
  }

  .bedroomcountf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .countcontainer {
    display: flex;
    flex-direction: row;
    margin-bottom: 5%;
    width: 90%;
    height: 50%;
    align-items: center;
    justify-content: center;
  }

  .bedcount {
    display: flex;
    font-size: 16px;
    background-color: #00000057;
    margin: 3%;
    padding: 10%;
    width: 10%;
    height: 15%;
    border-radius: 6rem;
    justify-content: center;
    align-items: center;
    border: 3px solid #ffffff;
    pointer-events: all;
    cursor: pointer;
  }

  .avaitext {
    display: flex;
    font-size: 14px;
    background-color: #00000057;
    border: 2px solid #ffffff;
    margin: 0.1rem;
    margin-bottom: 3%;
    padding: 0rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    border-radius: 10rem;
    pointer-events: all;
    cursor: pointer;
  }

  .availabilityf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .resetbtn {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
  }

  .resetbtn > div {
    position: absolute;
    display: flex;
    top: -50%;
    left: 36%;
    border: 1px solid #ffffff;
    border-radius: 2rem;
    pointer-events: all;
    cursor: pointer;
  }

  /*uniselected*/
  .unitselect {
    position: absolute;
    display: flex;
    top: 25%;
    left: 2rem;
    width: 25%;
    height: 17rem;
    background-color: #00000063;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
  }

  .unitselect {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }

  .ftitle {
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #ffffff;
    left: 6rem;
  }

  .fcuerpo {
    font-family: "Jaldi", sans-serif;
    line-height: 1;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: left;
    padding-left: 2rem;
    color: #ffffffac;
  }

  .fcuerpo > p > b {
    font-weight: bold;
    color: #ffffff;
  }

  .liveitbtn {
    width: 40%;
    height: 1.8rem;
    background-color: #ffffff;
    border-radius: 0.8rem;
    border: 1px solid #ffffff00;
    margin: 0.5rem;
    pointer-events: all;
    cursor: pointer;
    padding-top: 0rem;
    
  }

  .liveitbtn:hover {
    background-color:#c24616;
    border: 2px solid rgba(255, 255, 255, 0);
    transform: scale(1.1);
    width: 45%;
    
  }
.liveitbtn:hover > .txtlive {
  font-size: 15px;
  color: #ffffff;
}
  .reservebtn {
    display: flex;
    width: 41%;
    height: 1.9rem;
    align-items: center;
    justify-content: center;
    background-color: #05910273;
    border: 0px solid #05910273;
    border-radius: 0.8rem;
    margin: 0rem;
    pointer-events: all;
    cursor: pointer;
    padding: 0rem;
  }

  .reservebtn:hover {
    background-color: #05910273;
    border: 0px solid #ffffff;
    transform: scale(1.1);
  }
  
.reservebtn:hover > .txtreser {
  transform: translateX(0.5rem);
}
.reservebtn > .txtreser {
  transform: translateX(0.5rem);
}
.reservebtn > .logobolsag {
  transform: translateX(1.5rem);
}
.reservebtn:hover > .logobolsag {
  transform: translateX(1.5rem);
}
  .iconlive {
    width: 100%;
    height: 100%;
  }

  .iconreser {
    width: 100%;
    height: 100%;
  }

  .atrasbtn {
    display: flex;
    position: absolute;
    background-color: #ffffff;
    border-radius: 3rem;
    width: 2rem;
    height: 2rem;
    left: -0.5rem;
    cursor: pointer;
    pointer-events: all;
    justify-content: center;
    align-items: center;
  }

  .atrasbtn1 {
    width: 1.5rem;
  }

  .btnpoidisa {
    background-color: #7a7a7a;
    pointer-events: none;
    border-color: #7a7a7a;
    fill: #e80000;
    opacity: 0;
  }

  .joycontainer {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #a8101000;
    align-items: end;
    justify-content: left;
    pointer-events: none;
  }

  .joystick {
    display: flex;
    width: 100px;
    height: 100px;
    background: #ffffff63;
    border-radius: 50%;
    position: absolute;
    touch-action: none;
    align-items: center;
    justify-content: center;
    margin: 3%;
    pointer-events: all;
  }

  .stick {
    width: 50px;
    height: 50px;
    background: #ffffff63;
    border-radius: 50%;
    position: absolute;
    touch-action: none;
    /* Evita el desplazamiento en la pantalla táctil */
  }

  .HUDG {
    display: none;
  }

  .out {
    background-color: rgba(0, 0, 0, 0);
  }

  .panelbtnjuego {
    display: flex;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    z-index: 30;
  }

  .sbtncontainer {
    pointer-events: none;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .zoomcontainer {
    pointer-events: none;
    position: absolute;
    display: flex;
    justify-content: start;
    width: 100%;
    height: 100%;
  }

  .zoombtn {
    position: absolute;
    display: flex;
    top: 40%;
    margin: 2%;
    margin-left: 3%;
    width: 3.5%;
    height: auto;
    border-radius: 50%;
    pointer-events: all;
    padding: 1%;
    left: 85%;
  }

  .zoombtn:active {
    background-color: #ffffff57;
  }

  .lupazoom {
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  .interactcontainer {
    position: absolute;
    display: none;
    justify-content: end;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .interactbtn {
    position: absolute;
    display: flex;
    top: 40%;
    right: 10%;
    margin: 2%;
    margin-right: 4%;
    width: 4%;
    height: 8.5%;
    padding: 0.5%;
    border-radius: 50%;
    pointer-events: all;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: all;
    background-color: #0585fe;
  }

  .interactbtn:active {
    background-color: #ffffff57;
  }

  @keyframes Mano {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes Mano2 {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  .Mano1 {
    position: absolute;
    display: flex;
    width: 50%;
    animation: Mano 1s cubic-bezier(0, 1, 0, 1) infinite;
    pointer-events: none;
  }

  .Mano2 {
    position: absolute;
    display: flex;
    width: 50%;
    animation: Mano2 1s cubic-bezier(0, 1, 0, 1) infinite;
    pointer-events: none;
  }

  .reservewindowcon {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    z-index: 30;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }

  .reservewindow {
    display: flex;
    position: absolute;
    width: 20%;
    height: 20%;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0.5rem;
    padding: 1rem;
  }

  .logowin {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    margin: 0.1rem;
  }

  .logowinicon {
    width: 100%;
    height: auto;
    position: absolute;
  }

  .mensajereser {
    display: flex;
    position: relative;
    color: #0c0d34;
    font-size: 16px;
  }

  .cartbtncontainer {
    display: flex;
    position: relative;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    border-radius: 0.5rem;
    pointer-events: all;
    cursor: pointer;
    background-color: #0c0d34;
    font-size: 16px;
  }

  .cartbtncontainer:active {
    background-color: #340c0c;
  }

  .keepexcontainer {
    font-size: 10px;
    color: #49494991;
    pointer-events: all;
    cursor: pointer;
  }

  .keepexcontainer:active {
    color: #ff2c2c;
  }

  .panelawsd {
    display: none;
  }

  .panelmause {
    display: none;
  }

  .unitselect2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-self: center;
    left: 65%;
    margin: 5rem;
    width: 12rem;
    height: 19rem;
    font-size: 13px;
  }

  .iconreser2 {
    transform: translateX(0.8rem);
  }

  .logobolsag {
    transform: translateX(1rem);
  }

  .logobolsag {
    display: flex;
    position: absolute;
    width: 12%;
    right: 100%;
    transition: all 0.3s;
    pointer-events: none;
  }

  .continuetxt1 {
    display: none;
  }

  .showmorebtn {
    display: flex;
  }

  .moreoptionstxt1 {
    display: none;
  }

  .visible {
    opacity: 1;
    visibility: visible;
  }

  .disable {
    border: 2px solid #ffffff50;
    background-color: #ffffff20;
    color: #0000002b;
    transition: all 0.2s;
    color: #ffffff;
  }
}

@media only screen and (orientation: portrait) {
  #container {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media only screen and (orientation: landscape) {
  #container {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
