.floating-box {
  position: fixed;
  top: 50%;
  right: 0;
  background: white;
  border-radius: 10px 0px 0px 10px;
  padding: 10px;
  box-shadow: #999090 0px 3px 4px 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transform: translateX(calc(100% - 40px));
  transition: transform 0.4s ease;
  white-space: nowrap;
}

.floating-box:hover {
  transform: translateX(0);
}

.floating-box .floating-box-content {
  display: flex;
  align-items: center;
}

.floating-box .floating-box-content .icon {
  margin-right: 5px;
}

.termo-style-scroll {
  max-height: 230px;
  overflow-y: scroll;
}

div:has(> input.remove-input-padding) {
  padding-top: 7px !important;
}

