﻿@import url('material-icons/iconfont/sharp.css');
@import url('fonts/fonts.css');


/* General layout ----------------------------------------------------------------------------------------------------*/

:root {
    --bs-body-font-size: min(max(11px, 0.8vw), 14px);

    --content-width: 1600px;
    --sidebar-width: min(max(250px, 25%), 300px);
    --bs-danger-rgb: 205, 46, 10;

    --color-cosin: #e75c12;
    --color-border: #ced4da;
}

body, html {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    font-family: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

body:before {
    content: ' ';
    position: fixed;
    top: 5rem;
    left: 0;
    width: min(55%, 900px);
    height: max(100%, 50vw);
    background-image: url('/image/wireframe.png');
    opacity: 0.1;
    background-size: cover;
    background-position: top right;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index:10;
}

.top-bar {
    background-image: linear-gradient(160deg, #111 0%, #222 70%, #000);
    height: 4rem;
    align-items: center;
}

.top-bar-container {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 540px) {
    .top-bar-container {
        padding: 0 0.5rem;
    }
}

.top-bar-container > div {
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
}

img.logo {
    height: 50px;
    margin-left: -3px;
}

@media (max-width: 540px) {
    img.logo {
        height: 26px;
        margin-left: 0;
    }
}

nav {
    background: #f0f0f0;
    height: 3rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
}

nav .nav-container {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem 0 1rem;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 540px) {
    nav .nav-container {
        padding: 0 0.5rem 0 0;
    }
}

nav .nav-container > div {
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
}

nav .nav-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    color: black !important;
    text-decoration: none;
    font-size: 1.1em;
}

@media (max-width: 540px) {
    nav .nav-link {
        padding: 0.4rem 0.5rem;
    }
}

nav .nav-link:focus, nav .nav-link:hover {
    color: var(--color-cosin);
}

nav .nav-link.active {
    color: var(--color-cosin) !important;
}

nav .nav-link.disabled {
    opacity: 0.3;
}

span.divider {
    border-left: solid 1px #aaa;
    color: transparent;
    display: inline;
}

.user-notification {
    display: inline-block;
    margin-left: 0.2em;
    vertical-align: middle;
}

.user-notification-badge {
    display: inline-block;
    cursor: pointer;
}

.user-notification-badge .badge-indicator {
    display: block;
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    border: solid 1px #aaa;
    filter: blur(0.5px);
}

.user-notification-badge.small {
    cursor: default;
    vertical-align: middle;
    margin-bottom: 0.2em;
}

.user-notification-badge.small .badge-indicator {
    width: 0.5em;
    height: 0.5em;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        filter: blur(0.5px);
    }
    50% {
        transform: scale(1.4);
        filter: blur(2px);
    }
    100% {
        transform: scale(1);
        filter: blur(0.5px);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
        filter: blur(0.5px);
    }
    50% {
        opacity: 0.4;
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        filter: blur(0.5px);
    }
}

.user-notification-badge .badge-indicator.full,
.user-notification-badge .badge-indicator.new {
    background-color: #aaa;
    border-color: #aaa;
    animation: pulsate 0.5s ease-in-out;
}

.user-notification-badge .badge-indicator.finished {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
    animation: pulsate 0.5s ease-in-out;
}

.user-notification-badge .badge-indicator.active {
    background-color: var(--bs-info);
    border-color: var(--bs-info);
    animation: blink 2s ease-in-out infinite;
}

.user-notification-badge .badge-indicator.warning {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
    animation: pulsate 0.5s ease-in-out;
}

.user-notification-badge .badge-indicator.error {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
    animation: pulsate 0.5s ease-in-out;
}

.notification-panel {
    position: fixed;
    right: 0;
    top: 7rem;
    height: calc(100vh - 9rem);
    overflow: auto;
    width: 25em;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
}

.notification-panel .panel-header {
    position: sticky;
    top: 0;
    box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    background: rgb(251 246 232 / 91%);
    text-align: right;
    padding: 0.5em 0.5em 0.5em 1em;
    margin-bottom: 0.5rem;
    z-index: 3;
}

.panel-header:before {
    content: ' ';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: linear-gradient(0deg, rgba(235, 235, 235, 0.9), rgba(220, 220, 220, 0.8));
    z-index: 2;
}


.panel-header .delete-all-messages {
    font-size: 0.8em;
    top: -0.1em;
    position: relative;
}
.notification {
    padding: 0.5em 0.5em 0.5em 1em;
    margin-bottom: 0.5rem;
    box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    background: rgb(251 246 232 / 91%);
    white-space: normal;
}

main {
    position: absolute;
    top: 7rem;
    bottom: calc(1.5em + 1rem);
    width: 100%;
    overflow: auto;
}

main .main-container {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2rem;
}

footer {
    position: absolute;
    text-align: center;
    color: #919191;
    bottom: 0;
    height: calc(1.5em + 1rem);
    line-height: 1.5em;
    padding-top: 0.5rem;
    width: 100%;
    background: white;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
    font-size: max(0.7em, 10px);
}

footer footer.block1, footer .block2, footer .block1-1, footer .block1-2, footer .block2-1, footer .block2-2 {
    white-space: nowrap;
    display: inline;
}

footer .linkedin {
    height: 15px;
    vertical-align: middle;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    opacity: 0.6;
}


footer .linkedin:hover {
    opacity: 1;
    filter: none;
    -webkit-filter: none;
}

aside.sidebar {
    position: fixed;
    top: 9rem;
    left: max(2rem, calc(50vw - var(--content-width) / 2 + 2rem));
    width: var(--sidebar-width);
    z-index: 1;
}

.sidebar-container {
    box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.1);
    background: white;
    overflow: auto;
}

.sidebar-toggle { display: none; }

.sidebar-titlebar {
    background-image: linear-gradient(160deg, #111 0%, #222 70%, #000) !important;
    color: white;
    padding: .3rem 1rem !important;
    line-height: 1.8em;
    font-size: 1.3em;
    display: flex;
    align-items: center;
}

.sidebar-title
{
    flex-grow: 1;
}

.sidebar-close {
    text-align: right;
    margin-right: -.75rem;
}

.sidebar-close button {
    color: white;
    border: none;
    background: transparent !important;
    padding: 0.1rem 0.5rem;
}

.sidebar-content {
    padding: .5rem 1rem !important;
    max-height: calc(100vh - 14rem);
}

.sidebar-content .sidebar-titlebar {
    margin: -.5rem -1rem 0 !important;
}

.sidebar-content .sidebar-titlebar .btn.btn-light {
    color: white;
}

.sidebar .nav-link {
    display: block;
    margin: 0 -1rem;
    padding: .4rem 1rem;
    color: black !important;
    text-decoration: none;
}

.sidebar .nav-link:focus, nav .nav-link:hover {
    color: var(--color-cosin);
}

.sidebar a.nav-link.active {
    background: #eee;
}

.sidebar .nav-link:hover {
    text-decoration: underline;
}

.sidebar hr {
    margin: 0.2rem -1rem;
    background-color: #eee;
    border: 0;
    opacity: 1;
}

section.content {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100%;
    bottom: calc(1.5em + 1rem);
    overflow: auto;
    padding: 2rem 0;
}

section.content.hidden {
    display: none;
}

section.content .content-container {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem 0 2rem;
}

aside.sidebar ~ section.content .content-container{
    padding: 0 1.5rem 0 calc(var(--sidebar-width) + 4rem);
}

.content-title {
    color: black;
    padding: .1rem 0 !important;
    font-size: 1.3em;
    line-height: 1.8em;
    display: flex;
    align-items: baseline;
}

.content-title > * {
    flex: 1 0 0;
}

.content-title > div {
    font-size: var(--bs-body-font-size);;
}

.content-title > div:first-child {
    font-size: 1em;
    line-height: 1.8em;
    text-align: left !important;
}

.content-title > div:last-child {
    text-align: right;
}

.content-box.tile .content-title {
    padding: .3rem 1rem 0.1rem !important;
}

.content-box.tile .content-body {
    padding: 1rem;
}

.content-box.tile .content-body .content-title {
    padding: 0 0 1rem !important;
    margin-top: -0.7rem;
}


.row {
    --bs-gutter-x: 0rem;
}

.row.g-1 {
    --bs-gutter-x: 0.5rem;
}

.row.g-2 {
    --bs-gutter-x: 1rem;
}

.row.g-3 {
    --bs-gutter-x: 1.5rem;
}

.row.g-4 {
    --bs-gutter-x: 2rem;
}

.col-10 {
    flex: 0 0 10%;
    max-width: 10%;
}

.col-20 {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-30 {
    flex: 0 0 30%;
    max-width: 30%;
}

.col-40 {
    flex: 0 0 40%;
    max-width: 40%;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-50 {
    flex: 0 0 60%;
    max-width: 60%;
}

.col-70 {
    flex: 0 0 70%;
    max-width: 70%;
}

.col-80 {
    flex: 0 0 80%;
    max-width: 80%;
}

.col-90 {
    flex: 0 0 90%;
    max-width: 90%;
}

.max750 {
    max-width: 750px;
}

a,
.btn-link {
    cursor: pointer;
    text-decoration: none;
}

a:not(.btn):not(.nav-link), a:not(.btn):not(.nav-link):hover,
.btn-link, .btn-link:hover {
    color: var(--color-cosin);
}

.text-cosin {
    color: var(--color-cosin);
}

span.nav-badge {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    background: var(--color-cosin);
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 0.4em;
    margin-bottom: 0.2em;
}

.text-hidden {
    color: var(--bs-gray-500);
}

.selectable {
    user-select: text;
}

a:hover,
.btn-link:hover {
    text-decoration: underline;
}

.em-1 {
    width: 1em;
    max-width: 1em;
}

.em-2 {
    width: 2em;
    max-width: 2em;
}

.em-3 {
    width: 3em;
    max-width: 3em;
}

.minimal {
    width: 1%;
    max-width: 1%;
}

.vertical-top {
    vertical-align: top;
}

.vertical-middle {
    vertical-align: middle;
}

.vertical-bottom {
    vertical-align: bottom;
}

/* Tile --------------------------------------------------------------------------------------------------------------*/

.tile {
    box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.1);
    background: white;
}

.tile + .tile {
    margin-top: 1.5rem !important;
}

/* Main dropzone -----------------------------------------------------------------------------------------------------*/

.main-dropzone.hover {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: copy;
}

.main-dropzone.hover:after {
    position: fixed;
    content: ' ';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    pointer-events: none;
}


.main-dropzone.hover.busy {
    width: 100%;
    height: 100%;
}

.main-dropzone.hover.busy:before {
    content: '.';
    border-width: 0.5em;
    border-style: solid;
    border-color: var(--color-cosin) rgba(243, 243, 243, 0.1) rgba(243, 243, 243, 0.1);
    border-image: initial;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    display: inline-block;
    margin: 2rem 0;
    top: calc(50% - 2em);
    left: calc(50% - 2em);
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10000;
    animation: rotation 1s linear infinite;
}

.main-dropzone.hover .file-drop-zone {
    pointer-events: none;
}

/* Typography --------------------------------------------------------------------------------------------------------*/

h1:focus {
    outline: none;
}

.small, small {
    font-size: max(.8em, 12px);
    color: #888;
}

.small.mini, small.mini {
    font-size: .6em;
}


/* Icons -------------------------------------------------------------------------------------------------------------*/

.material-icons-sharp {
    font-size: 22px;
    vertical-align: text-bottom;
    position: relative;
    padding-top: 1px;
    padding-left: 1px;
    margin-bottom: 1px;
}

.material-icons-sharp.icon-xs {
    font-size: 14px;
}

.material-icons-sharp.icon-sm {
    font-size: 18px;
}

.material-icons-sharp.icon-md {
    font-size: 22px;
}

.material-icons-sharp.icon-lg {
    font-size: 26px;
}

.material-icons-sharp.icon-xl {
    font-size: 30px;
}

/* Content blocks ----------------------------------------------------------------------------------------------------*/

.content-block {
    margin-bottom: 2rem;
}

.content-block.admin-edit {
    padding: 3px;
    margin: -3px -3px 1.5rem -3px;
    border: solid 1px #eee;
}

.content-key {
    font-size: 10px;
    padding: 1px 3px;
    background: #eee;
    color: var(--color-cosin);
    width: auto;
    margin-top: 2px;
    margin-bottom: 10px;
    display: inline-block;
    margin-left: -2px;
}

/* Window ------------------------------------------------------------------------------------------------------------*/

.window-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.6);
}

.window-header {
    background: black;
    padding: 15px 15px 15px 20px;
    color: white;
    height: 60px;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    border: solid 1px #888;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.window-header-content {
    flex-grow: 99;
    display: flex;
    justify-content: space-between;
}

.window-close {

}

.window-close button {
    color: white;
    border: none;
    background: transparent !important;
}

.window-content {
    border: solid 1px #888;
    background-color: #fff;
    padding: 20px;
    overflow: auto;
    position: absolute;
    top: 79px;
    bottom: 20px;
    right: 20px;
    left: 20px;
}

.window-content object {
    margin: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    position: absolute;
}

/* Group -------------------------------------------------------------------------------------------------------------*/

.group {
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 1rem;
}

.group > * {
    flex: 1 0 0;
}

.group:last-child {
    margin-bottom: 0;
}

/* Progress bar ------------------------------------------------------------------------------------------------------*/

progress {
    height: 5px;
    max-width: 200px;
    min-width: 100px;
    width: 13vw;
    margin: 0 10px;
    vertical-align: middle;
}

progress.finished[value] {
    --progress-color: limegreen;
}

progress[value] {
    --progress-color: var(--color-cosin);
    --progress-background: lightgrey;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 10em;
    background: var(--progress-background);
    height: 3px;
}

progress[value]::-webkit-progress-bar {
    border-radius: 10em;
    background: var(--progress-background);
}

progress[value]::-webkit-progress-value {
    border-radius: 10em;
    background: var(--progress-color);
}

progress[value]::-moz-progress-bar {
    border-radius: 10em;
    background: var(--progress-color);
}

/* Table layout-------------------------------------------------------------------------------------------------------*/

div.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

div.thead,
div.tbody {
    display: table-row-group;
}

div.tr {
    display: table-row;
    position: relative;
}

div.th,
div.td {
    display: table-cell;
    padding: 0.5rem;
}

.table-wrapper {
    max-width: 100%;
    border-width: 1px 0;
    border-style: solid;
}

.table {
    background: white;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.table-wrapper.scrollable  {
    overflow-x: auto;
}

.table-striped>.tbody>.tr:nth-of-type(odd),
.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-wrapper *:not(input) {
    border: none;
}

.table-wrapper.table-bordered {
    border: solid 1px var(--color-border);
}

.table-bordered .td,
.table-bordered .th,
.table-bordered td,
.table-bordered th {
    border-bottom: solid 1px var(--color-border) !important;
    border-right: solid 1px var(--color-border);
}

.table-bordered .td:last-child,
.table-bordered .th:last-child,
.table-bordered td:last-child,
.table-bordered th:last-child {
    border-right: none;
}

.table-bordered .tr:last-child .td,
.table-bordered tr:last-child td {
    border-bottom: none !important;
}

.table.hoverable .tr:hover:after,
.table.hoverable tr:hover:after {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border: solid 1px var(--color-cosin);
    opacity: 0.5;
}

.table>:not(caption)>*>* {
    box-shadow: none;
}

.table-sm>:not(caption)>*>* {
    padding: 1px 0.25rem;
}

.table .tr {
    background-color: var(--bs-table-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.tr,
tr {
    line-height: 2;
    cursor: default;
}

.th,
th {
    font-weight: normal;
}

.th a {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: black !important;
}

.table.table-disabled .td,
.tr.table-disabled .td,
.td.table-disabled,
table.table-disabled td,
tr.table-disabled td,
td.table-disabled
{
    color: #aaa;
}

.tr.table-group,
 tr.table-group {
    background: antiquewhite;
}

.table-group {
    padding: 0.2rem 0.25rem;
    width: 1px;
}

.table-group + .tr > .td {
    border-top: solid 1px var(--color-border);
}

.table-space,
tr.table-space th {
    background: transparent;
    box-shadow: none;
    border: none;
}

.table-space {
    height: 0.5em;
}

.td.minimal,
td.minimal {
    width: 1%;
}

.th .form-check-input,
.td .form-check-input,
th .form-check-input,
td .form-check-input {
    vertical-align: baseline;
    position: relative;
}

.form-check-input.inline {
    vertical-align: sub;
    position: relative;
}

.td button:last-of-type,
td button:last-of-type {
    margin-right: 0 !important;
}

.column-number {
    text-align: right;
}

.column-checkbox,
.column-indicator
{
    width: 1%;
    text-align: center;
    white-space: nowrap;
}
.column-minimal,
.column-editbuttons {
    width: 1%;
    white-space: nowrap;
}

span.oi {
    font-size: 0.8em;
    margin-top: 0;
    display: block;
    width: 20px;
}

span.oi.oi-plus,
span.oi.oi-minus {
    font-size: 0.6em;
}

select.filterCategory {
    background-color: #eee;
    padding-right: 10px;
    flex: 0.6;
}


/* Form elements -----------------------------------------------------------------------------------------------------*/

.form-groupbox,
.form-field {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
    width: 100%;
    position: relative;
}

.form-groupbox + .form-groupbox,
.form-groupbox + .form-field,
.form-field + .form-groupbox,
.form-field + .form-field,
.form-checkbox + .form-field{
    margin-top: 1rem;
}

.form-groupbox .form-groupbox-title,
.form-field > label:first-child {
    position: absolute;
    z-index: 3;
    left: 0.3em;
    top: -0.8em;
    font-size: 0.8em;
    padding: 0 0.3em;
    background: linear-gradient(180deg, white 0%, white 65%, transparent 65%, transparent);
    color: #444;
    white-space: nowrap;
}

.form-field > div {
    position: relative;
}

.form-field.max-height {
    height: calc(100% - 1rem);
}

.form-field label span.required {
    color: var(--color-cosin);
}

.form-control.has-button {
    padding-right: 1.4rem;
}

.datafield-clearbutton {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: transparent !important;
    border: none;
    padding: 0.1rem 0.4rem !important;
    color: #aaa !important;
}

.form-groupbox {
    border: 1px solid var(--color-border);
    background: white;
}

.form-groupbox .form-groupbox-content {
    padding: 1em 0.5em 0.5em;
}

.form-groupbox.scrollable .form-groupbox-content {
    overflow: auto;
}

.form-groupbox .form-groupbox-content .form-checkbox {
    padding: 0.25em 0;
    margin-bottom: 0;
}

.form-groupbox.max-height {
    height: calc(100% - 1rem);
}

.form-groupbox.max-height.scrollable .form-groupbox-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.form-buttons {
    margin-top: 1.5rem;
}

.form-control, .form-select, .form-check-input {
    border-radius: 0 !important;
}

.form-control {
    padding: 0.5rem 0.4rem 0.3rem 0.4rem;
    font-size: var(--bs-body-font-size) !important;
}

.form-control-sm {
    padding: .25rem 0.3rem;
}

.form-control-after {
    padding: 0.25em 0.4rem;
    font-size: 0.7rem;
    color: #888;
}

.control:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none;
    border-color: var(--color-cosin);
}

.form-select {
    padding: 0.5rem 2.25rem 0.3rem 0.4rem;
    font-size: var(--bs-body-font-size);
    background-position: right .5rem center;
}

.form-control:disabled, .form-control[readonly],
.form-select:disabled, .form-select[readonly] {
    background-color: #f8f8f8;
    opacity: 1;
    color: #666;
}

.form-checkbox {
    padding: 0.5em 0;
}

.form-check-input {
    vertical-align: bottom;
    top: 1px;
}

.form-checkbox .form-check-input {
    vertical-align: middle;
    margin-right: 0.5em;
    margin-top: -0.16rem;
}

.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.form-check-input:disabled~.form-check-label, 
.form-check-input[disabled]~.form-check-label {
    opacity: .7;
}

.form-select-sm {
    padding: 0.1rem 1.5rem 0.1rem 0.4rem;
    background-position: right 0.25rem center;
}

.form-control.inline,
.form-select.inline {
    display: inline-block;
    width: auto;
    vertical-align: baseline;
}

.form-control[aria-invalid="true"] {
    background: #fed7c0;
}

td > div > .form-control.inline,
td > .form-control.inline,
td > div > .form-select.inline,
td > .form-select.inline
{
    line-height: 2;
    margin: -0.25rem;
    border: none;
    background-color: transparent;
}

.multilinefield {
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%
}

.multilinefield-shadow {
    padding: 0.5rem calc(0.5rem - 2px) 0.3rem calc(0.5rem - 2px);
    font-size: var(--bs-body-font-size);
    background-color: #f8f8f8;
    color: #444;
    white-space: pre-wrap;
    border: 1px solid var(--color-border);
    resize: none;
}

.multilinefield-shadow.enabled {
    opacity: 0;
}

.form-text {
    padding: 0.5rem 0.5rem 0.3rem 0.5rem;
    font-size: var(--bs-body-font-size);
    border: 1px solid var(--color-border);
    color: #888;
    margin-top: 0;
}

.form-text-sm {
    padding: .25rem 0.3rem;
}

/* Buttons -----------------------------------------------------------------------------------------------------------*/

button {
    position: relative;
}

button.marker:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom-width: 1em;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    border-right-width: 1em;
    border-right-style: solid;
    border-right-color: var(--color-cosin);
}

.btn {
    width: auto;
    border-radius: 0;
    white-space: nowrap;
    padding: 0.2rem 0.4rem 0.3rem;
    vertical-align: baseline;
    font-size: 1em;
    border: solid 1px transparent !important;
}

.btn.busy span {
    opacity: 0.5;
}

.btn.busy:after {
    content: ' ';
    position: absolute;
    top: calc(50% - 1em);
    left: calc(50% - 1em);
    width: 2em;
    height: 2em;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.notice-container + .btn,
.btn + .btn {
    margin-left: 0.3rem;
}

.notice-container + .btn.btn-sm,
.btn.btn-sm + .btn.btn-sm {
    margin-left: 0.2rem;
}

.btn.btn-light.btn-sm + .btn.btn-light.btn-sm {
    margin-left: 0;
}

.btn.btn-sm {
    padding: 0.1rem 0.2rem;
    font-size: 1em;
    vertical-align: baseline;
    line-height: 1.3;
}

.btn.btn-lg {
    padding: 0.1rem 0.2rem 0.2rem;
    font-size: 1.2em;
    vertical-align: baseline;
    line-height: 1.5;
}

.btn.btn-xl {
    padding: 0.1rem 0.2rem 0.2rem;
    font-size: 1.5em;
    vertical-align: baseline;
    line-height: 1.5;
}

.btn.btn-xs {
    padding: 0.05rem;
    font-size: 0.8em;
    vertical-align: middle;
    line-height: 1;
}

.btn-light,
.btn-light.disabled,
.btn-light:hover,
.btn-light:focus
{
    color: #000;
    background-color: transparent !important;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:disabled
{
    color: #fff;
    background-color: black;
}

.btn-danger,
.btn-danger:focus,
.btn-danger:disabled
{
    color: #fff;
    background-color: #cd2e0a;
    border-color: #cd2e0a;
}

.btn-link {
    padding: 0 !important;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    opacity: .25;
}

.btn:hover,
.btn:focus, 
.btn:active:focus, 
.btn-link.nav-link:focus
{
    box-shadow: none;
}

.btn-primary:hover
{
    color: #fff;
    background-color: #222;
}

.btn.not-selected {
    opacity: 0.3;
}

.oi {
    top: 0;
    width: 1em !important;
    font-size: 0.8em;
}

.imageButton {
    width: 2rem;
    display: inline-block;
}

.imageButton + .imageButton {
    margin-left: 1rem;
}

.imageButton img {
    cursor: pointer;
    width: 100%;
    margin: 0;
    object-fit: contain;
    height: 100%;
}

.imageButton.disabled img {
    opacity: 0.3;
    pointer-events: none;
}

.btn .material-icons-sharp {
    font-size: 1.2em;
    line-height: 1;
    vertical-align: middle;
}

.btn.btn-sm .material-icons-sharp,
.btn.btn-xs .material-icons-sharp {
    padding-top: 0;
    font-size: 1em;
    margin-left: -0.05rem;
}

.btn .material-icons-sharp + * {
    margin-left: 0.4rem;
    vertical-align: middle;
}

.btn.btn-icon {
    text-align: center;
    background: transparent none;
    border: none !important;
    line-height: 1.15;
}

.btn.btn-icon .material-icons-sharp {
    font-size: 1.6em;
    margin-right: 0;
}

.btn.btn-icon .material-icons-sharp + * {
    margin-left: 0;
}

.btn.btn-icon div {
    line-height: 0.9;
    text-align: center;
    font-size: .75em;
    opacity: 0.7;
    margin-top: 0.4rem;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: 0.12em;
    content: "";
    border-top: .45em solid;
    border-right: .45em solid transparent;
    border-bottom: 0;
    border-left: .45em solid transparent;
}

span.material-icons-sharp.rotating,
.btn.icon-rotating span.material-icons-sharp {
    animation: animRotation 2s linear infinite;
    margin-bottom: 0;
    margin-top: 0;
}

/* File upload -------------------------------------------------------------------------------------------------------*/

.file-drop-zone {
    width: 100%;
    border: 1px solid var(--color-border);
    display: block;
    margin-bottom: 2px;
    height: 100%;
    padding: 10px;
    cursor: pointer;
}

.file-drop-zone.disabled {
    pointer-events: none;
    border-color: #eee;
    cursor: default;
}

.dropzone-label {
    width: 100%;
    height: 100%;
}

.dropzone-instructions {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8em;
}

.dropzone-instructions .btn {
    padding: 0.2rem 0.4rem;
}

.dropzone-instructions .btn span.material-icons-sharp {
    padding-left: 0.4em;
}

.file-drop-zone.disabled .dropzone-instructions {
    color: rgba(var(--bs-secondary-rgb), 0.5);
}

.file-drop-zone.hover {
    border-style: solid;
    background-color: #fed7c0;
}

.file-list-header {
    margin-bottom: 0.5rem;
    padding-left: 4px;
    padding-right: 14px;
}

.file-list {
    border: solid 1px #ddd;
    position: relative;
}

.file-list.closed {
    height: 9rem;
}

.file-list.closed:after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 15px);
    height: 2rem;
    background: linear-gradient(0deg, #f8f8f8, transparent);
}

.file-list div.wrapper {
    padding: 5px 10px 5px 0;
}

.file-list.closed div.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.file-list-header div.file,
.file-list div.file {
    display: flex;
    width: 100%;
    align-items: center;
}

.file-list-header div.file .expandbutton,
.file-list div.file .filebutton {
    padding-right: 10px;
    width: 2rem;
}

.file-list div.file .fileicon {
    padding-right: 10px;
    width: 1.5rem;
    margin-left: 10px;
}

.file-list div.file .fileicon span.material-icons-sharp {
    font-size: 1.2em;
    color: #888;
}

.file-list-header div.file .fileinfo,
.file-list div.file .fileinfo {
    flex-grow: 99;
}

.file-list-header div.file .fileprogress,
.file-list div.file .fileprogress {
    padding-left: 10px;
}


/* File-grid */

.file-grid {
    position: relative;
}

.file-grid.closed {
    height: 9rem;
}

.file-grid.closed:after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 15px);
    height: 2rem;
    background: linear-gradient(0deg, #f8f8f8, transparent);
}

.file-grid div.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-grid.closed div.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.file-grid div.file {
    width: 120px;
    overflow: hidden;
    text-align: center;
    display: block;
    position: relative;
    border: solid 1px #ddd;
    padding: 0.3em;
 }

.file-grid div.file .filebutton {
    width: 2rem;
    position: absolute;
    top: 0;
    right: -0.5em;
    padding: 0;
}


.file-grid div.file .filebutton button {
    margin: 0 !important;
}

.file-grid div.file .fileicon {

}

.file-grid div.file .fileicon span.material-icons-sharp {
    font-size: 3em;
    color: #888;
}

.file-grid div.file .fileinfo {
    font-size: max(11px, 0.7em);
    margin-top: 0.75em;
}

.file-grid .fileinfo span {
    display: block;
    width: 100%;
    text-align: center;
    word-break: break-word;
}


.file-grid div.file .fileprogress {
    position: absolute;
    top: 2.75em;
    width: 100%;
}

.file-grid div.file .fileprogress progress[value] {
    max-width: calc(100% - 20px);
    min-width: 10px;
}

.file-grid div.file .fileprogress progress.finished {
    display: none;
}


input[type=file] {
    width: 100%;
}

.file-error-message-container {
    color: red;
    text-align: center;
}


/* Tabs --------------------------------------------------------------------------------------------------------------*/

.nav-tabs .nav-link,
.nav-tabs .nav-link.disabled {
    border-radius: 0;
    margin-top: 3px;
    padding: 0.4rem 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    color: var(--bs-body-color);
    border-color: #dee2e6 #dee2e6 #dee2e6 #fff;
    position: relative;
}

.nav-tabs .nav-link.disabled {
    color: #9a9a9a;
    pointer-events: none;
}

.nav-tabs .nav-link.active {
    margin-top: 0;
    color: var(--bs-body-color);
}

.nav-tabs .nav-link.marker:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom-width: 15px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    border-right-width: 15px;
    border-right-style: solid;
    border-right-color: var(--color-cosin);
}

/* Pagination --------------------------------------------------------------------------------------------------------*/

.page-item.active .page-link {
    background-color: var(--color-cosin);
    border-color: var(--color-cosin);
    color: white !important;
}

.page-link,
.page-link:hover {
    color: var(--color-cosin);
}

.btn-group-min > .btn, .btn-min {
    padding: 0 0.2rem;
    border-radius: 0.2rem;
}

.pagination {
    margin-bottom: 0;
}

.pagination-sm .page-item:first-child .page-link,
.pagination-sm .page-item:last-child .page-link {
    border-radius: 0;
}

.pagination-sm .page-link {
    font-size: .875em;
}

/* Tooltip -----------------------------------------------------------------------------------------------------------*/

.tooltip-container {
    position: relative;
    display: inline-block;
    width: auto;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    background-color: #efee97;
    color: #000;
    text-align: left;
    padding: 7px 12px;
    z-index: 9999;
    top: calc(100% + 10px);
    left: calc(50% + 6px);
    margin-left: -40px;
    opacity: 0;
    white-space: nowrap;
    font-size: 0.8em;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.tooltip-text:after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom-color: #efee97;
    border-top: 0;
    border-left: 0;
    margin-left: -10px;
    margin-top: -12px;
    text-align: left;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Notice ------------------------------------------------------------------------------------------------------------*/

.notice-container {
    position: relative;
    display: inline-block;
}

.notice-text {
    position: absolute;
    background-color: #efee97;
    color: #000;
    text-align: left;
    padding: 7px 12px;
    z-index: 9999;
    top: calc(100% + 10px);
    left: calc(50% + 6px);
    margin-left: -40px;
    white-space: nowrap;
    font-size: 0.8em;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.notice-text:after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom-color: #efee97;
    border-top: 0;
    border-left: 0;
    margin-left: -10px;
    margin-top: -12px;
    text-align: left;
}


/* Rating ------------------------------------------------------------------------------------------------------------*/

.rating {
    white-space: nowrap;
}

.rating span {
    color: var(--color-cosin);
}

/* Animations --------------------------------------------------------------------------------------------------------*/

@keyframes animRotation {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.rotating {
    animation: animRotation 2s linear infinite;
}

/* Animations --------------------------------------------------------------------------------------------------------*/

#components-reconnect-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    transition: visibility linear 500ms;
    visibility: visible;
}

#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: block;
}

#components-reconnect-modal div.components-reconnect-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
}

#components-reconnect-modal div.components-reconnect-container {
    position: fixed;
    top: 50%;
    width: 100%;
    transform: translateY(-60%);
    text-align: center;
}

#components-reconnect-modal div.spinner {
    border-width: 0.5em;
    border-style: solid;
    border-color: var(--color-cosin) rgb(243, 243, 243) rgb(243, 243, 243);
    border-image: initial;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    display: inline-block;
    margin: 2rem 0;
}

#components-reconnect-modal a {
    margin-top: 1rem;
}

/* not ordered -------------------------------------------------------------------------------------------------------*/

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: #ce0303;
    font-size: 0.8em;
}

.file_ok {
    color: green;
}

.file_missing {
    color: red;
}

.file_ignored {
    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: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}


.detailFingerprint {
    background-color: #fff;
    padding: 20px;
    overflow: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}


.tire-fingerprint pre,
.detailFingerprint pre {
    padding: 1rem;
    background: #eee;
    border: solid 1px #888;
    display: inline-block;
}

.tire-fingerprint img,
.detailFingerprint img {
    max-width: 100%;
}

.detailFingerprint h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tire-fingerprint small,
.detailFingerprint small {
    display: block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 0.7rem;
    font-weight: normal;
    font-style: italic;
}

.tire-fingerprint small h5,
.detailFingerprint small h5 {
    font-size: 1rem;
    font-weight: normal;
}

.tire-fingerprint div.image-1 img,
.detailFingerprint div.image-1 img {
    max-width: 100%;
    max-height: 60vh;
}

.tire-fingerprint div.image-2 img,
.detailFingerprint div.image-2 img {
    max-width: 50%;
    max-height: 60vh;
}

.tire-fingerprint div.image-3 img,
.detailFingerprint div.image-3 img {
    max-width: 33.3%;
    max-height: 60vh;
}

.tire-fingerprint table,
.detailFingerprint table {
    margin-bottom: 1rem;
}

.tire-fingerprint td,
.detailFingerprint td {
    max-width: 800px;
}

.tire-fingerprint td:not(:last-child),
.detailFingerprint td:not(:last-child) {
    padding-right: 2rem;
}

.indent0 {
    padding-left: 0;
}

.indent1 {
    padding-left: 1.5rem;
}

.indent2 {
    padding-left: 3rem;
}

.indent3 {
    padding-left: 4.5rem;
}

.indent4 {
    padding-left: 6rem;
}


.detailView {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    z-index: 99;
    background: rgba(0,0,0,0.6);
    display: none;
}

.detailView.visible {
    display: block;
}

.detailHeader {
    background: black;
    padding: 15px 20px;
    color: white;
    height: 60px;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    border: solid 1px #888;
    display: flex;
    justify-content: space-between;
}

.detailContent {
    border: solid 1px #888;
    background-color: #fff;
    padding: 20px;
    overflow: auto;
    position: absolute;
    top: 79px;
    bottom: 20px;
    right: 20px;
    left: 20px;
}

.detailClose {
    left: 10px;
    border: none;
    background: transparent;
    color: white;
}

.tox-tinymce {
    border-radius: 0 !important;
    border: 1px solid var(--color-border) !important;
}

.tox .tox-edit-area::before {
    border: none !important;
    border-radius: 0 !important;
}

.tox:not(.tox-tinymce-inline) .tox-editor-header {
    padding: 0 !important;
    border-bottom: 1px solid var(--color-border)a !important;
    box-shadow: none !important;
}

.tox .tox-toolbar__group {
    padding: 0 5px 0 6px !important;
}

.tox .tox-tbtn {
    width: 24px !important;
    margin: 6px 1px 5px 0;
}

.tox .tox-tbtn--select {
    width: auto !important;
}

.tox .tox-tbtn--bespoke .tox-tbtn__select-label {
    width: auto !important;
}

.tox .tox-icon .tox-tbtn svg {
    height: 24px;
    width: 24px;
    transform: scale(0.8);
}

.tox:not(.tox-tinymce-inline) .tox-editor-header {
    padding: 0;
}

.tox .tox-menu {
    z-index: 11500;
}

.tinymce-wrapper.valid.modified:not([type=checkbox]) {
    outline: none !important;
}

.tox-promotion,
.tox-statusbar__branding {
    display: none !important;
}

div.dialog-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:linear-gradient(135deg, rgba(208, 208, 208, 0.8), rgba(224, 224, 224, 0.8) 70%, rgba(196, 196, 196, 0.8));
    z-index: 999;
    display: none;
}

div.dialog-container.visible {
    display: block;
}

@media (min-width: 576px) {
    .modal-dialog {
        margin: 1.5rem auto 2rem auto;
    }
}

@media (max-width: 575px) {
    .modal-dialog {
        min-width: inherit !important;
        max-width: inherit !important;
    }
}

.modal-header {
    padding: 0.3rem 0.5rem;
    background: black;
    border-radius: 0;
}

h6.modal-title {
    font-weight: 400;
    color: var(--color-cosin);
}

.modal-content {
    margin: 1.5rem auto 2rem auto;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
    border-radius: 0;
}

.modal.show {
    display: block;
}
