.ip-query-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
  background-color: #f36924;
	text-align: center;
	text-transform: none;
	padding: 10px;
	border-radius: 12px;
	margin: 0;
	box-shadow: none;
	max-width: 190px;
	transition: 0.3s all ease-in-out;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
	.ip-query-button {
		right: 20px;
		z-index: 99;
		bottom: 13px;
	}
}

@media print {
	/* .ip-query-button {
		display: none;
	} */
}

.ip-query-button svg {
	display: inline;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	position: relative;
	top: 2px;
}

.ip-query-button:hover {
	opacity: 0.8;
  color: #fff;
  background-color: #343790;
}

.ip-query-button:before,
.ip-query-button:after {
	content: none;
}

.ip-query-button svg {
	display: block;
	width: 44px;
	height: 40px;
	margin: 0 auto 10px auto;
}

.ip-chat-header {
  padding: 5px 15px 0 15px;
  background: #32378d;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ip-chat-header .minimize-chat {
  cursor: pointer;
}

.ip-chat-header .view-in-full-screen {
  padding-right: 10px;
}

.ip-chat-header .view-in-full-screen svg {
  width: 15px;
  position: relative;
  top: 6px;
}

.ip-chat-header .minimize-chat svg {
  width: 21px;
  position: relative;
  top:0;
}

.ip-chat-header svg path {
  fill: #ffffff;
}

#ip-chat-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 430px;
  background: #ffffff; /* Replace $white with actual value */
  z-index: 9999;
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s;
  transform: translateY(140%);
}

#ip-chat-panel iframe {
  height: 60vh;
  width: 100%;
}

@media (max-width: 768px) {
  #ip-chat-panel,
  #ip-chat-panel iframe {
    width: 100%;
  }
}

@media print {
  #ip-chat-panel {
    display: none;
  }
}

#ip-chat-panel.active {
  transform: translateY(0);
  z-index: 999999;
}

#ip-chat-panel .view-in-full-screen {
  text-align: center;
  display: block;
  font-size: 13px;
  padding-bottom: 10px;
  color: #18489e;
}

#ip-chat-panel .panel-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 6px 20px;
}

#ip-chat-panel .panel-header .panel-title {
  font-size: 16px;
  color: #ffffff; /* Replace $white */
  /* Add font styles here for @include bran-black */
}

#ip-chat-panel .panel-header .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 16px;
  width: 16px;
}

#ip-chat-panel .field-group {
  margin-bottom: 20px;
}

#ip-chat-panel label {
  font-size: 16px;
  color: #455073;
  display: block;
  margin-bottom: 10px;
  /* Add font styles here for @extend .font-regular */
}


