﻿.invalid {
    border: solid 1px red;
}

.valid {
    border: solid 1px green;
}

/* overgrid container */
.GridContainer {
    border: 1px solid #dee2e6;
}

table.is-fixed {
    /*border: solid 1px lightgray;*/
}

table.is-fixed > thead,
.tablebox-header {
    background-color: #3273dc !important;
}

table.is-fixed td > div:first-child:not(.grid-dropdown) {
}

tbody.no-data td {
}

body {
}

.table {
    margin-bottom: 0 !important;
}

.table.is-hoverable tbody tr:hover:nth-child(even) {
    background-color: whitesmoke !important;
}

.table.is-hoverable tbody tr:hover:nth-child(odd) {
    background-color: #fff !important;
}

.required-field,
.show-required,
.show-required-asterisk {
    color: #00f;
}

.show-required-asterisk {
}

span small {
    color: #888;
}

.autocomplete .dropdown-menu {
}

.autocomplete input::-ms-clear {
}

html {
}

.rasfooter {
}

.navbar-light .navbar-nav .nav-link {
    color: #000 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    font-weight: 900 !important;
}

div.free-trial {
    color: #888;
}

div.tab-body {
    border: solid 1px #dee2e6;
}

.tab-item {
    border-color: #e9ecef #e9ecef #dee2e6 !important;
}

.tab-iframe {
}

.assigned-items {
}

.assigned-panel {
}

.assigned-buttons {
}

.assigned-header {
}

.assigned-listbox {
}

.assigned-buttons button {
}


.drag-drop-zone {
    border: 3px dashed #e68710;
    background-color: #eee;
    color: #aeaeae;
}

.drag-drop-zone:hover {
    background-color: #f5f5f5;
}

.drag-drop-zone input[type=file] {
}

.drag-drop-zone.is-danger {
    border-color: red;
}

.drag-drop-zone-small {
    border: 3px dashed #e68710;
    background-color: #eee;
    color: #aeaeae;
}

.drag-drop-zone-small:hover {
    background-color: #f5f5f5;
}

.drag-drop-zone-small input[type=file] {
}

.drag-drop-zone-small.is-danger {
    border-color: red;
}


.modal-small {
}

.modal-large {
}

.modal-xlarge {
}

.modal-massive {
}

.model-enormous {
}

/* ====================================== 
   MESSAGEBOX COMPONENT SYSTEM
   ====================================== */

/* Base MessageBox Container */
.messagebox-base {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.messagebox-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.messagebox-base:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* MessageBox Icon */
.messagebox-icon {
    font-size: 2rem;
    margin-bottom: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.messagebox-base:hover .messagebox-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* MessageBox Title */
.messagebox-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

/* MessageBox Description */
.messagebox-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0;
}

/* MessageBox Button Container */
.messagebox-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem; /* 10px gap between buttons */
    flex-wrap: wrap;
}

.messagebox-buttons .button {
    margin: 0; /* Reset any default margins since we're using gap */
}

/* ====================================== 
   MESSAGEBOX TYPE VARIANTS
   ====================================== */

/* Action Required - Blue/Info */
.messagebox-action {
    background: linear-gradient(135deg, #bbdefb 0%, #64b5f6 100%);
    border: 2px solid #2196f3;
    color: #0d47a1;
}

.messagebox-action::before {
    background: linear-gradient(90deg, #2196f3 0%, #1976d2 100%);
}

.messagebox-action:hover {
    background: linear-gradient(135deg, #90caf9 0%, #42a5f5 100%);
}

/* Warning - Orange */
.messagebox-warning {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffb74d 100%);
    border: 2px solid #ff9800;
    color: #bf360c;
}

.messagebox-warning::before {
    background: linear-gradient(90deg, #ff9800 0%, #f57c00 100%);
}

.messagebox-warning:hover {
    background: linear-gradient(135deg, #ffcc80 0%, #ffa726 100%);
}

/* Success - Green */
.messagebox-success {
    background: linear-gradient(135deg, #c8e6c9 0%, #81c784 100%);
    border: 2px solid #4caf50;
    color: #1b5e20;
}

.messagebox-success::before {
    background: linear-gradient(90deg, #4caf50 0%, #388e3c 100%);
}

.messagebox-success:hover {
    background: linear-gradient(135deg, #a5d6a7 0%, #66bb6a 100%);
    border-color: #388e3c;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Waiting - Gray */
.messagebox-waiting {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 2px solid #9e9e9e;
    color: #424242;
}

.messagebox-waiting::before {
    background: linear-gradient(90deg, #9e9e9e 0%, #757575 100%);
}

.messagebox-waiting:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
}

/* Disabled - Warning-like but muted */
.messagebox-disabled {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    color: #e65100;
}

.messagebox-disabled::before {
    background: linear-gradient(90deg, #ff9800 0%, #f57c00 100%);
}

.messagebox-disabled:hover {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
}

/* Error/Danger - Red */
.messagebox-error {
    background: linear-gradient(135deg, #fecaca 0%, #f87171 100%);
    border: 2px solid #ef4444;
    color: #991b1b;
}

.messagebox-error::before {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.messagebox-error:hover {
    background: linear-gradient(135deg, #fca5a5 0%, #dc2626 100%);
}

/* Info - Light Blue */
.messagebox-info {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    border: 2px solid #3b82f6;
    color: #1e3a8a;
}

.messagebox-info::before {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.messagebox-info:hover {
    background: linear-gradient(135deg, #bfdbfe 0%, #60a5fa 100%);
}

/* Empty State - Default neutral */
.messagebox-empty {
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    border: 2px solid #d1d5db;
    color: #374151;
}

.messagebox-empty::before {
    background: linear-gradient(90deg, #d1d5db 0%, #9ca3af 100%);
}

.messagebox-empty:hover {
    background: linear-gradient(135deg, #f0f1f3 0%, #9ca3af 100%);
    border-color: #9ca3af;
}

/* ====================================== 
   MESSAGEBOX SIZE VARIANTS
   ====================================== */

/* Large messagebox for dialogs */
.messagebox-large {
    padding: 4rem 2rem;
    min-height: 200px;
}

.messagebox-large .messagebox-icon {
    font-size: 4rem;
    margin-bottom: 0;
}

.messagebox-large .messagebox-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.messagebox-large .messagebox-description {
    font-size: 0.9rem;
}

/* Small messagebox for KPI cards */
.messagebox-small {
    padding: 1rem;
    gap: 0.75rem;
}

.messagebox-small .messagebox-icon {
    font-size: 3rem;
    margin-bottom: 0;
}

.messagebox-small .messagebox-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.messagebox-small .messagebox-description {
    font-size: 0.875rem;
}

.ac-stack {
}

.ac-stack .ac-icon {
}

.modal-card-foot {
    background: #fff !important;
}

.modal-card-foot .control {
}

.ras-card .image img
{
}

.ras-card .card-image
{
}

ul.menu-list a:hover {
    color: #4a4a4a;
}

.menu-list li ul {
}

.menu-list li ul li
{
}

a.disabled {
    color: #7a7a7a;
}

p.menu-label {
}

.menu-label-cat
{
}

.no-pointer
{
}

.pointer
{
}

p.menu-label-sub {
    color: #7a7a7a;
}

.menu-list a {
}

.menu {
}

.menu div.columns {
}

.menu div.columns:hover {
}

.menu div.column {
}

.menu span.icon {
    color: #7a7a7a;
}

.menu-list a.selected {
}

.has-min-page-height {
}

a.is-hoverable:hover {
}

.hero.is-small .hero-body {
}

div.notification.is-small {
}

article.message.is-small
{
}

article.message.is-small div.message-body {
}

.clearbox {
    background: none;
    color: red;
}

.clearbox:hover {
    color: red;
}

.is-half-width {
}

.checkboxlist
{
/*    border: solid 1px black;*/
    padding: 5px 5px 5px 15px;
}

input.secure {
}

/* Toast container positioning - top right */
.toast-container {
	z-index: 7500000 !important;
	display: flex;
	flex-direction: column !important;
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: auto !important;
	left: auto !important;
}

/* Toast positioning and animation */
.toast {
	display: flex;
	position: relative;
	flex-direction: row;
	animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	margin-top: 1rem !important;
	margin-right: 1rem !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
	width: 350px;
	max-width: 350px;
	min-width: 350px;
	z-index: 7500000;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Slide-in animation */
@keyframes toastSlideIn {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Closing animation - triggered by JS */
.toast.toast-closing {
	animation: toastSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes toastSlideOut {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(100%);
	}
}

/* Hover effect */
.toast:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	transform: translateX(-4px);
	transition: all 0.2s ease;
}

/* Close button styling */
.toast .toast-close {
	position: absolute !important;
	top: 0.75rem !important;
	right: 0.75rem !important;
	z-index: 1 !important;
	background: rgba(255, 255, 255, 0.3) !important;
	border-radius: 50% !important;
	transition: all 0.2s ease !important;
	width: 20px !important;
	height: 20px !important;
}

.toast .toast-close:hover {
	background: rgba(255, 255, 255, 0.5) !important;
	transform: scale(1.15) rotate(90deg) !important;
}

.toast .toast-close::before,
.toast .toast-close::after {
	background-color: #4a4a4a !important;
}

.level-link {
    color: #3273dc;
}

.level-link:hover, .level-selected {
    color: #363636;
}

@keyframes ldio-meipc19b1el 
{
    0%
    {
        transform: rotate(0)
    }

    100% 
    {
        transform: rotate(360deg)
    }
}

.ldio-meipc19b1el div {
    box-sizing: border-box !important
}

.ldio-meipc19b1el > div {
    position: absolute;
    width: 95.93px;
    height: 95.93px;
    top: 42.535000000000004px;
    left: 42.535000000000004px;
    border-radius: 50%;
    border: 16.29px solid #000;
    border-color: #1c75bc transparent #1c75bc transparent;
    animation: ldio-meipc19b1el 2.564102564102564s linear infinite;
}

.ldio-meipc19b1el > div:nth-child(2) {
    border-color: transparent
}

.ldio-meipc19b1el > div:nth-child(2) div {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.ldio-meipc19b1el > div:nth-child(2) div:before, .ldio-meipc19b1el > div:nth-child(2) div:after {
    content: "";
    display: block;
    position: absolute;
    width: 16.29px;
    height: 16.29px;
    top: -16.29px;
    left: 23.53px;
    background: #1c75bc;
    border-radius: 50%;
    box-shadow: 0 79.64px 0 0 #1c75bc;
}

.ldio-meipc19b1el > div:nth-child(2) div:after {
    left: -16.29px;
    top: 23.53px;
    box-shadow: 79.64px 0 0 0 #1c75bc;
}

.loadingio-spinner-dual-ring-9ctldl8tq0s {
    width: 181px;
    height: 181px;
    display: inline-block;
    overflow: hidden;
    background: #ffffff;
}

.ldio-meipc19b1el {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
}

.ldio-meipc19b1el div {
    box-sizing: content-box;
}

.richtexteditor .toolbar a {
    color: black;
}

.richtexteditor .toolbar a:hover {
    background-color: whitesmoke;
}

.richtexteditor .toolbar .divide {
    border-left: 1px solid black;
}

.richtexteditor .toolbar .toggled {
    background-color: lightgrey;
}

.richtexteditor .dropdownmenu {
}

.richtexteditor .dropdownmenu-content {
    background-color: #f9f9f9;
}

.richtexteditor .dropdownmenu-content.show-content {
}

.richtexteditor .dropdownmenu-content a:hover {
}

.richtexteditor .editor {
    border: 1px solid black;
}

.richtexteditor .editor blockquote {
    background-color: lightgray;
}

.richtexteditor .editor ul,
.richtexteditor .editor ol {
    margin-left: 20px;
}

.sidebar-left {
    background: whitesmoke;
    border-right: solid 1px lightgrey;
    border-top: solid 1px lightgrey;
}

.sidebar-right {
    border-top: solid 1px lightgrey;
}

.box.sidebar {
}

.fake-label {
    color: #363636;
}

.disabled-ctrl {
}

.dialog-overflow {
}

.grid-dropdown {
}

.grid-dropdown .dropdown-menu {
}

.grid-dropdown .dropdown-item {
}

.grid-dropdown .dropdown-item:not(.dropdown-no-hover) {
}

.grid-dropdown .dropdown-content {
}

.grid-dropdown div.dropdown-item span ~ span {
    color: #4a4a4a;
}

.grid-dropdown div.dropdown-item:not(.dropdown-no-hover):hover {
    background-color: whitesmoke;
    color: #0a0a0a;
}

.grid-dropdown div.dropdown-content:hover {
}

.input:hover {
}

.input {
}


.picker__select--year,
.picker__select--month {
    background-color: white;
    border-color: #dbdbdb;
    color: #363636;
}

.picker__holder {
    border-color: transparent;
}

.picker__day--infocus:hover,
.picker__day--outfocus:hover,
.picker__nav--prev:hover,
.picker__nav--next:hover {
    background: inherit !important;
}

.picker__nav--next:hover:before {
   border-left-color: black;
}

.picker__nav--prev:hover:before {
    border-right-color: black;
}

.picker__day--selected {
    background: whitesmoke !important;
    color: black !important;
    border: 1px solid #dbdbdb;
}

a.no-link {
}

div.is-one-third .picker {
}

div.is-one-third > .field > .control > input.datebox {
}

div.searchable {
}

a.searchable {
}

a.searchable-advanced {
}

div.date-search-box div.picker__holder {
}

a.navbar-item:hover {
}

div.navbar-item {
    color: darkgray !important;
}

.navbar-item.is-active {
}

.navbar-item {
}

.navbar-dropdown.is-right {
}

.navbar-dropdown {
}

.slide-panel {
}

.slide-panel-slide-in {
}

.slide-panel-slide-out {
}

.slide-panel .modal-card-foot {
}

.table thead th {
    color: #fff;
}

.table thead {
    background-color: #1c75bc !important;
}

input[type=number]:invalid {
    color: red;
    border-color: red;
}
