.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
}
.banner * {
  margin: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.modal-overlay .modal {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-overlay .modal .modal-content {
  display: flex;
  box-sizing: border-box;
  padding-top: 50px !important;
  height: 100%;
}
.modal-overlay .modal .modal-content .modal-content-container {
  display: flex;
  overflow: auto;
  flex-direction: column;
  margin: auto;
  height: 100%;
}
.modal-overlay .modal .modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  width: 40px;
}

.bubble-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.bubble-wrapper .custom-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
}
.bubble-wrapper .custom-bubble.expanded {
  border-radius: 10px;
  cursor: auto;
}
.bubble-wrapper .custom-bubble.expanded .bubble-content {
  display: block;
  overflow: auto;
  margin: auto;
  box-sizing: border-box;
}
.bubble-wrapper .custom-bubble.expanded .bubble-close {
  display: block;
}
.bubble-wrapper .custom-bubble.expanded .bubble-icon {
  display: none;
}
.bubble-wrapper .custom-bubble .bubble-icon {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.bubble-wrapper .custom-bubble .bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bubble-wrapper .custom-bubble .bubble-content {
  display: none;
  padding: 20px;
}
.bubble-wrapper .custom-bubble .bubble-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: none;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .modal {
    width: 90vw !important;
    height: 90vh !important;
  }
}

/*# sourceMappingURL=bannieres.css.map */
