/* ===============
   GLOBAL SETTINGS 
   =============== */

:root {
    --LiDarkBlue: rgba(2, 22, 145, 0.8); /* old: blue; */
    --LiDarkBlueSolid: rgba(2, 22, 145); /* old: blue; */
    --LiColorBackGround: #D8E6F0;;/* #5b7495; #f8f9fa; */
    --LiColorInputBorder: DarkGray; /* lightgray */
    --bs-offcanvas-width: 100% !important;
  }

body{
    background: var(--LiColorBackGround); /* bs-light */
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: normal;
}

.g-0 {
    --bs-gutter-x: 0rem;
    --bs-gutter-y: 0rem;
    justify-content: center;  /* horizontal centering */
    align-items: center;  /* vertical centering */
}



/* ################ Placeholder text style for input elements */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--LiColorInputBorder);
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--LiColorInputBorder);
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--LiColorInputBorder);
  }

  /* ===============
   Input elements 
   =============== */
.liInput {
    border-color: var(--LiColorInputBorder);
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    color: black;
    background-color: var(--LiColorBackGround);
    /* text-indent: 5px; */
    padding-left: 2%;
    padding-right: 2%;
    border-radius: 10px;
    background: #f0f0f0;
    box-shadow: inset 1px 1px 3px #606060,
                inset -1px -1px 3px #ffffff;
}

.textArea {
    /* border-color: var(--LiColorInputBorder); */
    /* border-style: solid; */
    border-width: 0px;
    border-radius: 5px;
    color: black;
    /* background-color: var(--LiColorBackGround); */
    /* text-indent: 5px; */
    padding-left: 2%;
    padding-right: 2%;
    background: #f0f0f0;
    box-shadow: inset 1px 1px 3px #606060,
                inset -1px -1px 3px #ffffff;
}


.liGenericButton {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    width: 30%;
    border-radius: 10px;
    color: white;
    font-family: 'Satoshi';
    font-weight: bold;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px rgba(0,0,0,0.3),
                -3px -3px 5px rgba(255,255,255,0.7);
}

.liGenericButton:active {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    width: 30%;
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}


.liBlueButton {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    width: 30%;
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px rgba(0,0,0,0.3),
                -3px -3px 5px rgba(255,255,255,0.3);
}

.liBlueButton:active {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    width: 30%;
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}


.liGrayButton {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    width: 30%;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #d8d8d8);
}

.liAcceptButton {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    color: var(--LiDarkBlue); /* gray  var(--LiColorInputBorder)*/
    /* background-color: var(--LiDarkBlue); */
    /* width: 30%; */

}



.SpidButton_disabled{
    position: relative;
    height: 80px;
    width: 250px;
    border-radius: 10px;
    border-width: 0px;
    background-color: #e8e8e8;
    background-image: url("SpidLogo.svg");
    background-repeat: no-repeat;
    background-position: 90%, 50%;
    background-size: 100px;
}


.SpidButton_disabled::before{
    position: absolute;
    left: 10px;
    bottom: 25px;
    font-family: 'Satoshi';
    font-style: normal;
    font-size: 20px;
    content: "ENTRA CON";
}



.SpidButton_enabled{
    position: relative;
    height: 80px;
    width: 250px;
    border-radius: 10px;
    border-width: 0px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px rgba(0,0,0,0.7),
                -3px -3px 5px rgba(255,255,255,0.7);
    background-image: url("SpidLogo.svg");
    background-repeat: no-repeat;
    background-position: 90%, 50%;
    background-size: 100px;
}

.SpidButton_enabled::before{
    position: absolute;
    left: 10px;
    bottom: 25px;
    font-family: 'Satoshi';
    font-style: normal;
    font-size: 20px;
    content: "ENTRA CON";
}



.liBlueButton_CF {
    position: relative;
    border-width: 0px;
    height: 50px;
    width: 150px;
    border-radius: 30px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px rgba(0,0,0,0.3),
                -3px -3px 5px rgba(255,255,255,0.3);
}


.liBlueButton_CF:before {
    position: absolute;
    left: 16px;
    bottom: 12px;
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: bold;
    color: white;
    font-size: 20px;
    align-content: center;
    content: "Richiedi OTP";
}



.liBlueButton_CF:active {
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}


.liGrayButton_CF {
    position: relative;
    border-width: 0px;
    height: 50px;
    width: 150px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #d8d8d8);
}

.liGrayButton_CF:before {
    position: absolute;
    left: 20px;
    bottom: 12px;
    font-family: 'Satoshi';
    font-style: normal;
    font-size: 20px;
    align-content: center;
    content: "Richiedi OTP";
}



.spid_offcanvas{
    background: var(--LiColorBackGround);
    font-family: 'Satoshi';
    font-weight: bold;
    color: black;
}

.fabrick_offcanvas{
    background: var(--LiColorBackGround);
    font-family: 'Satoshi';
    font-weight: bold;
    color: black;
}


.progressBar {
    border-radius: 10px;
    background: #f0f0f0;
    box-shadow: inset 1px 1px 3px #606060,
                inset -1px -1px 3px #ffffff;
}


.dashboard {
    border-width: 0px;
    border-radius: 10px;
    background: var(--LiColorBackGround);
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
    height: 100%;
}

.search_button {
    background: linear-gradient(145deg, #88caf3, #46aedf);
    width: 100%;
    border-width: 1px;
    border-color: var(--LiColorBackGround);
    border-radius: 0;
    height: 27px;
    margin: 0;
    padding: 0;
}

.remove_search_button {
    background: linear-gradient(145deg, #88caf3, #46aedf);
    width: 100%;
    border-width: 1px;
    border-color: var(--LiColorBackGround);
    border-radius: 0px 10px 10px 0px;
    height: 27px;
    margin: 0;
    padding: 0;
}

/* .search_button:active {
    background-color: var(--LiDarkBlue);
    width: 100%;
    border-width: 0px;
} */

.search_button_container{
    padding: 0;
    margin-left: -15px;
}

.remove_search_button_container{
    padding: 0;
    margin-left: -2px;
}

.hamburgerMenu{
    padding-left: 20px;
}

/* Sostituito da preInputText
.h2, h2 {
    font-size: calc(1.325rem + .9vw);
    text-align: center;
    color: var(--LiDarkBlue);
}
*/

.preInputText {
    font-size: calc(1.325rem + .9vw);
    text-align: center;
    color: var(--LiDarkBlue);
}

.liLink {
    color: var(--LiDarkBlue);
    text-decoration: none;
}

.liUpperCardTitle {
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    color: white;
    border-radius: 0px 0px 200px 200px;
    border-width: 0px;
    text-align: center;
    height: 8rem;
    margin-bottom: 0.5rem;
    border-radius: 65% / 100%;
      border-top-left-radius: 50% 100%;
      border-top-right-radius: 50% 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: inset 3px 3px 3px rgba(0,0,0,0.3),
                inset -3px -3px 3px rgba(255,255,255,0.7);
    font-weight: bold;
  }

.liBluText {
    color: var(--LiDarkBlue);
}

.liText16 {
   font-size: 16px; 
}


.appLogo {
    height: 3rem;
    width: auto;
    margin-top: 30px;
    filter: drop-shadow(-2px -2px 1px rgba(255,255,255,0.7)) drop-shadow(2px 2px 1px rgba(0,0,0,0.7));
}


.HomeFirstRow{
    height: 10vh;
}

.invoicesRow1{
    height: 65vh;
}

.invoicesRow2{
    height: 50vh;
}

.invoiceTable {
    whiteSpace: pre-line;
}

.invoiceTable1{
    padding: 0 10px 10px 5px; /* modified by Mirko, old value padding: 0 5px 10px 5px; */
    box-shadow: inset 3px 3px 5px #828282, inset -3px -3px 5px #ffffff;
    height: 62vh;
    overflow: auto;
    border-radius: 5px; /* added by Mirko */
}

.invoiceTable2{
    padding: 0 10px 10px 5px; /* old values padding: 0 5px 10px 5px; */
    box-shadow: inset 3px 3px 5px #828282, inset -3px -3px 5px #ffffff;
    height: 45vh;
    overflow: auto;
    border-radius: 5px; /* added by Mirko */
}


.connect_text{
    font-family: 'Satoshi';
    font-size: 15px;
}

.connect_card {
    padding: 0;
    margin-top: 10px;
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff;
}


.connect_cardBody {
    padding: 10px;
}



.loaderLiqex{
    position: relative;
    margin-top: 100px;
    width: 300px;
    height: 200px;
    text-align: center;
    font-size: 10px;
    background-image: url("LoaderLiqex2.gif");
    background-size: contain;
    background-repeat: no-repeat;
}


.loaderLiqex:after{
    position: absolute;
    top: -50px;
    left:0;
    content: "Trasformando le tue fatture in chat...";
    font-size: 20px;
    text-align: center;
}

.poweredBy{
    position: relative;
    margin-top: 70vh;
    width: 600px;
    height: 200px;
    font-size: 10px;
    background-image: url("Liqex.png");
    background-size: 50vw;
    background-repeat: no-repeat;
    background-position-x: center;
}

.poweredBy:before{
    content: "Powered by";
    position: absolute;
    top: -15px;
    left: 50%;
    font-size: 15px;
    transform: translateX(-50%); /* Center horizontally */
    text-align: center;
}


/* Questo dove lo metto?    border-radius: 5px; */

.accordion {
    
    --bs-accordion-bg: linear-gradient(145deg, #5aabdd, #9dc9de);;
    --bs-accordion-color: var(--LiColorBackGround);
    --bs-accordion-active-bg: #1b98d4;
    --bs-accordion-active-color: #f8f9fae;
    --bs-accordion-border-width: 10px;
    --bs-accordion-border-radius: 5px;
    --bs-accordion-border-color: var(--LiColorBackGround);
}

.accordion_settings{
    --bs-accordion-inner-border-radius: 20%
}

.accordion-header {
    color: var(--LiColorBackGround);
    /* --bs-accordion-btn-color: white; */
}

.accordion-button {
    color: var(--LiColorBackGround);
    /* --bs-accordion-btn-color: white; */
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px #606060,
                -3px -3px 5px #ffffff;
}

.accordion-button:not(.collapsed) {
    --bs-accordion-btn-color: var(--LiColorBackGround);
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
    box-shadow:  inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}    

.accordion-item {
    color: black;
    background-color: var(--LiColorBackGround);
}

.accordion-body {
    padding: 0px;
}

.chat-card1 {
    color: black;
    /* background: #43b7a4; lightgreen; */
    border-width: 0px;
    padding-left: 3%;
    padding-right: 3%;
    font-variant-ligatures: common-ligatures;
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 400; /*normal; 400 is normal */
    font-size: 90%;
    /* font-stretch: extra-expanded; */ /* Non cambia niente */
    border-radius: 5px;
    background: #D8E6F0;
    box-shadow: inset 3px 3px 3px #a6b1b9,
                inset -3px -3px 3px #ffffff;
    
    width: fit-content;
    max-width: 100%;
}

.chat-card2 {
    color: black;
    /* background: #212c65; it was white; */
    border-width: 0px;
    padding-left: 3%;
    padding-right: 3%;
    font-variant-ligatures: common-ligatures;
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 400; /*normal; 400 is normal */
    font-size: 90%;
    /* font-stretch: extra-expanded; */ /* Non cambia niente */
    border-radius: 5px;
    background: #D8E6F0;
    box-shadow: 3px 3px 3px #a6b1b9,
                -3px -3px 3px #ffffff;

    width: fit-content;
    max-width: 100%;
}

.chat-card-center {
    color: black;
    /* background: #212c65; it was white; */
    border-width: 0px;
    padding-left: 3%;
    padding-right: 3%;
    font-variant-ligatures: common-ligatures;
    font-family: 'Satoshi';
    font-style: italic;
    font-weight: 400; /*normal; 400 is normal */
    font-size: 12px;
    text-align: center;
    /* font-stretch: extra-expanded; */ /* Non cambia niente */
    border-radius: 5px;
    background: #eae0c8;
    box-shadow: 3px 3px 3px #a6b1b9;
                /*-3px -3px 3px #ffffff; */

    /* width: fit-content; */
    max-width: 100%;
}

.chat-date {
    text-align: right;
    font-size: 8px;
    margin-bottom: 0;
}

.payNow_not_active {
    border-width: 0;
    font-family: 'Satoshi';
    color: white;
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
}

@media only screen and (max-width: 365px){
.payNow_active {
    border-width: 0;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    font-family: 'Satoshi';
    color: white;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 3px 3px 5px #a6b1b9,
                -3px -3px 5px #ffffff;
}

.payNow_active:active {
    border-width: 0;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    font-family: 'Satoshi';
    --bs-btn-active-color: white;
    font-size: 12px;
    font-weight: bold;
    --bs-btn-active-bg: #D8E6F0;
    box-shadow: inset 3px 3px 5px rgba(0,0,0,0.3),
                inset -3px -3px 5px rgba(255,255,255,0.5);
}
}

@media only screen and (min-width: 366px){
    .payNow_active {
        border-width: 0;
        background: linear-gradient(145deg, #5aabdd, #9dc9de);
        font-family: 'Satoshi';
        color: white;
        font-size: 14px;
        font-weight: bold;
        box-shadow: 3px 3px 5px #a6b1b9,
                    -3px -3px 5px #ffffff;
    }
    
    .payNow_active:active {
        border-width: 0;
        background: linear-gradient(145deg, #5aabdd, #9dc9de);
        font-family: 'Satoshi';
        --bs-btn-active-color: white;
        font-size: 14px;
        font-weight: bold;
        --bs-btn-active-bg: #D8E6F0;
        box-shadow: inset 3px 3px 5px rgba(0,0,0,0.3),
                    inset -3px -3px 5px rgba(255,255,255,0.5);
    }
    }



.addToCart_not_active {
    border-width: 0;
    font-family: 'Satoshi';
    color: white;
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
}

@media only screen and (max-width: 365px){
    .addToCart_active {
        border-width: 0;
        background: linear-gradient(145deg, #5aabdd, #9dc9de);
        font-family: 'Satoshi';
        color: white;
        font-size: 12px;
        font-weight: bold;
        box-shadow: 3px 3px 5px #a6b1b9,
                    -3px -3px 5px #ffffff;
    }


.addToCart_active:active {
    border-width: 0;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    font-family: 'Satoshi';
    --bs-btn-active-color: white;
    font-size: 12px;
    font-weight: bold;
    --bs-btn-active-bg: #D8E6F0;
    box-shadow: inset 3px 3px 3px rgba(0,0,0,0.3),
                inset -3px -3px 3px rgba(255,255,255,0.5);
}
}

@media only screen and (min-width: 366px){
    .addToCart_active {
        border-width: 0;
        background: linear-gradient(145deg, #5aabdd, #9dc9de);
        font-family: 'Satoshi';
        color: white;
        font-size: 14px;
        font-weight: bold;
        box-shadow: 3px 3px 5px #a6b1b9,
                    -3px -3px 5px #ffffff;
    }


.addToCart_active:active {
    border-width: 0;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    font-family: 'Satoshi';
    --bs-btn-active-color: white;
    font-size: 14px;
    font-weight: bold;
    --bs-btn-active-bg: #D8E6F0;
    box-shadow: inset 3px 3px 3px rgba(0,0,0,0.3),
                inset -3px -3px 3px rgba(255,255,255,0.5);
}
}




.chat_main_container {
    border-width: 0px;
    border-radius: 10px;
    background: #D8E6F0;;
    box-shadow: inset 1px 1px 3px #a6b1b9,
                inset -1px -1px 3px #ffffff;
}

.chat_message_container {
    background: #D8E6F0;; /* #d8cfc3; rgb(216, 207, 195); */
    height: 65vh;
    /* overflow-y: scroll; */
    overflow: auto;
    display: flex;
    flex-direction:column-reverse;
}


.AuthorizeButton {
    border-width: 0px;
    padding: 5px;
    width: 130px;
    border-radius: 20px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3), -3px -3px 5px rgba(255,255,255,0.3);
}


.liChatButton {
    /* display: block; */
    color: white;
    text-align: center;
    
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px #4685ac,
                -3px -3px 5px #6ed1ff;
}

.liChatButton:active {
    border-width: 0px;
    border-radius: 10px;
    background: #ACDCEF;
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}


.liChatButton_Invia {
    /* display: block; */
    color: white;
    text-align: center;
    
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px #4685ac,
                -3px -3px 5px #ffffff;
}

.liChatButton_Invia:active {
    border-width: 0px;
    border-radius: 10px;
    background: #D8E6F0;
    box-shadow: inset 3px 3px 5px #4685ac,
                inset -3px -3px 5px #ffffff;
}


a:link {
    text-decoration: none;
  }
  
  a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  a:active {
    text-decoration: underline;
  }

.liChatLink{
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    color: white;
    background-color: #212c65; /*var(--LiDarkBlue); */
    margin-left: 5px;
    margin-right: 5px;

    text-decoration: none; 
    text-align: center;

    display: inline-block;
    
    /* color: var(--LiDarkBlue); */ /* gray  var(--LiColorInputBorder)*/
    /* background-color: var(--LiDarkBlue); */
    /* width: 30%; */

}


.balance_color {
    color: black;
}

.balance_color_negative {
    color: red;
}



.cf_button{
    width: fit-content;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #f0f0f0;
    border-style: solid;
    border-width: 0;
    border-radius: 10px;
    padding: 5px;
    /*margin-left: 15px;*/
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px rgba(0,0,0,0.3),
                -3px -3px 5px rgba(255,255,255,0.7);
}

.cf_button:active {
    box-shadow:  inset 3px 3px 5px rgba(0,0,0,0.3),
                inset -3px -3px 5px rgba(255,255,255,0.7);
}


.ip_button{
    width: fit-content;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #f0f0f0;
    border-style: solid;
    border-width: 0;
    border-radius: 10px;
    padding: 5px;
    margin-left: 15px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px rgba(0,0,0,0.3),
                -3px -3px 5px rgba(255,255,255,0.7);
}

.ip_button:active {
    box-shadow:  inset 3px 3px 5px rgba(0,0,0,0.3),
                inset -3px -3px 5px rgba(255,255,255,0.7);
}

.cf_tooltip_red{
}

.cf_tooltip_red:before{
    font-family: FontAwesome;
    font-style: normal;
    font-size: 18px;
    content: "\f05a";
    color: red;
    text-shadow:  2px 2px 2px rgba(0,0,0,0.3),
                -2px -2px 2px rgba(255,255,255,0.7);
}

.cf_tooltip_green{
}


.cf_tooltip_green:before{
    font-family: FontAwesome;
    font-style: normal;
    font-size: 18px;
    content: "\f05a";
    color: green;
    text-shadow:  2px 2px 2px rgba(0,0,0,0.3),
                -2px -2px 2px rgba(255,255,255,0.7);
}

.cf_tooltip_yellow{
}


.cf_tooltip_yellow:before{
    font-family: FontAwesome;
    font-style: normal;
    font-size: 18px;
    content: "\f05a";
    color: yellow;
    text-shadow:  2px 2px 2px rgba(0,0,0,0.3),
                -2px -2px 2px rgba(255,255,255,0.7);
}


.ip_tooltip_red {
}

.ip_tooltip_red:before {
    font-family: FontAwesome;
    font-style: normal;
    font-size: 18px;
    content: "\f05a";
    color: red;
    text-shadow:  2px 2px 2px rgba(0,0,0,0.3),
                -2px -2px 2px rgba(255,255,255,0.7);
}



.ip_tooltip_yellow {
}

.ip_tooltip_yellow:before {
    font-family: FontAwesome;
    font-style: normal;
    font-size: 18px;
    content: "\f05a";
    color: yellow;
    text-shadow:  2px 2px 2px rgba(0,0,0,0.3),
                -2px -2px 2px rgba(255,255,255,0.7);
}


.ip_tooltip_green {
}

.ip_tooltip_green:before {
    font-family: FontAwesome;
    font-style: normal;
    font-size: 18px;
    content: "\f05a";
    color: green;
    text-shadow:  2px 2px 2px rgba(0,0,0,0.3),
                -2px -2px 2px rgba(255,255,255,0.7);
}

.profile_badge1 {
    width: 22px;
    height: 22px;
    border-radius: 22px;
}

.profile_badge2 {
    margin: -15px 0px 0px 30px;
}

.profile_photo1 {
    width: 45px;
    height: 45px;
    border-radius: 25px;
}

.profile_photo2 {
    width: 45px;
    height: 45px;
    margin-left: 5px;
    border-radius: 25px;
    background: #f0f0f0;
    box-shadow: inset 3px 3px 5px #828282,
                inset -3px -3px 5px #ffffff;
}

.profile_photo1_search_result {
    width: 45px;
    height: 45px;
    border-radius: 25px;
}

.profile_photo2_search_result {
    width: 45px;
    height: 45px;
    margin-left: 5px;
    border-radius: 25px;
    background: #f0f0f0;
    box-shadow: inset 3px 3px 5px #828282,
                inset -3px -3px 5px #ffffff;
}



.profile_photo_container{
    padding-right: 5px;
}

.invoiceTabs{
    /* --bs-nav-tabs-border-width: 0px; */
    --bs-nav-tabs-border-radius: 0px;
    --bs-nav-tabs-border-color: #f0f0f0;
    --bs-nav-link-color: black;
    --bs-nav-tabs-link-active-bg: transparent;
    background: transparent;
    border-radius: 0 0 0 0;
}

.invoiceTab{
    /* --bs-nav-tabs-border-width: 0px; */
    position: relative;
    border-radius: 0 0 0 0;
    background: var(--LiColorBackGround);
    box-shadow: 0px 0px 0px #828282,
                -0px -0px 0px #ffffff;
}


@media only screen and (max-width: 365px){
    .label_invoices{
        font-size: 12px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 366px){
    .label_invoices{
        font-size: 15px;
        padding-right: 10px;
    }
}



.label_invoices::before{
    font-family: FontAwesome;
    content: "\f15c";
    font-size: 20px;
    color: var(--LiDarkBlue);
    /* text-shadow: 2px 2px 2px #828282,
                -2px -2px 2px #ffffff; */
    /* Mirko, rimossa l'ombra dall'icona invoices */
}


@media only screen and (max-width: 365px){
    .label_cart{
        font-size: 12px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 366px){
    .label_cart{
        font-size: 15px;
        padding-right: 10px;
    }
}

.label_cart::before{
    font-family: FontAwesome;
    content: "\f07a";
    font-size: 20px;
    color: var(--LiDarkBlue);
    /* text-shadow: 2px 2px 2px #828282,
                -2px -2px 2px #ffffff;
                */
    /* rimossa l'ombra dall'icona cart */
}


@media only screen and (max-width: 365px){
    .label_connect{
        font-size: 12px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 366px){
    .label_connect{
        font-size: 15px;
        padding-right: 10px;
    }
}


.label_connect::before{
    font-family: FontAwesome;
    content: "\f0c0";
    font-size: 20px;
    color: var(--LiDarkBlue);
    /* text-shadow: 2px 2px 2px #828282,
                -2px -2px 2px #ffffff;
                */
    /* rimossa l'ombra dall'icona connect */
}


.invoiceTab_active1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: #f0f0f0;
    border-radius: 0 0 0 0;
    box-shadow: 2px 0 3px rgba(0,0,0,0.3), 2px 0 3px rgba(0,0,0,0.3);
  }


.invoiceTab_active1{
    /* --bs-nav-tabs-border-width: 0px; */
    --bs-nav-tabs-link-active-border-color: #f0f0f0 #f0f0f0 transparent transparent;
    background: var(--LiColorBackGround);
    box-shadow: inset 3px 3px 5px #828282,
                inset -3px -3px 5px #ffffff;
    margin-bottom: -15px;
    clip-path: polygon(12% 0%, 100% 0, 100% 75%, 90% 90%, 0 90%, 0 20%);
    /* clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 30%); */
}


.invoiceTab_active2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: #f0f0f0;
    border-radius: 0 0 0 0;
    box-shadow: 2px 0 3px rgba(0,0,0,0.3), 2px 0 3px rgba(0,0,0,0.3);
  }


.invoiceTab_active2{
    /* --bs-nav-tabs-border-width: 0px; */
    --bs-nav-tabs-link-active-border-color: #f0f0f0 #f0f0f0 transparent transparent;
    background: var(--LiColorBackGround);
    box-shadow: inset 3px 3px 5px #828282,
                inset -3px -3px 5px #ffffff;
    margin-bottom: -15px;
    clip-path: polygon(12% 0, 100% 0, 100% 75%, 90% 90%, 10% 90%, 0 75%, 0 20%);
    /* clip-path: polygon(10% 0%, 100% 0, 100% 75%, 90% 100%, 0 100%, 0 30%); */
    /* clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 30%); */
}


.invoiceCard{
    font-family: 'Satoshi';
    font-style: normal;

    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /*box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff;
                */
}


.invoiceCard_search_result{
    font-family: 'Satoshi';
    font-style: normal;
    padding: 0;
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /*box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff;
                */
}


.invoiceCard2{
    font-family: 'Satoshi';
    font-style: normal;
    padding: 15px 0 15px 0;
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /*box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff;
                */
}


.invoiceCard_payable{
    font-family: 'Satoshi';
    font-style: normal;

    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /* box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff; 
    */
}


.invoiceCard_payable2{
    font-family: 'Satoshi';
    font-style: normal;
    padding: 15px 0 15px 0;
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /* box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff; 
    */
}

.invoiceCard_payable::before {
    content: "FORNITORE";
    writing-mode: vertical-lr;
    transform: scale(-1);
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15px;  /* or whatever height you want for the strip */
    border-radius: 0px 10px 10px 0px;
    background-color: #0082fd;  /* strip color */
}


.invoiceCard_payable2::before {
    content: "FORNITORE";
    writing-mode: vertical-lr;
    transform: scale(-1);
    font-size: 9px;
    font-weight: bold;
    color: white;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15px;  /* or whatever height you want for the strip */
    border-radius: 0px 10px 10px 0px;
    background-color: #0082fd;  /* strip color */
}


.invoiceCard_receivable{
    font-family: 'Satoshi';
    font-style: normal;
    
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /* box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff;
    */
}

.invoiceCard_receivable2{
    font-family: 'Satoshi';
    font-style: normal;
    padding: 15px 0 15px 0;
    border-width: 0px;
    border-radius: 10px;
    background: linear-gradient(145deg, #88caf3, #46aedf);
    /* box-shadow: 3px 3px 5px #828282,
                -3px -3px 5px #ffffff;
    */
}

.invoiceCard_receivable::before {
    content: "CLIENTE";
    writing-mode: vertical-lr;
    transform: scale(-1);
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15px;  /* or whatever height you want for the strip */
    border-radius: 0px 10px 10px 0px;
    background-color: green;  /* strip color */
  }

  .invoiceCard_receivable2::before {
    content: "CLIENTE";
    writing-mode: vertical-lr;
    transform: scale(-1);
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15px;  /* or whatever height you want for the strip */
    border-radius: 0px 10px 10px 0px;
    background-color: green;  /* strip color */
  }



.invoice_indicator_generic{
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: var(--LiColorBackGround);
    margin: 7px;
    box-shadow: inset 3px 3px 3px #828282,
                inset -3px -3px 3px #ffffff;
}

.invoice_indicator_read {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    margin: 7px;
    box-shadow:  2px 2px 3px #606060,
                inset 4px 4px 4px rgba(255,255,255,0.5);
}

.invoice_indicator_new {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: linear-gradient(145deg, #1e79e7, #1966c2);
    margin: 7px;
    box-shadow:  2px 2px 3px #606060,
                inset 4px 4px 4px rgba(255,255,255,0.5);
}

.invoice_indicator_deny {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: linear-gradient(145deg, #ff0000, #e60000);
    margin: 7px;
    box-shadow:  2px 2px 3px #606060,
                inset 4px 4px 4px rgba(255,255,255,0.5);
}


.invoice_indicator_due {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: linear-gradient(145deg, #ff8000, #e66c00);
    margin: 7px;
    box-shadow:  2px 2px 3px #606060,
                inset 4px 4px 4px rgba(255,255,255,0.5);
}


.invoice_indicator_wip {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: linear-gradient(145deg, #fff462, #dfcd53);
    margin: 7px;
    box-shadow:  2px 2px 3px #606060,
                inset 4px 4px 4px rgba(255,255,255,0.5);
}


.invoice_indicator_payed {
    width: 25px;
    height: 25px;
    border-radius: 13px;
    background: linear-gradient(145deg, #29ad70, #22925f);
    margin: 7px;
    box-shadow:  2px 2px 3px #606060,
                inset 4px 4px 4px rgba(255,255,255,0.5);
}


@media only screen and (max-width: 365px){
    .invoiceCardDate{
        font-size: 12px; /* calc(1.325rem + .9vw); 2rem;*/
        color: black;
    }

    .invoiceCardAmount{
        font-size: 14px;
        color: black;
    }

    .invoiceCardNumber{
        font-size: 11px;
        color: black;
    }

    .invoiceCardFirmName{
        font-size: 15px;
        color: black;
    }

    .invoiceCardFirmName_search_result{
        font-size: 15px;
        color: black;
    }
}

@media only screen and (min-width: 366px){
    .invoiceCardDate{
        font-size: 12px; /* calc(1.325rem + .9vw); 2rem;*/
        color: black;
    }

    .invoiceCardAmount{
        font-size: 14px;
        color: black;
    }

    .invoiceCardNumber{
        font-size: 13px;
        color: black;
    }

    .invoiceCardFirmName{
        font-size: 15px;
        color: black;
    }

    .invoiceCardFirmName_search_result{
        font-size: 15px;
        color: black;
    }
}


.invoiceCardFirmVAT{
    font-size: 13px;
    color: black;
}

.invoiceCardFirmVAT_search_result{
    font-size: 13px;
    color: black;
}

.invoiceCardAddress{
    font-size: 12px; /* calc(1.325rem + .9vw); 2rem;*/
    color: black;
}

.invoiceCardAddress_search_result{
    font-size: 12px; /* calc(1.325rem + .9vw); 2rem;*/
    color: black;
}

.invoiceSelectButton {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px #606060,
                -3px -3px 5px #ffffff;
}

.invoiceSelectButton:active {
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    border-radius: 10px;
    background: #ACDCEF;
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}


.invoiceChatButton{
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    border-radius: 10px;
    background: linear-gradient(145deg, #5aabdd, #9dc9de);
    box-shadow:  3px 3px 5px #606060,
                -3px -3px 5px #ffffff;
}

.invoiceChatButton:active{
    /* border-style: solid; */
    border-width: 0px;
    /* border-radius: 5px; */
    /* color: white; */
    /* background-color: var(--LiDarkBlue); */
    border-radius: 10px;
    background: #ACDCEF;
    box-shadow: inset 3px 3px 5px #606060,
                inset -3px -3px 5px #ffffff;
}


.invoiceChat_title{
    font-family:'Satoshi';
    font-style: normal;
    color:var(--LiDarkBlue);
    font-weight: 900;
}


.navMenuDropDown{
    background-color: var(--LiColorBackGround);
    --bs-btn-bg: var(--LiColorBackGround);
    --bs-dropdown-bg: var(--LiColorBackGround);
    border-width: 0px;
    width: 100%;
}

.navMenuDropDownTransparent{
    background-color: transparent;
    --bs-btn-bg: transparent;
    --bs-dropdown-bg: transparent;
    border-width: 0px;
    width: 100%;
    padding:0 0 0 0; /* non so perche' ma aggiungendo questo, il burghermenu si distanzia dal bordo */
    box-shadow: none;
}


.upperTitleMenuEntryCard{
    background-color: var(--LiColorBackGround);
    font-family: 'Satoshi';
    font-style: normal;
    color: black;
    /* border:0; */
    border-width: 0px;
    box-shadow: 3px 3px 5px #606060,
                -3px -3px 5px #ffffff;
}