:root {
  touch-action: pan-x pan-y;
  height: 100% 
}
* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
}
html, body {
  overflow: hidden; 
  width: 100%;
  height: 100%;
  -webkit-touch-callout: none;  /* iPhone OS, Safari */
  -webkit-user-select: none;    /* Chrome, Safari 3 */
  -khtml-user-select: none;     /* Safari 2 */
  -moz-user-select: none;       /* Firefox */
  -ms-user-select: none;        /* IE10+ */
  user-select: none;            /* Possível implementação no futuro */
  /* cursor: default; */
  -webkit-text-size-adjust: none;
	touch-action: manipulation;
}
.assento_info {
  background-color: goldenrod;
}
.btn{
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #565658;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
  background: #f3771f;
  color: white;
  font-weight: bolder;
  text-shadow: 1px 1px 1px #713e19;
  min-width: 30px;
  text-align: center;
}
/*.arrow {
  width: 30px;
  height: 16px;
}*/
#image-map-wrapper {
  /*height: 100vw;
  width: 100vw;
  padding: 15rem;*/
  -webkit-touch-callout: none;  /* iPhone OS, Safari */
  -webkit-user-select: none;    /* Chrome, Safari 3 */
  -khtml-user-select: none;     /* Safari 2 */
  -moz-user-select: none;       /* Firefox */
  -ms-user-select: none;        /* IE10+ */
  user-select: none;            /* Possível implementação no futuro */
  /* cursor: default; */
} 
#image-map-wrapper > svg, 
#image-map-wrapper > img {
  position: absolute;
  cursor: grab;
  padding: 0rem 10rem;
}
#image-map-wrapper > img,
#image-map-wrapper > svg {
  padding-bottom: 35rem;
}
.vendido {
  cursor: pointer;
  fill:red;
  background-color: red;
  color: #fff;
}
.assento {
  cursor: pointer;
  fill: transparent;
  background-color: #f1f1f1;
}
.assento:hover {
  fill:#4d4dff;
}
.assento.selected {
  fill:#0000ff;
}
.ctrl-wrapper{
  position: fixed;
  bottom: 0;
  height: 60px;
  background: #fff;
  z-index: 9;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  -webkit-box-shadow: 0 5px 50px -1px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 50px -1px rgba(0, 0, 0, .2);
}
.btnzoom {
  width: fit-content;
  background-color: #fff;
  position: fixed;
  top: 0;
  padding: 10px;
  z-index: 1;
  -webkit-box-shadow: 0 5px 50px -1px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 50px -1px rgba(0, 0, 0, .2);
}
.arrow-right {
  float:right;
  margin-top: -57px;
}
.arrow-top,
.arrow-down {
  margin-left: 34px;
}
.btn-plus-minus {
  /*width: 50px;*/
  margin-left: 20px;
  margin-top: 17px;
  float: right;
}
.arrow-plus {
  margin-top: 16px;
}
.btns-arrows {
  width: 100px;
  float: left;
}
.woocommerce-billing-step-btn .button {
  width: 120px;
}
.main {
	width: 100%; /* porcentagem corrige o espaço em branco do eixo X ao diminuir o zoom */
	height: 100vh; /* este ainda é um problema em que você vê espaços em branco ao diminuir o zoom no eixo Y */
	overflow: scroll; /* necessário para o safari mostrar a barra de rolagem do eixo x */
}
.main .section {
	transform-origin: 0 0;
}
@media(max-width: 600px) {
  #image-map-wrapper {
    transform-origin: center center; /* Define o ponto de transformação no centro da tela */
    transition: transform 0.3s ease-out; /* Adiciona uma transição suave ao zoom */
    margin-left: -160px;
  }
  .alertMapa span {
    max-width: 325px;
  }
}
.mini-submenu {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1;
} 
.list-group {
  justify-content: end;
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: none;
  z-index: 2;
}
.conteudo-cart {
  display: grid;
  background-color: #f1f1f1;
  padding: 15px;
  margin-right: 10px;
  margin-top: 23px;
  border: 1px solid #ddd;
}
.conteudo-cart ul {
  padding: 5px 5px 5px 30px;
  background-color: #fff;
  margin: 5px auto;
  min-width: 165px;
  max-height: 300px;
  overflow: auto;
}
.fa-times {
  color: #dc3545;
}
.alert-count {
  position: absolute;
  top: 1rem;
  right: 3.8rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background: #f62718;
  z-index: 2;
  padding: 10px;
} 
#modal {
  display: none;
  position: fixed;
  transform: translate(11%, 130%);
  background-color: #fff;
  border-top: 5px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
  border-radius: 5px 5px 0px 0px;
}
.statusAssento {
  width: 100%;
  position: absolute;
  text-align: center;
  padding: 5px;
  border-radius: 0px 0px 5px 5px;
}
.infoAssento p {
  margin: 5px 10px;
  text-align: center;
}
.selecionado {
  background-color: #0000ff;
  color: #fff;
}
@keyframes fade-in {
  from { opacity: 0 }
  to   { opacity: 1 }
}
.alertMapa { 
  position: absolute;
  right: 0;
  z-index: 3;
  top: 10rem;
  display: grid;
  margin-left: 15px;
}
.alertMapa span {
  opacity: 1;
  animation: fade-in 0.5s normal forwards ease-in-out;
  margin-bottom: 10px;
  position: relative;
  width: 370px;
}
.alertMapa .alert-err,
.alertMapa .alert-suc {
  font-family: 'Lato', sans-serif;
  padding: 1em;
  line-height: 2rem;
}
.alertMapa .alert-err {
  background-color: #FFCACA;
  border-left: 4px #a60202 solid;
  color: #a60202;
}
.alertMapa .alert-suc {
  color: #155724;
  background-color: #d4edda;
  border-left: 4px #23903c solid;
}
.fecha-alert-err,
.fecha-alert-suc {
  top: -15px;
  position: absolute;
  left: -10px;
  font-size: 29px;
  background-color: #fff;
  border-radius: 50px;
  height: 31px;
  cursor: pointer;
}
.fecha-alert-err {
  color: #a60202;
}
.fecha-alert-suc {
  color: #155724;
}
.d-flex {
  display: flex;
}
.ri-error-warning-fill,
.ri-checkbox-circle-fill {
  margin-right: 5px;
}
.legenda-mapa {
  position: fixed;
  bottom: 100px;
  left: 20px;
  max-width: 200px;
  min-width: 200px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 50px -1px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 50px -1px rgba(0, 0, 0, .2);
  z-index: 3;
}  
.btn-legenda {
  color: #fff;
  font-size: 15px;
  background-color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 15px;
  margin: 0;
  line-height: 37px;
  border-radius: 5px;
  width: 100%;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dados-legenda {
  background-color: #fff;
  padding: 8px;
  border-radius: 0px 0px 5px 5px;
}
.cor-legenda {
  width: 55px;
  height: 25px;
  line-height: 25px;
  border-radius: 5px;
}
#lege ul {
  padding: 0;
  list-style: none;
}
#lege ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#lege p {
  margin: 0px 0px 0px 7px;
}
.hide {
  display: none !important;
}
.toqueCelular {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}
.toqueCelular img {
  width: 132px;
}
.toqueCelular h3 {
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: sans-serif;
}
.toqueCelular .btn {
  width: 100px;
  font-weight: 800;
}
.text-center {
  text-align: center;
}
