﻿@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,500,600');
@import url('https://fonts.googleapis.com/css?family=Inconsolata:300,400,500,600');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800');

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

:root {
    --std-font: Dosis;
    --text-font: Barlow;
    --landing-font: Poppins;
    --condensed-font: 'Barlow Condensed';
    --monospace-font: Inconsolata;
    --handwriting-font: Dosis;
    --logo-file: url(/images/logo-small.png);
    --main-bg-color: #F5F7F8;
    --brand-color: #00aade;
    --main-text-color: #333;
    --input-bg-color: #fff;
    --input-text-color: #333;
    --input-border-color: rgba(38,50,56,0.2);
    --lines-color: rgba(38,50,56,0.2);
    --lines-color-light: rgba(38,50,56,0.1);
    --titles-color: #333;
    --enphasys-color: #face26;
    --reverse-text-color: #fff;
    --gray-text-color: #777;
    --bg-error: rgba(198, 45, 45, 0.25);
    --error: #c62d2d;
    --left-div-bg-color: #F5F7F8;
    --left-div-text-color: #777;
    --dropdown-bgcolor: #fff;
    --dropdown-textcolor: #333;
    --dropdown-selected-bgcolor: #00aade;
    --dropdown-selected-textcolor: #fff;
    --header-bg-color: #fff;
    --header-text-color: #03254C;
    --footer-bg-color: #132736;
    --footer-text-color: #fff;
    --std-button-color: #00aade;
    --std-button-text-color: #fff;
    --std-button-border: #00aade;
    --button-hover: #face26;
    --button-hover-text: #333;
    --button-hover-border: #face26;
    --transparent-button-bg-color: transparent;
    --transparent-button-text-color: #00aade;
    --transparent-button-border-color: #00aade;
    --transparent-button-hover: #face26;
    --transparent-button-hover-text: #333;
    --transparent-button-hover-border: #face26;
    --red-button-color: trasparent;
    --red-button-text-color: #c62d2d;
    --red-button-border-color: #c62d2d;
    --red-button-hover: #c62d2d;
    --red-button-hover-text: #fff;
    --red-button-hover-border: #c62d2d;
    --card-bg-color: #FFFFFF;
    --blank-card-bg-color: #FFFFFF;
    --card-text-color: #333;
    --card-brand-color: #333;
    --grid-bg-color: #ffffff;
    --grid-text-color: #333;
    --grid-hover-bg-color: rgba(38,50,56,0.1);
    --grid-hover-text-color: #333;
    --grid-header-bg-color: #00aade;
    --grid-header-text-color: #fff;
    --warning: #DE0442;
    --warning-transparent: rgba(222, 4, 66, 0.15);
    --chartColor1: #00aade;
    --chartColor2: #f17105;
    --chartColor3: #6c6ee9;
    --chartColor4: #d11149;
    --chartColor5: #3fa34d;
    --chartColor6: #39b54a;
    --chartColor7: #0066cc;
    --chartColor8: #b6d8fa;
    --chartColor9: #e6c229;
    --chartColor10: #b95f89;
    --chartColor11: #ea526f;
    --chartColor12: #c1c2c1;
    --bg-slider: #fff;
    --gradient00: linear-gradient(to right, #0144a6, #0069c4, #008cdc, #00afef, #3fd2ff);
    --gradient01: linear-gradient(to right, #4b45c2, #4f8fda);
    --gradient02: linear-gradient(to right, #6190e8, #a7bfe8);
    --gradient03: linear-gradient(to right, #0b486b, #00aade);
    --gradient04: linear-gradient(to right, #185a9d, #00aade);
    --gradient05: linear-gradient(to right, #cccccc, #F5F7F8);
    /*--gradient06: linear-gradient(to right, #3868a0, #4f8fda);*/
    --gradient06: linear-gradient(to right, #2159A3, #0285c7);
    --gradient07: linear-gradient(to right, #134d87, #3592f0);
    --gradient08: linear-gradient(to right, #ffffff, #fbfbfb, #f5f5f5, #054b92 );
    --blue1: #134d87;
    --blue2: #0066cc;
    --blue3: #3592f0;
    --blue4: #00aade;
}

body, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, dl, dt, dd, ul, li, hr,
fieldset, form, label, legend,
th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section,
summary, hgroup {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-family: var(--text-font),'Segoe UI', sans-serif;*/
}

html {
    height: 100%;
    width: 100%;
    background: #fff;
    overflow: auto;
    height: 100%;
    position: static;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: var(--main-text-color);
    background: var(--main-bg-color);
    font-family: var(--text-font);
    font-size: 1rem;
    font-weight: 400;
    height: 100%;
    width: 100%;
    top: 0 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.condensed {
    font-family: var(--condensed-font) !important;
}

.fontBigSize {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
}

.landing-font {
    font-family: var(--landing-font) !important;
}

.smallText {
    font-family: var(--text-font);
    font-size: 14px;
    line-height: 18px;
}

.textLeft {
    text-align: left !important;
}
.textRight {
    text-align: right !important;
}
.textCenter {
    text-align: center !important;
}
.textJustify {
    text-align: justify !important;
}
.inline {
    display: inline-block !important;
}

/*************** SCROLLBAR *******************/
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FFF;
}

::-webkit-scrollbar-thumb {
    background: var(--lines-color);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--brand-color);
    }


/*************** NORMALIZE *******************/
.lowercase {
    text-transform: lowercase;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

/****************** COLORS*******************/
.semiTransparent {
  color: rgba(255,255,255,0.5);
}

.white {
    color: #fff !important;
}

.brandColor {
    color: var(--brand-color);
}

.gray {
    color: var(--gray-text-color) !important;
}

.darkgray {
    color: #111 !important;
}

.gradient-background {
    background-image: var(--gradient06);
    background-size: cover;
}

.brandBg{
    background-color: var(--brand-color);
}
.Chart1 {
    background-color: var(--chartColor1);
}

.Chart2 {
    background-color: var(--chartColor2);
}

.Chart3 {
    background-color: var(--chartColor3);
}

.Chart4 {
    background-color: var(--chartColor4);
}

.Chart5 {
    background-color: var(--chartColor5);
}

.Chart6 {
    background-color: var(--chartColor6);
}

.Chart7 {
    background-color: var(--chartColor7);
}

.Chart8 {
    background-color: var(--chartColor8);
}

.Chart9 {
    background-color: var(--chartColor9);
}

.Chart10 {
    background-color: var(--chartColor10);
}

.Chart11 {
    background-color: var(--chartColor11);
}

.Chart12 {
    background-color: var(--chartColor12);
}

.Color1 {
    color: var(--chartColor1);
}

.Color2 {
    color: var(--chartColor2) !important;
}

.Color3 {
    color: var(--chartColor3) !important;
}

.Color4 {
    color: var(--chartColor4);
}

.Color5 {
    color: var(--chartColor5);
}

.Color6 {
    color: var(--chartColor6);
}

.Color7 {
    color: var(--chartColor7);
}

.Color8 {
    color: var(--chartColor8);
}

.Color9 {
    color: var(--chartColor9);
}

.Color10 {
    color: var(--chartColor10);
}

.Color11 {
    color: var(--chartColor11);
}

.Color12 {
    color: var(--chartColor12);
}

.violetBg {
    background-size: cover;
    background-image: linear-gradient(to right, #483d8b, #6e5dd7);
}

.blueBg {
    background-size: cover;
    background-image: linear-gradient(to right, #0066cc, #3092f3);
}

.lightblueBg {
    background-size: cover;
    background-image: linear-gradient(to right, #EEF6FE, #d2e8ff);
}


.redBg {
    background-size: cover;
    background-image: linear-gradient(to right, #BF243E, #f12d4e);
}

.greenBg {
    background-size: cover;
    background-image: linear-gradient(to right, #3b9748, #42bb53);
}

.limeBg {
    background-size: cover;
    background-image: linear-gradient(to right, #859b1a, #9ab41e);
}

.grayBg {
    background-size: cover;
    background-image: linear-gradient(to right, #48617A, #5d7e9f);
}

.orangeBg {
    background-size: cover;
    background-image: linear-gradient(to right, #E38532, #ed8d38);
}

.cyanBg {
    background-size: cover;
    background-image: linear-gradient(to right, #2b83db, #54aaff);
}

.fucsiaBg {
    background-size: cover;
    background-image: linear-gradient(to right, #ba56ce, #ca5de0);
}

.pinkBg {
    background-size: cover;
    background-image: linear-gradient(to right, #993D4D, #cb5469);
}

.tealBg {
    background-size: cover;
    background-image: linear-gradient(to right, #21927c, #27AB91);
}

/************* CHANGE DIRECTION *************/
.columns {
    flex-direction: column;
}

.rows {
    flex-direction: row;
}

/************** SPACING ******************/
.space-top {
    margin-top: 20px !important;
}

.space-up {
    margin-top: 10px !important;
}

.space-right {
    margin-right: 20px !important;
}

.space-bottom {
    margin-bottom: 20px !important;
}

.space-down{
    margin-bottom: 10px !important;
}

.space-left {
    margin-left: 20px !important;
}

.dummyspacedown30 {
    margin-bottom: 30px;
}

.dummyspacedown {
    margin-bottom: 60px;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin {
    margin: 0 !important;
}
.no-padding {
    padding: 0;
}

.bold {
    font-weight: 600 !important;
}
.extrabold {
    font-weight: 800 !important;
}

/************* ALIGNMENT ******************/

.right-alignment {
    float:right;
    margin-left: auto !important;
}

/************* BEGIN RESPONSIVENESS ***************/
.hidden {
    display: none !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}

/************* END RESPONSIVENESS ***************/



/******************* BUTTON *********************/

.myButton, .asButton {
    display:  inline-block;
    width: auto;
    min-width: 140px;
    background: var(--std-button-color);
    color: var(--std-button-text-color);
    margin: 5px 5px 10px 5px;
    padding: 6px 12px;
    font-family: var(--std-font);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
    text-align: center !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--std-button-border);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

    .myButton a {
        display: block
    }

    .myButton:hover {
        background: var(--button-hover) !important;
        color: var(--button-hover-text) !important;
        border: 2px solid var(--button-hover-border) !important;
    }
    .myButton .mobile-only {
        display: inline-block !important;
    }

.smallButton {
    background: var(--std-button-color);
    color: var(--std-button-text-color);
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-transform: unset;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 38px;
    cursor: pointer;
}

.smallButton:hover {
    background: var(--button-hover);
    color: var(--button-hover-text);
}

.transparent {
    background: var(--transparent-button-bg-color) !important;
    color: var(--transparent-button-text-color) !important;
    border: 2px solid var(--transparent-button-border-color) !important;
}

    .transparent:hover {
        background: var(--transparent-button-hover) !important;
        color: var(--transparent-button-hover-text) !important;
        border: 2px solid var(--transparent-button-hover-border) !important;
    }

.white-button {
    background: transparent !important;
    border-color: #FFF !important;
    color: #FFF !important;
    text-align: center;
}

    .white-button:hover {
        background: #FFF !important;
        border-color: #FFF !important;
        color: #333 !important;
        text-align: center;
    }

.red {
    background-color: var(--red-button-color) !important;
    color: var(--red-button-text-color) !important;
    border: 1px solid var(--red-button-border-color) !important;
}

    .red:hover {
        background: var(--red-button-hover) !important;
        border: 2px solid var(--red-button-hover-border) !important;
        color: var(--red-button-hover-text) !important;
    }

.yellow-button {
    background-color: #face26 !important;
    color: #333 !important;
    border: 2px solid #face26 !important;
}

    .yellow-button:hover {
        background: yellow !important;
        border: 2px solid yellow !important;
        color: #333 !important;
    }

.color-button {
    opacity: 1;
    border: none !important;
    color: #FFF !important;
    text-align: center;
}

    .color-button:hover {
        border: none !important;
        background: #ffffff !important;
        opacity: 1;
        color: #222 !important;
        text-align: center;
        box-shadow: 0 12px 16px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.3);
    }

.reverse {
    background: transparent;
    color: var(--reverse-text-color);
    border: 1px solid var(--reverse-text-color);
}

.smallRectButton {
    padding: 4px;
    min-width: 80px;
}

.no-border {
    border: none !important;
    border-bottom: 2px solid transparent !important;
    background: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

    .no-border:hover {
        background: transparent !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid !important;
    }

.disabled {
    background: transparent !important;
    border: 1px solid var(--gray-text-color) !important;
    color: var(--gray-text-color) !important;
    cursor: not-allowed !important;
}

.no-border-disabled {
    border: none !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
    color: var(--gray-text-color) !important;
    cursor: not-allowed !important;
}


.fixedsize {
    display: block;
    width: calc(100% - 32px) !important;
    max-width: 320px !important;
}

button.fixedsize {
    width: 100% !important;
    max-width: 352px !important;
    margin-left: 0px;
    margin-right: 0px;
}

.fullsize {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-width: unset;
}

.fixedheight {
    height: 38px !important;
    border-radius: 4px;
    margin: 5px 5px 10px 0px !important;
    padding: 5px !important;
    font-size: 16px;
}

.myLink {
    background: transparent;
    display: inline-block;
    border: none;
    width: auto;
    margin: 10px 0px;
    padding: 0;
    font-family: var(--std-font);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
    text-align: left !important;
    color: var(--main-text-color);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    text-transform: uppercase;
}

    .myLink a {
        display: block
    }

    .myLink:hover {
        color: var(--brand-color) !important;
    }

    .myLink.normal {
        font-family: var(--text-font);
        font-size: unset;
        margin: unset;
        letter-spacing: unset;
        text-transform: unset;
        color: var(--brand-color);
        border-bottom: 2px solid transparent;
    }

        .myLink.normal.yellow {
            color: var(--chartColor9);
        }

        .myLink.normal:hover {
            border-bottom: 2px solid;
        }

.myButton.onMarker {
    padding: 3px 5px;
    font-size: 14px;
    min-width: unset;
    letter-spacing: unset;
}

.myButton.onSlide {
    padding: 0.6rem 1.7rem;
    font-size: 0.8rem;
}

.myButton.insuff {
    width: 100%;
    /*max-width: 258px;*/
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid var(--gray-text-color);
    color: var(--gray-text-color);
}

    .myButton.insuff:hover {
        background: transparent;
        border: 1px solid var(--gray-text-color);
        color: var(--gray-text-color);
        cursor: not-allowed;
    }

.myButton.ordina {
    width: 100%;
    /*max-width: 258px;*/
    margin: 0 0 20px 0;
    background: var(--std-button-color);
    border: 1px solid var(--std-button-text-color);
    color: var(--std-button-text-color);
}

    .myButton.ordina:hover {
        border: 1px solid var(--button-hover-border);
        color: #4e4e4e;
        background-color: var(--button-hover);
    }

.myButton.link, .myButton.link {
    margin: 10px 0 0 0;
    padding: 1vh 10px;
    font-size: 1.7vh;
    letter-spacing: 1px;
}

/**************** END BUTTON *******************/

/***************** ROWS *********************/

.text-centered {
    text-align: center !important;
}

/***************** COLUMNS *********************/


.col-5 {
    font-family: inherit;
    width: calc(5% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-8 {
    font-family: inherit;
    width: calc(8% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-10 {
    font-family: inherit;
    width: calc(10% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-15 {
    font-family: inherit;
    width: calc(15% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-20 {
    font-family: inherit;
    width: calc(20% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-25 {
    font-family: inherit;
    width: calc(25% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-30 {
    font-family: inherit;
    width: calc(30% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-33 {
    font-family: inherit;
    width: calc(33% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-35 {
    font-family: inherit;
    width: calc(35% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-40 {
    font-family: inherit;
    width: calc(40% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-41 {
    font-family: inherit;
    width: calc(41% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-50 {
    font-family: inherit;
    width: calc(50% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-60 {
    font-family: inherit;
    width: calc(60% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-67 {
    font-family: inherit;
    width: calc(67% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-70 {
    font-family: inherit;
    width: calc(70% - 10px);
    margin: 2px 10px 2px 0px;
}

.col-75 {
    font-family: inherit;
    width: calc(75% - 10px);
    margin: 2px 10px 2px 0;
}

.col-80 {
    font-family: inherit;
    width: calc(80% - 10px);
    margin: 2px 10px 2px 0;
}

.col-90 {
    font-family: inherit;
    width: calc(90% - 10px);
    margin: 2px 10px 2px 0;
}

.col-95 {
    font-family: inherit;
    width: calc(95% - 10px);
    margin: 2px 10px 2px 0;
}

.col-100 {
    font-family: inherit;
    width: calc(100% - 10px);
    margin: 2px 10px 2px 0px;
    align-content: center;
}

@media screen and (max-width : 760px) {
    .col-10, .col-15, .col-20, .col-25, .col-30, .col-33, .col-35, .col-40, .col-41, .col-50, .col-60, .col-67, .col-70, .col-75, .col-80, .col-90, .col-100 {
        width: 100%;
        margin: 2px 0px;
    }
}


/************************ DIALOG ************************/

.modalframe {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    min-width: 100vw;
    height: auto;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9998
}

dialogg {
    /*border: 1px solid var(--gray-text-color) !important;
    border-radius: 6px;*/
    background: var(--card-bg-color);
    color: var(--card-text-color);
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*max-width: 600px;*/
    min-width: 25%;
    z-index: 9999;
    text-align: left !important;
    padding: 0px;
    border: 1px solid var(--lines-color) !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.dialoggExtendeSize{
    max-width:90% !important;

}

.dialogg-50 {
    max-width: 50% !important;
    width:50% !important
}

@media screen and (max-width : 760px) {
    dialogg {
        width: 90%;
        min-width: 270px;
    }
}

dialogtitle {
    border-bottom: 1px solid var(--lines-color) !important;
    border-radius: 4px 4px 0 0;
    width: 100%;
    display: block;
    /*padding: 10px 0;*/
    padding: 20px 0;
    text-align: center;
    font-family: var(--std-font);
    background-color: var(--brand-color);
    color: var(--reverse-text-color);
    font-weight: 500;
    font-size: 18px;
}

dialogcontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 40px);
    padding: 20px 20px 0px 20px;
    text-align: center;
    color: var(--card-text-color);
}

    dialogcontent textarea {
        padding: 1rem;
    }

dialogactions {
    border-top: 1px solid var(--lines-color) !important;
    width: 100%;
    text-align: center;
    display: block;
    padding: 15px 0;
}

/****************** TOOLTIP  ***********************/

.tooltip {
    display: inline-block;
    position: relative;
    border-bottom: 1px dotted var(--lines-color);
    text-align: left;
    font-family: var(--std-font);
    color: var(--main-text-color);
    cursor: pointer;
}

    .tooltip .top {
        min-width: 195px;
        top: -20px;
        left: 50%;
        transform: translate(-50%, -100%);
        padding: 20px 20px;
        color: var(--main-text-color);
        background-color: var(--card-bg-color);
        font-weight: normal;
        font-size: 13px;
        border-radius: 8px;
        position: absolute;
        z-index: 99999999;
        box-sizing: border-box;
        border: 1px solid var(--lines-color);
        box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        display: none;
    }

    .tooltip:hover .top {
        display: block;
    }

    .tooltip .top i {
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -12px;
        width: 24px;
        height: 12px;
        overflow: hidden;
    }

        .tooltip .top i::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            left: 50%;
            transform: translate(-50%,-50%) rotate(45deg);
            background-color: var(--card-bg-color);
            border: 1px solid var(--lines-color);
            box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        }


    .tooltip .right {
        min-width: 195px;
        top: 50%;
        left: 100%;
        margin-left: 20px;
        transform: translate(0, -50%);
        padding: 10px 20px;
        color: var(--main-text-color);
        background-color: var(--card-bg-color);
        font-weight: normal;
        font-size: 13px;
        border-radius: 8px;
        position: absolute;
        z-index: 99999999;
        box-sizing: border-box;
        box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        display: none;
    }

    .tooltip:hover .right {
        display: block;
    }

    .tooltip .right i {
        position: absolute;
        top: 50%;
        right: 100%;
        margin-top: -12px;
        width: 12px;
        height: 24px;
        overflow: hidden;
    }

        .tooltip .right i::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            left: 0;
            top: 50%;
            transform: translate(50%,-50%) rotate(-45deg);
            background-color: var(--card-bg-color);
            border: 1px solid var(--lines-color);
            box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        }


    .tooltip .top-left {
        min-width: 180px;
        top: -20px;
        left: -20%;
        transform: translate(-65%, -100%);
        padding: 20px 20px;
        color: var(--main-text-color);
        background-color: var(--card-bg-color);
        font-weight: normal;
        font-size: 13px;
        border-radius: 8px;
        position: absolute;
        z-index: 99999999;
        box-sizing: border-box;
        border: 1px solid var(--lines-color);
        box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        display: none;
    }

    .tooltip:hover .top-left {
        display: block;
    }

    .tooltip .top-left i {
        position: absolute;
        top: 100%;
        left: 70%;
        margin-left: -12px;
        width: 24px;
        height: 12px;
        overflow: hidden;
    }

        .tooltip .top-left i::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            left: 70%;
            transform: translate(-50%,-50%) rotate(45deg);
            background-color: var(--card-bg-color);
            border: 1px solid var(--lines-color);
            box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        }


    .tooltip .left {
        min-width: 195px;
        top: 50%;
        right: calc(100% + 10px);
        margin-left: 20px;
        transform: translate(0, -50%);
        padding: 10px 20px;
        color: var(--main-text-color);
        background-color: var(--card-bg-color);
        font-family: var(--std-font);
        font-weight: 600;
        font-size: 14px;
        text-align: center;
        border-radius: 8px;
        position: absolute;
        z-index: 99999999;
        box-sizing: border-box;
        box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        display: none;
    }

    .tooltip:hover .left {
        display: block;
    }

    .tooltip .left i {
        position: absolute;
        top: 50%;
        left: 100%;
        margin-top: -12px;
        width: 12px;
        height: 24px;
        overflow: hidden;
    }

        .tooltip .left i::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            transform: translate(-50%,-50%) rotate(-45deg);
            left: 0px;
            top: 50%;
            background-color: var(--card-bg-color);
            border: 1px solid var(--lines-color);
            box-shadow: 0 1px 8px rgba(0,0,0,0.5);
            z-index: 9999;
        }


    .tooltip .bottom {
        min-width: 195px;
        top: 40px;
        left: 50%;
        transform: translate(-50%, 0);
        padding: 10px 20px;
        color: #333333;
        background-color: #FFFFFF;
        font-weight: normal;
        font-size: 13px;
        border-radius: 8px;
        position: absolute;
        z-index: 999999999;
        box-sizing: border-box;
        box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        display: none;
    }

    .tooltip:hover .bottom {
        display: block;
        z-index: 999999999;
    }

    .tooltip .bottom i {
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -14px;
        width: 28px;
        height: 14px;
        overflow: hidden;
        z-index: 9999999999;
    }

        .tooltip .bottom i::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            left: 50%;
            transform: translate(-50%,50%) rotate(45deg);
            background-color: #FFFFFF;
            box-shadow: 0 1px 8px rgba(0,0,0,0.5);
            z-index: 999999999;
        }



    
    .tooltip .highlight, .tooltip .highlight i::after {
        background-color: #e3fe9f !important;
    }


/************************* RADIO BUTTON GROUP *****************************/

.stv-radio-buttons-wrapper {
    clear: both;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--std-font);
    font-size: 14px;
    font-weight: 500;
}

.stv-radio-button {
    position: absolute;
    left: -9999em;
    top: -9999em;
    box-sizing: inherit;
}

    .stv-radio-button + label {
        box-sizing: inherit;
        float: left;
        padding: 9px 0;
        cursor: pointer;
        border: 1px solid var(--brand-color);
        margin-right: -1px;
        background-color: transparent;
        color: var(--gray-text-color);
        width: 50%;
        min-width: 155px;
        max-width: 155px;
        text-align: center;
    }

        .stv-radio-button + label:first-of-type {
            border-radius: 4px 0 0 4px;
        }

        .stv-radio-button + label:last-of-type {
            border-radius: 0 4px 4px 0;
        }

    .stv-radio-button:checked + label {
        color: var(--reverse-text-color);
        background-color: var(--brand-color);
        font-weight: 700;
        font-size: 14px;
    }

.con-separatore {
    border-right: 1px solid var(--lines-color);
    margin-right: 40px;
    padding-right: 40px;
}

@media screen and (max-width:767px) {
    .stv-radio-button + label {
        width: 50%;
        min-width: 155px;
        max-width: 155px;
    }
}


/******************** SPINNER **********************/

.spinning-activity {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    padding: 20px;
    font-size: 80px;
    transition: transform .3s ease, opacity .3s ease;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    width: 80px;
    height: 80px;
    color: var(--brand-color);
    z-index: 9999;
}

    .spinning-activity.loading {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .spinning-activity.chart {
        position: relative;
        opacity: 1;
        color: var(--card-bg-color);
    }

    .spinning-modalframe {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        min-width: 100vw;
        height: auto;
        min-height: 100vh;
        background-color: rgba(128, 128, 128, 0.2);
        z-index: 9998;
        display: none;
    }

    .spinning-modalframe.loading {
        display: block;
    }

/****************************** TABS *****************************/

/* Style the tab */
.tab {
    width: calc(100% - 10px);
    margin: 10px 0px;
    overflow: hidden;
    border-bottom: 1px solid var(--lines-color);
    background-color: transparent;
    color: var(--gray-text-color);
}

    /* Style the buttons inside the tab */
    .tab .tablink {
        background-color: transparent;
        color: var(--gray-text-color);
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 12px 10px;
        margin-right: 5px;
        transition: 0.3s;
        font-family: var(--std-font);
        font-weight: 500;
        font-size: 17px;
        text-transform: uppercase;
        border: 1px solid var(--lines-color);
        border-bottom: none;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        min-width: 100px;
    }

        /* Change background color of buttons on hover */
        .tab .tablink:hover {
            font-weight: bold;
        }

        /* Create an active/current tablink class */
        .tab .tablink.selected {
            background-color: var(--brand-color);
            font-weight: bold;
            color: var(--reverse-text-color);
            border-color: var(--brand-color);
            /*border-bottom: 3px solid var(--brand-color);*/
        }

@media screen and (max-width:767px) {
    .tab .tablink {
        font-family: var(--condensed-font);
        font-weight: 500;
        font-size: 17px;
        text-transform: uppercase;
        min-width: 80px;
    }
}

/**************** GRID STYLE OVERWRITE *****************/
.tree-table.mygrid {
    width: calc(100% - 2px);
    text-align: left;
    font-family: var(--text-font) !important;
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 0;
    /*background-color: var(--grid-bg-color);*/
    background-color: #fff;
    color: var(--grid-text-color);
    cursor: pointer;
    /*border: 1px solid var(--gray-text-color);*/
    border-radius: 4px;
    overflow-x: hidden;
}

@media screen and (max-width : 768px) {
    .tree-table.mygrid {
        font-family: var(--condensed-font) !important;
    }
}

.tree-table-enhanced.mygrid {
    width: calc(100% - 2px);
    text-align: left;
    font-family: var(--text-font) !important;
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 0;
    /*background-color: var(--grid-bg-color);*/
    background-color: #fff;
    color: var(--grid-text-color);
    cursor: pointer;
    /*border: 1px solid var(--gray-text-color);*/
    border-radius: 4px;
    overflow-x: hidden;
}

@media screen and (max-width : 768px) {
    .tree-table-enhanced.mygrid {
        font-family: var(--condensed-font) !important;
    }
}


.hide_mobile1 {
    display: block;
}

.hide_mobile2 {
    display: block;
}

.hide_desktop {
    display: block;
}

/* smartphone */
@media screen and (max-width : 767px) {
    .hide_mobile1 {
        display: none !important;
    }
}

/* tablet */
@media screen and (min-width : 768px) and (max-width: 900px) {
    .hide_mobile2 {
        display: none !important;
    }
}

/* desktop */
@media screen and (min-width : 901px) {
    .hide_desktop {
        display: none !important;
    }
}


/*************** AUTOCOMPLETE ********************/

.angucomplete-dropdown {
    position: absolute;
    width: calc(100% - 2px);
    height: auto;
    max-height: 150px;
    margin-top: 0px;
    left: 0px;
    top: 45px;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #fff;
    border: 1px solid var(--brand-color);
    border-radius: 2px;
    display: block;
    font-family: var(--text-font);
    font-size: 14px;
    cursor: pointer;
    z-index: 9999;
}

.angucomplete-arrow {
    background-color: #fff;
    position: absolute;
    left: calc(50% - 10px);
    top: 35px;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--brand-color);
    border-right: 1px solid var(--brand-color);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Safari */
    transform: rotate(-45deg);
    z-index: 10000;
}

@media screen and (max-width : 760px) and (orientation : portrait) {
    .angucomplete-dropdown {
        max-width: 300px;
    }
}


.angucomplete-searching {
    padding: .5rem;
    color: var(--main-text-color);
    margin-bottom: 4px;
    border-bottom: 1px solid var(--lines-color);
    border-top: 1px solid transparent;
    overflow: hidden;
    height: 3rem;
    line-height: 2rem;
    margin: 0;
    padding: .5rem;
    /*width: 100%;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    font-family: var(--text-font);
    font-size: 14px;
}

.angucomplete-description {
    font-family: var(--text-font);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.angucomplete-title {
    font-family: var(--text-font);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.angucomplete-row {
    padding: .5rem;
    color: var(--main-text-color);
    /*border-top: 1px solid transparent;*/
    border-bottom: 1px solid var(--lines-color);
    overflow: hidden;
    height: 1rem;
    line-height: 1rem;
    margin: 0;
    padding: .5rem;
    /*width: 100%;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    border-top: 1px solid transparent;
    font-family: var(--text-font);
    font-size: 14px;
}



    .angucomplete-selected-row, .angucomplete-row:hover {
        /*background-color: $greenBeneficy;*/
        font-weight: bold;
    }

.angucomplete-image-holder {
    padding-top: 2px;
    float: left;
    margin-right: 10px;
    margin-left: 5px;
}

.angucomplete-image {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border-color: #ececec;
    border-style: solid;
    border-width: 1px;
}

.angucomplete-image-default {
    /* Add your own default image here
     background-image: url('/assets/default.png');
    */
    background-position: center;
    background-size: contain;
    height: 34px;
    width: 34px;
}

/********************  INPUT CONTROLS *********************/

.input-label {
    border: none;
    background: transparent;
    font-family: var(--std-font);
    font-size: 14px;
    line-height: 16px;
    min-height: 16px;
    height: auto;
    margin-bottom: 5px;
}

    .input-label.gray {
        color: var(--gray-text-color);
    }

    .input-label button:hover {
        color: var(--brand-color);
    }



/****************************** INPUTBOX **********************************/

.inputbox {
    display: block;
    width: calc(100% - 12px);
    height: 26px;
    background-color: var(--input-bg-color);
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
    border-radius: 4px;
    text-align: left;
    text-decoration: none;
    /*margin: 5px 5px 10px 0px;*/
    margin: 0px 5px 10px 0px;
    padding: 5px 5px 5px 5px;
    font-family: var(--text-font);
    font-size: 16px;
    outline: none;
}

    .inputbox:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        border: 1px solid var(--brand-color);
        margin: 5px 0px 10px 0px;
        border-radius: 4px;
    }

    .inputbox.noinput {
        border: 1px solid var(--input-border-color);
        background-color: transparent;
        color: var(--main-text-color);
        height: auto;
        min-height: 26px;
    }

.fontBranded {
    font-family: var(--std-font);
    font-size: 1rem;
}

.fontNormal {
    font-family: var(--text-font);
    font-size: 14px;
}

.brandColor {
    color: var(--brand-color);
}

.brandBackground {
    background-color: var(--brand-color);
}

textarea {
    display: block;
    width: calc(100% - 12px);
    height: 300px;
    background-color: var(--input-bg-color);
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
    border-radius: 4px;
    text-align: left;
    text-decoration: none;
    margin: 5px 5px 10px 0px;
    padding: 5px 5px 5px 5px;
    font-family: var(--text-font);
    font-size: 16px;
}

    textarea:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        border: 1px solid var(--brand-color);
        margin: 5px 0px 10px 0px;
        border-radius: 4px;
    }

.error {
    display: block;
    background-color: var(--bg-error) !important;
    border: 1px solid var(--error) !important;
    border-radius: 4px;
}

.errormsg {
    background-color: transparent;
    color: red;
    border: none;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--text-font);
    margin: 0;
}

.readonly {
    background: var(--input-bg-color) url(/images/locked.png) right no-repeat;
    border: 1px solid var(--input-border-color);
    color: var(--main-text-color);
}

    .readonly:focus {
        border: 1px solid var(--input-border-color);
        color: var(--main-text-color);
    }

.largerText {
    color: var(--main-text-color);
    text-decoration: none;
    margin: 5px 0;
    font-family: var(--text-font);
    font-size: 22px;
}


.inputbox.intable {
    display: block;
    width: calc(100% - 10px);
    height: 100%;
    background-color: transparent;
    color: var(--input-text-color);
    border: none;
    text-align: left;
    text-decoration: none;
    margin: 0;
    padding: 5px;
    font-family: var(--text-font);
    font-size: 16px;
    outline: none;
    overflow: hidden;
}

    .inputbox.intable:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        border: none;
        margin: 0;
    }


/*.search {
    width: calc(100% - 42px);
    background: #fff url(/images/search.png) left no-repeat;
    background-size: 18px;
    background-position-x: 10px;
    background-position-y: 10px;
    padding-left: 35px !important;
}

.date {
    width: calc(100% - 12px);
    background: #fff url(/images/calendar.png) right no-repeat;
    background-size: 18px;
    background-position-x: calc(100% - 10px);
    padding: 5px;
    cursor: pointer;
}

.euro {
    width: calc(100% - 42px);
    background: #fff url(/images/euro.png) left no-repeat;
    background-size: 16px;
    background-position-x: 5px;
    background-position-y: 10px;
    padding-left: 35px !important;
}

.percent {
    width: calc(100% - 42px);
    background: #fff url(/images/percent.png) left no-repeat;
    background-size: 16px;
    background-position-x: 5px;
    background-position-y: 10px;
    padding-left: 35px !important;
}

.pwd {
    width: calc(100% - 42px);
    background: #fff url(/images/key.png) left no-repeat;
    background-size: 16px;
    background-position-x: 7px;
    background-position-y: 10px;
    padding-left: 37px !important;
}*/


.input-alert {
    border-color: var(--warning);
    background-color: var(--warning);
}

/******************* DROPLIST (CUSTOM SELECT)  ***************************/

.droplist {
    display: block;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    width: 100%;
    padding: 0px 10px;
    height: 38px;
    background-color: #fff;
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-align: left;
    text-decoration: none;
    /*margin: 5px 5px 10px 0;*/
    margin: 0;
    font-family: var(--text-font);
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--input-bg-color) url(/images/arrow-down-gray.png) right no-repeat;
    cursor: pointer;
}

.droplist.searchdroplist {
    width: calc(100% - 22px) !important;
}

.droplist:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        border: 1px solid var(--brand-color);
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
    }

option {
    background-color: var(--input-bg-color);
    color: var(--input-text-color);
}


/*************** SEARCHDROPDOWN ********************/

.searchdropdown {
    position: absolute;
    width: calc(100% - 2px);
    height: auto;
    max-height: 150px;
    margin-top: 0px;
    left: 0px;
    top: 39px;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: var(--input-bg-color);
    border: 1px solid var(--brand-color);
    border-radius: 2px;
    display: block;
    font-family: var(--text-font);
    font-size: 14px;
    cursor: pointer;
    z-index: 9999;
}


.searchdropdown-description {
    font-family: var(--text-font);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.searchdropdown-title {
    font-family: var(--text-font);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.searchdropdown-row {
    padding: .5rem;
    color: var(--input-text-color);
    /*border-top: 1px solid transparent;*/
    border-bottom: 1px solid var(--input-border-color);
    overflow: hidden;
    height: 1rem;
    line-height: 1rem;
    margin: 0;
    padding: .5rem;
    /*width: 100%;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    border-top: 1px solid transparent;
    font-family: var(--text-font);
    font-size: 14px;
}

    .searchdropdown-selected-row, .searchdropdown-row:hover {
        font-weight: bold;
    }

@media screen and (max-width : 767px) and (orientation : portrait) {
    .searchdropdown {
        /*max-width: 320px;*/
        font-family: var(--condensed-font);
    }

    .searchdropdown-description {
        font-family: var(--condensed-font);
    }

    .searchdropdown-row {
        font-family: var(--condensed-font);
    }

    .searchdropdown-title {
        font-family: var(--condensed-font);
    }
 }

/*************************************************/

.blue1 {
    background-color: var(--blue1) !important;
}
.blue2 {
    background-color: var(--blue2) !important;
}
.blue3 {
    background-color: var(--blue3) !important;
}
.blue4 {
    background-color: var(--blue4) !important;
}
.blu {
    color: #00aade;
}
.darkblu {
    color: #03254C !important;
}
.whitebg {
    background-color: #fff!important;
    color: var(--gray-text-color) !important;
    border: 1px solid var(--lines-color);
    width: calc(100% - 2px);
}

.custom-autocomplete .angucomplete-dropdown {
    width: auto !important;
    max-width: none;
    min-width: auto;
    left: 0;
    z-index: 999;
}

.custom-autocomplete {
    position: relative;
}

/****************** form box ******************/

/*.formBackground {
    background-color: var(--brand-color);
    background-image: var(--gradient07);
}*/

.formErrorMsg {
    display: block;
    align-self: center;
    background-color: crimson;
    width: 100%;
    height: 18px;
    min-height: 18px;
    line-height: 18px;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 4px 0;
    border-radius: 4px;
    display: none;
}

/***** puntatore *****/
.pointer {
    cursor: pointer;
}

/**************** Radio button ***************/
.radioButtonContainer {
    display: block;
    position: relative;
    margin: 0px;
    height: auto;
    width: auto;
    padding: 10px 0px;
    font-family: var(--text-font);
    font-size: 16px;
    text-align: left;
}

    .radioButtonContainer ul {
        height: auto;
        list-style: none;
        margin: 0;
        padding: 0;
        /*overflow: auto;*/
    }

        .radioButtonContainer ul li {
            color: var(--input-text-color);
            display: block;
            position: relative;
            float: left;
            width: 100%;
            height: auto;
            /*border-bottom: 1px solid var(--lines-color);*/
        }

            .radioButtonContainer ul li input[type=radio] {
                position: absolute;
                visibility: hidden;
            }

            .radioButtonContainer ul li label {
                display: block;
                position: relative;
                font-weight: 400;
                font-size: 16px;
                padding: 15px 0px 0px 40px;
                margin: 10px 0 0 0;
                height: auto;
                z-index: 9;
                cursor: pointer;
                /*-webkit-transition: all 0.25s linear;*/
                vertical-align: middle;
            }

            .radioButtonContainer ul li:hover label {
                color: var(--input-text-color);
            }

            .radioButtonContainer ul li .check {
                display: block;
                position: absolute;
                border: 2px solid var(--input-border-color);
                border-radius: 100%;
                height: 28px;
                width: 28px;
                top: 20px;
                left: 0px;
                z-index: 5;
                transition: border .25s linear;
                -webkit-transition: border .25s linear;
            }

            .radioButtonContainer ul li:hover .check {
                border: 2px solid var(--brand-color);
            }

            .radioButtonContainer ul li .check::before {
                display: block;
                position: absolute;
                content: '';
                border-radius: 100%;
                height: 16px;
                width: 16px;
                top: 6px;
                left: 6px;
                margin: auto;
                transition: background 0.25s linear;
                -webkit-transition: background 0.25s linear;
            }

    .radioButtonContainer input[type=radio]:checked ~ .check {
        border: 2px solid var(--input-border-color);
    }

        .radioButtonContainer input[type=radio]:checked ~ .check::before {
            background: var(--brand-color);
        }

    .radioButtonContainer input[type=radio]:checked ~ label {
        color: var(--input-text-color);
        font-weight: 600    ;
    }

/****  OTP INPUT ****/
.digit-group {
    width: 30px;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--lines-color);
    border-radius: 4px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-family: var(--text-font);
    font-weight: 400;
    color: var(--input-text-color);
    margin: 0 2px;
}

/**** TOOLTIP ****/
.tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip-content {
    visibility: hidden;
    width: 220px;
    background-color: rgba(51, 51, 51, 0.9);
    color: #ffffff;
    text-align: left;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.6;
    pointer-events: none;
}

    .tooltip-content::after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -6px;
        right: 100%;
        border-width: 6px;
        border-style: solid;
        border-color: transparent #333333 transparent transparent;
    }

.tooltip-wrapper:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

    .legend-item:last-child {
        margin-bottom: 0;
    }

.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.green-dot {
    background-color: #2ecc71;
}

.gray-dot {
    background-color: #95a5a6;
}

.red-dot {
    background-color: #d11149cc;
}

/* Aggiunge spazio tra il titolo in grassetto e la descrizione */
.legend-item strong {
    margin-right: 5px;
}