/* BASE */
/********/
body {
    margin: 0;
    line-height: 1.15;
    font-family: 'Source Sans 3', 'Aptos', sans-serif;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans 3', 'Aptos', sans-serif;
    line-height: 1.25;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.35rem;
}

h3 {
    font-size: 1.2rem;
}

h4, h5, h6 {
    font-size: 1.1rem;
}

p {
    line-height: 1.75;
}

    p.lead {
        font-size: 1.25rem;
    }

a {
    cursor: pointer;
}

@media (min-width: 640px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4, h5, h6 {
        font-size: 1.2rem;
    }
}

.mb-0 {
    margin-bottom: 0;
}

fieldset {
    border: none;
    padding: 0;
}

legend {
    display: none;
}

.preLine {
    white-space: pre-line;
}

/* TABLES */
caption {
    font-family: 'Source Sans 3', 'Aptos', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

table {
    border-collapse: collapse;
    width: 100%;
}

thead {
    border-bottom: 1.5px solid #DFE1E3;
}

tr:hover,
tbody:hover td[rowspan],
tr:hover td {
    background: #FFF9E3;
}

.action-type {
    vertical-align: top;
}

.action-row {
}

.action-index {
    display: inline-block;
    margin-right: .5em;
}

.type-section-row-first {
    border-top: 4px double #DFE1E3;
}

.type-section-row-last {
    border-bottom: 4px double #DFE1E3;
}

th {
    padding: .7rem .2rem;
    text-align: left;
    vertical-align: bottom;
    text-transform: uppercase;
    font-size: .85rem;
    color: #000;
    background: #fff;
}

td {
    padding: .7rem .2rem;
    border-bottom: 1px solid #DFE1E3;
}

@media (min-width: 1280px) {
    th {
        padding: 1rem;
        font-size: 1rem;
    }

    td {
        padding: 1rem;
    }
}

/* FORMS */
form {
}

label {
    display: block;
    margin: 0 0 .5rem 0;
    font-weight: 600;
}

input,
textarea,
select:not(.flatpickr-monthDropdown-months) {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: .5rem .5rem;
    border: 1px solid #DFE1E3;
    border-radius: 0.3rem;
}

@media (min-width: 1280px) {
    input,
    textarea,
    select:not(.flatpickr-monthDropdown-months) {
        border: 1px solid #DFE1E3;
        border-radius: 0.3rem;
    }
}

input:hover,
input:not([type=radio]):focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    /* background: #FFF9E3;
    border-bottom: 2px solid #69717A;
    outline: none; */
}

option {
    padding: .2rem 1rem;
}

form button {
    padding: 5px;
    cursor: pointer;
}

/* HEADER */
/**********/
header > * {
    display: flex;
    flex-direction: column-reverse;
}

.header__primary {
    padding: .8rem 2rem;
}

.header__secondary {
    padding: 1rem .8rem;
    background: #293542;
}

    .header__secondary .btn--subtle {
        color: #fff;
        background: none;
    }

.temp-broken-notification {
    border: 2px solid #E00000;
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
    margin: 10px auto;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    text-align: center;
}

@media (min-width: 640px) {
    header > * {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header__secondary {
        padding: .2rem .8rem;
        background: none;
    }

        .header__secondary .btn--subtle {
            color: inherit;
            background: #fff;
        }
}

/* FOOTER */
/**********/
footer {
    padding: 1rem 2rem 0 2rem;
    background: #293542;
}

    footer,
    footer p {
        color: #fff;
        font-size: .9rem;
    }

        footer a {
            color: #D9E6F1;
            text-decoration: none;
        }

            footer a:hover,
            footer a:focus {
                color: #fff;
                text-decoration: underline;
            }

.footer__upper {
    display: flex;
    flex-direction: column;
}

    .footer__upper > * {
    }

        .footer__upper > *:first-child {
        }

.footer__lower {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #69717A;
}

@media (max-width: 640px) {
    .footer__lower {
        display: flow-root;
    }
}

.cookie-warning {
    background-color: #0053a1;
    padding: 1rem;
    color: white;
    position: sticky;
    bottom: 0;
    z-index: 1000;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: baseline;
    margin-top: 4rem;
}

.cookie-warning button {
    padding: 1rem;
    margin-left: 5rem;
    cursor: pointer;
}

.cookie-warning button:hover {
    background-color: #840084;
}

.cookie-warning button:focus {
    background-color: #840084;
}

@media (min-width: 640px) {
    .footer__upper {
        flex-direction: row;
        align-items: center;
    }

        .footer__upper > * {
            padding: 2rem 4rem;
        }

            .footer__upper > *:first-child {
                padding-left: 0;
                border-right: 1px solid #69717A;
            }

            .footer__upper > *:last-child {
                padding-right: 0;
            }

    .footer__palvelukuvaus {
        max-width: 50%;
    }
}

/* MAIN */
/********/
main {
    min-height: 80vh;
    background-color: #fff;
}

.container {
    margin: 0 auto;
    padding: 0 .5rem;
}

@media (min-width: 1080px) {
    .container {
        padding: 0 1rem;
    }
}

.container--narrow {
    max-width: 50rem;
}

.container--base {
    max-width: 75rem;
}

.container--wide {
    max-width: 110rem;
}

.container--full {
    max-width: 100%;
}

header .container {
    padding: 0;
}

@media (min-width: 640px) {
    header .container {
        padding: 0 .5rem;
    }
}

/* UTILITIES */
/*************/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.nowrap {
    white-space: nowrap;
}

.relative {
    position: relative;
}

.scrollable-overflow {
    position: relative;
    max-width: 100vw;
    overflow-x: auto;
}

.scrollable-overflow-fi::before,
.scrollable-overflow-fi::after {
    content: '⭤ Voit vierittää taulukkoa sivusuunnassa';
    display: block;
    margin: .5rem 0;
    font-size: .85rem;
    color: #757575;
}

.scrollable-overflow-sv::before,
.scrollable-overflow-sv::after {
    content: '⭤ Du kan rulla tabellen sidledes';
    display: block;
    margin: .5rem 0;
    font-size: .85rem;
    color: #757575;
}

@media (min-width: 640px) {
    .scrollable-overflow::before {
        content: '';
        margin: 0;
    }
}

@media (min-width: 1890px) {
    .scrollable-overflow::after {
        content: '';
        margin: 0;
    }
}

.sticky-last-col td:last-child {
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, .75);
}

.sticky-last-col tr:hover td:last-child {
    background: rgba(255, 249, 227, .75 );
}

.sticky-last-col .btn {
    white-space: normal;
}

@media (min-width: 640px) {
    .sticky-last-col .btn {
        white-space: nowrap;
    }
}

/* BUTTONS */
/***********/

.btn {
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 2px solid;
    border-color: #00559F;
    border-radius: 999rem;
    background-color: #FFFFFF;
    color: #00559F;
    transition: .05s all;
}

    .btn:hover,
    .btn:focus {
        color: #FFFFFF;
        background-color: #00559F;
        outline: none;
    }

.btn--primary {
    padding: 1.2rem 2.2rem;
    font-weight: 600;
    color: #fff;
    background: #00559F;
    border: none;
}

    .btn--primary:hover,
    .btn--primary:focus {
        color: #fff;
        background: #840084;
    }

.btn--subtle {
    color: #000;
    border: none;
}

    .btn--subtle:hover,
    .btn--subtle:focus {
        color: #fff;
        background: #840084;
    }

.btn--ghost {
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
}

    .btn--ghost:hover,
    .btn--ghost:focus {
        border-color: #fff;
        background: transparent;
        outline: none;
    }

.btn--forward:after {
    content: " \2192";
}

.btn--backward:before {
    content: "\2190  ";
}

.btn:disabled {
    pointer-events: none;
    color: grey;
    border-color: grey;
}

/* MISC */
/********/
.spinner {
    text-align: center;
}

.spinner-blur {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffffc4;
    z-index: 99999;
    backdrop-filter: blur(2px);
    transition: 3s all;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.logo-background {
    border-radius: 999rem;
    background: #293542;
    padding: 1.5rem;
    display: block;
    margin: 0 auto;
}

/* TOOLTIP */
/***********/
.tooltip {
    position: relative;
    display: inline-block;
    padding-right: 1rem; /* For ASC/DESC arrows */
}

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        white-space: nowrap;
        background: #293542;
        color: #fff;
        text-align: center;
        padding: .2rem .3rem;
        font-size: 0.75rem;
        text-transform: none;
        font-weight: normal;
        bottom: 80%;
        position: absolute;
        z-index: 1;
    }

/* ANIMATIONS */
/********/
.lds-ring {
    margin: 0 auto;
    display: block;
    position: relative;
    width: 6rem;
    height: 6rem;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 5rem;
        height: 5rem;
        margin: 0.5rem;
        border: 1.5rem solid;
        border-radius: 50%;
        animation: lds-ring 1s ease-in-out infinite;
        border-color: #293542 transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.2s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.1s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ERRORS */
/**********/
#blazor-error-ui {
    background-color: 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;
    }

/* PAGES */
/*********/
.hero {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(rgba(0, 85, 159, .6), rgba(0, 85, 159, .6)), url('../gfx/jm-pique-NlaaOucny2I-unsplash.jpg') center 65% no-repeat;
    background-size: cover;
    background-color: rgb(0, 85, 159)
}

.hero--prominent {
    padding-bottom: 12rem;
}

.hero--subtle {
    padding: 1rem 0 3rem 0;
}

.hero__breadcrumb {
    margin: 0 0 1.2rem 1rem;
    font-size: .8rem;
}

.hero + div {
    position: relative;
}

.hero--prominent + div {
    /* Matches .hero--prominent's padding-bottom */
    margin-top: -12rem;
}

.hero--subtle + div {
    /* Matches .hero--subtle's padding-bottom */
    margin-top: -3rem;
}

.hero__text {
    color: #fff;
    text-shadow: 0 0 20px rgb(0, 45, 82);
}

.has_subtitle {
    margin-bottom: 0;
}

    .has_subtitle + * {
        margin: .5em 0 1.25em 0
    }

.preheader {
    margin-bottom: 0;
    font-family: 'Source Sans 3', 'Aptos', sans-serif;
    font-size: 1rem;
    display: block;
}

    .preheader + h1 {
        margin: 1em 0 1.2em 0;
        font-size: 1.3em;
    }

.actual-header {
    margin: 1em 0 1.2em 0;
    font-size: 1.3rem;
    display: block;
}

.subheader {
    margin-bottom: 2.5rem;
}

    .subheader > * {
        display: inline;
        line-height: 1.4;
    }

    .subheader > h2 {
        font-family: 'Source Sans 3', 'Aptos', sans-serif;
        font-size: 1rem;
    }

    .subheader > p {
        font-family: 'Source Sans 3', 'Aptos', sans-serif;
        font-size: 1.1rem;
        font-style: italic;
    }

.herocard {
    flex-direction: column;
}

    .herocard > * {
        background: #fff;
    }

.herocard--prominent > * {
    padding: 2rem .75rem .2rem .75rem;
    border: 1px solid #DFE1E3;
}

.herocard--minis {
    align-items: flex-start;
    padding-top: 1.5rem;
    background: #fff;
}

    .herocard--minis > * {
        padding: 0 0 1rem 0;
    }

    .herocard--minis h2 {
        margin: 0;
        font-size: 1rem;
        font-weight: 400;
        font-style: italic;
        color: #757575;
    }

    .herocard--minis p {
        margin: .2rem 0 0 0;
    }

@media (min-width: 640px) {
    .herocard {
        flex-direction: row;
    }

    .herocard--minis {
        padding-top: 0;
        background: none;
    }

        .herocard--minis > * {
            margin: 0 2rem 0 0;
            padding: 1.25rem 1.95rem 1.25rem 1.65rem;
        }

        .herocard--minis p {
            font-size: 1.2rem;
        }

    .hero--subtle + div {
        margin-top: -3rem;
    }

    .herocard > * {
        background: #fff;
        border: 1px solid #DFE1E3;
    }
}

@media (min-width: 1080px) {
    .preheader + h1 {
        margin: .4em 0 .8em 0;
        font-size: 1.7em;
    }

    .actual-header {
        margin: 0.4em 0 0.8em;
        font-size: 1.7rem;
        display: block;
    }

    .herocard--prominent > * {
        padding: 3rem 5rem 2rem 5rem;
    }
}

.main__form {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-areas:
        "query"
        "type"
        "date"
        "submit";
}

.main__form__query {
    grid-area: query;
}

.main__form__type {
    grid-area: type;
}

.main__form__date {
    grid-area: date;
}

.main__form__submit {
    grid-area: submit;
}

    .main__form__submit > * {
        display: block;
        margin: 0 auto 1rem auto;
    }

@media (min-width: 940px) {
    .main__form {
        grid-gap: 3.5rem;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-areas: "query      query       query       query       query        query" "type    type     date     date   date   date" "submit     submit      submit      submit      submit      submit";
    }

    .main__form__date {
        margin: 0;
    }
}

label {
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
}

.radio_group {
    margin-bottom: 2rem;
}

.radio_created_published {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
}

@media (min-width: 940px) {
    .radio_group {
        margin-bottom: 0.7rem;
        display: flex;
    }

    .radio_created_published {
        margin-bottom: 0rem;
    }
}

@media (min-width: 1010px) {
    .check_all {
        display: inline-block;
        width: fit-content;
        margin-right: 0.3rem;
        margin-left: 0.2rem;
    }
}

@media (max-width: 1010px) {
    .check_all {
        margin-right: 0rem;
        width: 90%;
    }
}

.label_radio_created_published {
    margin: 0rem 2rem 0 .5rem;
}

.label_process_stage {
    font-weight: 400;
    display: block;
}

.input_radio {
    width: auto;
}

.input_radio_stage {
    float: left;
    display: inline-block;
    width: 2rem;
    margin-top: 3px;
}

.input_radio:not(:checked) + .label_radio_created_published {
    color: #757575;
}

/* FORM: DATE INPUTS */

.date_inputs > * {
    display: inline-block;
}

.combined_label_n_input {
    display: inline-flex;
}

    .combined_label_n_input > label {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: .5rem 1rem;
        font-weight: 400;
        font-size: .9rem;
        background: #f5f5f5;
        border: 1px solid #DFE1E3;
        border-right: 0;
        border-radius: .3rem 0 0 .3rem;
        width: 3rem;
    }

.date_input:not([type=hidden]) {
    width: 12rem;
    border-radius: 0 .3rem .3rem 0;
}

.main__form__dash {
    padding: .75rem .1rem;
}

/* PAGINATION */

.pagination {
    display: flex;
    flex-direction: column;
    font-size: .92rem;
}

    .pagination > * {
        display: flex;
        align-items: center;
    }

    .pagination button,
    .pagination-ellipsis {
        display: block;
        margin: .5rem 1px 0 1px;
        padding: .5rem .75rem;
        text-align: center;
        border: none;
    }

    .pagination button {
        cursor: pointer;
        border-radius: 2rem;
        color: #00559F;
        background: #FFF;
    }

        .pagination button:focus {
            outline: 5px auto Highlight;
            outline: 5px auto -webkit-focus-ring-color;
        }

        .pagination button:hover {
            color: #FFF;
            background: #00559F;
        }

.pagination-pagenum {
    margin: .5rem .5rem 0 0;
    border: none;
}

.pagination-first,
.pagination-prev,
.pagination-next,
.pagination-last {
    padding: 0 2rem;
    white-space: nowrap;
    border: none;
}

    .pagination-first:before {
        content: '\00AB\00A0'; /* Tulostaa: "« " */
    }

    .pagination-prev:before {
        content: '\2039\00A0'; /* Tulostaa: "‹ " */
    }

    .pagination-next:after {
        content: '\00A0\203A'; /* Tulostaa: " ›" */
    }

    .pagination-last:after {
        content: '\00A0\00BB'; /* Tulostaa: " »" */
    }

.pagination-active {
    color: #FFF !important;
    background: #00559F !important;
}

.pagination-next:active,
.pagination-prev:active {
    background-color: #4080B7;
}

.pagination button:disabled {
    cursor: not-allowed;
    color: #293542;
    opacity: .5;
}

    .pagination button:disabled:hover {
        background: #FFF;
        border: none;
    }

@media (min-width: 800px) {
    .pagination {
        flex-direction: row;
    }
}

.columnheader {
    cursor: pointer;
    border: 0;
    color: #000;
    margin-top: .5rem;
    background: transparent;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
}

.arrow-desc:before,
.arrow-desc:after {
    border: 6px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 0;
    top: 50%;
    position: absolute;
    width: 1px;
}

.arrow-asc:before,
.arrow-asc:after {
    border: 6px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 0;
    top: 50%;
    position: absolute;
    width: 1px;
}

.arrow-asc:before {
    border-top-color: black;
    margin-top: 2px;
}

.arrow-asc:after {
    border-bottom-color: silver;
    margin-top: -12px;
}

.arrow-desc:after {
    border-top-color: silver;
    margin-top: 2px;
}

.arrow-desc:before {
    border-bottom-color: black;
    margin-top: -12px;
}

button.sort-by:before,
button.sort-by:after {
    border: 6px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 0;
    top: 50%;
    position: absolute;
    width: 1px;
}

button.sort-by:before {
    border-bottom-color: silver;
    margin-top: -12px;
}

button.sort-by:after {
    border-top-color: silver;
    margin-top: 2px;
}

.nav-link {
    text-decoration: none;
    display: block;
    margin: 0 1rem 0 0;
    padding: 1rem 2rem;
    border: 2px solid;
    border-color: #00559F;
    border-radius: 2rem;
    background-color: #FFFFFF;
    color: #00559F;
}

    .nav-link:hover {
        background-color: #00559F;
        color: #FFFFFF;
    }

.logo-link,
.logo-link:visited,
.logo-link:active {
    text-decoration: none;
    color: initial;
}

.logo-img {
    width: 300px;
}

.visually_hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.documents-info {
    margin-bottom: 2rem;
}

.calendar-start {
    margin-top: .5rem;
    margin-left: -1.5rem;
    margin-right: 0.5rem;
}

.calendar-end {
    margin-top: .5rem;
    margin-left: -1.5rem;
    margin-right: 0.5rem;
}

.external-icon {
    margin-top: .5rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

/* Modal */
/***********/
.modal-background {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1000;
}

.useReasonContainer label:not(#useReasonForm-group-label),
.useReasonContainer input {
    text-align: start;
    align-items: center;
    justify-content: center;
    display: flex;
    width: fit-content;
    height: 50px;
    border: 2px solid lightgray;
    padding: 0;
    cursor: pointer;
    border-radius: 999rem;
    color: gray;
    padding: 0 1em;
}

@media (max-width: 1280px), (max-height: 1030px) {
    .useReasonContainer label:not(#useReasonForm-group-label),
    .useReasonContainer input {
        height: 70px;
    }
}

#useReasonForm-description {
    padding-top: 1em;
    padding-bottom: 1em;
    white-space: pre-wrap;
}

.useReasonContainer input[type="radio"], .useReasonContainer input[type="checkbox"] {
    display: none;
}

    .useReasonContainer input[type="radio"]:checked + label,
    .useReasonContainer input[type="checkbox"]:checked + label {
        background: #0053A1;
        color: white !important;
    }

#useReasonForm-description2 {
    padding-bottom: 1em;
}

.modal-background-dark {
    background-color: #00000094;
}

.modal-section {
    padding: 1em;
}

.modal-body {
    border-top: 2px solid lightgrey;
    border-bottom: 2px solid lightgrey;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1em;
}

@media (max-width: 1280px), (max-height: 1030px) {
    .modal-footer {
        gap: 0.25em;
        padding: 0.4rem;
    }
}

.modal-container {
    background: white;
    width: 40%;
    margin: 2% auto;
    border: 2px solid gray;
}

@media (max-width: 1280px), (max-height: 1030px) {
    .modal-container {
        width: 90%;
        margin: 1% auto;
        height: 80%;
        overflow: scroll;
    }
}

@media (max-width: 640px), (max-height: 800px) {
    .modal-container {
        width: 90%;
        margin: 1% auto;
        height: 60%;
        overflow: scroll;
    }
}

/* Login */
/***********/
#login-notification {
    height: 6rem;
    background-color: #0053A1;
    display: flex;
    position: relative;
    flex: 1;
    flex-direction: column;
    padding: 1em;
}

@media (max-width: 640px) {
    #login-notification {
        height: 12rem;
    }
}

#login-notification div {
    width: fit-content;
    margin: auto;
}


    #login-notification span {
        font-size: larger;
        color: white;
    }

    #login-notification button {
        margin: auto;
        font-size: larger;
        padding: 0.5em 1.5em;
    }

.validation-message {
    color: tomato;
}

.protected-row {
    color: gray;
}

.unprotected-row {
    color: black;
}

.document-protection-info {
    background-color: #bddaf326;
    color: #0053a1;
    padding: 1rem;
    margin-top: 1rem;
    border: solid;
    border-width: 0.1rem;
    display: grid;
    grid-template-columns: 0.3fr 10fr;
}

.info-icon {
    padding-top: 0.48rem;
    padding-left: 0.3rem;
}