primevue-mirror/public/styles/landing/themes/lara-dark-blue/theme.css

1723 lines
86 KiB
CSS

.landing-themes * {
box-sizing: border-box;
}
.landing-themes .box.table-container {
background-color: #071426;
}
.landing-themes .p-component {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
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.4;
}
.landing-themes .p-error {
color: #FCA5A5;
}
.landing-themes .p-text-secondary {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .pi {
font-size: 1rem;
}
.landing-themes .p-link {
font-size: 1rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
border-radius: 6px;
}
.landing-themes .p-link:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.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-calendar.p-invalid.p-component > .p-inputtext {
border-color: #FCA5A5;
}
.landing-themes .p-datepicker {
padding: 0.5rem;
background: #071426;
color: rgba(255, 255, 255, 0.87);
border: 1px solid #0b213f;
border-radius: 6px;
}
.landing-themes .p-datepicker:not(.p-datepicker-inline) {
background: #071426;
border: 1px solid #0b213f;
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.landing-themes .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header {
background: #071426;
}
.landing-themes .p-datepicker .p-datepicker-header {
padding: 0.5rem;
color: rgba(255, 255, 255, 0.87);
background: #071426;
font-weight: 700;
margin: 0;
border-bottom: 1px solid #0b213f;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-prev,
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-next {
width: 2rem;
height: 2rem;
color: rgba(255, 255, 255, 0.6);
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover,
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover {
color: rgba(255, 255, 255, 0.87);
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-prev:focus,
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-next:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-title {
line-height: 2rem;
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-title select {
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-title select:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
border-color: #93C5FD;
}
.landing-themes .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
margin-right: 0.5rem;
}
.landing-themes .p-datepicker table {
font-size: 1rem;
margin: 0.5rem 0;
}
.landing-themes .p-datepicker table th {
padding: 0.5rem;
}
.landing-themes .p-datepicker table th > span {
width: 2.5rem;
height: 2.5rem;
}
.landing-themes .p-datepicker table td {
padding: 0.5rem;
}
.landing-themes .p-datepicker table td > span {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
transition: box-shadow 0.2s;
border: 1px solid transparent;
}
.landing-themes .p-datepicker table td > span.p-highlight {
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-datepicker table td > span:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-datepicker table td.p-datepicker-today > span {
background: transparent;
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-datepicker table td.p-datepicker-today > span.p-highlight {
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-datepicker .p-datepicker-buttonbar {
padding: 1rem 0;
border-top: 1px solid #0b213f;
}
.landing-themes .p-datepicker .p-datepicker-buttonbar .p-button {
width: auto;
}
.landing-themes .p-datepicker .p-timepicker {
border-top: 1px solid #0b213f;
padding: 0.5rem;
}
.landing-themes .p-datepicker .p-timepicker button {
width: 2rem;
height: 2rem;
color: rgba(255, 255, 255, 0.6);
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-datepicker .p-timepicker button:enabled:hover {
color: rgba(255, 255, 255, 0.87);
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-datepicker .p-timepicker button:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-datepicker .p-timepicker button:last-child {
margin-top: 0.2em;
}
.landing-themes .p-datepicker .p-timepicker span {
font-size: 1.25rem;
}
.landing-themes .p-datepicker .p-timepicker > div {
padding: 0 0.5rem;
}
.landing-themes .p-datepicker.p-datepicker-timeonly .p-timepicker {
border-top: 0 none;
}
.landing-themes .p-datepicker .p-monthpicker {
margin: 0.5rem 0;
}
.landing-themes .p-datepicker .p-monthpicker .p-monthpicker-month {
padding: 0.5rem;
transition: box-shadow 0.2s;
border-radius: 6px;
}
.landing-themes .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight {
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-datepicker.p-datepicker-multiple-month .p-datepicker-group {
border-right: 1px solid #0b213f;
padding-right: 0.5rem;
padding-left: 0.5rem;
padding-top: 0;
padding-bottom: 0;
}
.landing-themes .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child {
padding-left: 0;
}
.landing-themes .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
padding-right: 0;
border-right: 0 none;
}
.landing-themes .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-highlight):not(.p-disabled):focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
@media screen and (max-width: 769px) {
.landing-themes .p-datepicker table th, .landing-themes .p-datepicker table td {
padding: 0;
}
}
.landing-themes .p-checkbox {
width: 22px;
height: 22px;
}
.landing-themes .p-checkbox .p-checkbox-box {
border: 2px solid #0b213f;
background: #040d19;
width: 22px;
height: 22px;
color: rgba(255, 255, 255, 0.87);
border-radius: 6px;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-checkbox .p-checkbox-box .p-checkbox-icon {
transition-duration: 0.2s;
color: #1c2127;
font-size: 14px;
}
.landing-themes .p-checkbox .p-checkbox-box.p-highlight {
border-color: #93C5FD;
background: #93C5FD;
}
.landing-themes .p-checkbox .p-checkbox-box.p-highlight:not(.p-disabled):hover {
border-color: #6cb0fc;
background: #6cb0fc;
color: #1c2127;
}
.landing-themes .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover {
border-color: #93C5FD;
}
.landing-themes .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
border-color: #93C5FD;
}
.landing-themes .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover {
border-color: #6cb0fc;
background: #6cb0fc;
color: #1c2127;
}
.landing-themes .p-checkbox.p-invalid > .p-checkbox-box {
border-color: #FCA5A5;
}
.landing-themes .p-input-filled .p-checkbox .p-checkbox-box {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-checkbox .p-checkbox-box.p-highlight {
background: #93C5FD;
}
.landing-themes .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover {
background: #6cb0fc;
}
.landing-themes .p-dropdown {
background: #040d19;
border: 1px solid #0b213f;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
border-radius: 6px;
}
.landing-themes .p-dropdown:not(.p-disabled):hover {
border-color: #93C5FD;
}
.landing-themes .p-dropdown:not(.p-disabled).p-focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
border-color: #93C5FD;
}
.landing-themes .p-dropdown.p-dropdown-clearable .p-dropdown-label {
padding-right: 1.75rem;
}
.landing-themes .p-dropdown .p-dropdown-label {
background: transparent;
border: 0 none;
}
.landing-themes .p-dropdown .p-dropdown-label.p-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-dropdown .p-dropdown-label:enabled:focus {
outline: 0 none;
box-shadow: none;
}
.landing-themes .p-dropdown .p-dropdown-trigger {
background: transparent;
color: rgba(255, 255, 255, 0.6);
width: 3rem;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.landing-themes .p-dropdown .p-dropdown-clear-icon {
color: rgba(255, 255, 255, 0.6);
right: 3rem;
}
.landing-themes .p-dropdown.p-invalid.p-component {
border-color: #FCA5A5;
}
.landing-themes .p-dropdown-panel {
background: #071426;
color: rgba(255, 255, 255, 0.87);
border: 1px solid #0b213f;
border-radius: 6px;
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.landing-themes .p-dropdown-panel .p-dropdown-header {
padding: 0.75rem 1.25rem;
border-bottom: 1px solid #0b213f;
color: rgba(255, 255, 255, 0.87);
background: #071426;
margin: 0;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.landing-themes .p-dropdown-panel .p-dropdown-header .p-dropdown-filter {
padding-right: 1.75rem;
margin-right: -1.75rem;
}
.landing-themes .p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon {
right: 0.75rem;
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-dropdown-panel .p-dropdown-header .p-dropdown-clearable-filter .p-dropdown-filter {
padding-right: 3.5rem;
margin-right: -3.5rem;
}
.landing-themes .p-dropdown-panel .p-dropdown-header .p-dropdown-clearable-filter .p-dropdown-filter-clear-icon {
right: 2.5rem;
}
.landing-themes .p-dropdown-panel .p-dropdown-items {
padding: 0.75rem 0;
}
.landing-themes .p-dropdown-panel .p-dropdown-items .p-dropdown-item {
margin: 0;
padding: 0.75rem 1.25rem;
border: 0 none;
color: rgba(255, 255, 255, 0.87);
background: transparent;
transition: box-shadow 0.2s;
border-radius: 0;
}
.landing-themes .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight {
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover {
color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0;
padding: 0.75rem 1.25rem;
color: rgba(255, 255, 255, 0.87);
background: #091a32;
font-weight: 700;
}
.landing-themes .p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message {
padding: 0.75rem 1.25rem;
color: rgba(255, 255, 255, 0.87);
background: transparent;
}
.landing-themes .p-input-filled .p-dropdown {
background: #0b213f;
}
.landing-themes .p-input-filled .p-dropdown:not(.p-disabled):hover {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-dropdown:not(.p-disabled).p-focus {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext {
background-color: transparent;
}
.landing-themes .p-inputnumber.p-invalid.p-component > .p-inputtext {
border-color: #FCA5A5;
}
.landing-themes .p-inputtext {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
color: rgba(255, 255, 255, 0.87);
background: #040d19;
padding: 0.75rem 0.75rem;
border: 1px solid #0b213f;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
appearance: none;
border-radius: 6px;
}
.landing-themes .p-inputtext:enabled:hover {
border-color: #93C5FD;
}
.landing-themes .p-inputtext:enabled:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
border-color: #93C5FD;
}
.landing-themes .p-inputtext.p-invalid.p-component {
border-color: #FCA5A5;
}
.landing-themes .p-inputtext.p-inputtext-sm {
font-size: 0.875rem;
padding: 0.65625rem 0.65625rem;
}
.landing-themes .p-inputtext.p-inputtext-lg {
font-size: 1.25rem;
padding: 0.9375rem 0.9375rem;
}
.landing-themes .p-float-label > label {
left: 0.75rem;
color: rgba(255, 255, 255, 0.6);
transition-duration: 0.2s;
}
.landing-themes .p-float-label > label.p-error {
color: #FCA5A5;
}
.landing-themes .p-input-icon-left > i:first-of-type,
.landing-themes .p-input-icon-left > svg:first-of-type,
.landing-themes .p-input-icon-left > .p-input-prefix {
left: 0.75rem;
color: rgba(255, 255, 255, 0.6);
}
.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 > i:last-of-type,
.landing-themes .p-input-icon-right > svg:last-of-type,
.landing-themes .p-input-icon-right > .p-input-suffix {
right: 0.75rem;
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-input-icon-right > .p-inputtext {
padding-right: 2.5rem;
}
.landing-themes ::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes :-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes ::-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes :-ms-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-input-filled .p-inputtext {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-inputtext:enabled:hover {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-inputtext:enabled:focus {
background-color: #0b213f;
}
.landing-themes .p-inputtext-sm .p-inputtext {
font-size: 0.875rem;
padding: 0.65625rem 0.65625rem;
}
.landing-themes .p-inputtext-lg .p-inputtext {
font-size: 1.25rem;
padding: 0.9375rem 0.9375rem;
}
.landing-themes .p-multiselect {
background: #040d19;
border: 1px solid #0b213f;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
border-radius: 6px;
}
.landing-themes .p-multiselect:not(.p-disabled):hover {
border-color: #93C5FD;
}
.landing-themes .p-multiselect:not(.p-disabled).p-focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
border-color: #93C5FD;
}
.landing-themes .p-multiselect.p-multiselect-clearable .p-multiselect-label {
padding-right: 1.75rem;
}
.landing-themes .p-multiselect .p-multiselect-label {
padding: 0.75rem 0.75rem;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-multiselect .p-multiselect-label.p-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-multiselect.p-multiselect-chip .p-multiselect-token {
padding: 0.375rem 0.75rem;
margin-right: 0.5rem;
background: rgba(147, 197, 253, 0.16);
color: rgba(255, 255, 255, 0.87);
border-radius: 6px;
}
.landing-themes .p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon {
margin-left: 0.5rem;
}
.landing-themes .p-multiselect .p-multiselect-trigger {
background: transparent;
color: rgba(255, 255, 255, 0.6);
width: 3rem;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.landing-themes .p-multiselect .p-multiselect-clear-icon {
color: rgba(255, 255, 255, 0.6);
right: 3rem;
}
.landing-themes .p-multiselect.p-invalid.p-component {
border-color: #FCA5A5;
}
.landing-themes .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
padding: 0.375rem 0.75rem;
}
.landing-themes .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label.p-multiselect-items-label {
padding: 0.75rem 0.75rem;
}
.landing-themes .p-inputwrapper-filled.p-multiselect.p-multiselect-clearable .p-multiselect-label {
padding-right: 1.75rem;
}
.landing-themes .p-multiselect-panel {
background: #071426;
color: rgba(255, 255, 255, 0.87);
border: 1px solid #0b213f;
border-radius: 6px;
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.landing-themes .p-multiselect-panel .p-multiselect-header {
padding: 0.75rem 1.25rem;
border-bottom: 1px solid #0b213f;
color: rgba(255, 255, 255, 0.87);
background: #071426;
margin: 0;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.landing-themes .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container {
margin: 0 0.5rem;
}
.landing-themes .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext {
padding-right: 1.75rem;
}
.landing-themes .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon {
right: 0.75rem;
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-multiselect-panel .p-multiselect-header .p-multiselect-close {
width: 2rem;
height: 2rem;
color: rgba(255, 255, 255, 0.6);
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover {
color: rgba(255, 255, 255, 0.87);
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-multiselect-panel .p-multiselect-items {
padding: 0.75rem 0;
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-item {
margin: 0;
padding: 0.75rem 1.25rem;
border: 0 none;
color: rgba(255, 255, 255, 0.87);
background: transparent;
transition: box-shadow 0.2s;
border-radius: 0;
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight {
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover {
color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: inset 0 0 0 0.15rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox {
margin-right: 0.5rem;
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-item-group {
margin: 0;
padding: 0.75rem 1.25rem;
color: rgba(255, 255, 255, 0.87);
background: #091a32;
font-weight: 700;
}
.landing-themes .p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message {
padding: 0.75rem 1.25rem;
color: rgba(255, 255, 255, 0.87);
background: transparent;
}
.landing-themes .p-input-filled .p-multiselect {
background: #0b213f;
}
.landing-themes .p-input-filled .p-multiselect:not(.p-disabled):hover {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-multiselect:not(.p-disabled).p-focus {
background-color: #0b213f;
}
.landing-themes .p-radiobutton {
width: 22px;
height: 22px;
}
.landing-themes .p-radiobutton .p-radiobutton-box {
border: 2px solid #0b213f;
background: #040d19;
width: 22px;
height: 22px;
color: rgba(255, 255, 255, 0.87);
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover {
border-color: #93C5FD;
}
.landing-themes .p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
border-color: #93C5FD;
}
.landing-themes .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
width: 12px;
height: 12px;
transition-duration: 0.2s;
background-color: #1c2127;
}
.landing-themes .p-radiobutton .p-radiobutton-box.p-highlight {
border-color: #93C5FD;
background: #93C5FD;
}
.landing-themes .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover {
border-color: #6cb0fc;
background: #6cb0fc;
color: #1c2127;
}
.landing-themes .p-radiobutton.p-invalid > .p-radiobutton-box {
border-color: #FCA5A5;
}
.landing-themes .p-radiobutton:focus {
outline: 0 none;
}
.landing-themes .p-input-filled .p-radiobutton .p-radiobutton-box {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover {
background-color: #0b213f;
}
.landing-themes .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight {
background: #93C5FD;
}
.landing-themes .p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover {
background: #6cb0fc;
}
.landing-themes .p-slider {
background: #0b213f;
border: 0 none;
border-radius: 6px;
}
.landing-themes .p-slider.p-slider-horizontal {
height: 0.286rem;
}
.landing-themes .p-slider.p-slider-horizontal .p-slider-handle {
margin-top: -0.5715rem;
margin-left: -0.5715rem;
}
.landing-themes .p-slider.p-slider-vertical {
width: 0.286rem;
}
.landing-themes .p-slider.p-slider-vertical .p-slider-handle {
margin-left: -0.5715rem;
margin-bottom: -0.5715rem;
}
.landing-themes .p-slider .p-slider-handle {
height: 1.143rem;
width: 1.143rem;
background: #0b213f;
border: 2px solid #93C5FD;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-slider .p-slider-handle:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-slider .p-slider-range {
background: #93C5FD;
}
.landing-themes .p-slider:not(.p-disabled) .p-slider-handle:hover {
background: #93C5FD;
border-color: #93C5FD;
}
.landing-themes .p-button {
color: #1c2127;
background: #93C5FD;
border: 1px solid #93C5FD;
padding: 0.75rem 1.25rem;
font-size: 1rem;
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
border-radius: 6px;
}
.landing-themes .p-button:enabled:hover, .landing-themes .p-button:not(button):not(a):not(.p-disabled):hover {
background: #7fbafd;
color: #1c2127;
border-color: #7fbafd;
}
.landing-themes .p-button:enabled:active, .landing-themes .p-button:not(button):not(a):not(.p-disabled):active {
background: #6cb0fc;
color: #1c2127;
border-color: #6cb0fc;
}
.landing-themes .p-button.p-button-outlined {
background-color: transparent;
color: #93C5FD;
border: 1px solid;
}
.landing-themes .p-button.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(165, 180, 252, 0.04);
color: #93C5FD;
border: 1px solid;
}
.landing-themes .p-button.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(147, 197, 253, 0.16);
color: #93C5FD;
border: 1px solid;
}
.landing-themes .p-button.p-button-outlined.p-button-plain {
color: rgba(255, 255, 255, 0.6);
border-color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-button.p-button-outlined.p-button-plain:enabled:hover, .landing-themes .p-button.p-button-outlined.p-button-plain:not(button):not(a):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-button.p-button-outlined.p-button-plain:enabled:active, .landing-themes .p-button.p-button-outlined.p-button-plain:not(button):not(a):not(.p-disabled):active {
background: rgba(255, 255, 255, 0.16);
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-button.p-button-text {
background-color: transparent;
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-button.p-button-text:enabled:hover, .landing-themes .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(165, 180, 252, 0.04);
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-button.p-button-text:enabled:active, .landing-themes .p-button.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(147, 197, 253, 0.16);
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-button.p-button-text.p-button-plain {
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-button.p-button-text.p-button-plain:enabled:hover, .landing-themes .p-button.p-button-text.p-button-plain:not(button):not(a):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-button.p-button-text.p-button-plain:enabled:active, .landing-themes .p-button.p-button-text.p-button-plain:not(button):not(a):not(.p-disabled):active {
background: rgba(255, 255, 255, 0.16);
color: rgba(255, 255, 255, 0.6);
}
.landing-themes .p-button:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.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: #93C5FD;
background-color: #1c2127;
}
.landing-themes .p-button.p-button-raised {
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px 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: 3rem;
padding: 0.75rem 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: 3rem;
}
.landing-themes .p-button.p-button-sm {
font-size: 0.875rem;
padding: 0.65625rem 1.09375rem;
}
.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.9375rem 1.5625rem;
}
.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-loading-left .p-button-label {
margin-left: 0.5rem;
}
.landing-themes .p-button.p-button-loading-label-only.p-button-loading-right .p-button-label {
margin-right: 0.5rem;
}
.landing-themes .p-button.p-button-loading-label-only.p-button-loading-top .p-button-label {
margin-top: 0.5rem;
}
.landing-themes .p-button.p-button-loading-label-only.p-button-loading-bottom .p-button-label {
margin-bottom: 0.5rem;
}
.landing-themes .p-button.p-button-loading-label-only .p-button-loading-icon {
margin: 0;
}
.landing-themes .p-fluid .p-button {
width: 100%;
}
.landing-themes .p-fluid .p-button-icon-only {
width: 3rem;
}
.landing-themes .p-fluid .p-buttonset {
display: flex;
}
.landing-themes .p-fluid .p-buttonset .p-button {
flex: 1;
}
.landing-themes .p-button.p-button-secondary, .landing-themes .p-buttonset.p-button-secondary > .p-button, .landing-themes .p-splitbutton.p-button-secondary > .p-button, .landing-themes .p-fileupload-choose.p-button-secondary {
color: #1c2127;
background: #CBD5E1;
border: 1px solid #CBD5E1;
}
.landing-themes .p-button.p-button-secondary:enabled:hover, .landing-themes .p-button.p-button-secondary:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-secondary > .p-button:enabled:hover, .landing-themes .p-buttonset.p-button-secondary > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button:enabled:hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-secondary:enabled:hover, .landing-themes .p-fileupload-choose.p-button-secondary:not(button):not(a):not(.p-disabled):hover {
background: #b0bfd1;
color: #1c2127;
border-color: #b0bfd1;
}
.landing-themes .p-button.p-button-secondary:enabled:focus, .landing-themes .p-button.p-button-secondary:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-buttonset.p-button-secondary > .p-button:enabled:focus, .landing-themes .p-buttonset.p-button-secondary > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-splitbutton.p-button-secondary > .p-button:enabled:focus, .landing-themes .p-splitbutton.p-button-secondary > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-fileupload-choose.p-button-secondary:enabled:focus, .landing-themes .p-fileupload-choose.p-button-secondary:not(button):not(a):not(.p-disabled):focus {
box-shadow: 0 0 0 1px #dbe2ea;
}
.landing-themes .p-button.p-button-secondary:enabled:active, .landing-themes .p-button.p-button-secondary:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-secondary > .p-button:enabled:active, .landing-themes .p-buttonset.p-button-secondary > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-secondary > .p-button:enabled:active, .landing-themes .p-splitbutton.p-button-secondary > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-secondary:enabled:active, .landing-themes .p-fileupload-choose.p-button-secondary:not(button):not(a):not(.p-disabled):active {
background: #95a9c2;
color: #1c2127;
border-color: #95a9c2;
}
.landing-themes .p-button.p-button-secondary.p-button-outlined, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-outlined {
background-color: transparent;
color: #CBD5E1;
border: 1px solid;
}
.landing-themes .p-button.p-button-secondary.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:hover, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(203, 213, 225, 0.04);
color: #CBD5E1;
border: 1px solid;
}
.landing-themes .p-button.p-button-secondary.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:active, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(203, 213, 225, 0.16);
color: #CBD5E1;
border: 1px solid;
}
.landing-themes .p-button.p-button-secondary.p-button-text, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-text {
background-color: transparent;
color: #CBD5E1;
border-color: transparent;
}
.landing-themes .p-button.p-button-secondary.p-button-text:enabled:hover, .landing-themes .p-button.p-button-secondary.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:hover, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:hover, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-text:enabled:hover, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(203, 213, 225, 0.04);
border-color: transparent;
color: #CBD5E1;
}
.landing-themes .p-button.p-button-secondary.p-button-text:enabled:active, .landing-themes .p-button.p-button-secondary.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active, .landing-themes .p-buttonset.p-button-secondary > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active, .landing-themes .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-text:enabled:active, .landing-themes .p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(203, 213, 225, 0.16);
border-color: transparent;
color: #CBD5E1;
}
.landing-themes .p-button.p-button-info, .landing-themes .p-buttonset.p-button-info > .p-button, .landing-themes .p-splitbutton.p-button-info > .p-button, .landing-themes .p-fileupload-choose.p-button-info {
color: #1c2127;
background: #93C5FD;
border: 1px solid #93C5FD;
}
.landing-themes .p-button.p-button-info:enabled:hover, .landing-themes .p-button.p-button-info:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-info > .p-button:enabled:hover, .landing-themes .p-buttonset.p-button-info > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-info > .p-button:enabled:hover, .landing-themes .p-splitbutton.p-button-info > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-info:enabled:hover, .landing-themes .p-fileupload-choose.p-button-info:not(button):not(a):not(.p-disabled):hover {
background: #6cb0fc;
color: #1c2127;
border-color: #6cb0fc;
}
.landing-themes .p-button.p-button-info:enabled:focus, .landing-themes .p-button.p-button-info:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-buttonset.p-button-info > .p-button:enabled:focus, .landing-themes .p-buttonset.p-button-info > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-splitbutton.p-button-info > .p-button:enabled:focus, .landing-themes .p-splitbutton.p-button-info > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-fileupload-choose.p-button-info:enabled:focus, .landing-themes .p-fileupload-choose.p-button-info:not(button):not(a):not(.p-disabled):focus {
box-shadow: 0 0 0 1px #b3d6fe;
}
.landing-themes .p-button.p-button-info:enabled:active, .landing-themes .p-button.p-button-info:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-info > .p-button:enabled:active, .landing-themes .p-buttonset.p-button-info > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-info > .p-button:enabled:active, .landing-themes .p-splitbutton.p-button-info > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-info:enabled:active, .landing-themes .p-fileupload-choose.p-button-info:not(button):not(a):not(.p-disabled):active {
background: #449bfc;
color: #1c2127;
border-color: #449bfc;
}
.landing-themes .p-button.p-button-info.p-button-outlined, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined, .landing-themes .p-fileupload-choose.p-button-info.p-button-outlined {
background-color: transparent;
color: #93C5FD;
border: 1px solid;
}
.landing-themes .p-button.p-button-info.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-info.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-info.p-button-outlined:enabled:hover, .landing-themes .p-fileupload-choose.p-button-info.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(147, 197, 253, 0.04);
color: #93C5FD;
border: 1px solid;
}
.landing-themes .p-button.p-button-info.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-info.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-outlined:enabled:active, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined:enabled:active, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-info.p-button-outlined:enabled:active, .landing-themes .p-fileupload-choose.p-button-info.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(147, 197, 253, 0.16);
color: #93C5FD;
border: 1px solid;
}
.landing-themes .p-button.p-button-info.p-button-text, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text, .landing-themes .p-fileupload-choose.p-button-info.p-button-text {
background-color: transparent;
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-button.p-button-info.p-button-text:enabled:hover, .landing-themes .p-button.p-button-info.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-text:enabled:hover, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:hover, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-info.p-button-text:enabled:hover, .landing-themes .p-fileupload-choose.p-button-info.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(147, 197, 253, 0.04);
border-color: transparent;
color: #93C5FD;
}
.landing-themes .p-button.p-button-info.p-button-text:enabled:active, .landing-themes .p-button.p-button-info.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-text:enabled:active, .landing-themes .p-buttonset.p-button-info > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text:enabled:active, .landing-themes .p-splitbutton.p-button-info > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-info.p-button-text:enabled:active, .landing-themes .p-fileupload-choose.p-button-info.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(147, 197, 253, 0.16);
border-color: transparent;
color: #93C5FD;
}
.landing-themes .p-button.p-button-success, .landing-themes .p-buttonset.p-button-success > .p-button, .landing-themes .p-splitbutton.p-button-success > .p-button, .landing-themes .p-fileupload-choose.p-button-success {
color: #1c2127;
background: #86EFAC;
border: 1px solid #86EFAC;
}
.landing-themes .p-button.p-button-success:enabled:hover, .landing-themes .p-button.p-button-success:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-success > .p-button:enabled:hover, .landing-themes .p-buttonset.p-button-success > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-success > .p-button:enabled:hover, .landing-themes .p-splitbutton.p-button-success > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-success:enabled:hover, .landing-themes .p-fileupload-choose.p-button-success:not(button):not(a):not(.p-disabled):hover {
background: #65eb95;
color: #1c2127;
border-color: #65eb95;
}
.landing-themes .p-button.p-button-success:enabled:focus, .landing-themes .p-button.p-button-success:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-buttonset.p-button-success > .p-button:enabled:focus, .landing-themes .p-buttonset.p-button-success > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-splitbutton.p-button-success > .p-button:enabled:focus, .landing-themes .p-splitbutton.p-button-success > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-fileupload-choose.p-button-success:enabled:focus, .landing-themes .p-fileupload-choose.p-button-success:not(button):not(a):not(.p-disabled):focus {
box-shadow: 0 0 0 1px #aaf4c5;
}
.landing-themes .p-button.p-button-success:enabled:active, .landing-themes .p-button.p-button-success:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-success > .p-button:enabled:active, .landing-themes .p-buttonset.p-button-success > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-success > .p-button:enabled:active, .landing-themes .p-splitbutton.p-button-success > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-success:enabled:active, .landing-themes .p-fileupload-choose.p-button-success:not(button):not(a):not(.p-disabled):active {
background: #44e67f;
color: #1c2127;
border-color: #44e67f;
}
.landing-themes .p-button.p-button-success.p-button-outlined, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined, .landing-themes .p-fileupload-choose.p-button-success.p-button-outlined {
background-color: transparent;
color: #86EFAC;
border: 1px solid;
}
.landing-themes .p-button.p-button-success.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-success.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-success.p-button-outlined:enabled:hover, .landing-themes .p-fileupload-choose.p-button-success.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(134, 239, 172, 0.04);
color: #86EFAC;
border: 1px solid;
}
.landing-themes .p-button.p-button-success.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-success.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-outlined:enabled:active, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined:enabled:active, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-success.p-button-outlined:enabled:active, .landing-themes .p-fileupload-choose.p-button-success.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(134, 239, 172, 0.16);
color: #86EFAC;
border: 1px solid;
}
.landing-themes .p-button.p-button-success.p-button-text, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text, .landing-themes .p-fileupload-choose.p-button-success.p-button-text {
background-color: transparent;
color: #86EFAC;
border-color: transparent;
}
.landing-themes .p-button.p-button-success.p-button-text:enabled:hover, .landing-themes .p-button.p-button-success.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-text:enabled:hover, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:hover, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-success.p-button-text:enabled:hover, .landing-themes .p-fileupload-choose.p-button-success.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(134, 239, 172, 0.04);
border-color: transparent;
color: #86EFAC;
}
.landing-themes .p-button.p-button-success.p-button-text:enabled:active, .landing-themes .p-button.p-button-success.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-text:enabled:active, .landing-themes .p-buttonset.p-button-success > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text:enabled:active, .landing-themes .p-splitbutton.p-button-success > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-success.p-button-text:enabled:active, .landing-themes .p-fileupload-choose.p-button-success.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(134, 239, 172, 0.16);
border-color: transparent;
color: #86EFAC;
}
.landing-themes .p-button.p-button-warning, .landing-themes .p-buttonset.p-button-warning > .p-button, .landing-themes .p-splitbutton.p-button-warning > .p-button, .landing-themes .p-fileupload-choose.p-button-warning {
color: #1c2127;
background: #FCD34D;
border: 1px solid #FCD34D;
}
.landing-themes .p-button.p-button-warning:enabled:hover, .landing-themes .p-button.p-button-warning:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-warning > .p-button:enabled:hover, .landing-themes .p-buttonset.p-button-warning > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-warning > .p-button:enabled:hover, .landing-themes .p-splitbutton.p-button-warning > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-warning:enabled:hover, .landing-themes .p-fileupload-choose.p-button-warning:not(button):not(a):not(.p-disabled):hover {
background: #fbcb2d;
color: #1c2127;
border-color: #fbcb2d;
}
.landing-themes .p-button.p-button-warning:enabled:focus, .landing-themes .p-button.p-button-warning:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-buttonset.p-button-warning > .p-button:enabled:focus, .landing-themes .p-buttonset.p-button-warning > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-splitbutton.p-button-warning > .p-button:enabled:focus, .landing-themes .p-splitbutton.p-button-warning > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-fileupload-choose.p-button-warning:enabled:focus, .landing-themes .p-fileupload-choose.p-button-warning:not(button):not(a):not(.p-disabled):focus {
box-shadow: 0 0 0 1px #fde082;
}
.landing-themes .p-button.p-button-warning:enabled:active, .landing-themes .p-button.p-button-warning:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-warning > .p-button:enabled:active, .landing-themes .p-buttonset.p-button-warning > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-warning > .p-button:enabled:active, .landing-themes .p-splitbutton.p-button-warning > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-warning:enabled:active, .landing-themes .p-fileupload-choose.p-button-warning:not(button):not(a):not(.p-disabled):active {
background: #fbc30c;
color: #1c2127;
border-color: #fbc30c;
}
.landing-themes .p-button.p-button-warning.p-button-outlined, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined, .landing-themes .p-fileupload-choose.p-button-warning.p-button-outlined {
background-color: transparent;
color: #FCD34D;
border: 1px solid;
}
.landing-themes .p-button.p-button-warning.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-warning.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-warning.p-button-outlined:enabled:hover, .landing-themes .p-fileupload-choose.p-button-warning.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(252, 211, 77, 0.04);
color: #FCD34D;
border: 1px solid;
}
.landing-themes .p-button.p-button-warning.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-warning.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-outlined:enabled:active, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined:enabled:active, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-warning.p-button-outlined:enabled:active, .landing-themes .p-fileupload-choose.p-button-warning.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(252, 211, 77, 0.16);
color: #FCD34D;
border: 1px solid;
}
.landing-themes .p-button.p-button-warning.p-button-text, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text, .landing-themes .p-fileupload-choose.p-button-warning.p-button-text {
background-color: transparent;
color: #FCD34D;
border-color: transparent;
}
.landing-themes .p-button.p-button-warning.p-button-text:enabled:hover, .landing-themes .p-button.p-button-warning.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:hover, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:hover, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-warning.p-button-text:enabled:hover, .landing-themes .p-fileupload-choose.p-button-warning.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(252, 211, 77, 0.04);
border-color: transparent;
color: #FCD34D;
}
.landing-themes .p-button.p-button-warning.p-button-text:enabled:active, .landing-themes .p-button.p-button-warning.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-text:enabled:active, .landing-themes .p-buttonset.p-button-warning > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text:enabled:active, .landing-themes .p-splitbutton.p-button-warning > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-warning.p-button-text:enabled:active, .landing-themes .p-fileupload-choose.p-button-warning.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(252, 211, 77, 0.16);
border-color: transparent;
color: #FCD34D;
}
.landing-themes .p-button.p-button-help, .landing-themes .p-buttonset.p-button-help > .p-button, .landing-themes .p-splitbutton.p-button-help > .p-button, .landing-themes .p-fileupload-choose.p-button-help {
color: #1c2127;
background: #D8B4FE;
border: 1px solid #D8B4FE;
}
.landing-themes .p-button.p-button-help:enabled:hover, .landing-themes .p-button.p-button-help:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-help > .p-button:enabled:hover, .landing-themes .p-buttonset.p-button-help > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-help > .p-button:enabled:hover, .landing-themes .p-splitbutton.p-button-help > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-help:enabled:hover, .landing-themes .p-fileupload-choose.p-button-help:not(button):not(a):not(.p-disabled):hover {
background: #c289fd;
color: #1c2127;
border-color: #c289fd;
}
.landing-themes .p-button.p-button-help:enabled:focus, .landing-themes .p-button.p-button-help:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-buttonset.p-button-help > .p-button:enabled:focus, .landing-themes .p-buttonset.p-button-help > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-splitbutton.p-button-help > .p-button:enabled:focus, .landing-themes .p-splitbutton.p-button-help > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-fileupload-choose.p-button-help:enabled:focus, .landing-themes .p-fileupload-choose.p-button-help:not(button):not(a):not(.p-disabled):focus {
box-shadow: 0 0 0 1px #e4cbfe;
}
.landing-themes .p-button.p-button-help:enabled:active, .landing-themes .p-button.p-button-help:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-help > .p-button:enabled:active, .landing-themes .p-buttonset.p-button-help > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-help > .p-button:enabled:active, .landing-themes .p-splitbutton.p-button-help > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-help:enabled:active, .landing-themes .p-fileupload-choose.p-button-help:not(button):not(a):not(.p-disabled):active {
background: #ab5efd;
color: #1c2127;
border-color: #ab5efd;
}
.landing-themes .p-button.p-button-help.p-button-outlined, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined, .landing-themes .p-fileupload-choose.p-button-help.p-button-outlined {
background-color: transparent;
color: #D8B4FE;
border: 1px solid;
}
.landing-themes .p-button.p-button-help.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-help.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-help.p-button-outlined:enabled:hover, .landing-themes .p-fileupload-choose.p-button-help.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(216, 180, 254, 0.04);
color: #D8B4FE;
border: 1px solid;
}
.landing-themes .p-button.p-button-help.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-help.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-outlined:enabled:active, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined:enabled:active, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-help.p-button-outlined:enabled:active, .landing-themes .p-fileupload-choose.p-button-help.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(216, 180, 254, 0.16);
color: #D8B4FE;
border: 1px solid;
}
.landing-themes .p-button.p-button-help.p-button-text, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text, .landing-themes .p-fileupload-choose.p-button-help.p-button-text {
background-color: transparent;
color: #D8B4FE;
border-color: transparent;
}
.landing-themes .p-button.p-button-help.p-button-text:enabled:hover, .landing-themes .p-button.p-button-help.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-text:enabled:hover, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:hover, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-help.p-button-text:enabled:hover, .landing-themes .p-fileupload-choose.p-button-help.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(216, 180, 254, 0.04);
border-color: transparent;
color: #D8B4FE;
}
.landing-themes .p-button.p-button-help.p-button-text:enabled:active, .landing-themes .p-button.p-button-help.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-text:enabled:active, .landing-themes .p-buttonset.p-button-help > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text:enabled:active, .landing-themes .p-splitbutton.p-button-help > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-help.p-button-text:enabled:active, .landing-themes .p-fileupload-choose.p-button-help.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(216, 180, 254, 0.16);
border-color: transparent;
color: #D8B4FE;
}
.landing-themes .p-button.p-button-danger, .landing-themes .p-buttonset.p-button-danger > .p-button, .landing-themes .p-splitbutton.p-button-danger > .p-button, .landing-themes .p-fileupload-choose.p-button-danger {
color: #1c2127;
background: #FCA5A5;
border: 1px solid #FCA5A5;
}
.landing-themes .p-button.p-button-danger:enabled:hover, .landing-themes .p-button.p-button-danger:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-danger > .p-button:enabled:hover, .landing-themes .p-buttonset.p-button-danger > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-danger > .p-button:enabled:hover, .landing-themes .p-splitbutton.p-button-danger > .p-button:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-danger:enabled:hover, .landing-themes .p-fileupload-choose.p-button-danger:not(button):not(a):not(.p-disabled):hover {
background: #fb7d7d;
color: #1c2127;
border-color: #fb7d7d;
}
.landing-themes .p-button.p-button-danger:enabled:focus, .landing-themes .p-button.p-button-danger:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-buttonset.p-button-danger > .p-button:enabled:focus, .landing-themes .p-buttonset.p-button-danger > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-splitbutton.p-button-danger > .p-button:enabled:focus, .landing-themes .p-splitbutton.p-button-danger > .p-button:not(button):not(a):not(.p-disabled):focus, .landing-themes .p-fileupload-choose.p-button-danger:enabled:focus, .landing-themes .p-fileupload-choose.p-button-danger:not(button):not(a):not(.p-disabled):focus {
box-shadow: 0 0 0 1px #fdc0c0;
}
.landing-themes .p-button.p-button-danger:enabled:active, .landing-themes .p-button.p-button-danger:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-danger > .p-button:enabled:active, .landing-themes .p-buttonset.p-button-danger > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-danger > .p-button:enabled:active, .landing-themes .p-splitbutton.p-button-danger > .p-button:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-danger:enabled:active, .landing-themes .p-fileupload-choose.p-button-danger:not(button):not(a):not(.p-disabled):active {
background: #f95454;
color: #1c2127;
border-color: #f95454;
}
.landing-themes .p-button.p-button-danger.p-button-outlined, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-outlined, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined, .landing-themes .p-fileupload-choose.p-button-danger.p-button-outlined {
background-color: transparent;
color: #FCA5A5;
border: 1px solid;
}
.landing-themes .p-button.p-button-danger.p-button-outlined:enabled:hover, .landing-themes .p-button.p-button-danger.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:hover, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-danger.p-button-outlined:enabled:hover, .landing-themes .p-fileupload-choose.p-button-danger.p-button-outlined:not(button):not(a):not(.p-disabled):hover {
background: rgba(252, 165, 165, 0.04);
color: #FCA5A5;
border: 1px solid;
}
.landing-themes .p-button.p-button-danger.p-button-outlined:enabled:active, .landing-themes .p-button.p-button-danger.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-outlined:enabled:active, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined:enabled:active, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-danger.p-button-outlined:enabled:active, .landing-themes .p-fileupload-choose.p-button-danger.p-button-outlined:not(button):not(a):not(.p-disabled):active {
background: rgba(252, 165, 165, 0.16);
color: #FCA5A5;
border: 1px solid;
}
.landing-themes .p-button.p-button-danger.p-button-text, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-text, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text, .landing-themes .p-fileupload-choose.p-button-danger.p-button-text {
background-color: transparent;
color: #FCA5A5;
border-color: transparent;
}
.landing-themes .p-button.p-button-danger.p-button-text:enabled:hover, .landing-themes .p-button.p-button-danger.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:hover, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:hover, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover, .landing-themes .p-fileupload-choose.p-button-danger.p-button-text:enabled:hover, .landing-themes .p-fileupload-choose.p-button-danger.p-button-text:not(button):not(a):not(.p-disabled):hover {
background: rgba(252, 165, 165, 0.04);
border-color: transparent;
color: #FCA5A5;
}
.landing-themes .p-button.p-button-danger.p-button-text:enabled:active, .landing-themes .p-button.p-button-danger.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-text:enabled:active, .landing-themes .p-buttonset.p-button-danger > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text:enabled:active, .landing-themes .p-splitbutton.p-button-danger > .p-button.p-button-text:not(button):not(a):not(.p-disabled):active, .landing-themes .p-fileupload-choose.p-button-danger.p-button-text:enabled:active, .landing-themes .p-fileupload-choose.p-button-danger.p-button-text:not(button):not(a):not(.p-disabled):active {
background: rgba(252, 165, 165, 0.16);
border-color: transparent;
color: #FCA5A5;
}
.landing-themes .p-button.p-button-link {
color: #93C5FD;
background: transparent;
border: transparent;
}
.landing-themes .p-button.p-button-link:enabled:hover, .landing-themes .p-button.p-button-link:not(button):not(a):not(.p-disabled):hover {
background: transparent;
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-button.p-button-link:enabled:hover .p-button-label, .landing-themes .p-button.p-button-link:not(button):not(a):not(.p-disabled):hover .p-button-label {
text-decoration: underline;
}
.landing-themes .p-button.p-button-link:enabled:focus, .landing-themes .p-button.p-button-link:not(button):not(a):not(.p-disabled):focus {
background: transparent;
box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.5);
border-color: transparent;
}
.landing-themes .p-button.p-button-link:enabled:active, .landing-themes .p-button.p-button-link:not(button):not(a):not(.p-disabled):active {
background: transparent;
color: #93C5FD;
border-color: transparent;
}
.landing-themes .p-datatable .p-paginator-top {
border-width: 1px 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: #071426;
color: rgba(255, 255, 255, 0.6);
border: 1px solid #0b213f;
border-width: 0 0 1px 0;
padding: 1rem 1rem;
font-weight: 700;
}
.landing-themes .p-datatable .p-datatable-footer {
background: #071426;
color: rgba(255, 255, 255, 0.87);
border: 1px solid #0b213f;
border-width: 0 0 1px 0;
padding: 1rem 1rem;
font-weight: 700;
}
.landing-themes .p-datatable .p-datatable-thead > tr > th {
text-align: left;
padding: 1rem 1rem;
border: 1px solid #0b213f;
border-width: 0 0 1px 0;
font-weight: 700;
color: rgba(255, 255, 255, 0.87);
background: #071426;
transition: box-shadow 0.2s;
}
.landing-themes .p-datatable .p-datatable-tfoot > tr > td {
text-align: left;
padding: 1rem 1rem;
border: 1px solid #0b213f;
border-width: 0 0 1px 0;
font-weight: 700;
color: rgba(255, 255, 255, 0.87);
background: #071426;
}
.landing-themes .p-datatable .p-sortable-column .p-sortable-column-icon {
color: rgba(255, 255, 255, 0.6);
margin-left: 0.5rem;
}
.landing-themes .p-datatable .p-sortable-column .p-sortable-column-badge {
border-radius: 50%;
height: 1.143rem;
min-width: 1.143rem;
line-height: 1.143rem;
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
margin-left: 0.5rem;
}
.landing-themes .p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover .p-sortable-column-icon {
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column.p-highlight {
background: rgba(147, 197, 253, 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:not(.p-sortable-disabled):hover {
background: rgba(147, 197, 253, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover .p-sortable-column-icon {
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-sortable-column:focus {
box-shadow: inset 0 0 0 0.15rem rgba(147, 197, 253, 0.5);
outline: 0 none;
}
.landing-themes .p-datatable .p-datatable-tbody > tr {
background: #071426;
color: rgba(255, 255, 255, 0.87);
transition: box-shadow 0.2s;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td {
text-align: left;
border: 1px solid #0b213f;
border-width: 0 0 1px 0;
padding: 1rem 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: 2rem;
height: 2rem;
color: rgba(255, 255, 255, 0.6);
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.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: rgba(255, 255, 255, 0.87);
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus,
.landing-themes .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.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: 700;
}
.landing-themes .p-datatable .p-datatable-tbody > tr > td.p-highlight {
background: rgba(147, 197, 253, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-highlight {
background: rgba(147, 197, 253, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 rgba(147, 197, 253, 0.16);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 rgba(147, 197, 253, 0.16);
}
.landing-themes .p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:focus {
outline: 0.15rem solid rgba(147, 197, 253, 0.5);
outline-offset: -0.15rem;
}
.landing-themes .p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:not(.p-highlight):hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:focus {
outline: 0.15rem solid rgba(147, 197, 253, 0.5);
outline-offset: -0.15rem;
}
.landing-themes .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):not(.p-datatable-emptymessage):hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-datatable .p-column-resizer-helper {
background: #93C5FD;
}
.landing-themes .p-datatable .p-datatable-scrollable-header,
.landing-themes .p-datatable .p-datatable-scrollable-footer {
background: #071426;
}
.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 {
background-color: #071426;
}
.landing-themes .p-datatable .p-datatable-loading-icon {
font-size: 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 1px 1px 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td {
border-width: 1px;
}
.landing-themes .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td {
border-width: 1px;
}
.landing-themes .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
background: rgba(255, 255, 255, 0.01);
}
.landing-themes .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
background: rgba(147, 197, 253, 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-striped .p-datatable-tbody > tr.p-row-odd + .p-row-expanded {
background: rgba(255, 255, 255, 0.01);
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-header {
padding: 0.5rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-thead > tr > th {
padding: 0.5rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
padding: 0.5rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td {
padding: 0.5rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-sm .p-datatable-footer {
padding: 0.5rem 0.5rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-header {
padding: 1.25rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-thead > tr > th {
padding: 1.25rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-tbody > tr > td {
padding: 1.25rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td {
padding: 1.25rem 1.25rem;
}
.landing-themes .p-datatable.p-datatable-lg .p-datatable-footer {
padding: 1.25rem 1.25rem;
}
.landing-themes .p-datatable-drag-selection-helper {
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-column-filter-row .p-column-filter-menu-button,
.landing-themes .p-column-filter-row .p-column-filter-clear-button {
margin-left: 0.5rem;
}
.landing-themes .p-column-filter-menu-button {
width: 2rem;
height: 2rem;
color: rgba(255, 255, 255, 0.6);
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-column-filter-menu-button:hover {
color: rgba(255, 255, 255, 0.87);
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-column-filter-menu-button.p-column-filter-menu-button-open, .landing-themes .p-column-filter-menu-button.p-column-filter-menu-button-open:hover {
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-column-filter-menu-button.p-column-filter-menu-button-active, .landing-themes .p-column-filter-menu-button.p-column-filter-menu-button-active:hover {
background: rgba(147, 197, 253, 0.16);
color: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-column-filter-menu-button:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-column-filter-clear-button {
width: 2rem;
height: 2rem;
color: rgba(255, 255, 255, 0.6);
border: 0 none;
background: transparent;
border-radius: 50%;
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-column-filter-clear-button:hover {
color: rgba(255, 255, 255, 0.87);
border-color: transparent;
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-column-filter-clear-button:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: 0 0 0 0.2rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-column-filter-overlay {
background: #071426;
color: rgba(255, 255, 255, 0.87);
border: 1px solid #0b213f;
border-radius: 6px;
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
min-width: 12.5rem;
}
.landing-themes .p-column-filter-overlay .p-column-filter-row-items {
padding: 0.75rem 0;
}
.landing-themes .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item {
margin: 0;
padding: 0.75rem 1.25rem;
border: 0 none;
color: rgba(255, 255, 255, 0.87);
background: transparent;
transition: box-shadow 0.2s;
border-radius: 0;
}
.landing-themes .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight {
color: rgba(255, 255, 255, 0.87);
background: rgba(147, 197, 253, 0.16);
}
.landing-themes .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover {
color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03);
}
.landing-themes .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus {
outline: 0 none;
outline-offset: 0;
box-shadow: inset 0 0 0 0.15rem rgba(147, 197, 253, 0.5);
}
.landing-themes .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator {
border-top: 1px solid #0b213f;
margin: 0.25rem 0;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-operator {
padding: 0.75rem 1.25rem;
border-bottom: 1px solid #0b213f;
color: rgba(255, 255, 255, 0.87);
background: #071426;
margin: 0;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-constraint {
padding: 1.25rem;
border-bottom: 1px solid #0b213f;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown {
margin-bottom: 0.5rem;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button {
margin-top: 0.5rem;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-constraint:last-child {
border-bottom: 0 none;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-add-rule {
padding: 0.75rem 1.25rem;
}
.landing-themes .p-column-filter-overlay-menu .p-column-filter-buttonbar {
padding: 1.25rem;
}
.landing-themes .p-paginator {
background: #071426;
color: rgba(255, 255, 255, 0.6);
border: solid #0b213f;
border-width: 1px;
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: rgba(255, 255, 255, 0.6);
min-width: 3rem;
height: 3rem;
margin: 0.143rem;
transition: box-shadow 0.2s;
border-radius: 6px;
}
.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: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-paginator .p-paginator-first {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.landing-themes .p-paginator .p-paginator-last {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.landing-themes .p-paginator .p-dropdown {
margin-left: 0.5rem;
height: 3rem;
}
.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: 3rem;
}
.landing-themes .p-paginator .p-paginator-current {
background-color: transparent;
border: 0 none;
color: rgba(255, 255, 255, 0.6);
min-width: 3rem;
height: 3rem;
margin: 0.143rem;
padding: 0 0.5rem;
}
.landing-themes .p-paginator .p-paginator-pages .p-paginator-page {
background-color: transparent;
border: 0 none;
color: rgba(255, 255, 255, 0.6);
min-width: 3rem;
height: 3rem;
margin: 0.143rem;
transition: box-shadow 0.2s;
border-radius: 6px;
}
.landing-themes .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
background: rgba(147, 197, 253, 0.16);
border-color: rgba(147, 197, 253, 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: rgba(255, 255, 255, 0.87);
}
.landing-themes .p-button-label {
font-weight: 700;
}
.landing-themes .p-accordion .p-accordion-header .p-accordion-header-link {
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-tabview .p-tabview-nav li .p-tabview-nav-link {
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.landing-themes .p-tabview .p-tabview-nav .p-tabview-ink-bar {
z-index: 1;
display: block;
position: absolute;
bottom: 0;
height: 2px;
background-color: #93C5FD;
transition: 500ms cubic-bezier(0.35, 0, 0.25, 1);
}
.landing-themes .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
background-color: #93C5FD;
}
.landing-themes .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
background-color: #93C5FD;
}
.landing-themes .p-button:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(165, 180, 252, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-button.p-button-secondary:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(203, 213, 225, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-button.p-button-success:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(134, 239, 172, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-button.p-button-info:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(147, 197, 253, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-button.p-button-warning:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 211, 77, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-button.p-button-help:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(216, 180, 254, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-button.p-button-danger:enabled:focus {
box-shadow: 0 0 0 2px #1c2127, 0 0 0 4px rgba(252, 165, 165, 0.7), 0 1px 2px 0 rgba(0, 0, 0, 0);
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
box-shadow: inset 0 2px 0 0 #93C5FD;
}
.landing-themes .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
box-shadow: inset 0 -2px 0 0 #93C5FD;
}