﻿:root {
    --Bianco: white;
    --Blue: #0066cc;
    --GrigioChiaro: #ededed;
    --NavColor: #0052a3;
    --Nav: #0059b3;
}

@font-face {
    font-family: 'titilliumweb';
    src: local('Titillium Web Regular'), local("titilliumweb"), url("../font/TitilliumWeb-Regular.ttf");
}

body {
    font-family: titilliumweb !important;
    letter-spacing: 0.3px;
}


.hoverableDiv:hover{
    background-color: lightgray;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

button:focus, a:focus, input:focus {
    box-shadow: none !important;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px !important;
}

main {
    min-height: 80vh;
    width: 100%;
}

footer {
    margin-top: 60px;
}

.colorBlue {
    color: #0066cc !important;
}

.borderThin{
    border-bottom: solid 1px !important;
    color: lightgray;
}

.width-img{
    max-height: 120px;
}

.underline-animation-w {
    display: inline-block;
    position: relative;
    color: var(--Bianco);
}

    .underline-animation-w::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 3px;
        bottom: 0;
        left: 0;
        background-color: var(--Bianco);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .underline-animation-w:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

.underline-animation-b {
    display: inline-block;
    position: relative;
}

    .underline-animation-b::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #0087ca;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .underline-animation-b:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

.carousel-shadow {
    text-shadow: #000000 3px 5px 10px;
}

@media (max-width: 700px) {

    .carousel {
        object-fit: cover !important;
        max-width: 100%;
    }
}

.lightGrbg{
    background-color: var(--GrigioChiaro);
}

.navBgColor {
    background-color: var(--NavColor) !important;
}

.max-card{
    max-width: 900px;
}

.bgNav{
    background-color: white !important;
}

#sticky {
    display: none;
}

    #sticky.fixed {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10;
        transition: ease-out;
    }

#logoSticky.visualizza {
    display: none;
}

#logoSticky2.visualizza {
    display: none;
}

.dropdown-menu.dark {
    background-color: #0059b3 !important;
}

.dropdown-menu.dark.show::before {
    background-color: #0059b3 !important;
}

.header{
    max-width: 100%;
}

.selectLanguage {
    background-color: var(--NavColor);
    border-radius: 4px;
    padding: 4px;
    color: white;
    border-color: none;
}

.selectLanguage:hover{
    border-color: white;
}

.selectLanguage:focus{
    outline: none;
    background-color: white;
    color: var(--NavColor);
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: var(--NavColor);
    color: white;
    font-weight: bolder;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    accordion:active, .accordion:hover {
        background-color: var(--Blue);
    }

/*"\02795"*/
    .accordion:after {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 5px;
        margin-top: 3px;
        content: "";
        background: url('../img/add.png') no-repeat 0 0;
        background-size: 100%;
        float: right;
    }

    .accordion.active:after {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 5px;
        margin-top: 3px;
        content: "";
        background: url('../img/minus.png'); /* Unicode character for "minus" sign (-) */
        background-size: 100%;
        float: right;
    }

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    display: none;
    overflow: hidden;
}

@media (max-width: 600px) {
    html{
        font-size: 12px !important;
    }

    .loghi {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding-right: 3rem;
        padding-bottom: 4rem;
    }
    
}

@media (max-width: 768px) {
    html{
        font-size: 10px !important;
    }
}

@media (max-width: 768px) and (min-width:1024px) {
    html {
        font-size: 12px !important;
    }
}

.title {
    font-size: 16px;
    color: var(--NavColor);
    font-weight: bold;
}

.colorTitle{
    color: var(--NavColor);
}

.borderVideo {
    border: 2px solid;
    color: var(--NavColor);
}

.videoHeight {
    height: 100%;
    max-height: 350px;
}

.rowVideo {
    min-height: 480px;
}

@media (max-width: 900px){
    .rowVideo {
    }
}

@media (max-width: 480px) {
    .rowVideo {
        min-height: 60vh;
    }
}

@media (max-width: 426px) {
    .videoHeight {
        width: 100%;
    }
}

@media (min-width: 901px) and (max-width: 1024px){
    .videoHeight {
        height: 100%;
        min-height: 380px;
        max-height: 420px;
    }
}

@media (max-width: 980px) {
    .video {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

.hoverableText:hover {
    font-weight: bold;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--Blue);
    float: left;
    padding: 10px;
    margin: 10px;
    text-decoration: none;
    font-weight: bolder;
}

.pagination a:hover {
    color: white;
    background-color: var(--Blue);
    text-decoration: none;
}


@media (max-width: 480px) {
    .sideImage {
        display: none;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {

}

@media (max-width: 980px) {

}

.form-section {
    display: none;
}

    .form-section.active{
        display: block;
    }

.bookmark {
    border: 1px solid var(--Bianco);
    background-color: white;
    margin: 1px;
}

.bookmark:hover {
    color: white;
    background-color: var(--Blue);
    font-weight: bold;
}

.bookmark.active {
    font-weight: bold;
    border-bottom: none;
}

.bordi {
    border-top: solid 1px;
    border-left: solid 1px;
    border-right: solid 1px;
}

.cardBorder {
    border: solid 1px;
}

.nav-item > .nav-link:hover {
    background-color: var(--Blue);
    color: white !important;
}

.nav-item > .nav-link:disabled {
    background-color: var(--Blue);
    color: white !important;
    cursor: pointer;
}

.otp-field {
    flex-direction: row !important;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field {
    height: 45px !important;
    width: 42px !important;
    border-radius: 6px !important;
    outline: solid 1px var(--Blue) !important;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid var(--Blue) !important;
}


.cardOTP {
    width: 50% !important;
}

@media (max-width: 492px){
    .cardOTP {
        width: 100% !important;
    }
}

.field::selection {
    outline: solid 1px var(--Blue) !important;
    border: 1px solid var(--Blue) !important;
}

.dropbtn {
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    outline: none;
    transition: opacity 0.3s ease;
}

    .dropbtn:focus {
        outline: none !important;
    }

    .dropbtn:hover {
        opacity: 0.5 !important;
    }

    .focus--mouse:not(.btn) {
        border-color: transparent !important;
        outline: none !important; 
    }


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    background-color: var(--Nav);
    min-width: 200px;
    z-index: 1;
    border: 1px solid black;
    right: 0;
    left: auto;
}

    .dropdown-content a {
        text-decoration: none;
        display: block;
        color: white !important;
    }

.show {
    display: block;
}

#LogOut {
    color: white !important;
}

.border-white {
    border-top: 1px solid white !important;
    border-bottom: 1px solid white !important;
}

.attivo button {
    background-color: var(--Nav) !important;
    color: white !important;
}

.caricaDocumento {
    background-color: var(--Nav) !important;
    color: white;
    padding: 0.8rem;
    border-radius: 0.3rem;
    cursor: pointer;
}

    .caricaDocumento:hover {
        background-color: var(--Blue) !important;
    }

#labelDocumento.disabilitato {
    background-color: gray !important;
    cursor: default;
}

/* SEZIONE CERCHI CREAZIONE CANDIDATURA */
        .cerchio {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid;
    color: var(--Nav) !important;
    border-radius: 50%;
   
}
    .cerchio.active {
        background-color: var(--Nav) !important;
        color: white !important;
       /* animation: cambioColore 1.2s ease-in-out forwards;*/
    }

@keyframes cambioColore {
    0% {
        background-color: white !important;
    }

    100% {
        background-color: var(--Nav) !important;
        border-color: var(--Nav) !important;
        color: white !important;
    }
}

.riga {
    height: 4px;
    background-color: gray;
    display: inline-block;
    vertical-align: middle;
}


/* FINE SEZIONE CERCHI CREAZIONE CANDIDATURA */

/*ELI*/
.cardBodyFree {
    padding-top: 15px;
    padding-left: 25px;
    padding-right: 25px;
}

.h5TitleBG {
    background-color: #0052a3;
    color: white;
    padding: 8px;
}

.linkButton {
    text-decoration: none;
    background-color: #0052a3;
    color: white;
    border-radius: 5px;
    padding: 4px;
    display: block;
    margin: 25px auto 25px auto;
    text-align: center;
    width: 30%;
}

    .linkButton:hover {
        color: white;
    }

.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 25px;
}

    .fill img {
        flex-shrink: 0;
        min-width: 100%;
        min-height: 100%
    }

.select50 {
    width: 40% !important;
    float: left;
}

.filtro {
    display: block;
    margin-bottom: 15px;
    color: #0066cc;
    margin-left: 35px;
}

    .filtro img {
        width: 2%;
    }

.titleTable {
    background-color: #0066cc;
    color: #ffffff;
    text-align: center;
}

.btnCorso {
    font-size: 1.75rem !important;
    font-size: 1.75rem !important;
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
}
.filtra {
}
/*ELI*/ ​

/* CSS ALESSIO */
.centrato {
    position: absolute !important;
    top: 50% !important;
    left: 60% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
}

/* CSS ALESSIO */

.cerchioRecap {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid;
    color: #0b4683 !important;
    border-radius: 50%;
    background: url(../img/check.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.recapBorder {
    border-top: 1px solid #c9c9c1;
    /* border-right: 2px dashed #f0F; */
    border-bottom: 1px solid #c9c9c1;
    /* border-left: 5px solid #09f;*/
}

.pdfDownload {
    margin-top: -90px;
    float: right;
    margin-right: 300px;
    width: 60px;
    height: 60px;
    background-color: white;
    /* border: 2px solid; */
    color: #0b4683 !important;
    /* border-radius: 50%; */
    background: url(../img/PdfDownload.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.doc {
    margin-top: -60px;
    float: right;
    margin-right: 75px;
}


.pdfDownloadLeft {
    margin-bottom: 10px;
    margin-top: 0px;
    float: left;
    margin-left: 30px;
    width: 60px;
    height: 60px;
    background-color: white;
    /* border: 2px solid; */
    color: #0b4683 !important;
    /* border-radius: 50%; */
    background: url(../img/PdfDownload.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.docLeft {
    margin-top: 15px;
    float: left;
    margin-left: 20px;
    /* border: 2px solid; */
    /* color: #0b4683 !important;*/
}

.iconrecap {
    clear: left;
}

div.d {
    margin-top: 30px;
    text-align: justify;
}

.marginTop {
    margin-top: 30px;
}

.exclamationLeft {
    /* margin-bottom: 10px; */
    /* margin-top: 0px; */
    float: left;
    margin-left: 0px;
    width: 30px;
    height: 60px;
    background-color: white;
    /* border: 2px solid; */
    /* color: #0b4683 !important; */
    /* border-radius: 50%; */
    background: url(../img/exclamation-mark.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.expPdf {
    margin-top: 10px;
    float: right;
    margin-right: 30px;
}

.loading-spinner {
    width: 50px !important;
    padding: 11px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: white;
    --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes loadingspinner {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.modal-backdrop {
    opacity: 0.5 !important;
}

.login:hover {
    background-color: var(--Blue) !important;
}

.rigaBlue {
    background-color: var(--Blue);
    color: var(--Blue);
    opacity: 100;
}

.cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 600px;
    /*  height: 1.2em;*/
    white-space: nowrap;
}

/*
    SEZIONE RESPONSIVENESS
*/
.btnResp {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.respSrc {
    width: 36px;
    height: 36px;
}

@media (max-width: 1024px) {
    .resp {
        padding-left: 10%;
        height: 44px;
        width: 44px;
    }

    .btnResp {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .btnCorso {
        font-size: 1.75rem !important;
        border-radius: 50% !important;
        width: 25px;
        height: 25px;
    }

    .cerchio {
        width: 60px;
        height: 60px;
    }

    .card-body {
        width: 100% !important;
        padding: 1rem !important;
    }


}

.respCar {
    min-width: 100%;
    min-height: 260px;
    max-height: 400px;
}

@media screen and (max-width: 768px) {
    .respSrc {
        width: 24px;
        height: 24px;
    }

    .nav-item {
        flex: 1 0 0%;
    }

    .cerchioRecap {
        width: 52px;
        height: 52px;
    }

    .btnDettaglio {
        min-width: 30vw !important;
        justify-self: center;
    }

    .respCol {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    div.expPdfResp {
        display: flex;
        justify-content: center !important;
    }

    .it-header-slim-wrapper {
        flex-wrap: nowrap !important;
    }
}

@media screen and (max-width: 600px) {
    .carousel {
        max-width: 100%;
        height: auto;
    }

    .respCar {
        min-width: 100% !important;
        width: 300px !important;
        height: 220px !important;
        min-height: 220px !important;
    }

    .expPdfResp {
        display: flex;
        justify-content: center;
    }

    .filtra {
        width: 25px !important;
        height: 25px !important;
    }

}


