.obj-baner {
  width: 900px;
  height: 800px;
  position: relative;
}

.fundo-baner {
  background: rgb(242, 244, 246) !important;
}

.ver-market-place {
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  animation: pulse 2s 1;
  transition: background-color 0.3s, transform 0.3s;
  overflow-x: visible !important;
  transform: scale(0.9);
}

.cursor {
  cursor: pointer;
}

* {
  margin: 0 !important;
  padding: 0 !important;
}

#body {
  background-color: #d3e1ff;
  font-family: Arial, Helvetica, sans-serif;
  height: 60px !important;
}

.content-perfil {
  position: absolute;
  top: 0;
  background: #0373ce;
  transition: all linear 0.3s;
  height: 65px;
  overflow: hidden;
}
.content-perfil img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.content-perfil:hover {
  height: 95vh;
}
.content-perfil:hover .content-perfil-info {
  background: #0566b6;
}

.item-lista {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  margin-bottom: 20px;
  /* border: 1px solid #ccc; */
  border-radius: 3px 0 0 3px;
  padding: 10px;
  transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}
.item-lista p {
  margin: 0px;
  font-size: 12px;
  font-weight: normal;
}
.item-lista:hover {
  border-radius: 3px;
  height: 80px;
  background-color: rgb(0, 115, 255);
}
.item-lista:hover .icon-arrow {
  opacity: 1;
  color: rgb(192, 212, 250) !important;
  animation-name: max-icon-arrow;
  animation-duration: 0.3s;
  animation-direction: alternate;
  transition: all linear 0.3s;
}
.item-lista:hover .icon-arrow i:hover {
  transform: scale(1.3);
  color: rgb(251, 251, 251);
  background: #064ea0;
  margin: 0 2px 0 2px;
}
.item-lista:hover h2 {
  font-weight: bold;
  color: hsl(90, 100%, 98%);
  text-shadow: 0px 0px 2px #3a4901;
  padding-bottom: 8px;
}
.item-lista:hover p {
  font-weight: bold;
  color: #dbdbdb;
  text-shadow: 0px 0px 2px #3a4901;
}
.item-lista img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
}
.item-lista .icon-arrow {
  position: absolute;
  right: 8px;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    background: linear-gradient(to right, rgba(0, 115, 255, 0.5), #0073ff);
  }
  50% {
    transform: scale(1);
    background: linear-gradient(to right, rgba(0, 150, 255, 0.7), #0099ff);
  }
  100% {
    transform: scale(0.9);
    background: linear-gradient(to right, rgba(0, 115, 255, 0.5), #0073ff);
  }
}
#contentListagemMeusFlyers:hover {
  transform: scale(1);
}

.scala-hover img {
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s;
}
.scala-hover:hover {
  z-index: 1000;
}
.scala-hover:hover img {
  transform: scale(1.2);
  box-shadow: 1px 1px 8px rgba(1, 72, 119, 0.795);
}
.scala-hover i:hover {
  transform: scale(1.05);
  background: #0073ff;
  color: white;
  box-shadow: 1px 1px 8px rgba(1, 72, 119, 0.795);
}

input[type=checkbox]:checked + label {
  color: white !important;
  font-weight: bold;
}

.content-direito {
  display: none !important;
}
@media (width >= 992px) {
  .content-direito {
    display: inline-block;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Inicialmente escondido */
  z-index: 99999; /* Abaixo do menu */
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.8s ease;
}

.bottomsheet {
  position: fixed;
  bottom: -300%; /* Oculta inicialmente */
  left: 0;
  right: 0;
  background: #d3e1ff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
  transition: bottom 0.3s ease;
  padding: 20px;
  height: calc(100vh - 55px);
  z-index: 99999999;
}

.bottomsheet.open {
  bottom: 0; /* Mostra o bottomsheet */
}/*# sourceMappingURL=estilo.css.map */