primevue-mirror/public/styles/landing/themes/aura-dark-green/theme.css

1229 lines
47 KiB
CSS

.landing-themes {
--p-focus-ring-color: var(--primary-color);
}
.landing-themes * {
box-sizing: border-box;
}
.landing-themes .p-component {
font-family: var(--font-family);
font-feature-settings: var(--font-feature-settings, normal);
font-size: 1rem;
font-weight: normal;
}
.landing-themes .p-component-overlay {
background-color: rgba(0, 0, 0, 0.4);
transition-duration: 0.2s;
}
.landing-themes .p-disabled, .landing-themes .p-component:disabled {
opacity: 0.6;
}
.landing-themes .p-error {
color: #FCA5A5;
}
.landing-themes .p-text-secondary {
color: #a1a1aa;
}
.landing-themes .pi {
font-size: 1rem;
}
.landing-themes .p-icon {
width: 1rem;
height: 1rem;
}
.landing-themes .p-link {
font-family: var(--font-family);
font-feature-settings: var(--font-feature-settings, normal);
font-size: 1rem;
border-radius: 6px;
outline-color: transparent;
}
.landing-themes .p-link:focus-visible {
outline: 2px solid var(--p-focus-ring-color);
outline-offset: 2px;
box-shadow: none;
}
.landing-themes .p-component-overlay-enter {
animation: p-component-overlay-enter-animation 150ms forwards;
}
.landing-themes .p-component-overlay-leave {
animation: p-component-overlay-leave-animation 150ms forwards;
}
@keyframes p-component-overlay-enter-animation {
from {
background-color: transparent;
}
to {
background-color: var(--maskbg);
}
}
@keyframes p-component-overlay-leave-animation {
from {
background-color: var(--maskbg);
}
to {
background-color: transparent;
}
}
.landing-themes .p-checkbox {
width: 1.25rem;
height: 1.25rem;
}
.landing-themes .p-checkbox .p-checkbox-input {
appearance: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
opacity: 0;
z-index: 1;
outline: 0 none;
border: 1px solid #27272a;
border-radius: 6px;
}
.landing-themes .p-checkbox .p-checkbox-box {
border: 1px solid #27272a;
background: #09090b;
width: 1.25rem;
height: 1.25rem;
color: #ffffff;
border-radius: 6px;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
outline-color: transparent;
}
.landing-themes .p-checkbox .p-checkbox-box .p-checkbox-icon {
transition-duration: 0.2s;
color: #020617;
font-size: 0.875rem;
}
.landing-themes .p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon {
width: 0.875rem;
height: 0.875rem;
}
.landing-themes .p-checkbox.p-highlight .p-checkbox-box {
border-color: #34d399;
background: #34d399;
}
.landing-themes .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
border-color: #3f3f46;
}
.landing-themes .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
border-color: #6ee7b7;
background: #6ee7b7;
color: #020617;
}
.landing-themes .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
outline: 2px solid var(--p-focus-ring-color);
outline-offset: -2px;
box-shadow: none;
border-color: #3f3f46;
}
.landing-themes .p-checkbox.p-invalid > .p-checkbox-box {
border-color: #FCA5A5;
}
.landing-themes .p-input-filled .p-checkbox .p-checkbox-box {
background-color: #27272a;
}
.landing-themes .p-input-filled .p-checkbox.p-highlight .p-checkbox-box {
background: #34d399;
}
.landing-themes .p-input-filled .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
background-color: #27272a;
}
.landing-themes .p-input-filled .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
background: #6ee7b7;
}
.landing-themes .p-inputtext {
font-family: var(--font-family);
font-feature-settings: var(--font-feature-settings, normal);
font-size: 1rem;
color: #ffffff;
background: #09090b;
padding: 0.5rem 0.75rem;
border: 1px solid #27272a;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
appearance: none;
border-radius: 6px;
outline-color: transparent;
}
.landing-themes .p-inputtext:enabled:hover {
border-color: #3f3f46;
}
.landing-themes .p-inputtext:enabled:focus {
outline: 2px solid var(--p-focus-ring-color);
outline-offset: -2px;
box-shadow: none;
border-color: #3f3f46;
}
.landing-themes .p-inputtext.p-invalid.p-component {
border-color: #FCA5A5;
}
.landing-themes .p-inputtext.p-inputtext-sm {
font-size: 0.875rem;
padding: 0.4375rem 0.65625rem;
}
.landing-themes .p-inputtext.p-inputtext-lg {
font-size: 1.25rem;
padding: 0.625rem 0.9375rem;
}
.landing-themes .p-float-label > label {
left: 0.75rem;
color: #a1a1aa;
transition-duration: 0.2s;
}
.landing-themes .p-float-label > .p-invalid + label {
color: #FCA5A5;
}
.landing-themes .p-input-icon-left > svg:first-of-type,
.landing-themes .p-input-icon-left > i:first-of-type {
left: 0.75rem;
color: #a1a1aa;
}
.landing-themes .p-input-icon-left > .p-inputtext {
padding-left: 2.5rem;
}
.landing-themes .p-input-icon-left.p-float-label > label {
left: 2.5rem;
}
.landing-themes .p-input-icon-right > svg:last-of-type,
.landing-themes .p-input-icon-right > i:last-of-type {
right: 0.75rem;
color: #a1a1aa;
}
.landing-themes .p-input-icon-right > .p-inputtext {
padding-right: 2.5rem;
}
.landing-themes ::-webkit-input-placeholder {
color: #a1a1aa;
}
.landing-themes :-moz-placeholder {
color: #a1a1aa;
}
.landing-themes ::-moz-placeholder {
color: #a1a1aa;
}
.landing-themes :-ms-input-placeholder {
color: #a1a1aa;
}
.landing-themes .p-input-filled .p-inputtext {
background-color: #27272a;
}
.landing-themes .p-input-filled .p-inputtext:enabled:hover {
background-color: #27272a;
}
.landing-themes .p-input-filled .p-inputtext:enabled:focus {
background-color: #27272a;
}
.landing-themes .p-inputtext-sm .p-inputtext {
font-size: 0.875rem;
padding: 0.4375rem 0.65625rem;
}
.landing-themes .p-inputtext-lg .p-inputtext {
font-size: 1.25rem;
padding: 0.625rem 0.9375rem;
}
.landing-themes .p-button {
color: #020617;
background: #34d399;
border: 1px solid #34d399;
padding: 0.5rem 1rem;
font-size: 1rem;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
border-radius: 6px;
outline-color: transparent;
}
.landing-themes .p-button:not(:disabled):hover {
background: #6ee7b7;
color: #020617;
border-color: #6ee7b7;
}
.landing-themes .p-button:not(:disabled):active {
background: #a7f3d0;
color: #020617;
border-color: #a7f3d0;
}
.landing-themes .p-button.p-button-outlined {
background-color: transparent;
color: #34d399;
border: 1px solid;
}
.landing-themes .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(52, 211, 153, 0.04);
color: #34d399;
border: 1px solid;
}
.landing-themes .p-button.p-button-outlined:not(:disabled):active {
background: rgba(52, 211, 153, 0.16);
color: #34d399;
border: 1px solid;
}
.landing-themes .p-button.p-button-outlined.p-button-plain {
color: #a1a1aa;
border-color: #a1a1aa;
}
.landing-themes .p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
background: rgba(255, 255, 255, 0.03);
color: #a1a1aa;
}
.landing-themes .p-button.p-button-outlined.p-button-plain:not(:disabled):active {
background: rgba(255, 255, 255, 0.16);
color: #a1a1aa;
}
.landing-themes .p-button.p-button-text {
background-color: transparent;
color: #34d399;
border-color: transparent;
}
.landing-themes .p-button.p-button-text:not(:disabled):hover {
background: rgba(52, 211, 153, 0.04);
color: #34d399;
border-color: transparent;
}
.landing-themes .p-button.p-button-text:not(:disabled):active {
background: rgba(52, 211, 153, 0.16);
color: #34d399;
border-color: transparent;
}
.landing-themes .p-button.p-button-text.p-button-plain {
color: #a1a1aa;
}
.landing-themes .p-button.p-button-text.p-button-plain:not(:disabled):hover {
background: rgba(255, 255, 255, 0.03);
color: #a1a1aa;
}
.landing-themes .p-button.p-button-text.p-button-plain:not(:disabled):active {
background: rgba(255, 255, 255, 0.16);
color: #a1a1aa;
}
.landing-themes .p-button:focus-visible {
outline: 2px solid var(--p-focus-ring-color);
outline-offset: 2px;
box-shadow: none;
}
.landing-themes .p-button .p-button-label {
transition-duration: 0.2s;
}
.landing-themes .p-button .p-button-icon-left {
margin-right: 0.5rem;
}
.landing-themes .p-button .p-button-icon-right {
margin-left: 0.5rem;
}
.landing-themes .p-button .p-button-icon-bottom {
margin-top: 0.5rem;
}
.landing-themes .p-button .p-button-icon-top {
margin-bottom: 0.5rem;
}
.landing-themes .p-button .p-badge {
margin-left: 0.5rem;
min-width: 1rem;
height: 1rem;
line-height: 1rem;
color: #34d399;
background-color: #020617;
}
.landing-themes .p-button.p-button-raised {
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.landing-themes .p-button.p-button-rounded {
border-radius: 2rem;
}
.landing-themes .p-button.p-button-icon-only {
width: 2.5rem;
padding: 0.5rem 0;
}
.landing-themes .p-button.p-button-icon-only .p-button-icon-left,
.landing-themes .p-button.p-button-icon-only .p-button-icon-right {
margin: 0;
}
.landing-themes .p-button.p-button-icon-only.p-button-rounded {
border-radius: 50%;
height: 2.5rem;
}
.landing-themes .p-button.p-button-sm {
font-size: 0.875rem;
padding: 0.4375rem 0.875rem;
}
.landing-themes .p-button.p-button-sm .p-button-icon {
font-size: 0.875rem;
}
.landing-themes .p-button.p-button-lg {
font-size: 1.25rem;
padding: 0.625rem 1.25rem;
}
.landing-themes .p-button.p-button-lg .p-button-icon {
font-size: 1.25rem;
}
.landing-themes .p-button.p-button-loading-label-only .p-button-label {
margin-left: 0.5rem;
}
.landing-themes .p-button.p-button-loading-label-only .p-button-loading-icon {
margin-right: 0;
}
.landing-themes .p-fluid .p-button {
width: 100%;
}
.landing-themes .p-fluid .p-button-icon-only {
width: 2.5rem;
}
.landing-themes .p-fluid .p-button-group {
display: flex;
}
.landing-themes .p-fluid .p-button-group .p-button {
flex: 1;
}
.landing-themes .p-button.p-button-secondary, .landing-themes .p-button-group.p-button-secondary > .p-button, .landing-themes .p-splitbutton.p-button-secondary > .p-button {
color: #d4d4d8;
background: #27272a;
border: 1px solid #27272a;
}
.landing-themes .p-button.p-button-secondary:not(:disabled):hover, .landing-themes .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover {
background: #3f3f46;
color: #d4d4d8;
border-color: #3f3f46;
}
.landing-themes .p-button.p-button-secondary:not(:disabled):focus, .landing-themes .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, .landing-themes .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus {
box-shadow: none;
}
.landing-themes .p-button.p-button-secondary:not(:disabled):active, .landing-themes .p-button-group.p-button-secondary > .p-button:not(:disabled):active, .landing-themes .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active {
background: #52525b;
color: #d4d4d8;
border-color: #52525b;
}
.landing-themes .p-button.p-button-secondary.p-button-outlined, .landing-themes .p-button-group.p-button-secondary > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined {
background-color: transparent;
color: #27272a;
border: 1px solid;
}
.landing-themes .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, .landing-themes .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(39, 39, 42, 0.04);
color: #27272a;
border: 1px solid;
}
.landing-themes .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, .landing-themes .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active {
background: rgba(39, 39, 42, 0.16);
color: #27272a;
border: 1px solid;
}
.landing-themes .p-button.p-button-secondary.p-button-text, .landing-themes .p-button-group.p-button-secondary > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text {
background-color: transparent;
color: #27272a;
border-color: transparent;
}
.landing-themes .p-button.p-button-secondary.p-button-text:not(:disabled):hover, .landing-themes .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover {
background: rgba(39, 39, 42, 0.04);
border-color: transparent;
color: #27272a;
}
.landing-themes .p-button.p-button-secondary.p-button-text:not(:disabled):active, .landing-themes .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active {
background: rgba(39, 39, 42, 0.16);
border-color: transparent;
color: #27272a;
}
.landing-themes .p-button.p-button-info, .landing-themes .p-button-group.p-button-info > .p-button, .landing-themes .p-splitbutton.p-button-info > .p-button {
color: #082f49;
background: #38bdf8;
border: 1px solid #38bdf8;
}
.landing-themes .p-button.p-button-info:not(:disabled):hover, .landing-themes .p-button-group.p-button-info > .p-button:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-info > .p-button:not(:disabled):hover {
background: #7dd3fc;
color: #082f49;
border-color: #7dd3fc;
}
.landing-themes .p-button.p-button-info:not(:disabled):focus, .landing-themes .p-button-group.p-button-info > .p-button:not(:disabled):focus, .landing-themes .p-splitbutton.p-button-info > .p-button:not(:disabled):focus {
box-shadow: none;
}
.landing-themes .p-button.p-button-info:not(:disabled):active, .landing-themes .p-button-group.p-button-info > .p-button:not(:disabled):active, .landing-themes .p-splitbutton.p-button-info > .p-button:not(:disabled):active {
background: #bae6fd;
color: #082f49;
border-color: #bae6fd;
}
.landing-themes .p-button.p-button-info.p-button-outlined, .landing-themes .p-button-group.p-button-info > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined {
background-color: transparent;
color: #38bdf8;
border: 1px solid;
}
.landing-themes .p-button.p-button-info.p-button-outlined:not(:disabled):hover, .landing-themes .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(56, 189, 248, 0.04);
color: #38bdf8;
border: 1px solid;
}
.landing-themes .p-button.p-button-info.p-button-outlined:not(:disabled):active, .landing-themes .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active {
background: rgba(56, 189, 248, 0.16);
color: #38bdf8;
border: 1px solid;
}
.landing-themes .p-button.p-button-info.p-button-text, .landing-themes .p-button-group.p-button-info > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text {
background-color: transparent;
color: #38bdf8;
border-color: transparent;
}
.landing-themes .p-button.p-button-info.p-button-text:not(:disabled):hover, .landing-themes .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover {
background: rgba(56, 189, 248, 0.04);
border-color: transparent;
color: #38bdf8;
}
.landing-themes .p-button.p-button-info.p-button-text:not(:disabled):active, .landing-themes .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active {
background: rgba(56, 189, 248, 0.16);
border-color: transparent;
color: #38bdf8;
}
.landing-themes .p-button.p-button-success, .landing-themes .p-button-group.p-button-success > .p-button, .landing-themes .p-splitbutton.p-button-success > .p-button {
color: #052e16;
background: #4ade80;
border: 1px solid #4ade80;
}
.landing-themes .p-button.p-button-success:not(:disabled):hover, .landing-themes .p-button-group.p-button-success > .p-button:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
background: #86efac;
color: #052e16;
border-color: #86efac;
}
.landing-themes .p-button.p-button-success:not(:disabled):focus, .landing-themes .p-button-group.p-button-success > .p-button:not(:disabled):focus, .landing-themes .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
box-shadow: none;
}
.landing-themes .p-button.p-button-success:not(:disabled):active, .landing-themes .p-button-group.p-button-success > .p-button:not(:disabled):active, .landing-themes .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
background: #bbf7d0;
color: #052e16;
border-color: #bbf7d0;
}
.landing-themes .p-button.p-button-success.p-button-outlined, .landing-themes .p-button-group.p-button-success > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined {
background-color: transparent;
color: #4ade80;
border: 1px solid;
}
.landing-themes .p-button.p-button-success.p-button-outlined:not(:disabled):hover, .landing-themes .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(74, 222, 128, 0.04);
color: #4ade80;
border: 1px solid;
}
.landing-themes .p-button.p-button-success.p-button-outlined:not(:disabled):active, .landing-themes .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
background: rgba(74, 222, 128, 0.16);
color: #4ade80;
border: 1px solid;
}
.landing-themes .p-button.p-button-success.p-button-text, .landing-themes .p-button-group.p-button-success > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text {
background-color: transparent;
color: #4ade80;
border-color: transparent;
}
.landing-themes .p-button.p-button-success.p-button-text:not(:disabled):hover, .landing-themes .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
background: rgba(74, 222, 128, 0.04);
border-color: transparent;
color: #4ade80;
}
.landing-themes .p-button.p-button-success.p-button-text:not(:disabled):active, .landing-themes .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
background: rgba(74, 222, 128, 0.16);
border-color: transparent;
color: #4ade80;
}
.landing-themes .p-button.p-button-warning, .landing-themes .p-button-group.p-button-warning > .p-button, .landing-themes .p-splitbutton.p-button-warning > .p-button {
color: #431407;
background: #fb923c;
border: 1px solid #fb923c;
}
.landing-themes .p-button.p-button-warning:not(:disabled):hover, .landing-themes .p-button-group.p-button-warning > .p-button:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover {
background: #fdba74;
color: #431407;
border-color: #fdba74;
}
.landing-themes .p-button.p-button-warning:not(:disabled):focus, .landing-themes .p-button-group.p-button-warning > .p-button:not(:disabled):focus, .landing-themes .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus {
box-shadow: none;
}
.landing-themes .p-button.p-button-warning:not(:disabled):active, .landing-themes .p-button-group.p-button-warning > .p-button:not(:disabled):active, .landing-themes .p-splitbutton.p-button-warning > .p-button:not(:disabled):active {
background: #fed7aa;
color: #431407;
border-color: #fed7aa;
}
.landing-themes .p-button.p-button-warning.p-button-outlined, .landing-themes .p-button-group.p-button-warning > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined {
background-color: transparent;
color: #fb923c;
border: 1px solid;
}
.landing-themes .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .landing-themes .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(251, 146, 60, 0.04);
color: #fb923c;
border: 1px solid;
}
.landing-themes .p-button.p-button-warning.p-button-outlined:not(:disabled):active, .landing-themes .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active {
background: rgba(251, 146, 60, 0.16);
color: #fb923c;
border: 1px solid;
}
.landing-themes .p-button.p-button-warning.p-button-text, .landing-themes .p-button-group.p-button-warning > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text {
background-color: transparent;
color: #fb923c;
border-color: transparent;
}
.landing-themes .p-button.p-button-warning.p-button-text:not(:disabled):hover, .landing-themes .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover {
background: rgba(251, 146, 60, 0.04);
border-color: transparent;
color: #fb923c;
}
.landing-themes .p-button.p-button-warning.p-button-text:not(:disabled):active, .landing-themes .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active {
background: rgba(251, 146, 60, 0.16);
border-color: transparent;
color: #fb923c;
}
.landing-themes .p-button.p-button-help, .landing-themes .p-button-group.p-button-help > .p-button, .landing-themes .p-splitbutton.p-button-help > .p-button {
color: #3b0764;
background: #c084fc;
border: 1px solid #c084fc;
}
.landing-themes .p-button.p-button-help:not(:disabled):hover, .landing-themes .p-button-group.p-button-help > .p-button:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
background: #d8b4fe;
color: #3b0764;
border-color: #d8b4fe;
}
.landing-themes .p-button.p-button-help:not(:disabled):focus, .landing-themes .p-button-group.p-button-help > .p-button:not(:disabled):focus, .landing-themes .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
box-shadow: none;
}
.landing-themes .p-button.p-button-help:not(:disabled):active, .landing-themes .p-button-group.p-button-help > .p-button:not(:disabled):active, .landing-themes .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
background: #e9d5ff;
color: #3b0764;
border-color: #e9d5ff;
}
.landing-themes .p-button.p-button-help.p-button-outlined, .landing-themes .p-button-group.p-button-help > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined {
background-color: transparent;
color: #c084fc;
border: 1px solid;
}
.landing-themes .p-button.p-button-help.p-button-outlined:not(:disabled):hover, .landing-themes .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(192, 132, 252, 0.04);
color: #c084fc;
border: 1px solid;
}
.landing-themes .p-button.p-button-help.p-button-outlined:not(:disabled):active, .landing-themes .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
background: rgba(192, 132, 252, 0.16);
color: #c084fc;
border: 1px solid;
}
.landing-themes .p-button.p-button-help.p-button-text, .landing-themes .p-button-group.p-button-help > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text {
background-color: transparent;
color: #c084fc;
border-color: transparent;
}
.landing-themes .p-button.p-button-help.p-button-text:not(:disabled):hover, .landing-themes .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
background: rgba(192, 132, 252, 0.04);
border-color: transparent;
color: #c084fc;
}
.landing-themes .p-button.p-button-help.p-button-text:not(:disabled):active, .landing-themes .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
background: rgba(192, 132, 252, 0.16);
border-color: transparent;
color: #c084fc;
}
.landing-themes .p-button.p-button-danger, .landing-themes .p-button-group.p-button-danger > .p-button, .landing-themes .p-splitbutton.p-button-danger > .p-button {
color: #450a0a;
background: #f87171;
border: 1px solid #f87171;
}
.landing-themes .p-button.p-button-danger:not(:disabled):hover, .landing-themes .p-button-group.p-button-danger > .p-button:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
background: #fca5a5;
color: #450a0a;
border-color: #fca5a5;
}
.landing-themes .p-button.p-button-danger:not(:disabled):focus, .landing-themes .p-button-group.p-button-danger > .p-button:not(:disabled):focus, .landing-themes .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
box-shadow: none;
}
.landing-themes .p-button.p-button-danger:not(:disabled):active, .landing-themes .p-button-group.p-button-danger > .p-button:not(:disabled):active, .landing-themes .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
background: #fecaca;
color: #450a0a;
border-color: #fecaca;
}
.landing-themes .p-button.p-button-danger.p-button-outlined, .landing-themes .p-button-group.p-button-danger > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
background-color: transparent;
color: #f87171;
border: 1px solid;
}
.landing-themes .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .landing-themes .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
background: rgba(248, 113, 113, 0.04);
color: #f87171;
border: 1px solid;
}
.landing-themes .p-button.p-button-danger.p-button-outlined:not(:disabled):active, .landing-themes .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
background: rgba(248, 113, 113, 0.16);
color: #f87171;
border: 1px solid;
}
.landing-themes .p-button.p-button-danger.p-button-text, .landing-themes .p-button-group.p-button-danger > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text {
background-color: transparent;
color: #f87171;
border-color: transparent;
}
.landing-themes .p-button.p-button-danger.p-button-text:not(:disabled):hover, .landing-themes .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
background: rgba(248, 113, 113, 0.04);
border-color: transparent;
color: #f87171;
}
.landing-themes .p-button.p-button-danger.p-button-text:not(:disabled):active, .landing-themes .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
background: rgba(248, 113, 113, 0.16);
border-color: transparent;
color: #f87171;
}
.landing-themes .p-button.p-button-link {
color: #34d399;
background: transparent;
border: transparent;
}
.landing-themes .p-button.p-button-link:not(:disabled):hover {
background: transparent;
color: #34d399;
border-color: transparent;
}
.landing-themes .p-button.p-button-link:not(:disabled):hover .p-button-label {
text-decoration: underline;
}
.landing-themes .p-button.p-button-link:not(:disabled):focus {
background: transparent;
box-shadow: none;
border-color: transparent;
}
.landing-themes .p-button.p-button-link:not(:disabled):active {
background: transparent;
color: #34d399;
border-color: transparent;
}
.landing-themes .p-datatable .p-paginator-top {
border-width: 0 0 1px 0;
border-radius: 0;
}
.landing-themes .p-datatable .p-paginator-bottom {
border-width: 0 0 1px 0;
border-radius: 0;
}
.landing-themes .p-datatable .p-datatable-header {
background: #18181b;
color: #ffffff;
border: 1px solid #27272a;
border-width: 0 0 1px 0;
padding: 0.75rem 1rem;
font-weight: 600;
}
.landing-themes .p-datatable .p-datatable-footer {
background: #18181b;
color: #ffffff;
border: 1px solid #27272a;
border-width: 0 0 1px 0;
padding: 0.75rem 1rem;
font-weight: 600;
}
.landing-themes .p-datatable .p-datatable-thead > tr > th {
text-align: left;
padding: 0.75rem 1rem;
border: 1px solid #27272a;
border-width: 0 0 1px 0;
font-weight: 600;
color: #ffffff;
background: #18181b;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
}
.landing-themes .p-datatable .p-datatable-tfoot > tr > td {
text-align: left;
padding: 0.75rem 1rem;
border: 1px solid #27272a;
border-width: 0 0 1px 0;
font-weight: 600;
color: #ffffff;
background: #18181b;
}
.landing-themes .p-datatable .p-sortable-column .p-sortable-column-icon {
color: #a1a1aa;
margin-left: 0.5rem;
}
.landing-themes .p-datatable .p-sortable-column .p-sortable-column-badge {
border-radius: 50%;
height: 1rem;
min-width: 1rem;
line-height: 1rem;
color: rgba(255, 255, 255, 0.87);
background: rgba(52, 211, 153, 0.16);
margin-left: 0.5rem;
}
.landing-themes .p-datatable .p-sortable-column:not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03);
color: #ffffff;
}
.landing-themes .p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon {
color: #ffffff;
}
.landing-themes .p-datatable .p-sortable-column.p-highlight {
background: rgba(52, 211, 153, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon {
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column.p-highlight:hover {
background: rgba(52, 211, 153, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon {
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column:focus-visible {
box-shadow: 0 none;
outline: 0 none;
}
.landing-themes .p-datatable .p-datatable-tbody > tr {
background: #18181b;
color: #ffffff;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td {
text-align: left;
border: 1px solid #27272a;
border-width: 0 0 1px 0;
padding: 0.75rem 1rem;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-toggler,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel {
width: 1.75rem;
height: 1.75rem;
color: #a1a1aa;
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
outline-color: transparent;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover {
color: #ffffff;
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible {
outline: 2px solid var(--p-focus-ring-color);
outline-offset: 2px;
box-shadow: none;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save {
margin-right: 0.5rem;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
font-weight: 600;
}
.landing-themes .p-datatable .p-datatable-tbody > tr:focus-visible {
outline: 0.15rem solid var(--p-focus-ring-color);
outline-offset: -0.15rem;
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(52, 211, 153, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
outline: 0.15rem solid var(--p-focus-ring-color);
outline-offset: -0.15rem;
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(52, 211, 153, 0.16);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 rgba(52, 211, 153, 0.16);
}
.landing-themes .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03);
color: #ffffff;
}
.landing-themes .p-datatable .p-column-resizer-helper {
background: #34d399;
}
.landing-themes .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead,
.landing-themes .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .landing-themes .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-thead,
.landing-themes .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot {
background-color: #18181b;
}
.landing-themes .p-datatable .p-datatable-loading-icon {
font-size: 2rem;
}
.landing-themes .p-datatable .p-datatable-loading-icon.p-icon {
width: 2rem;
height: 2rem;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-header {
border-width: 1px 1px 0 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-footer {
border-width: 0 1px 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-paginator-top {
border-width: 0 1px 0 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-paginator-bottom {
border-width: 0 1px 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th {
border-width: 1px 0 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th:last-child {
border-width: 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td {
border-width: 1px 0 0 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td:last-child {
border-width: 1px 1px 0 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td {
border-width: 1px 0 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td:last-child {
border-width: 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td {
border-width: 1px 0 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td:last-child {
border-width: 1px 1px 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td {
border-width: 0 0 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td:last-child {
border-width: 0 1px 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td {
border-width: 0 0 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td:last-child {
border-width: 0 1px 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td {
border-width: 0 0 0 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td:last-child {
border-width: 0 1px 0 1px;
}
.landing-themes .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
background: #1f1f22;
}
.landing-themes .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
background: rgba(52, 211, 153, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler {
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler:hover {
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-header {
padding: 0.375rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-thead > tr > th {
padding: 0.375rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
padding: 0.375rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td {
padding: 0.375rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-footer {
padding: 0.375rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-header {
padding: 0.9375rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-thead > tr > th {
padding: 0.9375rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-tbody > tr > td {
padding: 0.9375rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td {
padding: 0.9375rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-footer {
padding: 0.9375rem 1.25rem;
}
.landing-themes .p-paginator {
background: #18181b;
color: #ffffff;
border: solid #27272a;
border-width: 0;
padding: 0.5rem 1rem;
border-radius: 6px;
}
.landing-themes .p-paginator .p-paginator-first,
.landing-themes .p-paginator .p-paginator-prev,
.landing-themes .p-paginator .p-paginator-next,
.landing-themes .p-paginator .p-paginator-last {
background-color: transparent;
border: 0 none;
color: #a1a1aa;
min-width: 2.5rem;
height: 2.5rem;
margin: 0.143rem;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
border-radius: 50%;
}
.landing-themes .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover,
.landing-themes .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover,
.landing-themes .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover,
.landing-themes .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03);
border-color: transparent;
color: #ffffff;
}
.landing-themes .p-paginator .p-paginator-first {
border-top-left-radius: 50%;
border-bottom-left-radius: 50%;
}
.landing-themes .p-paginator .p-paginator-last {
border-top-right-radius: 50%;
border-bottom-right-radius: 50%;
}
.landing-themes .p-paginator .p-dropdown {
margin-left: 0.5rem;
margin-right: 0.5rem;
height: 2.5rem;
}
.landing-themes .p-paginator .p-dropdown .p-dropdown-label {
padding-right: 0;
}
.landing-themes .p-paginator .p-paginator-page-input {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.landing-themes .p-paginator .p-paginator-page-input .p-inputtext {
max-width: 2.5rem;
}
.landing-themes .p-paginator .p-paginator-current {
background-color: transparent;
border: 0 none;
color: #a1a1aa;
min-width: 2.5rem;
height: 2.5rem;
margin: 0.143rem;
padding: 0 0.5rem;
}
.landing-themes .p-paginator .p-paginator-pages .p-paginator-page {
background-color: transparent;
border: 0 none;
color: #a1a1aa;
min-width: 2.5rem;
height: 2.5rem;
margin: 0.143rem;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
border-radius: 50%;
}
.landing-themes .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
background: rgba(52, 211, 153, 0.16);
border-color: rgba(52, 211, 153, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03);
border-color: transparent;
color: #ffffff;
}
.landing-themes .p-progressbar {
border: 0 none;
height: 1.25rem;
background: #27272a;
border-radius: 6px;
}
.landing-themes .p-progressbar .p-progressbar-value {
border: 0 none;
margin: 0;
background: #34d399;
}
.landing-themes .p-progressbar .p-progressbar-label {
color: #020617;
line-height: 1.25rem;
}
.landing-themes .p-tag {
background: #34d399;
color: #020617;
font-size: 0.75rem;
font-weight: 700;
padding: 0.25rem 0.4rem;
border-radius: 6px;
}
.landing-themes .p-tag.p-tag-success {
background-color: #4ade80;
color: #052e16;
}
.landing-themes .p-tag.p-tag-info {
background-color: #38bdf8;
color: #082f49;
}
.landing-themes .p-tag.p-tag-warning {
background-color: #fb923c;
color: #431407;
}
.landing-themes .p-tag.p-tag-danger {
background-color: #f87171;
color: #450a0a;
}
.landing-themes .p-tag .p-tag-icon {
font-size: 0.75rem;
}
.landing-themes .p-tag .p-tag-icon:not(:last-child) {
margin-right: 0.25rem;
}
.landing-themes .p-tag .p-tag-icon.p-icon {
width: 0.75rem;
height: 0.75rem;
}
.landing-themes .p-button-label {
font-weight: 500;
}
.landing-themes .p-button.p-button-raised {
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.landing-themes .p-button.p-button-success:enabled:focus-visible {
outline-color: #4ade80;
}
.landing-themes .p-button.p-button-info:enabled:focus-visible {
outline-color: #38bdf8;
}
.landing-themes .p-button.p-button-warning:enabled:focus-visible {
outline-color: #fb923c;
}
.landing-themes .p-button.p-button-help:enabled:focus-visible {
outline-color: #c084fc;
}
.landing-themes .p-button.p-button-danger:enabled:focus-visible {
outline-color: #f87171;
}
.landing-themes .p-button.p-button-outlined {
border-color: var(--primary-200);
}
.landing-themes .p-button.p-button-outlined:not(:disabled):hover, .landing-themes .p-button.p-button-outlined:not(:disabled):active {
border-color: var(--primary-200);
}
.landing-themes .p-button.p-button-outlined.p-button-secondary {
border-color: var(--surface-200);
color: #a1a1aa;
}
.landing-themes .p-button.p-button-outlined.p-button-secondary:not(:disabled):hover {
color: #a1a1aa;
background-color: #f4f4f5;
border-color: var(--surface-200);
}
.landing-themes .p-button.p-button-outlined.p-button-secondary:not(:disabled):active {
color: #a1a1aa;
background-color: #e4e4e7;
border-color: var(--surface-200);
}
.landing-themes .p-button.p-button-outlined.p-button-success {
border-color: #bbf7d0;
}
.landing-themes .p-button.p-button-outlined.p-button-success:not(:disabled):hover, .landing-themes .p-button.p-button-outlined.p-button-success:not(:disabled):active {
border-color: #bbf7d0;
}
.landing-themes .p-button.p-button-outlined.p-button-info {
border-color: #bae6fd;
}
.landing-themes .p-button.p-button-outlined.p-button-info:not(:disabled):hover, .landing-themes .p-button.p-button-outlined.p-button-info:not(:disabled):active {
border-color: #bae6fd;
}
.landing-themes .p-button.p-button-outlined.p-button-warning {
border-color: #fed7aa;
}
.landing-themes .p-button.p-button-outlined.p-button-warning:not(:disabled):hover, .landing-themes .p-button.p-button-outlined.p-button-warning:not(:disabled):active {
border-color: #fed7aa;
}
.landing-themes .p-button.p-button-outlined.p-button-help {
border-color: #e9d5ff;
}
.landing-themes .p-button.p-button-outlined.p-button-help:not(:disabled):hover, .landing-themes .p-button.p-button-outlined.p-button-help:not(:disabled):active {
border-color: #e9d5ff;
}
.landing-themes .p-button.p-button-outlined.p-button-danger {
border-color: #fecaca;
}
.landing-themes .p-button.p-button-outlined.p-button-danger:not(:disabled):hover, .landing-themes .p-button.p-button-outlined.p-button-danger:not(:disabled):active {
border-color: #fecaca;
}
.landing-themes .p-button.p-button-secondary.p-button-text {
color: #a1a1aa;
}
.landing-themes .p-button.p-button-secondary.p-button-text:not(:disabled):hover {
background: #f4f4f5;
color: #a1a1aa;
}
.landing-themes .p-button.p-button-secondary.p-button-text:not(:disabled):active {
background: #e4e4e7;
color: #a1a1aa;
}
.landing-themes .p-checkbox .p-checkbox-box {
border-radius: 4px;
box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05);
}
.landing-themes .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
outline-width: 1px;
outline-offset: 2px;
}
.landing-themes .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible).p-highlight .p-checkbox-box {
border-color: #34d399;
}
.landing-themes .p-checkbox.p-disabled {
opacity: 1;
}
.landing-themes .p-checkbox.p-disabled .p-checkbox-box {
background-color: #3f3f46;
border: 1px solid #27272a;
}
.landing-themes .p-checkbox.p-disabled .p-checkbox-box .p-checkbox-icon {
color: #a1a1aa;
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #34d399;
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #34d399;
}
.landing-themes .p-datatable .p-datatable-tbody > tr:has(+ .p-highlight) > td {
border-bottom-color: rgba(42, 195, 139, 0.16);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-highlight > td {
border-bottom-color: rgba(42, 195, 139, 0.16);
}
.landing-themes .p-inputtext {
box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05);
}
.landing-themes .p-inputtext:disabled {
opacity: 1;
background-color: #3f3f46;
color: #a1a1aa;
}
.landing-themes .p-progressbar-label {
font-size: 0.75rem;
font-weight: 600;
}
.landing-themes .p-tag {
background: color-mix(in srgb, var(--primary-500), transparent 80%);
color: var(--primary-300);
}
.landing-themes .p-tag.p-tag-success {
background: rgba(16, 185, 129, 0.2);
color: #6ee7b7;
}
.landing-themes .p-tag.p-tag-info {
background: rgba(59, 130, 246, 0.2);
color: #93c5fd;
}
.landing-themes .p-tag.p-tag-warning {
background: rgba(234, 179, 8, 0.2);
color: #fde047;
}
.landing-themes .p-tag.p-tag-danger {
background: rgba(239, 68, 68, 0.2);
color: #fca5a5;
}