
.sos-header{
  right: -0px;
  position: absolute;
  display: inline-block;
  top: 10px;
	z-index:10;
}

#searchIcon{display:none}
.sos-main-body {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 10;
}

.sos-bootstrap-scope .sos-header {
  background-color: #fff;
  display: flex;
  height: 59px;
}

.sos-bootstrap-scope .sos-logo-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  margin-left: 55px;
  margin-top: 26px;
}

.sos-bootstrap-scope .sos-logo-column img {
  height: 50px;
  object-fit: contain;
}

.sos-bootstrap-scope .sos-content-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sos-bootstrap-scope .sos-header-top {
  color: #000;
  font-size: 14px;
  text-align: right;
  margin-top: 9px;
}

.sos-bootstrap-scope .sos-header-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sos-bootstrap-scope .sos-navbar-nav {
  gap: 10px;
  margin: 0;
}

.sos-bootstrap-scope .sos-navbar-nav .sos-nav-link {
  color: #000;
  transition: color 0.3s;
  white-space: nowrap;
}

.sos-bootstrap-scope .sos-navbar-nav .sos-nav-link:hover,
.sos-bootstrap-scope .sos-navbar-nav .sos-nav-link.active {
  color: #d69c00;
}

.sos-bootstrap-scope .sos-logout-icon {
  color: #000;
  font-size: 24px;
  transition: color 0.3s;
}

.sos-bootstrap-scope .sos-logout-icon:hover {
  color: #d69c00;
}

.sos-bootstrap-scope .navbar-collapse {
}

.sos-bootstrap-scope .sos-navbar-toggler {
  border: none;
  margin-left: auto;
}

.sos-bootstrap-scope .sos-navbar-toggler-icon {
  color: #000;
}

@media (max-width: 992px) {
  .sos-bootstrap-scope .sos-logout-icon {
    display: none;
  }

  .sos-bootstrap-scope .sos-logout-text {
    display: inline;
  }
}

.nav-bar-padding {
  padding: 0 !important;
}

.logout-padding {
  padding: 1px;
}

.user-menu {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 5px 10px;
  margin-left: auto;
  transition: background-color 0.3s;
}

.user-menu:hover {
  background-color: #f5f5f5;
}

.user-menu .user-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.user-menu .arrow-icon {
  transition: transform 0.3s ease;
  color: #000;
}

.user-menu .arrow-icon.inverted {
  transform: rotate(180deg);
}

.user-menu .dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  padding: 5px 0;
  z-index: 1000;
}

.user-menu .dropdown.active {
  display: flex;
}

.user-menu .dropdown .user-email {
  padding: 10px 20px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid #e5e7eb !important;
  text-align: center !important;
}

.user-menu .dropdown .menu-item {
  padding: 10px 20px;
  color: #333;
  cursor: pointer;
  text-align: left;
}

.user-menu .dropdown .menu-item:hover {
  background-color: #f5f5f5;
}

.sos-navbar-nav .nav-item:last-child {
  margin-right: 20px;
}

.notification-menu {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

.notification-menu:hover {
  background-color: #f5f5f5;
}

.notification-menu .notification-count {
  position: absolute;
  top: 0px;
  right: 32px;
  background-color: #d69c00;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  min-width: 320px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  padding: 5px 0;
  z-index: 1000;
}

.notification-dropdown.active {
  display: flex;
}

.notification-dropdown .menu-item {
  padding: 10px 10px;
  color: #333;
  cursor: pointer;
  text-align: left;
}

.notification-dropdown .menu-item:hover {
  background-color: #f5f5f5;
}

.logout-item {
  border-top: 1px solid #e5e7eb;
  margin-top: 5px;
  text-align: center !important;
}

.logout-item .logout-link {
  color: #333;
  text-decoration: none;
  display: inline-flex;
  width: 100%;
  text-align: center !important;
  transition: background-color 0.3s, color 0.3s;
}

.logout-item .logout-link:hover {
  background-color: #f5f5f5;
  color: #d69c00;
}

.access-user-item {
  border-top: 1px solid #e5e7eb;
  padding: 10px 20px;
  color: #333;
  text-align: right;
}

.copy-tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.menu-item {
  position: relative;
  cursor: pointer;
}

.menu-item:hover {
  background-color: #f5f5f5;
}

.search-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  border-radius: 20px;
  padding: 5px 10px;
  transition: width 0.3s ease-in-out;
}

.search-icon {
  cursor: pointer;
  font-size: 20px;
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  width: 0;
  font-size: 14px;
  transition: width 0.3s ease-in-out;
}

.search-container.active .search-input {
  width: 150px;
  padding-left: 10px;
}

.autocomplete-items {
  position: absolute;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: auto;
  display: none;
  padding: 5px 0;
  width: 500px;
  z-index: 1000;
}

.autocomplete-items div {
  padding: 10px 20px;
  cursor: pointer;
}

.autocomplete-items div:hover {
  background-color: #f5f5f5;
}

#sos-menuNav .nav-item.dropdown {
  position: relative;
}

#sos-menuNav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: .25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
  z-index: 1050;
}

#sos-menuNav .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

#sos-menuNav .dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  color: #333;
  text-decoration: none;
}

#sos-menuNav .dropdown-item:hover {
  background-color: #f5f5f5;
}

#sos-menuNav .dropdown-menu {
  left: 0 !important;
  right: auto !important;
  text-align: left;
}

#sos-menuNav .dropdown-item {
  display: block;
  width: 100%;
  padding: .5rem 1rem;
  text-align: left;
}




/* Ajuda */

.gh-backdrop {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  pointer-events: auto;
}

#gh-full-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

#gh-tooltip {
  position: absolute;
  max-width: 260px;
  padding: 12px 16px;
  background: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  z-index: 9999;
   line-height: 1.8;
  font-size: 10pt;
  padding:20px !important;
	font-family: 'Poppins', sans-serif;
}

/* guidedHelp.css */
/* --- Backdrop --- */
.gh-backdrop {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  pointer-events: auto;
}

/* --- Full overlay (when no element found) --- */
#gh-full-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9997;
}

/* --- Tooltip --- */
#gh-tooltip {
  position: fixed;
  background: #ffffff;
  color: #333;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 620px;
  z-index: 10000;
	max-height: 300px; /* or whatever limit you want */
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #716d6d;
}

/* --- Tooltip Header (Optional title) --- */
.gh-tooltip-header {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
}

/* --- Controls inside tooltip --- */
.gh-controls {
  margin-top: 12px;
  text-align: right;
}

.gh-controls button {
  margin-left: 1px;
  padding: 6px 12px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.gh-controls button:hover {
  background: #0056b3;
}

/* --- Step Badge (top-left number) --- */
.gh-step-badge {
  position: fixed;
  background: #007bff;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  z-index: 10001;
	outline:2px solid white;
  margin-left: 5px;
}

/* --- Step indicators (row of circles at bottom) --- */
.gh-step-indicators {
  margin-top: 12px;
  text-align: center;
}

.gh-indicator-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
}

.gh-indicator-dot.active {
  background: #007bff;
}

#gh-tooltip::after {
  content: "";
  position: absolute;
  top: -10px; /* Distance from tooltip box */
  left: 20px; /* Position horizontally, adjust as needed */
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}

.gh-centered::after {
  display: none; /* Hides the arrow if centered */
}

#gh-tooltip br {
  display: block;
  margin-bottom: 12px; /* space after each line break */
  content: "";
}