@charset "UTF-8";
/* VARIÁVEIS SASS */
/* VARIÁVEIS CSS */
:root {
  --phsa-primary: #63783d;
  --phsa-primary-light: rgba(99, 120, 61, 0.2);
  --phsa-primary-dark: #4e5e31;
  --phsa-on-primary: #ffffff;
  --phsa-ripple: rgba(255, 255, 255, 0.5);
  --phsa-ripple-inverse: rgba(99, 120, 61, 0.8);
  --phsa-sidebar-menu: #868e96;
  --phsa-primary-hover-dark: rgb(79, 96, 49);
  --phsa-primary-hover-light: rgba(33, 40, 20, 0.2);
}

/* HEADER */
#simpleMenuLogo img {
  max-height: 50px;
  max-width: 220px;
  object-fit: contain;
  border-radius: 5px;
}

.imgLogo {
  transition: transform 0.3s, border 0.3s ease;
}

.navbar-toggler img:hover,
#profileMenu img:hover {
  border: 2px solid var(--phsa-on-primary);
  border-radius: 50%;
  transform: scale(1.1);
}

.btn:hover .icon {
  transform: scale(1.2);
  transition: transform 0.3s;
}

#userSubmenu {
  margin-left: 20px;
}

#userSubmenu .btn {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .navbar-nav .nav-item.pt-3:first-child {
    padding-top: 15px;
  }
}
.bg-dark .dropdown-item {
  color: var(--phsa-on-primary);
  transition: background-color 0.3s ease;
}

.bg-dark .dropdown-item:hover {
  background-color: var(--phsa-primary-hover-dark);
}

.navbar-nav .nav-item .btn-light:hover {
  background-color: var(--phsa-primary-hover-light);
}

.navbar-nav .nav-item .btn-dark:hover {
  background-color: var(--phsa-primary-hover-dark);
}

/* SIDEBAR */
.simpleSidebar {
  color: var(--phsa-primary-light);
  min-width: 220px;
  max-width: 220px;
  overflow-y: auto;
  transition: width 0.3s ease, font-size 0.3s ease;
}

.simpleSidebar .menu-item {
  background: none;
  border: none;
  color: var(--phsa-sidebar-menu);
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.simpleSidebar .menu-item:hover {
  color: var(--phsa-on-primary);
  background-color: var(--phsa-primary-dark);
}

.menu-item:hover .icon {
  transform: scale(1.2);
  transition: transform 0.3s;
}

.simpleSidebar .aberto {
  color: var(--phsa-on-primary);
  background-color: var(--phsa-primary-dark);
}

.simpleSidebar .submenu {
  display: none;
  padding-left: 15px;
}

.simpleSidebar .submenu-item {
  background: none;
  border: none;
  color: var(--phsa-sidebar-menu);
  width: 100%;
  text-align: left;
  padding: 8px 15px;
  cursor: pointer;
}
.simpleSidebar .submenu-item:hover {
  color: var(--phsa-on-primary);
  background-color: var(--phsa-primary-hover-dark);
}

.simpleSidebar.collapsed {
  min-width: 70px;
  max-width: 70px;
}

.simpleSidebar.hidden {
  min-width: 0px;
  max-width: 0px;
}

.simpleSidebar.collapsed .menu-item span {
  display: none;
}

.simpleSidebar.collapsed .menu-item .icon {
  font-size: 1.5em;
  margin: 0 auto;
}

.simpleSidebar.collapsed .submenu {
  display: none;
}

.simpleSidebar.collapsed .submenu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 50px;
  width: 100%;
}

.simpleSidebar.collapsed .submenu-item i {
  font-size: 1.5em;
}

.simpleSidebar.hidden .submenu-item span {
  display: none;
}

.simpleSidebar .menu-item span,
.simpleSidebar .submenu-item span {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

.simpleSidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.simpleSidebar .sidebarContent {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.simpleSidebar .sidebarFixedBottom {
  position: relative;
  bottom: 0;
  padding-top: 10px;
  border-top: 1px solid var(--phsa-primary-light);
}
.simpleSidebar .sidebarFixedBottom .profile-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  color: var(--phsa-sidebar-menu);
}
.simpleSidebar .sidebarFixedBottom .profile-item:hover {
  color: var(--phsa-on-primary);
  background-color: var(--phsa-primary-dark);
}
.simpleSidebar .sidebarFixedBottom .profile-item .profile-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.simpleSidebar .sidebarFixedBottom .profile-item .profile-name {
  font-weight: bold;
  line-height: 1;
}
.simpleSidebar .sidebarFixedBottom .profile-item .profile-level {
  font-size: 0.8rem;
  color: var(--phsa-sidebar-menu);
}
.simpleSidebar .sidebarFixedBottom .profile-item .submenu-icon {
  margin-left: auto;
  transition: transform 0.3s;
}
.simpleSidebar .sidebarFixedBottom .profile-submenu {
  display: none;
  padding-left: 15px;
}
.simpleSidebar .sidebarFixedBottom .profile-submenu .submenu-item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: var(--phsa-sidebar-menu);
}
.simpleSidebar .sidebarFixedBottom .profile-submenu .submenu-item:hover {
  color: var(--phsa-on-primary);
  background-color: var(--phsa-primary-hover-dark);
}
.simpleSidebar .sidebarFixedBottom .profile-submenu .submenu-item .icon {
  margin-right: 10px;
}
.simpleSidebar .sidebarFixedBottom .profile-item.aberto + .profile-submenu {
  display: block;
}
.simpleSidebar .sidebarFixedBottom.collapsed .profile-item .profile-icon {
  margin: 0 auto;
}
.simpleSidebar .sidebarFixedBottom.collapsed .profile-item span {
  display: none;
}
.simpleSidebar .sidebarFixedBottom.collapsed .profile-submenu .submenu-item span {
  display: none;
}
.simpleSidebar .sidebarFixedBottom.collapsed .profile-submenu .submenu-item .icon {
  margin: 0 auto;
}
.simpleSidebar .sidebarFixedBottom.hidden {
  display: none;
}

/* MAIN */
.simpleMain {
  display: flex;
  margin-top: 66px;
  height: calc(100vh - 66px);
  width: 100vw !important;
  overflow-x: hidden;
}

.simpleConteudo {
  flex-grow: 1;
  padding: 20px;
  transition: margin-left 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.simpleSidebar {
  overflow-y: auto;
  overflow-x: hidden;
}

.simpleConteudo::-webkit-scrollbar,
.simpleSidebar::-webkit-scrollbar {
  width: 6px;
}

.simpleConteudo::-webkit-scrollbar-thumb,
.simpleSidebar::-webkit-scrollbar-thumb {
  background-color: var(--phsa-primary);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.simpleConteudo::-webkit-scrollbar-thumb:hover,
.simpleSidebar::-webkit-scrollbar-thumb:hover {
  background-color: var(--phsa-primary-dark);
}

.simpleConteudo::-webkit-scrollbar-track,
.simpleSidebar::-webkit-scrollbar-track {
  background-color: transparent;
}

.simpleConteudo::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px var(--phsa-primary-dark);
}

.simpleConteudo,
.simpleSidebar {
  scrollbar-width: thin;
  scrollbar-color: var(--phsa-primary) transparent;
}

.breadcrumb-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 5px;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  min-width: max-content;
}

.breadcrumb-item {
  flex-shrink: 0;
}

.breadcrumb-wrapper::-webkit-scrollbar {
  height: 5px;
}

.breadcrumb-wrapper::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

/* MIXINS */
/* BOTÕES */
.bto {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.bto:focus, .bto:active {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(50, 90, 168, 0.5);
}
.bto:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
}

.bto-phsa {
  background-color: var(--phsa-primary);
  color: var(--phsa-on-primary);
  border: none;
  position: relative;
  overflow: hidden;
}
.bto-phsa::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa:hover {
  background-color: var(--phsa-primary-dark);
  color: var(--phsa-on-primary);
}

.bto-phsa-light {
  background-color: var(--phsa-primary-light);
  color: var(--phsa-primary-dark);
  position: relative;
  overflow: hidden;
}
.bto-phsa-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #25447f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-light:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-light:hover {
  background-color: var(--phsa-primary-hover-light);
}

.bto-phsa-dark {
  background-color: var(--phsa-primary-dark);
  color: var(--phsa-on-primary);
  position: relative;
  overflow: hidden;
}
.bto-phsa-dark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-dark:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-dark:hover {
  background-color: var(--phsa-primary-hover-dark);
}

.bto-phsa-hover:hover {
  background-color: var(--phsa-primary);
  color: var(--phsa-on-primary);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-hover:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-hover:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-hover-light:hover {
  background-color: var(--phsa-primary-light);
  color: var(--phsa-primary-dark);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-hover-light:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #25447f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-hover-light:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-hover-dark:hover {
  background-color: var(--phsa-primary-dark);
  color: var(--phsa-on-primary);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-hover-dark:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-hover-dark:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-border {
  background-color: transparent;
  color: var(--phsa-primary);
  border: 1px solid var(--phsa-primary);
  position: relative;
  overflow: hidden;
}
.bto-phsa-border::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-border:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-border:active {
  background-color: var(--phsa-primary);
  color: var(--phsa-on-primary);
}

.bto-phsa-border-light {
  background-color: transparent;
  color: var(--phsa-primary-light);
  border: 1px solid var(--phsa-primary-light);
  position: relative;
  overflow: hidden;
}
.bto-phsa-border-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #25447f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-border-light:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-border-light:active {
  background-color: var(--phsa-primary-light);
  color: var(--phsa-primary-dark);
}

.bto-phsa-border-dark {
  background-color: transparent;
  color: var(--phsa-primary-dark);
  border: 1px solid var(--phsa-primary-dark);
  position: relative;
  overflow: hidden;
}
.bto-phsa-border-dark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-border-dark:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-border-dark:active {
  background-color: var(--phsa-primary-dark);
  color: var(--phsa-on-primary);
}

.bto-phsa-border-hover:hover {
  border-color: var(--phsa-primary-dark);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-border-hover:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-border-hover:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-border-hover-light:hover {
  border-color: var(--phsa-primary-light);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-border-hover-light:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #25447f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-border-hover-light:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-border-hover-dark:hover {
  border-color: var(--phsa-primary-dark);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-border-hover-dark:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-border-hover-dark:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-shadow {
  background-color: transparent;
  color: var(--phsa-primary);
  border: none;
  box-shadow: 0px 4px 6px var(--phsa-primary);
  position: relative;
  overflow: hidden;
}
.bto-phsa-shadow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-shadow:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-shadow:active {
  background-color: var(--phsa-primary);
  color: var(--phsa-on-primary);
}

.bto-phsa-shadow-light {
  background-color: transparent;
  color: var(--phsa-primary-light);
  border: none;
  box-shadow: 0px 4px 6px var(--phsa-primary-light);
  position: relative;
  overflow: hidden;
}
.bto-phsa-shadow-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #25447f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-shadow-light:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-shadow-light:active {
  background-color: var(--phsa-primary-light);
  color: var(--phsa-primary-dark);
}

.bto-phsa-shadow-dark {
  background-color: transparent;
  color: var(--phsa-primary-dark);
  border: none;
  box-shadow: 0px 4px 6px var(--phsa-primary-dark);
  position: relative;
  overflow: hidden;
}
.bto-phsa-shadow-dark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-shadow-dark:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
.bto-phsa-shadow-dark:active {
  background-color: var(--phsa-primary-dark);
  color: var(--phsa-on-primary);
}

.bto-phsa-shadow-hover:hover {
  box-shadow: 0px 6px 10px var(--phsa-primary-dark);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-shadow-hover:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-shadow-hover:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-shadow-hover-light:hover {
  box-shadow: 0px 6px 10px var(--phsa-primary-light);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-shadow-hover-light:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #25447f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-shadow-hover-light:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.bto-phsa-shadow-hover-dark:hover {
  box-shadow: 0px 6px 10px var(--phsa-primary-dark);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.bto-phsa-shadow-hover-dark:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.bto-phsa-shadow-hover-dark:hover:active::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

/* TEXTOS */
.text-phsa {
  color: var(--phsa-primary) !important;
}

.text-phsa-light {
  color: var(--phsa-primary-light) !important;
}

.text-phsa-dark {
  color: var(--phsa-primary-dark) !important;
}

.text-phsa-hover:hover {
  color: var(--phsa-primary) !important;
}

.text-phsa-hover-light:hover {
  color: var(--phsa-primary-light) !important;
}

.text-phsa-hover-dark:hover {
  color: var(--phsa-primary-dark) !important;
}

.text-phsa-shadow {
  text-shadow: 2px 2px 4px var(--phsa-primary);
}

.text-phsa-shadow-light {
  text-shadow: 2px 2px 4px var(--phsa-primary-light);
}

.text-phsa-shadow-dark {
  text-shadow: 2px 2px 4px var(--phsa-primary-dark);
}

.text-phsa-hover-shadow:hover {
  text-shadow: 2px 2px 4px var(--phsa-primary);
}

.text-phsa-hover-shadow-light:hover {
  text-shadow: 2px 2px 4px var(--phsa-primary-light);
}

.text-phsa-hover-shadow-dark:hover {
  text-shadow: 2px 2px 4px var(--phsa-primary-dark);
}

/* FUNDOS */
.bg-phsa {
  background-color: var(--phsa-primary) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-light {
  background-color: var(--phsa-primary-light) !important;
  color: var(--phsa-primary-dark) !important;
}

.bg-phsa-dark {
  background-color: var(--phsa-primary-dark) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-hover:hover {
  background-color: var(--phsa-primary) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-hover-light:hover {
  background-color: var(--phsa-primary-light) !important;
  color: var(--phsa-primary-dark) !important;
}

.bg-phsa-hover-dark:hover {
  background-color: var(--phsa-primary-dark) !important;
  color: var(--phsa-on-primary) !important;
}

/* FUNDOS */
.bg-phsa {
  background-color: var(--phsa-primary) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-light {
  background-color: var(--phsa-primary-light) !important;
  color: var(--phsa-primary-dark) !important;
}

.bg-phsa-dark {
  background-color: var(--phsa-primary-dark) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-hover:hover {
  background-color: var(--phsa-primary) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-hover-light:hover {
  background-color: var(--phsa-primary-light) !important;
  color: var(--phsa-primary-dark) !important;
}

.bg-phsa-hover-dark:hover {
  background-color: var(--phsa-primary-dark) !important;
  color: var(--phsa-on-primary) !important;
}

.bg-phsa-gradient {
  background: linear-gradient(to right, var(--phsa-primary), var(--phsa-on-primary));
}

.bg-phsa-gradient-light {
  background: linear-gradient(to right, var(--phsa-primary-light), var(--phsa-primary-dark));
}

.bg-phsa-gradient-dark {
  background: linear-gradient(to right, var(--phsa-primary-dark), var(--phsa-primary-light));
}

.bg-phsa-hover-gradient:hover {
  background: linear-gradient(to right, var(--phsa-primary), var(--phsa-on-primary));
}

.bg-phsa-hover-gradient-light:hover {
  background: linear-gradient(to right, var(--phsa-primary-light), var(--phsa-primary-dark));
}

.bg-phsa-hover-gradient-dark:hover {
  background: linear-gradient(to right, var(--phsa-primary-dark), var(--phsa-primary-light));
}

/* BORDAS */
.border-phsa {
  border: 1px solid var(--phsa-primary) !important;
}

.border-phsa-light {
  border: 1px solid var(--phsa-primary-light) !important;
}

.border-phsa-dark {
  border: 1px solid var(--phsa-primary-dark) !important;
}

.border-phsa-hover {
  border: 1px solid transparent;
}
.border-phsa-hover:hover {
  border-color: var(--phsa-primary) !important;
}

.border-phsa-hover-light {
  border: 1px solid transparent;
}
.border-phsa-hover-light:hover {
  border-color: var(--phsa-primary-light) !important;
}

.border-phsa-hover-dark {
  border: 1px solid transparent;
}
.border-phsa-hover-dark:hover {
  border-color: var(--phsa-primary-dark) !important;
}

/* SOMBRA DE CAIXA */
.box-phsa-shadow {
  box-shadow: 0px 4px 6px var(--phsa-primary);
}

.box-phsa-shadow-light {
  box-shadow: 0px 4px 6px var(--phsa-primary-light);
}

.box-phsa-shadow-dark {
  box-shadow: 0px 4px 6px var(--phsa-primary-dark);
}

.box-phsa-hover-shadow:hover {
  box-shadow: 0px 6px 10px var(--phsa-primary);
}

.box-phsa-hover-shadow-light:hover {
  box-shadow: 0px 6px 10px var(--phsa-primary-light);
}

.box-phsa-hover-shadow-dark:hover {
  box-shadow: 0px 6px 10px var(--phsa-primary-dark);
}

/* INPUT */
.input-phsa-focus:focus {
  outline: 2px solid var(--phsa-primary);
}

.input-phsa-focus-light:focus {
  outline: 2px solid var(--phsa-primary-light);
}

.input-phsa-focus-dark:focus {
  outline: 2px solid var(--phsa-primary-dark);
}

.input-phsa-hover:hover {
  border-color: var(--phsa-primary);
}

.input-phsa-hover-light:hover {
  border-color: var(--phsa-primary-light);
}

.input-phsa-hover-dark:hover {
  border-color: var(--phsa-primary-dark);
}

/* PHSA NAV BAR */
.phsaScrollItem:hover,
.phsaScrollItem.active {
  background-color: var(--phsa-primary-light);
}

/*# sourceMappingURL=phsa.css.map */
