﻿@font-face {
    font-family: graphik;
    src: url(../fonts/Graphik-Regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: graphik;
    src: url(../fonts/Graphik-Medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: graphik;
    src: url(../fonts/Graphik-Semibold.otf);
    font-weight: 600;
}

@font-face {
    font-family: graphik;
    src: url(../fonts/Graphik-Bold.otf);
    font-weight: 700;
}

@font-face {
    font-family: graphik;
    src: url(../fonts/Graphik-Black.otf);
    font-weight: 800;
}

@font-face {
    font-family: graphik;
    src: url(../fonts/Graphik-Super.otf);
    font-weight: 900;
}

@font-face {
    font-family: freeland;
    src: url(../fonts/Freeland.otf);
}

:root {
    --blue: #163052;
    --white: #ffffff;
    --xlightgrey: #fafafa;
    --lightgrey: #f4f4f5;
    --mediumgrey: #eeeff0;
    --grey: #979aa1;
    --red: #FF1A00;
}

html {
    font-size: 18px;
    font-family: graphik;
    /*min-width: 380px;*/
}

body {
}

h1 {
    font-size: 3.33rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 2.3rem;
    font-weight: 700;
}

h4 {
    font-size: 1.77rem;
    font-weight: 700;
}

h5 {
    font-size: 1.55rem;
    font-weight: 600;
}

h6 {
    font-size: 1.22rem;
    font-weight: 600;
}

.fs-micro {
    font-size: 0.77rem;
}

.fs-mini {
    font-size: 0.55rem;
    font-weight: 400;
}

.fs-medium {
    font-size: 0.88rem;
}

.fs-normal {
    font-size: 1rem;
}

.fs-20 {
    font-size: 1.11rem;
}

a {
    font-size: 0.83rem;
}

.freeland {
    font-family: freeland;
    font-weight: 100;
}

.font-medium {
    font-weight: 500;
}

#MasterContainer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#MasterBody {
    flex: 1;
}

#MasterHeader {
    position: absolute;
    width: 100%;
}

    #MasterHeader a, #MasterHeader .btn {
        font-size: 0.83rem !important;
    }

    #MasterHeader .btn {
        padding: 0.88rem 1.61rem 0.88rem 1.61rem;
    }

    #MasterHeader .btn-outline-primary, #MasterHeader .btn-outline-light {
        border-radius: 2rem;
    }

    #MasterHeader .nav-link {
        line-height: 2rem;
    }

    #MasterHeader .navbar-toggler:focus {
        box-shadow: none;
    }



    #MasterHeader .dropdown-menu .intestazione-dropdown {
        display: block;
        font-size: 0.83rem;
        color: var(--blue);
        font-weight: bold;
        padding-right: 1.33rem;
        border-left: 6px solid var(--blue);
        padding-left: 0.4rem;
        margin-top: 1.33rem;
    }

    #MasterHeader .dropdown-menu table {
        width: 100%;
        font-size: 0.66rem;
    }

        #MasterHeader .dropdown-menu table tr {
            border-bottom: 1px solid #cacacb;
        }

            #MasterHeader .dropdown-menu table tr:last-of-type {
                border-bottom: none;
            }

            #MasterHeader .dropdown-menu table tr td {
                padding-top: 1.33rem;
                padding-bottom: 0.66rem;
            }

                #MasterHeader .dropdown-menu table tr td a {
                    margin-bottom: 0.66rem;
                }

#MasterFooter {
    margin-top: 3.33rem;
    padding-top: 2.22rem;
    padding-bottom: 2.22rem;
    color: var(--white) !important;
}

    #MasterFooter a, #MasterFooter p {
        font-size: 0.66rem !important;
        display: block;
        color: var(--white) !important;
    }

    #MasterFooter p {
        margin-bottom: 0;
    }

    #MasterFooter .row {
        margin-bottom: 2.77rem;
    }

    #MasterFooter span {
        font-size: 0.55rem;
        opacity: 0.7;
    }

.dialogo header {
    height: 3.33rem;
    padding-top: 1.66rem;
    padding-left: 1.66rem;
    padding-right: 1.66rem;
    text-align: end;
}

    .dialogo header a, .dialogo .chiudi_dialogo {
        font-size: 3.5rem !important;
        line-height: 0.5;
        display: inline-block;
        margin: -6px;
        font-weight: 100 !important;
    }

.dialogo section {
    padding-left: 6.66rem;
    padding-right: 6.66rem;
    padding-bottom: 3.33rem;
}

.dialogo .document-container {
    position: relative;
    width: 100%;
    height: 90vh;
}

.messaggio_errore {
    color: var(--red);
    margin-bottom: 1.5rem;
    display: block;
    height: 1.15rem;
    font-size: 0.77rem;
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-270 {
    transform: rotate(-90deg);
}

.max-vw-100 {
    max-width: 100vw;
    margin: auto;
}

.translate_middle-y_60 {
    transform: translate(-50%, -60%);
}

.img-vh-77 {
    object-fit: cover;
    height: 77vh;
}

.img-vh-60 {
    object-fit: cover;
    height: 60vh;
}

.img-vh-50 {
    object-fit: cover;
    height: 50vh;
}

.max-vh-75 {
    max-height: 75vh;
}

.text-underline {
    text-decoration: underline !important;
}
/*Bootstrap override*/
.text-primary {
    color: var(--blue) !important;
}

.text-secondary {
    color: var(--grey) !important;
}

.btn-primary {
    background-color: var(--blue) !important;
    color: var(--white) !important;
    border-color: var(--blue) !important;
}

.btn-secondary {
    background-color: var(--mediumgrey) !important;
    color: var(--blue) !important;
    border-color: var(--mediumgrey) !important;
}

.btn-light {
    background-color: var(--white) !important;
    color: var(--blue) !important;
    border-color: var(--white) !important;
}

.btn {
    font-weight: 500;
}

    .btn:focus-visible {
        box-shadow: none;
    }

.btn-outline-primary {
    color: var(--blue) !important;
    border-color: var(--blue) !important;
}

    .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary:focus-visible {
        color: var(--white) !important;
        background-color: var(--blue) !important;
    }

.btn-outline-light {
    color: var(--white) !important;
    border-color: var(--white) !important;
}

    .btn-outline-light:active, .btn-outline-light:hover, .btn-outline-light:focus-visible {
        color: var(--blue) !important;
    }

.bg-primary {
    background-color: var(--blue) !important;
}

.bg-secondary {
    background-color: var(--lightgrey) !important;
}

.bg-light {
    background-color: var(--xlightgrey) !important;
}

.border-primary {
    border-color: var(--blue) !important;
}

.border-secondary {
    border-color: var(--mediumgrey) !important;
}

a {
    color: var(--blue) !important;
    text-decoration: none;
    cursor: pointer;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url(../Images/Statiche/icona_menu_blu.svg);
}
/*end bootstrap*/
.lavazza-label {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--grey);
}

.lavazza-textbox {
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--blue);
    border-radius: 0;
    padding: 0;
    padding-bottom: 0.3rem;
    display: block;
    width: 100%;
    font-size: 0.9rem;
    font-weight: bold;
}

.lavazza-checkbox input[type=checkbox] {
    transform: scale(2);
    margin-right: 0.7rem;
    margin-left: 0.4rem;
}

.lavazza-checkbox label {
    vertical-align: middle;
}

.lavazza-select {
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--blue);
    border-radius: 0;
    padding: 0;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    display: block;
    width: 100%;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--grey);
}

    .lavazza-select option {
        color: var(--blue);
        background-color: var(--lightgrey);
    }

.p-40 {
    padding: 2.22rem;
}

.px-40 {
    padding-left: 2.22rem !important;
    padding-right: 2.22rem !important;
}

.pt-40 {
    padding-top: 2.22rem;
}

.pb-40 {
    padding-bottom: 2.22rem;
}

.mb-40 {
    margin-bottom: 2.22rem;
}

.mb-150 {
    margin-bottom: 8rem;
}

.mb-190 {
    margin-bottom: 10.5rem;
}

.text-container {
    max-width: 900px;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-left: auto;
    margin-right: auto;
}

.text-container-small {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.video_play_button {
    display: inline-block;
    width: 4.7rem;
    height: 4.7rem;
    background-color: var(--white);
    border-radius: 50%;
    position: relative;
}

    .video_play_button span {
        border: 0;
        padding: 0;
        background: transparent;
        box-sizing: border-box;
        width: 0;
        height: 2rem;
        border-color: transparent transparent transparent var(--blue);
        cursor: pointer;
        border-style: solid;
        border-width: 1rem 0 1rem 1.5rem;
        position: absolute;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-34%, -50%);
    }

.semicerchio_container {
    overflow: hidden;
    margin-top: -7rem;
}

    .semicerchio_container .semicerchio {
        background-color: var(--blue);
        padding-top: 5rem;
        padding-bottom: 3rem;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        width: 112%;
        margin-left: -6%;
    }

.aree_didattiche_cards {
    margin-top: -3.88rem;
}

    .aree_didattiche_cards .area_didattica_card {
        position: relative;
    }

.area_didattica_card a {
    color: white !important;
}

.aree_didattiche_cards .area_didattica_card img {
    border-radius: 0.88rem;
}

.area_didattica_card_container, .home_card_container {
    padding-top: 1.66rem;
}

.home .assessment_qc {
    margin-top: 10.5rem;
    margin-bottom: 0.33rem;
}

    .home .assessment_qc .btn {
        padding: 0.88rem 3.33rem 0.88rem 3.33rem;
    }

    .home .assessment_qc .btn-outline-primary, .home .assessment_qc .btn-outline-light {
        border-radius: 2rem;
    }

.corsi_cards .corso_card, .tc_cards .tc_card, .home_cards .home_card {
    position: relative;
}

.corso_card, .tc_card, .home_card {
    color: var(--white) !important;
}

    .corso_card a, .tc_card a, .home_card a {
        color: white !important;
    }

    .tc_card a {
        line-height: 2.5 !important;
    }

.corsi_cards .corso_card img, .tc_cards .tc_card img, .home_cards .home_card img {
    border-radius: 0.88rem;
}

.corso_card_container, .tc_card_container {
    padding-top: 1.5rem;
}

.home .learning {
    padding-top: 10.5rem;
    padding-bottom: 0.6rem;
}

.area_didattica .links_path, .corso .links_path {
    position: absolute;
    left: 50%;
    top: 7rem;
    transform: translate(-50%,0);
}

    .area_didattica .links_path a {
        color: var(--white) !important;
        opacity: 0.5;
    }

.links_path a {
    color: var(--blue) !important;
    opacity: 0.5;
}

    .links_path a:last-child {
        opacity: 1;
    }

.corso .links_path {
    top: 1rem;
}


.calendario table a {
    font-size: 0.8rem !important;
}

.calendario .day_selected {
    background-color: transparent !important;
}

    .calendario .day_selected a {
        border: 2px solid var(--blue);
        background-color: var(--blue);
        border-radius: 1.5rem;
        color: white !important;
        display: block;
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.2rem;
    }

.calendario .day_selectable a {
    border: 2px solid var(--blue);
    border-radius: 1.5rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.2rem;
}

.help_center header {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


@media (max-width: 575px) {
    html {
        font-size: 13px;
    }

    .img-vh-77 {
        min-height: 450px;
    }

    .img-vh-60 {
        min-height: 350px;
    }

    .img-vh-50 {
        min-height: 300px;
    }

    .desktop-only {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3, h4, h5 {
        font-size: 1.8rem;
    }

    p, a, .fs-normal {
        font-size: 1.2rem;
    }

    .fs-micro {
        font-size: 1rem;
    }

    .fs-mini {
        font-size: 1rem;
    }

    .fs-medium {
        font-size: 1rem;
    }

    #MasterHeader a, #MasterHeader .btn {
        font-size: 1rem !important;
    }

    #MasterFooter a {
        font-size: 1.3rem !important;
    }

    #MasterFooter p {
        font-size: 1.3rem !important;
    }

    #MasterFooter span {
        font-size: 0.8rem;
    }

    .text-container {
        max-width: 92%;
    }

    .text-container-small {
        max-width: 100%;
    }

    .container .text-container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .semicerchio_container .semicerchio {
        width: 200%;
        margin-left: -50%;
    }

    .area_didattica_card_container, .home_card_container, .corso_card_container, .tc_card_container {
        padding-top: 2rem;
    }

    .container {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .home .learning {
        padding-top: 5rem;
        padding-bottom: 0;
        text-align: center;
    }

    .dialogo section {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    #MasterFooter p a {
        border-bottom: 1px solid white;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .img-vh-77 {
        min-height: 550px;
    }

    .img-vh-60 {
        min-height: 420px;
    }

    .img-vh-50 {
        min-height: 350px;
    }

    .desktop-only {
        display: none;
    }

    .text-container {
        max-width: 570px;
    }

    .text-container-small {
        max-width: 100%;
    }

    .semicerchio_container .semicerchio {
        width: 180%;
        margin-left: -40%;
    }

    .area_didattica_card_container, .home_card_container, .corso_card_container, .tc_card_container {
        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }

    .home .learning {
        padding-top: 5rem;
        padding-bottom: 0;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 14px;
    }

    .img-vh-77 {
        min-height: 500px;
    }

    .img-vh-60 {
        min-height: 380px;
    }

    .img-vh-50 {
        min-height: 320px;
    }

    .desktop-only {
        display: none;
    }

    .text-container {
        max-width: 750px;
    }

    .semicerchio_container .semicerchio {
        width: 160%;
        margin-left: -30%;
    }

    .area_didattica_card_container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .home .learning {
        padding-top: 5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 14px;
    }

    .img-vh-77 {
        min-height: 495px;
    }

    .img-vh-60 {
        min-height: 380px;
    }

    .img-vh-50 {
        min-height: 320px;
    }

    .mobile-only {
        display: none !important;
    }

    .dropdown-menu {
        min-width: 550px;
    }

    .semicerchio_container .semicerchio {
        width: 140%;
        margin-left: -20%;
    }

    .area_didattica_card_container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .home .learning {
        padding-top: 5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    html {
        font-size: 16px;
    }

    .img-vh-77 {
        min-height: 520px;
    }

    .img-vh-60 {
        min-height: 400px;
    }

    .img-vh-50 {
        min-height: 330px;
    }

    .dropdown-menu {
        min-width: 650px;
    }

    .mobile-only {
        display: none !important;
    }

    .area_didattica_card_container:nth-child(3n+2) {
        margin-top: 3.88rem;
        margin-bottom: -3.88rem;
    }

    .semicerchio_container .semicerchio {
        width: 120%;
        margin-left: -10%;
    }

    .area_didattica_card_container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}

@media (min-width: 1400px) {

    .img-vh-77 {
        min-height: 575px;
    }

    .img-vh-60 {
        min-height: 420px;
    }

    .img-vh-50 {
        min-height: 350px;
    }

    #MasterHeader .dropdown-menu {
        min-width: 800px;
        padding-right: 2.22rem;
    }

    .area_didattica_card_container:nth-child(3n+2) {
        margin-top: 3.88rem;
        margin-bottom: -3.88rem;
    }

    .mobile-only {
        display: none !important;
    }
}

/*css temporaneo per ambiente partecipanti vecchio*/
.calendario_impegni {
    margin-bottom: 5em;
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 1em;
    font-size: 72%;
}

    .calendario_impegni section {
        width: 71%;
        margin-left: 0;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
    }

    .calendario_impegni aside {
        width: 26%;
        text-align: right;
        margin-right: 0;
        display: inline-block;
        vertical-align: top;
        margin-left: 1%;
    }

        .calendario_impegni aside table {
            width: 100%;
        }

.tabella_calendario {
    background-color: white;
    width: 100%;
}

    .tabella_calendario .calendarioGiorno {
        color: inherit;
    }

    .tabella_calendario .calendarioGiorno, .tabella_calendario .calendarioGiornoAltroMese {
        height: 6em;
    }

    .tabella_calendario .calendarioEvento {
        font-size: 0;
        vertical-align: top;
        color: #53A553;
        border: 1px solid #EAEAEA;
    }

        .tabella_calendario .calendarioEvento a {
            cursor: pointer;
        }

    .tabella_calendario .cld_pnl_full {
        background-color: #e1e9a8;
        font-size: 1rem;
        text-align: center;
    }

    .tabella_calendario .cld_pnl_top, .tabella_calendario .cld_pnl_bottom {
        background-color: #e1e9a8;
        font-size: 1rem;
        text-align: center;
    }

    .tabella_calendario .cld_lh_full {
        padding-top: 1.6em;
    }

    .tabella_calendario .cld_lh {
        padding-top: 0.8em;
    }

    .tabella_calendario .cld_empty_top {
        margin-top: 2.8em;
    }

    .tabella_calendario .cld_lnk_delete {
        color: red;
        padding: 0.5em;
        margin-left: -1em;
    }

    .tabella_calendario .cld_pnl_top {
        margin-top: -1px;
        border-bottom: 1px solid black;
    }

    .tabella_calendario .cld_pnl_bottom {
        margin-bottom: -1px;
        border-top: 1px solid black;
    }

    .tabella_calendario .cld_altro a, .tabella_calendario .cld_altro a {
        cursor: default;
    }
