﻿:root {
    --gradient-start: #0297dd;
    --gradient-end: #198754;
    --text-h1: 3rem;
    --text-h2: 2.8rem;
    
    --text-h3: 1.5rem;
    --line-height-3: 1.2;

    --section-spacing: 5rem;
    --survey-table-padding: 0.3rem;
    --picture-text-pair-padding: 3rem 0 3rem 3rem;
}
@font-face {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
}

.text-1 {
    font-size: var(--text-h1);
}
.text-2 {
    font-size: var(--text-h2);
}
.text-normal {
    font-size: var(--text-h3);
}
.line-h3 {
    line-height: var(--line-height-3);
}

.gradient-text {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    background-clip: text;
    color: transparent;
    line-height: var(--line-height-3);
}

.gradient-title {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.cards-container {
    justify-content: center;
    gap: 1rem;
}

.warning-icon {
    vertical-align: text-bottom;
}
.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337ab7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 50%;
    left: 50%;
    position: absolute;
}

.menu-item-last-5 li:nth-child(5) {
    margin-bottom: 2rem;
}

.info-timeline > div:nth-child(odd) > div:nth-of-type(2) {
    background: linear-gradient(to right, black 0 50%, var(--rz-card-background-color) 50% 100%);
    height: 3px;
}

.info-timeline > div:nth-child(even) > div:nth-of-type(2) {
    background: linear-gradient(to left, black 0 50%, var(--rz-card-background-color) 50% 100%);
    height: 3px;
}

#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;
}

.f-row2 {
    display: flex;
    flex-direction: row;
}
.f-row2 > * {
    flex: 1 1 50%;
}
.f-row4 {
    display: flex;
    flex-direction: row;
}
.f-row4 > * {
    flex: 1 1 25%;
}

.align-text-center {
        text-align: center;
}   
.section-mt {
    margin-top: var(--section-spacing);
}
