﻿@import "./fonts.css";

/* v. 2023-01-25 */

:root {
    --primary: #007DB3;
    --secondary: #454D56;
    --accent: #18CEE7;
}

/* Tipografia */

body {
    font-family: "Titillium Web", sans-serif;
    color: #00121A;
}

/* Headings */

.h1-lg {
    font-weight: 700;
    font-size: 52px;
    line-height: 1.5;
}

.h1-md, h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
}

.h1-xl {
    font-weight: 700;
    font-size: 56px;
    line-height: 1.5;
}

.h2-lg {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.5;
}

.h2-md {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
}

.h3-lg {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
}

.h3-md {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
}

.h4-lg {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
}

.h4-md {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
}

.h5-md {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.h6-md {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

/* Paragrafi */

.p-lg-01 {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

.p-lg-02 {
    font-family: "Lora", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

.p-md-01 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.p-md-02 {
    font-family: "Lora", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.disclaimer-md-400 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}

.signature-p-lg-02 {
    font-family: "Lora", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
}

.signature-p-md-02 {
    font-family: "Lora", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
}

/* Link */

.link-h3-md-01 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
}

.link-h4-md-01 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
}

.link-p-lg-01 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

.link-p-lg-02 {
    font-family: "Lora", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

.link-p-md-01 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.link-p-md-02 {
    font-family: "Lora", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.breadcrumb-md-current {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

.breadcrumb-md-default {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

.breadcrumb-md-focus {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

.breadcrumb-md-hover {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}





/* Colori testo */

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark-primary-110 {
    color: #005980;
}



/* Bottoni */

.btn {
    font-weight: 700;
    line-height: 100%;
    padding: 16px 42px;
    border: 0px;
    border-radius: 4px;
}

    .btn:focus, .btn.focus {
        box-shadow: none;
    }

    .btn.disabled, .btn:disabled {
        opacity: 1;
    }

    .btn > i {
        text-align: center;
        width: 1.25em;
        margin-left: calc(0.5rem - 0.125em);
        margin-right: -0.125em;
    }

.btn-icon {
    padding: 16px;
}

    .btn-icon > i {
        text-align: center;
        width: 1.25em;
        margin-left: -0.125em;
        margin-right: -0.125em;
    }

/* Bottone primario */

.btn-primary {
    color: #fff;
    background-color: var(--primary);
}

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

    .btn-primary:focus, .btn-primary.focus {
        background-color: var(--primary);
        box-shadow: 0px 0px 0px 3px white, 0px 0px 0px 5px #0092D1, 0px 0px 3px 5px rgba(0, 125, 179, 0.7);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #8E98A4;
        background-color: #C6CCD2;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        background-color: #00354c;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: none;
        }

/* Bottone secondario */

.btn-secondary {
    color: #fff;
    background-color: var(--secondary);
}

    .btn-secondary:hover {
        background-color: #2D3339;
    }

    .btn-secondary:focus, .btn-secondary.focus {
        background-color: var(--secondary);
        box-shadow: 0px 0px 0px 3px white, 0px 0px 0px 5px #0092D1, 0px 0px 3px 5px rgba(0, 125, 179, 0.7);
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #8E98A4;
        background-color: #C6CCD2;
    }

    .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-secondary.dropdown-toggle {
        background-color: #0B0D0E;
    }

        .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: none;
        }

/* Bottone terziario */

.btn-tertiary {
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    padding: 14px 40px;
}

    .btn-tertiary.btn-icon {
        padding: 14px;
    }

    .btn-tertiary:hover {
        color: #005980;
        border-color: #005980;
    }

    .btn-tertiary:focus, .btn-tertiary.focus {
        color: var(--primary);
        border-color: var(--primary);
        box-shadow: 0px 0px 0px 3px white, 0px 0px 0px 5px #0092D1, 0px 0px 3px 5px rgba(0, 125, 179, 0.7);
    }

    .btn-tertiary.disabled, .btn-tertiary:disabled {
        color: #8E98A4;
        border-color: #C6CCD2;
    }

    .btn-tertiary:not(:disabled):not(.disabled):active, .btn-tertiary:not(:disabled):not(.disabled).active,
    .show > .btn-tertiary.dropdown-toggle {
        color: #00354C;
        border-color: #00354C;
    }

        .btn-tertiary:not(:disabled):not(.disabled):active:focus, .btn-tertiary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-tertiary.dropdown-toggle:focus {
            box-shadow: none;
        }

/* Bottone terziario su sfondo scuro */

.btn-tertiary-dark {
    color: var(--accent);
    background-color: transparent;
    border: 2px solid var(--accent);
    padding: 14px 40px;
    position: relative;
}

    .btn-tertiary-dark::before {
        content: '';
        position: absolute;
        left: -2px;
        right: -2px;
        top: -2px;
        bottom: -2px;
        border: none;
        border-radius: 4px;
        box-shadow: none;
        transition: border-color 0.15s ease-in-out, border-width 0.15s ease-in-out, border-radius 0.15s ease-in-out, box-shadow 0.15s ease-in-out, top 0.15s ease-in-out, left 0.15s ease-in-out, right 0.15s ease-in-out, bottom 0.15s ease-in-out;
    }

    .btn-tertiary-dark.btn-icon {
        padding: 14px;
    }

    .btn-tertiary-dark:hover {
        color: #8CE7F3;
        border-color: #8CE7F3;
    }

    .btn-tertiary-dark:focus, .btn-tertiary-dark.focus {
        color: var(--accent);
        border-color: var(--accent);
    }

        .btn-tertiary-dark:focus::before, .btn-tertiary-dark.focus::before {
            content: '';
            position: absolute;
            left: -7px;
            right: -7px;
            top: -7px;
            bottom: -7px;
            border: 2px solid #0092d1;
            border-radius: 8px;
            box-shadow: 0px 0px 3px 0px rgba(0, 125, 179, 0.7);
        }

    .btn-tertiary-dark.disabled, .btn-tertiary-dark:disabled {
        color: #8E98A4;
        border-color: #C6CCD2;
    }

    .btn-tertiary-dark:not(:disabled):not(.disabled):active, .btn-tertiary-dark:not(:disabled):not(.disabled).active,
    .show > .btn-tertiary-dark.dropdown-toggle {
        color: #66E8F9;
        border-color: #66E8F9;
    }

        .btn-tertiary-dark:not(:disabled):not(.disabled):active:focus, .btn-tertiary-dark:not(:disabled):not(.disabled).active:focus,
        .show > .btn-tertiary-dark.dropdown-toggle:focus {
            box-shadow: none;
        }

            .btn-tertiary-dark:not(:disabled):not(.disabled):active:focus::before, .btn-tertiary-dark:not(:disabled):not(.disabled).active:focus::before,
            .show > .btn-tertiary-dark.dropdown-toggle:focus::before {
                left: -2px;
                right: -2px;
                top: -2px;
                bottom: -2px;
                border-color: transparent;
                border-radius: 4px;
                box-shadow: none;
            }





/* Campi input */

.form-label {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-info {
    color: var(--secondary);
    font-size: 0.875em;
    margin-left: 0.5rem;
}

    .form-info:hover {
        color: #0077A3;
    }

.form-text {
    color: #5B6772;
    font-size: 0.75rem;
}

.form-control {
    height: 3rem;
    padding: calc(0.75rem - 1px) 1rem;
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    box-shadow: none;
}

    .form-control::placeholder {
        color: #8E98A4;
    }

    .form-control:hover {
        color: #005980;
        border-color: #005980;
    }

.form-group:not(.disabled):not(.invalid):not(:focus-within):hover .form-label {
    color: #005980;
}

.form-group:not(.disabled):not(.invalid):not(:focus-within):hover .form-control {
    color: #005980;
    border-color: #005980;
}

.form-group:not(.disabled):not(.invalid):not(:focus-within):hover .form-text {
    color: #005980;
}

.form-control:focus {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 0px 0px 3px white, 0px 0px 0px 4px #0092D1, 0px 0px 3px 4px rgba(0, 125, 179, 0.7);
}

.form-group:focus-within .form-label {
    color: var(--primary);
}

.form-group:focus-within .form-text {
    color: var(--primary);
}

.form-control:disabled {
    color: #8E98A4;
    background-color: #C6CCD2;
    border-color: #C6CCD2;
}

.form-group.disabled .form-label {
    color: #8E98A4;
}

.form-group.disabled .form-text {
    color: #8E98A4;
}

.form-group.invalid .form-label {
    color: #AA224F;
}

.form-group.invalid .form-control {
    color: #AA224F;
    border-color: #AA224F;
}

.form-error {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #AA224F;
}





/* Checkbox */

.sirio-checkbox {
    position: relative;
    padding-left: 24px;
    margin: 0px;
    outline: 0;
    cursor: pointer;
}

    .sirio-checkbox span {
        display: inline-block;
        margin-left: 10px;
        font-size: 1rem;
        color: var(--secondary);
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .sirio-checkbox input[type="checkbox"] {
        width: 0px;
        height: 0px;
        cursor: pointer;
        display: none;
    }

        .sirio-checkbox input[type="checkbox"] ~ span::before {
            position: absolute;
            left: 0px;
            top: 0px;
            content: "";
            background-color: white;
            border: 1px solid var(--secondary);
            border-radius: 4px;
            display: inline-block;
            width: 24px;
            height: 24px;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .sirio-checkbox input[type="checkbox"] ~ span::after {
            position: absolute;
            left: 0px;
            top: 0px;
            display: inline-block;
            width: 24px;
            height: 24px;
            font-family: 'Font Awesome 5 Free', sans-serif;
            font-weight: 900;
            font-size: 12px;
            line-height: 24px;
            text-align: center;
            content: "\f00c";
            transition: all 0.15s ease-in-out;
            color: #00354C;
            transform: scale(0);
        }

        .sirio-checkbox input[type="checkbox"]:checked ~ span::before {
            border-color: #00354C;
        }

        .sirio-checkbox input[type="checkbox"]:checked ~ span::after {
            transform: scale(1);
        }

    .sirio-checkbox:hover span {
        color: #005980;
    }

    .sirio-checkbox:hover input[type="checkbox"] ~ span::before {
        border-color: #005980;
    }

    .sirio-checkbox:hover input[type="checkbox"] ~ span::after {
        color: #005980;
    }

    .sirio-checkbox:not(.disabled):focus-within span {
        color: var(--primary);
    }

    .sirio-checkbox:not(.disabled):focus-within input[type="checkbox"] ~ span::before {
        border-color: var(--primary);
        box-shadow: 0px 0px 0px 1px white, 0px 0px 0px 2px #0092D1, 0px 0px 3px 2px rgba(0, 125, 179, 0.7);
    }

    .sirio-checkbox:not(.disabled):focus-within input[type="checkbox"] ~ span::after {
        color: var(--primary);
    }

    .sirio-checkbox.disabled {
        cursor: default;
    }

        .sirio-checkbox.disabled span {
            color: #8E98A4;
        }

        .sirio-checkbox.disabled input[type="checkbox"] {
            cursor: default;
        }

            .sirio-checkbox.disabled input[type="checkbox"] ~ span::before {
                border-color: #C6CCD2;
            }

            .sirio-checkbox.disabled input[type="checkbox"] ~ span::after {
                color: #8E98A4;
            }

    /* Radio */

    .sirio-checkbox input[type="radio"] {
        width: 0px;
        height: 0px;
        cursor: pointer;
        display: none;
    }

        .sirio-checkbox input[type="radio"] ~ span::before {
            position: absolute;
            left: 0px;
            top: 0px;
            content: "";
            border: 1px solid var(--secondary);
            border-radius: 24px;
            display: inline-block;
            width: 24px;
            height: 24px;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .sirio-checkbox input[type="radio"] ~ span::after {
            position: absolute;
            left: 5px;
            top: 5px;
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 14px;
            content: "";
            transition: all 0.15s ease-in-out;
            background-color: #00354C;
            transform: scale(0);
        }

        .sirio-checkbox input[type="radio"]:checked ~ span::before {
            border-color: #00354C;
        }

        .sirio-checkbox input[type="radio"]:checked ~ span::after {
            transform: scale(1);
        }

    .sirio-checkbox:hover input[type="radio"] ~ span::before {
        border-color: #005980;
    }

    .sirio-checkbox:hover input[type="radio"] ~ span::after {
        background-color: #005980;
    }

    .sirio-checkbox:not(.disabled):focus-within input[type="radio"] ~ span::before {
        border-color: var(--primary);
        box-shadow: 0px 0px 0px 1px white, 0px 0px 0px 2px #0092D1, 0px 0px 3px 2px rgba(0, 125, 179, 0.7);
    }

    .sirio-checkbox:not(.disabled):focus-within input[type="radio"] ~ span::after {
        background-color: var(--primary);
    }

    .sirio-checkbox.disabled input[type="radio"] {
        cursor: default;
    }

        .sirio-checkbox.disabled input[type="radio"] ~ span::before {
            border-color: #C6CCD2;
        }

        .sirio-checkbox.disabled input[type="radio"] ~ span::after {
            background-color: #8E98A4;
        }

/* Toggle */

.sirio-toggle {
    position: relative;
    padding-left: 50px;
    margin: 0px;
    outline: 0;
    cursor: pointer;
}

    .sirio-toggle span {
        display: inline-block;
        margin-left: 8px;
        font-size: 1rem;
        color: var(--secondary);
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .sirio-toggle input[type="checkbox"] {
        width: 0px;
        height: 0px;
        cursor: pointer;
        display: none;
    }

        .sirio-toggle input[type="checkbox"] ~ span::before {
            position: absolute;
            left: 0px;
            top: 0px;
            content: "";
            border: 1px solid var(--secondary);
            border-radius: 16px;
            display: inline-block;
            width: 50px;
            height: 24px;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .sirio-toggle input[type="checkbox"] ~ span:after {
            position: absolute;
            left: 4px;
            top: 4px;
            display: inline-block;
            width: 16px;
            height: 16px;
            border-radius: 14px;
            content: "";
            transition: all 0.15s ease-in-out;
            background-color: var(--secondary);
        }

        .sirio-toggle input[type="checkbox"]:checked ~ span {
            color: var(--primary);
        }

            .sirio-toggle input[type="checkbox"]:checked ~ span::before {
                border-color: var(--primary);
            }

            .sirio-toggle input[type="checkbox"]:checked ~ span::after {
                background-color: var(--primary);
                left: 30px;
            }

    .sirio-toggle:not(.disabled):hover span {
        color: #2D3339;
    }

    .sirio-toggle:not(.disabled):hover input[type="checkbox"] ~ span::before {
        border-color: #2D3339;
    }

    .sirio-toggle:not(.disabled):hover input[type="checkbox"] ~ span::after {
        background-color: #2D3339;
    }

    .sirio-toggle:not(.disabled):hover input[type="checkbox"]:checked ~ span {
        color: #005980;
    }

        .sirio-toggle:not(.disabled):hover input[type="checkbox"]:checked ~ span::before {
            border-color: #005980;
        }

        .sirio-toggle:not(.disabled):hover input[type="checkbox"]:checked ~ span::after {
            background-color: #005980;
        }

    .sirio-toggle:not(.disabled):focus-within input[type="checkbox"] ~ span::before {
        box-shadow: 0px 0px 0px 1px white, 0px 0px 0px 2px #0092D1, 0px 0px 3px 2px rgba(0, 125, 179, 0.7);
    }

    .sirio-toggle.disabled {
        cursor: default;
    }

        .sirio-toggle.disabled span {
            color: #8E98A4 !important;
        }

        .sirio-toggle.disabled input[type="checkbox"] {
            cursor: default;
        }

            .sirio-toggle.disabled input[type="checkbox"] ~ span::before {
                border-color: #C6CCD2;
            }

            .sirio-toggle.disabled input[type="checkbox"] ~ span::after {
                background-color: #8E98A4;
            }





/* Accordion */
.sirio-accordion-header {
    border: 1px solid #EDF4F7;
    padding: 19px 64px 19px 16px;
    color: var(--primary);
    background-color: #EDF4F7;
    display: block;
    text-align: left;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    transition: all 0.15s ease-in-out;
    outline: 0;
}

    .sirio-accordion-header::after {
        font-family: 'Font Awesome 5 Free', sans-serif;
        font-weight: 900;
        content: "\f107";
        font-size: 24px;
        line-height: 16px;
        position: absolute;
        top: 24px;
        right: 32px;
        transform: rotate(180deg);
        transition: all 0.15s ease-in-out;
    }

    .sirio-accordion-header.collapsed {
        border-color: #C2E2F0;
        background-color: white;
    }

        .sirio-accordion-header.collapsed::after {
            transform: rotate(0deg);
        }

    .sirio-accordion-header:hover {
        color: #005980;
        text-decoration: underline;
        background-color: #EDF4F7;
        border-color: #EDF4F7;
    }

    .sirio-accordion-header:focus, .sirio-accordion-header.focus {
        color: var(--primary);
        text-decoration: underline;
        background-color: #EDF4F7;
        border-color: #0092D1;
        box-shadow: inset 0px 0px 0px 1px #0092D1, 0px 0px 3px rgba(0, 125, 179, 0.7);
    }

    .sirio-accordion-header.disabled, .sirio-accordion-header:disabled {
        color: #8E98A4;
        background-color: #C6CCD2;
        border-color: #C6CCD2;
        text-decoration: none;
    }

.sirio-accordion-body {
    padding: 32px 64px;
    font-size: 1rem;
    border: 1px solid #EDF4F7;
    background-color: white;
}





/* Progress bar */
.progress-container {
    width: 212px;
}

.progress {
    height: 0.625rem;
    border-radius: 0.5rem;
    background-color: #EDF4F7;
    position: relative;
}

    .progress::before {
        content: '';
        background-color: rgba(24, 206, 231, 1.0);
        width: 6px;
        height: 6px;
        border-radius: 0.5rem;
        position: absolute;
        top: 2px;
        left: 2px;
        z-index: 0;
    }

.progress-bar {
    margin: 2px;
    border-radius: 0.5rem;
    background: linear-gradient(-90.0deg, rgba(0, 53, 76, 1.0) 0%, rgba(0, 125, 179, 1.0) 50%, rgba(24, 206, 231, 1.0) 100%);
    z-index: 1;
}


.progress-value {
    text-align: right;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    padding: 4px 0px;
}





/* Tags */
.sirio-tag {
    background-color: var(--secondary);
    padding: 0px 16px;
    border-radius: 24px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
}

    .sirio-tag.bg-info {
        background-color: #0077A3 !important;
    }

    .sirio-tag.bg-alert {
        background-color: #AA224F !important;
    }

    .sirio-tag.bg-success {
        background-color: #049894 !important;
    }

    .sirio-tag.bg-warning {
        background-color: #E26334 !important;
    }






/* Chips */
.sirio-chip {
    display: inline-block;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 700;
    outline: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    padding: 2px 14px;
}

    .sirio-chip > i {
        text-align: center;
        width: 1.25em;
        margin-left: -0.125em;
        margin-right: calc(0.5rem - 0.125em);
    }

    .sirio-chip:focus {
        box-shadow: 0px 0px 0px 2px white, 0px 0px 0px 4px #0092D1, 0px 0px 3px 4px rgba(0, 125, 179, 0.7);
    }

    .sirio-chip:not(:disabled):not(.disabled):active:focus {
        box-shadow: none;
    }

    .sirio-chip:not(.active):hover {
        color: #005980;
        border-color: #005980;
    }

    .sirio-chip:not(.active):focus {
        color: var(--primary);
        border-color: var(--primary);
    }

    .sirio-chip:not(.active):active {
        color: #00354C;
        border-color: #00354C;
    }

    .sirio-chip.active {
        color: white;
        background-color: var(--primary);
        border: 0;
        padding: 4px 16px;
    }

        .sirio-chip.active:hover {
            color: white;
            background-color: #005980;
        }

        .sirio-chip.active:focus {
            background-color: var(--primary);
        }

        .sirio-chip.active:active {
            background-color: #00354C;
        }

    .sirio-chip.disabled, .sirio-chip:disabled {
        color: #8E98A4 !important;
        background-color: #C6CCD2 !important;
        border-color: #C6CCD2 !important;
    }




/* Wizard */
.sirio-wizard-container {
    background-color: #EDF4F7;
}

.sirio-wizard {
    display: flex;
    list-style: none;
    counter-reset: wizard-counter;
    padding: 24px 40px;
    margin: 0px;
}

    .sirio-wizard li {
        display: inline-block;
        counter-increment: wizard-counter;
        text-align: center;
        flex: 1 1 100px;
        position: relative;
        font-size: 1rem;
        line-height: 1.2;
    }

        .sirio-wizard li::before {
            content: counter(wizard-counter);
            display: block;
            width: 32px;
            height: 32px;
            margin: 0px auto 8px;
            background-color: #C6CCD2;
            border-radius: 16px;
            line-height: 32px;
            color: white;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .sirio-wizard li::after {
            content: "";
            background-color: #C6CCD2;
            height: 1px;
            display: block;
            position: absolute;
            top: 16px;
            left: 0;
            right: 0;
        }

        .sirio-wizard li:first-child::after {
            left: 50%;
        }

        .sirio-wizard li:last-child::after {
            right: 50%;
        }

        .sirio-wizard li.sirio-wizard-step-active::before {
            background-color: var(--primary);
        }

        .sirio-wizard li.sirio-wizard-step-done::before {
            background-color: #005980;
            content: "\f00c";
            font-family: 'Font Awesome 5 Free', sans-serif;
        }





/* Date Picker */

.sirio-datepicker {
    position: relative;
}

    .sirio-datepicker::after {
        content: "\f783";
        width: 48px;
        height: 48px;
        font-family: 'Font Awesome 5 Free', sans-serif;
        font-weight: 900;
        font-size: 16px;
        line-height: 48px;
        text-align: center;
        position: absolute;
        right: 0px;
        top: 0px;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .sirio-datepicker input {
        padding-right: 48px;
    }

.form-group:not(.disabled):not(.invalid):not(:focus-within):hover .sirio-datepicker::after {
    color: #005980;
}

.form-group:focus-within .sirio-datepicker::after {
    color: var(--primary);
}

.datepicker-picker {
    color: #17191C;
}

.datepicker-dropdown {
    padding-top: 11px;
}

    .datepicker-dropdown.datepicker-orient-top {
        padding-bottom: 11px;
        padding-top: 0;
    }

    .datepicker-dropdown .datepicker-picker {
        border-radius: 0px;
        box-shadow: 0px 0px 24px #C6CCD2;
    }

.datepicker-header .datepicker-controls {
    padding: 0px;
}

    .datepicker-header .datepicker-controls .button {
        border-width: 0px;
        font-weight: 600;
        font-size: 1rem;
        line-height: 2.5rem;
        height: 2.5rem;
        padding: 0px;
        flex-basis: 14.2857142857%;
        color: #007DB3;
    }

        .datepicker-header .datepicker-controls .button:hover {
            background-color: transparent;
        }

    .datepicker-header .datepicker-controls .view-switch:hover {
        text-decoration: underline;
        font-weight: 700;
    }

    .datepicker-header .datepicker-controls .prev-btn, .datepicker-header .datepicker-controls .next-btn {
        font-size: 0px;
    }

.datepicker-controls .prev-btn:before {
    content: "\f104";
    width: 24px;
    height: 24px;
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
}

.datepicker-controls .next-btn:before {
    content: "\f105";
    width: 24px;
    height: 24px;
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
}

.datepicker-main {
    padding: 0px;
}

.datepicker-view .dow {
    font-size: 0.75rem;
    font-weight: 400;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 0;
    text-transform: uppercase;
}

.datepicker-picker span {
    border-radius: 15px;
}

.datepicker-grid {
    width: 21.875rem;
}

.datepicker-cell, .datepicker-view .week {
    height: 1.875rem;
    line-height: 1.875rem;
    margin: 0.3125rem 0;
}

.datepicker-cell {
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .datepicker-cell.focused:not(.selected) {
        background-color: transparent;
        box-shadow: inset 0px 0px 0px 1px #0092D1, 0px 0px 3px 0px rgba(0, 125, 179, 0.7);
    }

    .datepicker-cell:not(.disabled):hover {
        background-color: #005980;
        color: white;
    }

    .datepicker-cell.selected, .datepicker-cell.selected:hover {
        background-color: #00354C;
        font-weight: 400;
    }

    .datepicker-cell.next:not(.disabled), .datepicker-cell.prev:not(.disabled) {
        color: #8E98A4;
    }

.days-of-week {
    background-color: #EDF4F7;
}

.datepicker-view.datepicker-grid .datepicker-cell {
    flex-basis: 33.3333333%;
    height: 1.875rem;
    line-height: 1.875rem;
    margin: 0.3125rem 0;
}





/* Tabella */

.sirio-table-header {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    background-color: var(--primary);
    padding: 0 1rem;
    height: 4.5rem;
    border-radius: 4px 4px 0px 0px;
    display: flex;
    align-items: center;
}

    .sirio-table-header > div:first-child {
        flex-grow: 1;
    }

.sirio-table-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.sirio-table-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.sirio-table-header-buttons {
    display: flex;
    gap: 16px;
}

    .sirio-table-header-buttons button {
        color: white;
        font-size: 1rem;
        line-height: 1;
        font-weight: 600;
        background-color: transparent;
        border: 0;
        outline: 0;
        padding: 16px;
        border-radius: 4px;
    }

        .sirio-table-header-buttons button > i {
            text-align: center;
            width: 1.25em;
            margin-left: -0.125em;
            margin-right: -0.125em;
        }

.table thead th {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background-color: #004766;
    border: 1px solid #82B4C9;
    border-width: 1px 1px 1px 0px;
    border-top-color: #004766;
    padding: 0 1rem;
    height: 60px;
    vertical-align: middle;
}

    .table thead th:first-child {
        border-left: 1px solid #004766;
    }

    .table thead th:last-child {
        border-right-color: #004766;
    }

.table td {
    border: 1px solid #C2E2F0;
    border-width: 0px 1px 1px 0px;
    padding: 1.125rem 1rem 1.0625rem 1rem;
}

    .table td:first-child {
        border-left-width: 1px;
    }

.table-hover tbody tr:hover {
    background-color: #C2E2F0;
}

.bootstrap-table .fixed-table-container .table thead th {
    vertical-align: middle;
}

    .bootstrap-table .fixed-table-container .table thead th .sortable {
        background-position: right 10px center;
        padding-right: 40px !important;
    }

    .bootstrap-table .fixed-table-container .table thead th .th-inner {
        padding: 0 1rem;
    }

.bootstrap-table .fixed-table-pagination {
    background-color: #EDF4F7;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid #EDF4F7;
    height: 74px;
}

    .bootstrap-table .fixed-table-pagination > .pagination-detail {
        margin: 0px;
        padding: 0px 16px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        height: 100%;
        color: #454D56;
        font-weight: 600;
    }

        .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group {
            margin-left: 16px;
            margin-right: 8px;
        }

            .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .btn.dropdown-toggle {
                padding: 15px 39px 15px 15px;
                background-color: white;
                border: 1px solid #454D56;
                color: #454D56;
                font-weight: 400;
                min-width: 80px;
                font-family: 'Roboto Mono', sans-serif;
                text-align: left;
            }

                .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .btn.dropdown-toggle::after {
                    content: "\f107";
                    font-family: 'Font Awesome 5 Free', sans-serif;
                    font-weight: 900;
                    font-size: 24px;
                    border: 0px;
                    line-height: 16px;
                    vertical-align: top;
                    margin-left: 0px;
                    position: absolute;
                    right: 15px;
                }

            .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group.show .btn.dropdown-toggle::after {
                content: "\f106";
            }

            .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu {
                border: 1px solid #454D56;
                border-radius: 4px;
                font-family: 'Roboto Mono', sans-serif;
                font-weight: 400;
                color: #454D56;
                padding: 4px 0px;
                min-width: 80px;
            }

                .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu .dropdown-item {
                    padding: 12px 16px;
                }

                    .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu .dropdown-item:hover {
                        color: white;
                        background-color: #005980;
                    }

                    .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu .dropdown-item:not(:active):focus {
                        color: white;
                        background-color: #007DB3;
                        outline: 0;
                        box-shadow: inset 0px 0px 0px 2px #0092D1, 0px 0px 3px rgba(0, 125, 179, 0.7);
                    }

                    .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu .dropdown-item:active {
                        color: white;
                        background-color: #00354C;
                    }

                    .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu .dropdown-item.active {
                        color: white;
                        background-color: #007DB3;
                    }

        .bootstrap-table .fixed-table-pagination > .pagination-detail .pagination-info .sirio-page-numbers {
            font-family: 'Roboto Mono', sans-serif;
            font-weight: 400;
            margin-left: 8px;
            margin-right: 8px;
        }

    .bootstrap-table .fixed-table-pagination > .pagination {
        margin: 0px;
        padding: 12px 4px 12px 0px;
        background-color: white;
        border-radius: 0px;
    }

        .bootstrap-table .fixed-table-pagination > .pagination .page-item:not(.page-pre):not(.page-next) .page-link {
            font-size: 1rem;
            line-height: 1;
            padding: 0.875rem 0.5rem;
            margin: 2px 0px;
            min-width: 38px;
            text-align: center;
            border: 0px;
            color: #454D56;
            border-radius: 4px;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

            .bootstrap-table .fixed-table-pagination > .pagination .page-item:not(.page-pre):not(.page-next) .page-link:hover {
                color: white;
                background-color: #005980;
            }

        .bootstrap-table .fixed-table-pagination > .pagination .page-item .page-link:focus {
            box-shadow: inset 0px 0px 0px 1px #0092D1, 0px 0px 3px rgba(0, 125, 179, 0.7);
        }

        .bootstrap-table .fixed-table-pagination > .pagination .page-item.active:not(.page-pre):not(.page-next) .page-link {
            color: white;
            background-color: #00354C;
        }

        .bootstrap-table .fixed-table-pagination > .pagination .page-item.page-pre .page-link,
        .bootstrap-table .fixed-table-pagination > .pagination .page-item.page-next .page-link {
            border: 0px;
            padding: 0.875rem 0.5rem;
            width: 50px;
            height: 48px;
            margin-left: 4px;
            border-radius: 4px;
            color: #007DB3;
            background-color: white !important;
        }

            .bootstrap-table .fixed-table-pagination > .pagination .page-item.page-pre .page-link::before {
                content: "\f104";
                font-family: 'Font Awesome 5 Free', sans-serif;
                font-weight: 900;
                width: 48px;
                height: 46px;
                text-align: center;
                line-height: 46px;
                background-color: white;
                border-radius: 4px;
                position: absolute;
                top: 1px;
                left: 1px;
            }

            .bootstrap-table .fixed-table-pagination > .pagination .page-item.page-next .page-link::before {
                content: "\f105";
                font-family: 'Font Awesome 5 Free', sans-serif;
                font-weight: 900;
                width: 48px;
                height: 46px;
                text-align: center;
                line-height: 46px;
                background-color: white;
                border-radius: 4px;
                position: absolute;
                top: 1px;
                left: 1px;
            }

        .bootstrap-table .fixed-table-pagination > .pagination .page-item:not(.page-pre):not(.page-next) {
            display: none;
        }





/* Tab */

.nav-tabs {
    border-bottom: 3px solid #EDF4F7;
}

    .nav-tabs .nav-link {
        margin-bottom: -3px;
        border: 0px;
        color: #454D56;
        font-size: 20px;
        padding: 9px 32px 8px;
        border-bottom: 3px solid #EDF4F7;
        transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

        .nav-tabs .nav-link > i {
            color: #AAB2BB;
            margin-right: 8px;
            font-size: 16px;
            height: 20px;
            vertical-align: middle;
        }

        .nav-tabs .nav-link:hover {
            color: #005980;
            border-bottom: 3px solid #005980;
        }

            .nav-tabs .nav-link:hover > i {
                color: #005980;
            }

        .nav-tabs .nav-link:focus {
            outline: 0;
            color: #454D56;
            border-bottom: 3px solid #0092D1;
            box-shadow: inset 0px 1px #0092D1, inset 1px 0px #0092D1, inset -1px 0px #0092D1, 0px 0px 3px rgba(0, 125, 179, 0.7);
        }

            .nav-tabs .nav-link:focus > i {
                color: #0092D1;
            }

        .nav-tabs .nav-link.active {
            color: #454D56;
            font-weight: 700;
            border-bottom: 3px solid #007DB3;
        }

            .nav-tabs .nav-link.active > i {
                color: #454D56;
            }

        .nav-tabs .nav-link.disabled {
            color: #8E98A4;
            background-color: #C6CCD2;
            border-bottom: 3px solid #EDF4F7;
        }

            .nav-tabs .nav-link.disabled > i {
                color: #8E98A4;
            }





/* Dropdown */

.sirio-dropdown.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    display: block;
    width: 100%;
}

.sirio-dropdown > .dropdown-toggle {
    background-color: white;
    line-height: 1.5;
    height: 3rem;
    padding: calc(0.75rem - 1px) 1rem;
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    box-shadow: none !important;
}

.sirio-dropdown > select.mobile-device:focus + .dropdown-toggle,
.sirio-dropdown .dropdown-toggle:focus {
    outline: 0 !important;
}

.sirio-dropdown > .dropdown-toggle.bs-placeholder,
.sirio-dropdown > .dropdown-toggle.bs-placeholder:hover,
.sirio-dropdown > .dropdown-toggle.bs-placeholder:focus,
.sirio-dropdown > .dropdown-toggle.bs-placeholder:active {
    color: var(--secondary);
}

    .sirio-dropdown > .dropdown-toggle.bs-placeholder .filter-option-inner-inner {
        color: #8E98A4;
    }

.sirio-dropdown > .dropdown-toggle::after {
    border: 0px;
    margin: 0px;
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    content: "\f107";
    font-size: 24px;
    line-height: 16px;
    transform: rotate(0deg);
    transition: all 0.15s ease-in-out;
}

.sirio-dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.sirio-dropdown > .dropdown-menu,
.sirio-dropdown.dropup > .dropdown-menu {
    padding: 4px 0px;
    margin: 27px 0px 0px;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.sirio-dropdown .dropdown-item {
    color: var(--secondary);
    padding: 0.75rem 1rem;
}

    .sirio-dropdown .dropdown-item.selected {
        color: white;
        background-color: #00354C;
    }

    .sirio-dropdown .dropdown-item:hover {
        color: white;
        background-color: #005980;
    }

.sirio-dropdown > .dropdown-toggle.btn-light:not(:disabled):not(.disabled):active,
.sirio-dropdown > .dropdown-toggle.btn-light:not(:disabled):not(.disabled).active,
.sirio-dropdown.show > .btn-light.dropdown-toggle {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary);
}

.sirio-dropdown .dropdown-item:not(.selected).active,
.sirio-dropdown .dropdown-item:not(.selected):active {
    color: white;
    background-color: var(--primary);
    box-shadow: 0px 0px 3px rgba(0, 125, 179, 0.7);
}

.sirio-dropdown > .dropdown-toggle:hover {
    color: #005980;
    border-color: #005980;
}

.form-group:not(.disabled):not(.invalid):not(:focus-within):hover .sirio-dropdown > .dropdown-toggle {
    color: #005980;
    border-color: #005980;
}

.form-group:not(.disabled):not(.invalid):not(:focus-within):hover .form-text {
    color: #005980;
}

.sirio-dropdown > .dropdown-toggle:focus,
.sirio-dropdown:focus-within > .dropdown-toggle,
.sirio-dropdown > .dropdown-toggle.bs-placeholder:focus,
.sirio-dropdown:focus-within > .dropdown-toggle.bs-placeholder {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 0px 0px 3px white, 0px 0px 0px 4px #0092D1, 0px 0px 3px 4px rgba(0, 125, 179, 0.7) !important;
}





/* helper per gli sfondi */

.bg-dark-primary-120 {
    background-color: #00354c;
}
