﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('ico-font.css');

@font-face {
    font-family: 'CocoSharpINFONIQA';
    src: url('fonts/CocoSharp_Infoniqa/CocoSharpLRegular.woff2') format('woff2');
}
@font-face {
    font-family: 'CocoSharpINFONIQA-Bold';
    src: url('fonts/CocoSharp_Infoniqa/CocoSharpLBold.woff2') format('woff2');
}
@font-face {
    font-family: 'CocoSharpINFONIQA-ExtraBold';
    src: url('fonts/CocoSharp_Infoniqa/CocoSharpXLExtrabold.woff2') format('woff2');
}

:root {
    /* Colors: */
    --gold: #E1B500;
    --amethyst: #582D83;
    --aegean: #0077C8;
    --mint: #00A376;
    --fuchsia: #CE0058;
    --azul: #004B87;
    --plum: #8246AF;
    --accessible-green: #009900;
    --slate-ultrahell: #EDF3F6;
    --slate-hell: #90A3AB;
    --slate: #003349;
    --black: #000000;
    --white: #FFFFFF;
    --brilliant-green: #00DC00;
    --infoniqa-blue: #0b3f7a;
    --infoniqa-royalblue: #1681fb;
    --infoniqa-lightblue: #e7f2ff;
    --infoniqa-grey: #4a4a49;
    --infoniqa-green: #89A526;
    --menu-circle: white;
    --menu-hover: #1681fb;
    --hover-gray: #ebebeb;
    --text-color: #4a4a49;
}
html, body {
    font-family: 'CocoSharpINFONIQA', Trebuchet MS, Arial, sans-serif;
    font-size: 16px;
    color: var(--text-color);
}


button:hover {
    background-color: var(--hover-gray);
}
.high-zindex {
    z-index: 654321;
}
.hidden {
    display: none;
}
.form-window {
    max-height: 100vh;
    max-width: 100vw;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 100000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.stretch {
    flex-grow: 1;
}

input[type="file"] {
    display: none;
}
.page-header .page-controls button {
    padding: 14px 20px;
}

/* begin Telerik custom styles */
.k-button {
    font-size: 16px;
}
.k-window-content {
    padding: 30px;
}
/* end Telerik custom styles */

/* panels */
.panel {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.panel-header h3 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.form-check {
    margin-bottom: 0.75rem;
}

/* Custom class for indented small text */
.small-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.fcol {
    overflow-wrap: break-word;
    word-break: break-word;
}

#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    text-align: left;
    font-family: 'Arial', sans-serif;
}

#loading-message {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}