<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Support widget styling */
.floating-btn {
  position : fixed;
  bottom : 35px;
  right : 50px;
  width : 60px;
  height : 60px;
  background-color : #5195BA;
  color : white;
  border-radius : 50%;
  display : flex;
  justify-content : center;
  align-items : center;
  font-size : 24px;
  box-shadow : rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  z-index : 1000;
  cursor : pointer;
}
  .floating-btn : hover {
  box-shadow : rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  background-color : #257AAC;
}
.contact-label {
  color : #212529;
}
.contact-popup.active {
  opacity : 1;
  transform : translateY(0);
  pointer-events : auto;
}
.close-btn {
  position : absolute;
  top : 5px;
  right : 10px;
  font-size : 20px;
  cursor : pointer;
  color : #aaa;
}
  .close-btn : hover {
  color : #000;
}
.contact-header {
  background-color : transparent;
  text-align : left!important;
  background-color : white;
  color : #212529;
  border-bottom : 0px;
  font-weight : bold;
  font-size : 1rem;
  border-top-left-radius : 8px;
  border-top-right-radius : 8px;
}
</pre></body></html>