.taia_iframe {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	overflow: hidden;
	position: fixed;
	z-index: 10000;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
	            0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.iframe-mobile {
	bottom: 0;
	right: 0;
}

.iframe-desktop {
	bottom: 20px;
	right: 20px;
}

.taia-minimizeBtn {
	align-items: center;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	height: 1.5rem;
	justify-content: center;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 1.5rem;
	z-index: 10001;
	background-color: #e5e7eb;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.taia-bubble-box {
	border-radius: 6px;
	border: 1px solid #8B84D7;
	box-sizing: border-box;
	left: -7px;
	max-width: 95vw;
	position: absolute;
	top: 45px;
	width: 370px;
	z-index: 9999;
	background-color: #ffffff;
	padding: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
	            0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.taia-content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: left;
}

.taia-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.taia-header-text {
	font-size: 14px;
	line-height: 1.25rem;
	margin: 0;
	padding-right: 1.25rem;
	color: #000000;
}

.taia-bubble-close {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.taia-bubble-close::before,
.taia-bubble-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #000;
  transition: transform 0.2s ease-in-out;
}

.taia-bubble-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.taia-bubble-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.taia-tags-container {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	padding-top: 0.75rem;
}

.taia-tag {
	border-radius: 9999px;
	border: 1px solid #A29BDF;
	background-color: #C5C1EB;
	cursor: pointer;
	white-space: nowrap;
	font-size: 0.75rem;
	line-height: 1rem;
	padding: 0.375rem 0.75rem;
	color: #181818;
	transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.taia-tag:hover {
	background-color: #A29BDF;
	color: #ffffff;
}

.taia-float-button {
	background-color: transparent;
	border-radius: 6px;
	border: none;
	bottom: 20px;
	cursor: pointer;
	display: none;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0.625rem 1.25rem;
	position: fixed;
	right: 20px;
	z-index: 9999;
	color: #ffffff;
}
@media (max-width: 768px) {
  .taia-float-button.isProductPage {
    bottom: 106px;
  }
}

.button-icon {
	display: block;
	height: auto;
	width: auto;
}

.taia-tooltip {
	box-sizing: border-box;
	display: flex;
	left: 156px;
	position: absolute;
	top: 47px;
	width: 330px;
	z-index: 9999;
	align-items: flex-start;
	border-radius: 6px;
	border: 1px solid #8B84D7;
	gap: 0.5rem;
	transform: translateX(-50%);
	background-color: #ffffff;
	font-family: Visuelt, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	padding: 0.75rem;
	color: #1A202C;
	opacity: 1;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
	            0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.taia-tooltip.visible {
  opacity: 1;
}

.taia-tooltip.hidden {
  opacity: 0;
}

.taia-tooltip__content {
	flex: 1 1 0%;
	text-align: left;
}

.taia-tooltip__close {
	background: none;
	border: none;
	cursor: pointer;
	height: 1rem;
	margin-left: auto;
	padding: 0;
	width: 1rem;
}

.taia-tooltip__close-icon {
	height: 100%;
	width: 100%;
}

.taia-tooltip__arrow-border {
	position: absolute;
	z-index: 0;
	left: 15px;
	top: -9px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #8B84D7;
}

.taia-tooltip__arrow-white {
	position: absolute;
	z-index: 20;
	left: 16px;
	top: -8px;
	width: 0;
	height: 0;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-bottom: 9px solid #ffffff;
}

.custom-button {
  background-color: transparent;
  border: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.relative-wrapper {
  position: relative;
}

.scroll-touch {
	overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

