.ssr_toast {
  text-align: center;
  margin-bottom: 25px;
  height: 40px;
  bottom: -100px;
  width: auto;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: 500ms;
  transition-property: bottom;
  z-index: 50;
}
.ssr_toast span {
  padding: 10px;
  min-width: 100px;
  text-align: center;
  border-radius: 7px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: white;
  transition: 200ms;
  width: auto;
  display: inline-block;
}
.option-value-error {
  box-shadow: inset 0px 0px 2px red;
}
a.active.menu-item {
  text-decoration: underline;
  font-weight: 800;
  text-underline-offset: 2px;
}
a.active.menu-item svg {
  stroke: #dd6400;
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
  color: #ffffff !important;
  background-color: #888888 !important;
  border-color: #888888 !important;
  cursor: not-allowed !important;
  text-decoration: none !important;
  user-select: none;
  box-shadow: none !important;
}
.disabled-input {
  pointer-events: none;
  opacity: 0.5;
  color: #0c0c0c !important;
  background-color: #d9d9d9 !important;
  cursor: not-allowed !important;
  text-decoration: none !important;
}
.content-card-shadow {
  box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075), 0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075), 0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.no-underline {
    text-decoration-line: none !important;
}

.highlight {
    box-shadow: 0px 0px 3px red inset;
}

.ui-state-highlight {
    border: 1px solid #000000;
    background: #e3e3e3;
    border-color: #c1c1c1;
    border-radius: 10px;
}

.disabled-field {
    opacity: 0.6;
    pointer-events: none; /* prevent editing */
}

.submenu-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.submenu-transition {
  will-change: max-height;
}
.rotate-chevron {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: #eaeaea;
    border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 5px;
}
 
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
body {
    font-size: 14px!important;
}
.ssr_toast {
    text-align: center;
    margin-bottom: 25px;
    height: 40px;
    bottom:-100px;
    width: auto;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: 500ms;
    transition-property: bottom;
    z-index: 50;
}
.ssr_toast span {
    padding: 10px;
    min-width: 100px;
    text-align: center;
    border-radius: 7px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    color: white;
    transition: 200ms;
    width: auto;
    display: inline-block;
}
.option-value-error {
    box-shadow: inset 0px 0px 2px red;
}
/* FOOTER MENU ACTIVATION */
.footer-menu-active {
    text-decoration: underline;
    font-weight: 500;
    color: #ffffff;
}
.disabled {
    pointer-events: none;
    opacity: 0.5;
    color: #ffffff !important;
    background-color: #888888 !important;
    border-color: #888888 !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
    user-select: none;
    box-shadow: none!important;
}

.disabled-input {
    pointer-events: none;
    opacity: 0.5;
    color: #0c0c0c !important;
    background-color: #d9d9d9 !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
}
.content-card-shadow {
    box-shadow:
    0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075),
    0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075),
    0 16px 16px hsl(0deg 0% 0% / 0.075);
}
.no-underline {
    text-decoration-line: none !important;
}
.selected-collection {
    border: 1px solid pink;
}

/* Custom animations */
@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-slide-in {
    animation: slideIn 0.3s ease-out forwards;
}

.backdrop-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}


/* Custom styles for active menu items */
.menu-item.active {
    color: #dd6400;
}

/* smooth submenu open/close */
.submenu-transition {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.submenu-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.submenu-visible {
  max-height: 500px; /* enough space for multiple links */
  opacity: 1;
  pointer-events: auto;
}

/* chevron rotation */
.rotate-chevron {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}