﻿:root {
    --as-extra: #696cff;
    --as-extra-rgb: 105,108,255;
}

html {
    color: rgb(96, 98, 102);
    font-size: 1rem;
}

body {
    background-color: #F6F7FC;
}

#app {
    position: relative;
    display: flex;
    flex-direction: column;
}

#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: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.6;
}

img{
    width: 100%;
    max-width:100%;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

#page-body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.header-profile-image img {
    width: 2.25em;
    border-radius: 50%;
    margin-right: .25rem;
}

.main-hamburger {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
}

.header-menu {
    padding: 0;
}
.header-menu li {
    padding: 0.25em 0
}

.header-menu li:hover {
    background-color: #f5f5f5
}

.header-menu-links li a {
    color: rgb(114, 119, 122);
    font-size: 0.875em;
}

.header-menu-links li a svg {
    font-size: 0.85em;
}

.header-button {
    border: none;
    background-color: transparent;
    color: #72777a;
    -webkit-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}

    .header-button.show,
    .header-button:hover {
        background-color: rgba(0,0,0,.04);
        color: #313435
    }

.no-after:after,
.no-before:before {
    display: none !important
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.link-icon-light {
    color: #0af;
    text-decoration: none !important;
}

.info-text {
    color: #828282;
}

/*Cards*/
.card-title {
    color: #333;
    margin-bottom: .5rem;
}

    .card-title:hover {
        text-decoration: none;
        color: #489acc;
    }

/*bg-color*/
.bg-extra {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--as-extra-rgb),var(--bs-bg-opacity)) !important
}

/*Tables*/
.table{
    margin:0;
}

@media (min-width: 1200px) {
    .table-sticky tr > *:first-child {
        position: sticky;
        left: 0;
    }
}
/*Validations*/
.validation-message,
.validation-message-nested span
{
    background: var(--bs-warning-bg-subtle);
    color: var(--bs-warning-text-emphasis);
    padding: 0.5rem 1rem;
    border: var(--bs-border-width) solid var(--bs-warning-border-subtle);
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    display: block;
}

/*Input file*/
.form-control-file {
    padding: .375rem .75rem;
    margin: 0;
    color: var(--bs-body-color);
    border: var(--bs-border-width) solid var(--bs-border-color);
    background-color: var(--bs-tertiary-bg);
    border-inline-end-width: var(--bs-border-width);
    border-radius: var(--bs-border-radius);
    /*transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/
    white-space: nowrap;
    text-wrap: nowrap;
    cursor: pointer;
}

    .form-control-file:hover {
        background-color: var(--bs-secondary-bg)
    }

.form-control-file-info {
    padding: .375rem .75rem;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    white-space: nowrap;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url(/assets/fonts/Raleway-Regular.ttf) format('truetype');
}