
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Kurale&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');*/
/*----------------*/
/*---- GLOBAL ----*/
/*----------------*/
.digital-button-orange {
    border: 0;
    border-radius: 15px;
    background: linear-gradient(140deg,
            #FF7700 0%,
            #FF7700 50%,
            #FF7700 75%) !important;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 16px;
}

.list-group-item.active {
    background-color: var(--bs-list-group-action-active-bg);
    border-color: #FF7700;
    color: #FF7700;
}

.list-group-item-action:active {
    background-color: var(--bs-list-group-action-active-bg);
    color: #FF7700;
}

.list-group-item + .list-group-item.active {
    background-color: var(--bs-list-group-action-active-bg);
    color: #FF7700;
}

.CurrencyInput
{
    text-align: right;
}

/*-----------------------*/
/*---- MODULO PIAZZA ----*/
/*-----------------------*/
.card-modulo-piazza{
    border: none;
    box-shadow: none;
    background: transparent;
}

.card-modulo-piazza .card-header{
    background: white;
}

.card-modulo-piazza .card-body{
    background: white;
    border-radius: 0px 0px 40px 40px !important;
}

.card-modulo-piazza button {
    border: 0;
    border-radius: 15px;
    background: linear-gradient(140deg,
            #FF7700 0%,
            #FF7700 50%,
            #FF7700 75%) !important;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 16px;
}

/*--------------------*/
/*---- SCROLL BAR ----*/
/*--------------------*/
/* Per i browser basati su WebKit (Chrome, Safari) e Microsoft Edge */
#info::-webkit-scrollbar,
#list-example::-webkit-scrollbar, #list-exampleB::-webkit-scrollbar {
    width: 15px;  /* Imposta la larghezza della scrollbar verticale a 2px */
    height: 0;   /* Nasconde la scrollbar orizzontale */
}

#info::-webkit-scrollbar-track,
#list-example::-webkit-scrollbar-track, #list-exampleB::-webkit-scrollbar-track {
    background: transparent;  /* Rende trasparente il tracciato della scrollbar */
}

#info::-webkit-scrollbar-thumb,
#list-example::-webkit-scrollbar-thumb, #list-exampleB::-webkit-scrollbar-thumb {
    background-color: #FF7700;  /* Colore della thumb della scrollbar verticale */
    border-radius: 5px;        /* Bordo arrotondato per la thumb */
    border: none;              /* Nessun bordo per la thumb */
    height: 80px;
}

#info::-webkit-scrollbar-button,
#list-example::-webkit-scrollbar-button, #list-exampleB::-webkit-scrollbar-button {
    display: none;  /* Nasconde le frecce della scrollbar */
}

/* Per Firefox */
#info,
#list-example, #list-exampleB{
scrollbar-width: auto;
    scrollbar-color: #FF7700 transparent;
}
/*----------------------*/
/*---- PROGRESS BAR ----*/
/*----------------------*/
.progress-container {
    width: 100%;
    height: 10px;
    background: #fff;
    border-radius: 10px;
}

.progress-bar {
    height: 10px;
    background: #ff6501;
    width: 0%;
    border-radius: 10px;
}

/*-------------------------*/
/*---- FLOATING BUTTON ----*/
/*-------------------------*/
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.fab-container:hover {
    height: 100%;
}

.fab-container:hover .sub-button:nth-child(2) {
    transform: translateY(-80px);
}

.fab-container:hover .sub-button:nth-child(3) {
    transform: translateY(-140px);
}

.fab-container:hover .sub-button:nth-child(4) {
    transform: translateY(-200px);
}

.fab-container:hover .sub-button:nth-child(5) {
    transform: translateY(-260px);
}

.fab-container:hover .sub-button:nth-child(6) {
    transform: translateY(-320px);
}

.fab-container .fab {
    position: relative;
    height: 70px;
    width: 70px;
    background-color: #ff6501;
    border-radius: 50%;
    z-index: 2;
}

.fab-container .fab::before {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    width: 35px;
    background-color: inherit;
    border-radius: 0 0 10px 0;
    z-index: -1;
}

.fab-container .fab .fab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /*
    height: 100%;
    width: 100%;
    */
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.fab-container .fab .fab-content .material-icons {
    color: white;
    font-size: 48px;
}

.fab-container .sub-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    background-color: #ff6501;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fab-container .sub-button:hover {
    cursor: pointer;
}

.fab-container .sub-button .material-icons {
    color: white;
    padding-top: 6px;
}

/*-------------------------------*/
/*---- GENERAL MOBILE FOOTER ----*/
/*-------------------------------*/

.main-footer {
    background-color: transparent;
    border-top: none;
}

.card-content-scroll{
    max-height: 68vh;
}

.card-content-scroll-box,
.list-group{
    overflow-y: scroll;
    max-height: inherit;
}


/*---------------------*/
/*---- GENERAL CSS ----*/
/*---------------------*/
body {
    font-family: "Raleway", sans-serif;
}

.login-page,
.register-page {
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    background-image: url("../img/header-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.login-logo a,
.register-logo a {
    color: white;
}

a {
    color: #FF6600;
}

a:hover {
    color: #B34700;
}

.nav-sidebar .nav-link p {
    text-transform: uppercase;
}

.nav-pills .nav-link:not(.active):hover {
    color: #FF6600;
    font-weight: 600;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #FF6600;
    font-weight: 600;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #ff751a;
    border-color: #ff751a;
    border-radius: 5px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: #ffdfc0;
    border-radius: 5px;
    border:1px solid #f9d1a8;
}
.btn-exilab {
    color: #ffffff;
    background-color: #FF6600;
    border-color: #B24700;
    text-transform: uppercase;
}

.btn-exilab:hover,
.btn-exilab:focus,
.btn-exilab:active,
.btn-exilab.active,
.open .dropdown-toggle.btn-exilab {
    color: #ffffff;
    background-color: #CB5000;
    border-color: #B24700;
}

.btn-exilab:active,
.btn-exilab.active,
.open .dropdown-toggle.btn-exilab {
    background-image: none;
}

.btn-exilab.disabled,
.btn-exilab[disabled],
fieldset[disabled] .btn-exilab,
.btn-exilab.disabled:hover,
.btn-exilab[disabled]:hover,
fieldset[disabled] .btn-exilab:hover,
.btn-exilab.disabled:focus,
.btn-exilab[disabled]:focus,
fieldset[disabled] .btn-exilab:focus,
.btn-exilab.disabled:active,
.btn-exilab[disabled]:active,
fieldset[disabled] .btn-exilab:active,
.btn-exilab.disabled.active,
.btn-exilab[disabled].active,
fieldset[disabled] .btn-exilab.active {
    background-color: #FF6600;
    border-color: #B24700;
}

.btn-exilab .badge {
    color: #FF6600;
    background-color: #ffffff;
}

.btn-radius-10 {
    border-radius: 10px;
}

.btn-radius-15 {
    border-radius: 15px;
}

.btn-radius-20 {
    border-radius: 20px;
}

.card-exilab-border {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
    box-shadow: -7px 7px 23px #dedede, 7px -7px 23px #ffffff;
    -webkit-transition: .5s;
    transition: .5s;
}
.open-text{
    font-weight: 700;
    text-decoration: underline;
    text-align: center;
    cursor:pointer;
    color:#4f6cff;
}

.logo-style{
    width: 100px;
}

@media only screen and (min-width: 768px) {
    .card-exilab-border {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.card-exilab-border:hover {
    box-shadow: -7px 7px 27px #c9c9c9, 7px -7px 27px #ffffff;
    -webkit-transition: .5s;
    transition: .5s;
}

.title-step h3 {
    text-transform: uppercase;
    font-size: 16px;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;

}

@media (min-width: 576px) {}

@media (min-width: 768px) {
    #msform {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .card-content-scroll {
        max-height: 71vh;
    }
}

@media (min-width: 992px) {
    .card-content-scroll {
        max-height: 78vh;
    }
}

@media (min-width: 1200px) {
    .card-content-scroll {
        max-height: 62vh;
    }
}

@media (min-width: 1400px) {
    .card-content-scroll {
        max-height: 73vh;
    }
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    /*stacking fieldsets above each other*/
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*progressbar*/
#progressbar {
    margin-bottom: 24px;
    overflow: hidden;
    color: #000;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 0.5px;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: -7px 7px 23px #dedede, 7px -7px 23px #ffffff;
    -webkit-transition: .5s;
    transition: .5s;
}
#progressbar:hover {
    box-shadow: -7px 7px 27px #c9c9c9, 7px -7px 27px #ffffff;
    -webkit-transition: .5s;
    transition: .5s;
}

#progressbar .active {
    color: #ff6501;
}

#progressbar li {
    list-style-type: none;
    font-size: 14px;
    /* width: 25%; */
    float: left;
    position: relative;
    width: 25%;
    width: -webkit-calc(25% - 0px);
    width: -moz-calc(25% - 0px);
    width: calc(25% - 0px);
    z-index: 1;
}

/*Icons in the ProgressBar*/
#progressbar #first:before {
    font-family: Font Awesome 6 Free;
    font-weight: 900;
    content: "\31";
}

#progressbar #second:before {
    font-family: Font Awesome 6 Free;
    font-weight: 900;
    content: "\32";
}

#progressbar #third:before {
    font-family: Font Awesome 6 Free;
    font-weight: 900;
    content: "\33";
}

#progressbar #fourth:before {
    font-family: Font Awesome 6 Free;
    font-weight: 900;
    content: "\34";
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #000;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before {
    background: #ff6501;
    color: #FFFFFF;
}

#progressbar li.active:after {
    background: #ff6501;
}

/* new style */
.top-page-title {
    /*
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    */
    text-align: center;
    text-transform: uppercase;
}

.next-prev {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
}

/*
.next-prev span {
    font-size: 18px;
    color: var(--secondary--text-color);
    text-align: center;
    line-height: 65px;
}*/

.button-orange {
    border-radius: 30px;
    background-color: #FF7700;
    border: solid 1px transparent;
    padding: 5px 30px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.5s all ease;
}

.next-prev button {
    border-radius: 30px;
    background-color: #FF7700;
    border: solid 1px transparent;
    height: 55px;
    width: 55px;
    padding: 0 10px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.5s all ease;
}

.button-close {
    border-radius: 30px;
    background-color: #9d9d9d;
    border: solid 1px transparent;
    height: 55px;
    width: 100px;
    padding: 0 10px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.5s all ease;
}
.btn-collapse {
    border-radius: 30px;
    background-color: #343a40;
    border: solid 1px transparent;
    height: 45px;
    width: 200px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.5s all ease;
}
.offcanvas{
--bs-offcanvas-width: 700px;
}
.next-prev .next,
.next-prev .apply {
    background-color: rgb(241, 249, 254);
    color: rgb(20, 20, 20);
}

.next-prev button i {
    font-size: 17px;
    /*margin: 0 10px;*/
    transition: 0.3s all ease;
}

.next-prev .next:hover i {
    padding-left: 5px;
}

.next-prev .prev:hover i {
    padding-right: 5px;
}

.next-prev .btn:hover {
    background-color: #FF7700;
    color: #fff;
    margin-right: 7px;
}

.next-prev .btn-back:hover {
    background-color: #FF7700;
    color: #fff;
    margin-left: 7px;
}
.main-module {
    border-radius: 60px;
    background: rgb(255, 255, 255);
    background: linear-gradient(45deg, #ff7700 -200%, #dcdcdc8c 25%, #dcdcdc99 75%, #ff7700 200%);
    position: relative;
    /*overflow: hidden;*/
    box-shadow: 2px 2px 11px 0px #a9a9a9;
}

/*---------------------*/

/*
it was necessary to remove the hidden overflow from the main-module
to allow the sticky side navigation component to work
as reported in this documentation
https://university.webflow.com/lesson/create-a-sticky-sidebar?topics=layout-design
*/

/*---------------------*/

.field select,
.field input, .form-control   {
    background-color: rgb(241, 249, 254);
    width: 100%;
    border-radius: 12px;
    border: solid 1px #a4a1a1;
    transition: 0.3s all linear;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500;
}

.select2-container--bootstrap4 .select2-selection {
    background-color: rgb(241, 249, 254);
    border-radius: 12px;
    border: solid 1px #a4a1a1;
    transition: 0.3s all linear;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500;
}

.field label {
    font-size: 17px;
    font-weight: 300 !important;
}

.text-subtitle {
    color: #FF7700;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #FF7700;
    box-shadow: 0 0 0 0.25rem #ff770060;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #FF7700;
    box-shadow: 0 0 0 0.25rem #ff770060;
}

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] {
    background-color: #212529;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.form-register {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.login-btn button
{
    border-radius: 12px;
    color: #fff !important;
    background-color: rgb(247, 144, 49);
    width: 100%;
    transition: 0.4s;
    height: 54px;
    font-size: 20px;
    margin-bottom: 40px;
    border: 0;
    position: relative;
    color: var(--login-heading-color);
    font-weight: bold;
    overflow: hidden;
}

.login-btn button::before
{
    content: "\25b6";
    font-size: 20px;
    font-weight: bold;
    background-color: #000;
    color: var(--login-heading-color);
    line-height: 54px;
    display: block;
    transition: 0.4s;
    height: 100%;
    position: absolute;
    top: 0;
    left: -65px;
    width: 65px;
}

.login-btn button:hover::before
{
    left: 0;
}

.icon-register{
    color: #000;
}

.register-card-body .input-group .form-control:focus~.input-group-append .input-group-text{
    border-color: #f79031;
}

.login-card-body .input-group .form-control:focus~.input-group-append .input-group-text, .login-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text, .register-card-body .input-group .form-control:focus~.input-group-append .input-group-text, .register-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text{
    border-color: #f79031;
}

.register-page, .login-page{
    background-image: url("/img/bg-login.png");
}

.dataTables_wrapper .dataTables_filter input, .dataTables_wrapper .dataTables_length select {
    background-color: #fff;
}

th {
    background-color: #fff;
}

.table-image{
    width: 18px;
    cursor: pointer;
}

.table-image:hover{
    filter: brightness(1.15);
}

.trash-icon{
    width:18px;
}

.form-check-input:checked {
    background-color: #f79031;
    border-color: #f79031;
}

/*
.paginate_button.page-item.next, .paginate_button.page-item.previous  {
    width: 115px;
}
*/

.pagination {
justify-content: center;
}

.card-header {
    border-radius: 60px 60px 0px 0px !important;
}
.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #d2cdcd;
    border-radius: 15px;
    padding: 5px;
    width: 255px;
}

.paginate_button{
    width: auto;
}

.content-wrapper{
	background-image: url("/img/bg-form.jpg");
	padding-bottom: 0px !important;
}

.content{
	background: transparent;
}

/* PERCENT NUMBER STYLE */

#percentNumber {
    color: #FFF;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 0px;
}
.percent-box{
position: absolute;
bottom: 0px;
left: 80px;
background-color: #FF7700;
border-radius: 50px;
width: 55px;
height: 55px;
display: none;
align-items: center;
justify-content: center;
}


/* STEPPER STYLE */
.stepper {
    display: flex;
    justify-content: space-between;
    width: 80%;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    transition: transform 0.3s;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #ddd;
    box-shadow: 0px 3px 6px #545454;
    z-index: 0;
}

.step:first-child::before {
    display: none;
}
.step.active:not(:last-child)::after {
    background-color: #FF7700;
}
.step:last-child::after {
    width: 0; /* Ensure no after element is shown for the last step */
}

.step.active .icon-step {
    background-color: #FF7700;
    color: white;
    box-shadow: 0px 3px 6px #7e1c1c;
    transform: scale(1.2);
}

.icon-step {
    background-color: #ddd;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    z-index: 1;
    box-shadow: 0px 3px 6px #545454;
}
.icon-step img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.card .levels-table{
    background-color:#ffffff8a;
    box-shadow: -2px 4px 9px #7a7a7a;
    padding: 1rem 0rem 1rem 1rem;
    margin-bottom: 1.5rem;
    display: block;
}

@media (max-width: 576px) {
    .stepper {
    width: 100%;
    padding: 20px 0px;
    }
    .icon-step {
    width: 45px;
    height: 45px;
    }
    .card .levels-table{
        padding-left: 0rem;
    }
}


.budget-economico-table tr th,
.budget-economico-table tr td {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    word-break: break-all;
}

.budget-economico-table tr th:first-child,
.budget-economico-table tr td:first-child {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    word-break: break-all;
}