:root {
    --color-albonet: #2ba84a;
    --primary-color: #2ba84a;
    --color-albonet-hover: #0ccc3c;
    --color-albonet-active: #0ccc3c;
    --color-link-hover: white;
    --background-color: #f8f8ff;
    --background-color-master: rgb(247,247,247);
    --text-color: #676767;
    --color-use: #1774f3;
    --color-use: #ac2360;
    --color-red: #dc143c;
    --color-green: #79b418;
    --color-dark-green: #487005;
    --color-light-yellow: #FFD700;
    --color-yellow: #ffc010;
    --color-yellow-dark: #cd9907;
    --color-green-light: #a9e843;
    --color-light-green: #99c84c;
    --color-blue: #2885eb;
    --color-light-blue: #67acf8;
    --background-color-div: rgba(0,0,0,0.02);
    --pixel-blur-effect: 7px;
    --font-size-input: 1.4rem;
    /*--font-size-input: .9rem;*/
    --line-heingt-span: 1.1rem;
    --line-heingt-span-focus: 4.5rem;
    --color-text: 444;
    --color-placeholder: rgb(24, 24, 24);
    --color-placeholder-span: rgba(0,0,0,.5);
    --color-line: 0, 0, 0;
    --color-line-complate: rgba(0,0,0,.1);
    --color-content: rgb(255, 255, 255);
}

#divMaster{
    margin-top: 2rem;
}
body {
    background-color: var(--background-color-master);
}

.navbar {
    min-height: 80px;
}

.bg-dark,
footer .footer-bottom {
    background: var(--color-albonet) none repeat scroll 0 0;
}

.logo {
    background-image: url('https://www.albonet.it/images/main/logo-md-albonet.png');
    height: 4rem;
    width: 25rem;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
    nav.navbar.bootsnav ul.nav > li > a:hover {
        color: var(--color-albonet);
    }
}

footer .f-item.address i {
    border-radius: 1.5rem;
}

footer .f-item.address i {
    width: 50px;
}

footer .f-item.link li a:hover {
    color: var(--color-link-hover);
}

footer .footer-bottom p a {
    color: var(--color-link-hover);
}

/*
    INPUT
    =================================================================================
*/

.jfc-unselected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jfc-input {
    position: relative;
    display: inline-block;
    font-family: var(--font-family);
    font-size: var(--font-size-input, 1rem);
    font-weight: 300;
    line-height: 1.5;
    /*margin-bottom: 1rem;*/
    margin-top: 1rem;
    /*overflow: hidden;*/
}

    .jfc-input > input:focus,
    .jfc-input > input:active {
        box-shadow: none;
        background-color: transparent !important;
    }

    .jfc-input > input:-webkit-autofill,
    .jfc-input > input:-webkit-autofill:hover,
    .jfc-input > input:-webkit-autofill:focus,
    .jfc-input > input:-webkit-autofill:active {
        -webkit-text-fill-color: var(--color-text, #309bdb);
        -webkit-box-shadow: 0 0 0px 50px rgba(0,0,0,0) inset !important;
        transition: background-color 5000s ease-in-out 0s;
        background-color: transparent !important;
    }

    /* Input, Textarea */
    .jfc-input > input,
    .jfc-input > textarea {
        display: block;
        box-sizing: border-box;
        margin: 0;
        border: none;
        border-top: solid 1.5rem transparent;
        border-bottom: solid 1px rgba(var(--color-line, 0, 0, 0), 0.1);
        /*padding: 0 0 4px;*/
        width: 100%;
        height: inherit;
        color: var(--color-text, #808080);
        background-color: transparent;
        box-shadow: none; /* Firefox */
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        caret-color: var(--primary-color, #1460CA);
        transition: border-bottom 0.4s, background-color 0.2s;
        border-radius: 0 !important;
        font-weight: inherit;
        text-align: inherit;
        min-height: 4rem;
    }

    .jfc-input > textarea {
        max-width: unset;
        min-height: 9.6rem;
        max-height: 16rem;
        resize: none;
    }

    .jfc-input > textarea::-webkit-scrollbar {
        width: .8rem;
    }

    /* Track */
    .jfc-input > textarea::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
        .jfc-input > textarea::-webkit-scrollbar-thumb {
            background: rgba(0,0,0,.1);
            border-radius: .4rem;
            cursor: default;
        }

        /* Handle on hover */
        .jfc-input > textarea::-webkit-scrollbar-thumb:hover {
            background: rgba(0,0,0,.2);
        }


    .jfc-input > input {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

        /* Span */
        .jfc-input > input + span,
        .jfc-input > textarea + span {
            position: absolute;
            text-transform: uppercase;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
            box-sizing: border-box;
            padding: .3rem 0 0 0;
            color: var(--color-placeholder-span, #797979);
            color: var(--primary-color);
            /*opacity: .5;*/
            font-size: 70%;
            font-weight: bold;
            line-height: var(--line-heingt-span, 1rem);
            pointer-events: none;
            transition: color 0.2s, font-size 0.2s, line-height 0.2s;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

.jfc-datagrid-header-cell > .jfc-input > input + span,
.jfc-datagrid-header-cell > .jfc-input > textarea + span {
    color: var(--color-placeholder, #797979);
}

/* Underline */
.jfc-input > input + span::after,
.jfc-input > textarea + span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color, #1460CA);
    transform-origin: bottom left;
    opacity: 0;
    transition: opacity 0.2s;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Hover */
.jfc-input > input:hover,
.jfc-input > textarea:hover {
    border-bottom-color: rgba(var(--color-line, 0, 0, 0), 0.1);
}

/* Placeholder-shown */
.jfc-input > input:not(:focus):placeholder-shown + span,
.jfc-input > textarea:not(:focus):placeholder-shown + span {
    font-size: inherit;
    line-height: var(--line-heingt-span-focus, 56px);
    opacity: .65;
    font-weight: 400;
    color: var(--color-placeholder, #797979);
    text-transform: uppercase;
    font-size: 80%;
    /*margin-top: -.7rem;*/
}

.jfc-input > input:not(:focus):placeholder-shown,
.jfc-input > textarea:not(:focus):placeholder-shown {
    border-bottom-color: rgba(var(--color-line, 0, 0, 0), 0.1);
}

.jfc-datagrid-header-cell > .jfc-input > input:not(:focus):placeholder-shown {
    border-bottom-color: rgba(var(--color-line, 0, 0, 0), 0.1);
}
/* Focus */
.jfc-input > input:focus,
.jfc-input > textarea:focus {
    outline: none;
}

    .jfc-input > input:focus + span,
    .jfc-input > textarea:focus + span {
        color: var(--primary-color, #1460CA);
        opacity: 1;
        text-transform: uppercase;
    }

        .jfc-input > input:focus + span::before,
        .jfc-input > textarea:focus + span::before {
            opacity: 0.1;
        }

        .jfc-input > input:focus + span::after,
        .jfc-input > textarea:focus + span::after {
            opacity: 1;
        }



/* Disabled */
.jfc-input > input:disabled,
.jfc-input > textarea:disabled {
    opacity: 1;
}

    .jfc-input > input:disabled + span,
    .jfc-input > textarea:disabled + span {
        opacity: 1;
    }

.jfc-input > input:read-only,
.jfc-input > textarea:read-only {
    opacity: 1;
}

    .jfc-input > input:read-only + span,
    .jfc-input > textarea:read-only + span {
        opacity: 1;
    }


.jfc-error > input,
.jfc-error > textarea {
    border-bottom-color: var(--color-red,#1460CA);
}

    .jfc-error > input:focus + span,
    .jfc-error > textarea:focus + span {
        color: var(--color-red, #1460CA);
    }

    .jfc-error > input:hover,
    .jfc-error > textarea:hover {
        border-bottom-color: var(--color-red, #1460CA);
    }

    .jfc-error > input + span::after,
    .jfc-error > textarea + span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--color-red, #027bff);
        transform-origin: bottom left;
        opacity: 0;
        transition: opacity 0.2s;
    }

.jfc-input-error {
    color: var(--color-red);
    padding: 0 1rem;
    border-radius: 0 0 .8rem .8rem;
    /*margin-top: -1px;*/
    font-size: 70%;
    border: 0;
    /*background-color: var(--color-red);*/
}

.jfc-error > .jfc-input-error {
    /*color: var(--color-red, #027bff);
    font-size: .7rem;
    border: 0;*/
}

.jfc-error > input:focus + span::after,
.jfc-error > textarea:focus + span::after {
    opacity: 0;
}

.jfc-error > input + span,
.jfc-error > textarea + span {
    color: var(--color-red, #027bff);
    opacity: 1;
}

.jfc-error > input:focus + span,
.jfc-error > textarea:focus + span {
    color: var(--color-red, #027bff);
}

    @media not all and (min-resolution:.001dpcm) {
        @supports (-webkit-appearance:none) {
            .jfc-input > input,
            .jfc-input > input + span,
            .jfc-input > input + span::after,
            .jfc-input > textarea,
            .jfc-input > textarea + span,
            .jfc-input > textarea + span::after {
                transition-duration: 0.1s;
            }
        }
    }

    .jfc-input-number, .jfc-input-number > input, .jfc-input-number > textarea {
    text-align: right;
}

.jfc-fill {
    width: 100%;
}
/*
    ===============================================================================
*/

/*
    SLIDER
    ===============================================================================
*/


:root {
    --slider-right-width: 30vw;
    --slider-right-width-neg: -30vw;
}

.jfc-slider-right {
    width: var(--slider-right-width);
    position: fixed;
    top: 0;
    right: var(--slider-right-width-neg);
    min-width: 450px;
    transition: right .5s;
    background-color: white;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -2px 1rem 8px 0px rgba(0, 0, 0, 0.2);
    z-index: 1040;
    padding: 1rem;
    opacity: 0;
    height: calc(100vh - 8rem);
}

.jfc-slider-right-generic {
    opacity: 1;
    transition: right .35s;
    height: calc(100vh - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    border-radius: 2rem;
}

.jfc-slider-resize {
    height: 5rem;
    width: .5rem;
    background-color: rgba(0,0,0,.1);
    position: absolute;
    top: calc(50vh - 2.5rem);
    cursor: ew-resize;
    z-index: 1040;
    border-radius: 1rem;
}

    .jfc-slider-resize:hover {
        background-color: gray;
    }

.jfc-slider-open {
    right: 0 !important;
    opacity: 1;
}


.jfc-slider-footer {
    text-align: center;
    margin-top: 1rem;
    bottom: 0;
    position: fixed;
    width: var(--slider-right-width);
    padding: 2rem;
    background: white;
    margin: 0 -1rem 0 -1rem;
    height: 8rem;
    box-shadow: -2px 1rem 8px 0 rgba(0, 0, 0, 0.2);
}


.jfc-slider-closer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1040;
    backdrop-filter: blur(var(--pixel-blur-effect));
}

.jfc-slider-closer-normal {
    backdrop-filter: none;
    box-shadow: none;
}

/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.loader {
    width: 65px;
    aspect-ratio: 1;
    position: relative;
}

    .loader:before,
    .loader:after {
        content: "";
        position: absolute;
        border-radius: 50px;
        box-shadow: 0 0 0 3px inset var(--primiary-color);
        animation: l5 2.5s infinite;
    }

    .loader:after {
        animation-delay: -1.25s;
        border-radius: 0;
    }

@keyframes l5 {
    0% {
        inset: 0 35px 35px 0
    }

    12.5% {
        inset: 0 35px 0 0
    }

    25% {
        inset: 35px 35px 0 0
    }

    37.5% {
        inset: 35px 0 0 0
    }

    50% {
        inset: 35px 0 0 35px
    }

    62.5% {
        inset: 0 0 0 35px
    }

    75% {
        inset: 0 0 35px 35px
    }

    87.5% {
        inset: 0 0 35px 0
    }

    100% {
        inset: 0 35px 35px 0
    }
}

.jfc-loading {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: var(--slider-right-width);
    z-index: 1041;
    background-color: rgba(255, 255, 255, .6);
}

    .jfc-loading > .loader {
        margin: 50vh auto;
    }

.jfc-loading-master {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1041;
    background-color: rgba(255, 255, 255, .6);
}

    .jfc-loading-master > .loader {
        margin: 50vh auto;
    }

.jfc-slider-body {
    overflow-y: auto;
    margin-bottom: 2rem;
    margin-top: 1rem;
    max-height: calc(100vh - 17.5rem);
}

    .jfc-slider-body::-webkit-scrollbar {
        width: .7rem;
    }

    /* Track */
    .jfc-slider-body::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .jfc-slider-body::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.1);
        border-radius: .35rem;
    }

        /* Handle on hover */
        .jfc-slider-body::-webkit-scrollbar-thumb:hover {
            background: rgba(0,0,0,.2);
        }


.jfc-slider-commad {
    background-color: white;
    height: auto;
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    left: 0rem;
    padding: 2rem;
    text-align: center;
}

    .jfc-slider-commad > button {
        width: auto;
        max-width: unset;
        margin-left: .5rem;
        margin-right: .5rem;
        min-width: 9rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: .6rem;
        padding-bottom: .6rem;
        /*min-height: 3.4rem;*/
    }

        .jfc-slider-commad > button > div {
            float: left;
        }

.jfc-slider-title {
    /*background-color: red;*/
    font-size: 2.5rem;
    padding: 2rem 2rem 1rem 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,.05)
}

.jfc-slider-loading {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(255,255,255,.7);
    z-index: 1040;
}
.jfc-slider-loading-fix {
    position: fixed;
}
    .jfc-slider-loading > div {
        height: 5rem;
        width: 5rem;
        background-color: rgba(0,0,0,.4);
        border-radius: 2.5rem;
        position: relative;
        margin: calc(50vh - 2.5rem) auto;
    }


.jfc-slider-closer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1040;
    backdrop-filter: blur(var(--pixel-blur-effect));
}

.jfc-slider-closer-normal {
    backdrop-filter: none;
    box-shadow: none;
}


@media (max-width: 1024px) {
    :root {
        --slider-right-width: 70vw;
        --slider-right-width-neg: -70vw;
    }
}

@media (max-width: 780px) {
    :root {
        --slider-right-width: calc(100vw - 2rem);
        --slider-right-width-neg: -100vw;
    }

    .jfc-slider-right {
        min-width: unset;
    }

    .jfc-slider-title {
        font-size: 2rem;
    }

        .jfc-slider-title > svg {
            height: 2.5rem;
        }

    .jfc-input {
        width: 100%;
    }
}

/*
    ==================================================================================
*/

/*
    MESSAGE
    ==================================================================================
*/

.jfc-message-bottom {
    width: 60rem;
    position: fixed;
    bottom: -30vh;
    transition: all .5s;
    background-color: white;
    overflow-y: auto;
    box-shadow: -2px .5rem 8px 0px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    padding: 1rem;
    opacity: 0;
    height: auto;
    left: calc(50vw - 30rem);
    border-radius: 1.5rem;
}

.jfc-message-open {
    bottom: 10vh;
    opacity: 1;
}

.jfc-message-closer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2000;
    backdrop-filter: blur(var(--pixel-blur-effect));
    background-color: rgba(0,0,0,.5);
}

.jfc-message-closer-inclose {
    transition: opacity .5s;
    opacity: 0 !important;
}

.jfc-message-div {
    margin: 1rem 1rem;
    position: relative;
}

.jfc-message-title {
    display: inline-block;
    width: calc(88% - 1rem);
    margin-top: .5rem;
}

.jfc-message-icon {
    display: inline-block;
    width: calc(12% - 1rem);
    text-align: center;
    vertical-align: top;
    margin-top: 1rem;
    min-height: 5rem;
}

.jfc-message-title > span {
    font-size: 2rem;
}


.jfc-message-message {
    display: inline-block;
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: .5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 3rem;
    line-height: 1.3;
}

.jfc-message-icon > svg {
    width: 3.7rem;
    height: 3.7rem;
}


.jfc-message-command {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,.1);
}

    .jfc-message-command > button {
        min-width: 8rem;
        margin-left: .5rem;
        margin-right: .5rem;
        min-height: 3.2rem;
        /*padding-top: .5rem;*/
        border-color: rgba(0,0,0,.25);
    }

    .jfc-message-command > .jfc-btn-action-primary {
        border-color: #027bff;
    }

.jfc-message-body {
    margin-top: -3rem;
    display: inline-flex;
    padding: 1rem 0rem;
    padding-top: 0rem;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
}

.jfc-flip-scale-down-hor {
    -webkit-animation: ping 1s ease-in-out infinite both;
    animation: ping 1s ease-in-out infinite both;
    transform-origin: center;
}

@-webkit-keyframes ping {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.8;
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(2.2);
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes ping {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.8;
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(2.2);
        transform: scale(2.2);
        opacity: 0;
    }
}

.jfc-btn-action-hide-desc {
    transition: all .4s;
    width: 4rem;
}

    .jfc-btn-action-hide-desc:hover {
        width: 11rem;
    }

    .jfc-btn-action-hide-desc > span {
        overflow: hidden;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 624px) {
    .jfc-message-bottom {
        /*background-color: red;*/
        width: calc(100vw - 2rem);
        left: 1rem;
    }

    .jfc-message-icon {
        width: 4rem;
    }
}

/*
    ==================================================================================
*/

.jfc-order-master {
    min-height: 60vh;
    background-color: var(--background-color-master);
    padding-top: 2rem;
    padding: 2rem;
}

.jfc-order-title {
    font-size: 2rem;
    /*text-transform: uppercase;*/
    margin: 2rem;
    margin-top: 0rem;
    text-align: right;
    /*background-color: var(--color-albonet);
    color: white;
    */
}

    .jfc-order-title > b {
        font-size: 2rem;
        color: var(--color-albonet);
        /*background-color: var(--color-albonet);
        padding: 0 1.5rem;
        border-radius: 2rem;*/
    }

.jfc-order-description {
    line-height: 1.4;
}

.jfc-order-master-content {
    border-radius: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    /*border: 1px solid red;*/
}

.jfc-order-content {
    background-color: white;
    min-height: 60vh;
    flex: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 2rem;
    border-radius: 1.5rem;
    margin: 0 .5rem;
    margin-bottom: 1rem;
}

.jfc-order-portals {
    border-radius: 1.5rem;
    background-color: white;
    max-width: 30rem;
    padding: 2rem;
    margin: 0 .5rem;
    /*margin-bottom: 1rem;*/
    height: unset;
    flex: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    margin-bottom: 1rem;
    /*border: 1px solid red;*/
}

    .jfc-order-portals h3 {
        padding-right: 5rem;
    }

        .jfc-order-portals h3 .jfc-portal-image {
            position: absolute;
            right: 0rem;
            top: 1rem;
            /*border: 1px solid rgba(0,0,0,.05);*/
        }

@media (max-width: 1024px) {
    .jfc-order-portals {
        width: 100%;
        max-width: unset;
        margin-top: 1rem;
        margin-right: 0rem;
        margin-left: 0rem;
    }

    .jfc-order-content {
        width: 100%;
        /*margin: 1rem 0rem;*/
        margin-top: 1rem;
        margin-right: 0rem;
        margin-left: 0rem;
        flex: auto
    }

    .jfc-order-title {
        text-align: center;
        padding: 1rem 0rem;
        margin: 0 1rem;
    }
}

.jfc-order-portal-item {
    display: flex;
    padding: 1rem 0rem;
    background-color: white;
    border-radius: 1.5rem;
    margin-bottom: .5rem;
    position: relative;
    /*border: 1px solid transparent;*/
    cursor: pointer;
    transition: all .3s;
    /*background: linear-gradient(50deg, #f9f9f9 0%, #f1f1f1 100%);*/
}

.jfc-order-portal-item-select {
    background-color: var(--color-albonet-active);
    color: white;
}

    .jfc-order-portal-item-select > .jfc-portal-image > div {
        filter: unset;
    }

.jfc-portal-active > .jfc-portal-image > div {
    filter: unset;
}

.jfc-portal-desc {
    margin: auto 0;
    text-transform: uppercase;
    /*font-weight: bold;*/
    /*color: var(--color-albonet);*/
}

.jfc-portal-image > div {
    height: 4rem;
    width: 4rem;
    background-position: center;
    /*background-size: 100% 100%;*/
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin: .25rem;
    filter: grayscale(.9);
}

.jfc-portal-image {
    margin: auto 1rem;
    background-color: white;
    border-radius: 50%;
    height: 4.5rem;
    width: 4.5rem;
}


.jfc-order-portal-item:hover {
    /*border: 1px solid var(--color-albonet);*/
    background-color: rgba(0,0,0,.05);
    color: var(--color-albonet);
    /*font-weight: bolder;*/
}


.jfc-order-portal-item-select:hover {
    background-color: var(--color-albonet-active);
    color: white;
}

.jfc-order-portal-item:hover > .jfc-portal-image > div {
    filter: unset;
}

.jfc-portal-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background-color: var(--color-albonet-active);
    padding: .4rem .8rem;
    font-size: 1rem;
    line-height: 1;
    color: white;
    border-radius: 1rem;
    font-weight: bolder;
}

.jfc-order-portal-item-select * .jfc-portal-badge {
    background-color: white;
    color: var(--color-albonet);
    font-weight: bolder;
}

.jfc-order-div-button {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

    .jfc-order-div-button > span {
        font-size: 1rem;
        text-transform: uppercase;
    }

.jfc-btn-action,
.jfc-order-button {
    background-color: var(--color-albonet);
    /*font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;*/
    color: white;
    border: 0 solid;
    padding: .8rem 2rem;
    border-radius: 2rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    outline: none;
    line-height: 2;
    position: relative;
}

    .jfc-btn-action:not(:disabled):hover,
    .jfc-order-button:not(:disabled):hover {
        /*background-color: var(--color-albonet);*/
        filter: brightness(1.2);
        color: white;
    }

    .jfc-btn-action:not(:disabled):active,
    .jfc-order-button:not(:disabled):active {
        /*background-color: var(--color-albonet-hover);*/
        filter: brightness(.8);
        color: white;
    }

    .jfc-btn-action:not(:disabled):focus {
        /*background-color: var(--color-albonet-hover);*/
        /*background-color: var(--color-albonet);*/
        color: white;
    }

    .jfc-btn-action:disabled,
    .jfc-order-button:disabled {
        opacity: .7;
        outline: none;
    }


    .jfc-btn-action > svg,
    .jfc-order-button > svg {
        height: 2rem !important;
        width: 2rem !important;
        margin-right: .5rem;
        margin-top: .2rem;
        float: left;
    }

.jfc-order-button-onlyimg {
    width: 3rem;
    padding: .5rem .5rem;
    position: unset;
}

    .jfc-order-button-onlyimg svg {
        margin: 0;
        margin-left: .25rem;
    }

.jfc-btn-cancel {
    background-color: transparent;
    color: rgba(0,0,0,.7);
    border: 0 solid;
    padding: .5rem 2rem;
    border-radius: 2rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    border: 1px solid rgba(0,0,0,.1);
}

    .jfc-btn-cancel:hover {
        background-color: rgba(0,0,0,.1);
    }

    .jfc-btn-cancel:active,
    .jfc-btn-cancel:focus {
        background-color: rgba(0,0,0,.2);
    }

.jfc-order-service-title {
    font-size: 1.5rem;
    color: var(--color-albonet);
    font-weight: 800;
    line-height: 1.4;
    flex: 1;
    margin: auto 0;
}

.jfc-order-service-description {
    display: block;
    color: var(--text-color);
    font-weight: normal;
    font-size: 1.3rem;
}

.jfc-order-service-div {
    display: flex;
    margin: 2rem 0;
    margin-bottom: 0;
}

.jfc-order-div-button {
    /*flex: 1;*/
    margin: auto .5rem;
    width: fit-content;
}

.jfc-order-service-number {
    font-weight: bold;
    margin: auto 0;
}

.jfc-order-service-div > .jfc-portal-image {
    margin: auto .5rem;
}

    .jfc-order-service-div > .jfc-portal-image > div {
        filter: unset;
    }

.circle-box {
    position: relative;
    margin: 2rem;
    /*margin-top: 0rem;*/
    /*background-color: cornflowerblue;*/
}

    .circle-box .text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
        color: unset;
    }

        .circle-box .text h2 {
            font-size: 1.4rem;
            font-weight: 400;
            /*letter-spacing: 0;*/
            margin-bottom: 0;
            margin-top: 1rem;
            font-weight: bold;
            color: var(--text-color);
        }

            .circle-box .text h2 span {
                font-size: 1rem;
                font-weight: normal;
            }

        .circle-box .text small {
            font-size: 1rem;
            display: block;
            margin-top: -.5rem;
            opacity: .7;
        }

.circle {
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: red;*/
}

    .circle .points {
        width: .2rem;
        height: 1rem;
        background: rgba(0,0,0,.1);
        position: absolute;
        border-radius: 1rem;
        transform: rotate(calc(var(--i)*var(--rot))) translateY(-4rem);
    }

.points.marked {
    animation: glow 0.02s linear forwards;
    animation-delay: calc(var(--i)*0.025s);
    /*background: var(--color-albonet);*/
}

@keyframes glow {
    0% {
        background: rgba(0,0,0,.1);
        box-shadow: none;
    }

    100% {
        /*background: var(--color-albonet);*/
        background: var(--color-use);
        /*box-shadow: 0 0 10px var(--bgColor);*/
    }
}

.jfc-table-content {
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 1rem;
}

.jfc-order-service-table {
    width: calc( 100% - 2rem);
    display: table;
    /*width: auto;*/
    /*border-spacing: 5px;*/ /* cellspacing:poor IE support for  this */
    margin: 1rem;
    margin-bottom: 2rem;
}

.jfc-order-service-table-header {
    display: table-caption;
    color: #555;
    text-transform: uppercase;
    font-size: 1rem;
}

    .jfc-order-service-table-header > .jfc-order-service-table-col {
        padding-bottom: 0;
    }

.jfc-order-service-table-row {
    display: table-row;
}

.jfc-order-service-table-col {
    padding: 1rem;
    display: table-cell;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.jfc-btn-delete {
    background-color: var(--color-red);
}

.jfc-order-service-table-col:last-child {
    text-align: center;
}

.jfc-order-item-loading {
    min-height: 7rem;
}

    .jfc-loading-span,
    .jfc-order-item-loading span {
        /*display: inline-block !important;*/
        width: 100%;
        min-width: 5rem;
        min-height: 2rem;
        padding: .2rem 1.2rem;
        border-radius: .8rem;
        margin: 1rem 0rem;
        margin-right: 1rem;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        animation-name: sk_bg_animation;
        animation-timing-function: linear;
        background: #f6f7f8;
        background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 33%);
        background-size: 100vw 104px;
        position: relative;
        display: inline-block;
    }

.jfc-loading-span {
    width: unset;
    margin: unset;
    padding: unset;
    min-width: 10rem;
    min-height: 2.5rem;
}

.jfc-span-big {
    height: 18rem;
}

@keyframes sk_bg_animation {
    0% {
        background-position: -50vw 0
    }

    100% {
        background-position: 50vw 0
    }
}

.jfc-order-item {
    background-color: #fffafc;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    border-radius: 2rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /*border: 1px solid rgba(0,0,0,.05);*/
}

@media (max-width: 1024px) {

    .jfc-order-service-div {
        flex-wrap: wrap;
    }


    .jfc-order-service-title {
        flex: unset;
        width: 100%;
    }

    .circle-box,
    .jfc-order-button {
        margin-top: 3rem;
    }

    .jfc-btn-normal {
        margin-top: unset;
    }

    .jfc-order-button-csv {
        margin-top: 0rem;
    }

    .jfc-order-div-button {
        flex: 1;
    }

    .jfc-order-service-number {
        margin-top: 0;
        margin: auto 0;
    }
}

@media (max-width: 780px) {
    .jfc-order-service-table,
    .jfc-order-service-table-row,
    .jfc-order-service-table-col {
        display: block;
    }

    .jfc-order-service-table-header {
        display: none;
    }

    .jfc-order-service-table-row {
        background-color: var(--background-color-div);
        padding: 1rem;
        border-radius: 2rem;
        margin-bottom: 1rem;
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .jfc-order-service-table-col:last-child {
        /*background-color: saddlebrown;*/
        border: none;
        text-align: right;
    }

        .jfc-order-service-table-col:last-child > button {
            margin-top: 0;
        }
}

.jfc-num-user {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
}

.jfc-orders-items-null {
    text-align: center !important;
    width: 100%;
    margin-top: 0rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1rem;
    opacity: .7;
    border-bottom: none !important;
}

.jfc-slider-title {
    text-transform: uppercase;
    font-size: 2rem;
}

    .jfc-slider-title > svg {
        fill: var(--color-albonet);
    }

.jfc-insert-user-info {
    display: flex;
    /*padding-bottom: 1rem;*/
    /*border-bottom: 1px solid rgba(0,0,0,.05);*/
    /*border-radius: 1rem;*/
    /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
}

    .jfc-insert-user-info > div {
        margin: auto .5rem;
    }

    .jfc-insert-user-info > .jfc-portal-image > div {
        filter: unset;
    }

.jfc-order-service-user-state {
    text-transform: uppercase;
    font-size: 1.2rem;
}

.jfc-service-error {
    width: 100%;
    height: 50rem;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 4rem;
    line-height: 1;
    font-weight: bold;
}

/*CheckBox ===============================================================*/
/* Basic styling */
.jfc-checkbox {
    width: 2rem;
    height: 2rem;
    color: var(--color-albonet);
    vertical-align: middle;
    -webkit-appearance: none;
    background: none;
    border: 0;
    outline: 0;
    flex-grow: 0;
    border-radius: .7rem;
    background-color: #FFFFFF;
    transition: background .5s;
    cursor: pointer;
    min-height: unset;
}

    .jfc-checkbox:active,
    .jfc-checkbox:focus {
        outline: 0 !important;
    }
    /* Pseudo element for check styling */
    .jfc-checkbox::before {
        content: "";
        color: transparent;
        display: block;
        width: inherit;
        height: inherit;
        border-radius: inherit;
        border: 0;
        background-color: transparent;
        background-size: contain;
        box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
    }


    /* Checked */

    .jfc-checkbox:checked {
        background-color: currentcolor;
    }

        .jfc-checkbox:checked::before {
            box-shadow: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
        }


    /* Disabled */

    .jfc-checkbox:disabled {
        background-color: #CCD3D8;
        opacity: 0.84;
        cursor: not-allowed;
    }


    /* IE */

    .jfc-checkbox::-ms-check {
        content: "";
        color: transparent;
        display: block;
        width: inherit;
        height: inherit;
        border-radius: inherit;
        border: 0;
        background-color: transparent;
        background-size: contain;
        box-shadow: inset 0 0 0 1px var(--color-light-gray);
    }

    .jfc-checkbox:checked::-ms-check {
        box-shadow: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
    }

.jfc-users-title {
    font-size: 1.4rem;
    padding: 2rem 1rem;
    padding-bottom: 1rem;
    text-align: left;
    color: var(--color-albonet);
    /*border-bottom: 1px solid var(--color-line-complate);*/
    text-transform: uppercase;
}
/*TABLE*/
.jfc-table {
    margin: 1rem 0;
    /*min-width: 300px;*/
    width: 100%;
}

    .jfc-table .table_header {
        overflow: hidden;
        position: relative;
        overflow-x: auto;
    }

    .jfc-table tr {
        /*border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;*/
        border-bottom: 1px solid var(--color-line-complate);
        font-size: 1.4rem;
    }

    .jfc-table tbody tr td {
        /*border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;*/
        vertical-align: top;
    }

.jfc-slider-loading-table {
    display: flex;
    justify-content: center; /* centro orizzontale */
    align-items: center;
    min-height: 15rem;
}

    .jfc-slider-loading-table > div {
        height: 5rem;
        width: 5rem;
        background-color: rgba(0,0,0,.4);
        border-radius: 2.5rem;
        position: relative;
        /*margin: calc(50% - 2.5rem) auto;*/
    }
.jfc-table tr button {
    position: unset;
}

    .jfc-table th {
        display: none;
    }

    .jfc-table td {
        display: block;
    }

        .jfc-table td:first-child {
            padding-top: .5rem;
        }

        .jfc-table td:last-child {
            padding-bottom: .5rem;
        }

        .jfc-table td:before {
            content: attr(data-th);
            font-weight: bold;
            /*width: 7rem;*/
            width: 100%;
            display: block;
            margin-bottom: .5rem;
        }

@media (min-width: 780px) {
    .jfc-table td:before {
        display: none;
    }
}

.jfc-table th, .jfc-table td {
    text-align: left;
}

@media (min-width: 780px) {
    .jfc-table th, .jfc-table td {
        display: table-cell;
        padding: .25rem .5rem;
    }

        .jfc-table th:first-child, .jfc-table td:first-child {
            padding-left: 0;
        }

        .jfc-table th:last-child, .jfc-table td:last-child {
            padding-right: 0;
        }
}

.jfc-table td > .jfc-order-button {
    margin-top: 0;
}

.jfc-table {
    border-radius: 1rem;
    position: relative;
    border-collapse: initial;
    /*add this line*/
    /*overflow: hidden;*/
    /*The line above commented*/
}

    .jfc-table tr {
        /*border:1px solid #46637f;*/
        /*border-bottom: 1px solid var(--color-line-complate);*/
    }

    /*Add the style in this block*/
    .jfc-table thead {
        position: sticky;
        top: 0;
        /*background-color: white;*/
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--color-line-complate);
        /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
        /*The background-color is optional*/
    }


    /*----------------------------*/

    .jfc-table th, .jfc-table td {
        margin: 1rem 0;
    }

@media (min-width: 780px) {
    .jfc-table th, .jfc-table td {
        padding: 1rem !important;
        border-bottom: 1px solid var(--color-line-complate);
    }
}

@media (max-width: 780px) {
    .jfc-table {
        background-color: var(--background-color-div);
        padding: 0rem;
        border-radius: 2rem !important;
        margin-bottom: 1rem;
        /*margin-right: -1rem;
        margin-left: -1rem;*/
    }

        .jfc-table th, .jfc-table td {
            padding: .5rem 2rem;
            /*border-bottom: 1px solid var(--color-line-complate);*/
        }

        .jfc-table thead {
            /*background-color: white;*/
            border-bottom: 0px solid var(--color-line-complate);
            /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
            /*The background-color is optional*/
        }

        .jfc-table tr {
            /*border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;*/
            /*background: red;*/
            border-bottom: 0px solid var(--color-line-complate);
        }

        .jfc-table td:last-child {
            /*border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;*/
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-line-complate);
        }

        .jfc-table tr:last-child td:last-child {
            /*border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;*/
            border-bottom: 0px solid var(--color-line-complate);
        }


    .jfc-table-content {
        max-height: 60rem;
        overflow-y: auto;
        /*min-height: 30rem;*/
    }

    .jfc-table {
        padding: 0;
    }
}

.jfc-table th, .jfc-table td:before {
    color: #555;
    text-transform: uppercase;
    font-size: 1rem;
}

.jfc-table thead tr {
    /*backdrop-filter: blur(15px);*/
    border-bottom: 1px solid var(--color-line-complate);
    z-index: 200;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
    /*The background-color is optional*/
}


.jfc-table-content::-webkit-scrollbar {
    width: .7rem;
}

/* Track */
.jfc-table-content::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.jfc-table-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.1);
    border-radius: .35rem;
}

    /* Handle on hover */
    .jfc-table-content::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,.2);
    }




.jfc-search {
    background-color: white;
    border: medium none;
    border-radius: 2rem;
    /*box-shadow: 0 10px 40px -15px rgba(0, 0, 0, .5);*/
    height: 3.5rem;
    border: 1px solid var(--color-line-complate);
    position: relative;
    margin-bottom: 1rem;
}

    .jfc-search input.form-control {
        background-color: transparent;
        border: medium none !important;
        box-shadow: inherit;
        color: #1c1c1c;
        min-width: 20rem;
        padding: 0 1.5rem;
        min-height: 2rem;
        padding-right: 3rem;
    }

    .jfc-search .input-group {
        width: 100%;
    }

    .jfc-search button {
        position: absolute;
        right: .4rem;
        width: 2.5rem;
        height: 2.5rem;
        top: .4rem;
        background-color: transparent;
        border: none;
        cursor: pointer;
        z-index: 3;
        color: #555;
    }

.jfc-desc-service-table {
    font-size: .9rem;
    color: var(--color-albonet);
    display: inline-block;
    margin-top: .5rem;
}

.jfc-warning-info {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0;
    background-color: var(--color-red);
    margin-top: .5rem;
    border-radius: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.jfc-btn-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: var(--color-albonet-hover);
    color: white;
    padding: 0rem 1rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: bold;
}

.jfc-send-div {
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 1rem;
}

    .jfc-send-div button {
        margin-top: 0rem;
    }

.jfc-slider-close-btn {
    background-color: transparent;
    border: none;
    outline: none;
    color: rgba(0,0,0,.3);
    position: absolute;
    top: 1rem;
    right: 1rem;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    padding: 0;
}

    .jfc-slider-close-btn:hover {
        color: white;
        background-color: rgba(0,0,0,.4)
    }

    .jfc-slider-close-btn:active {
        color: white;
        background-color: rgba(0,0,0,.7)
    }

    .jfc-slider-close-btn svg {
        height: 2rem;
        width: 2rem;
    }

.no-scroll {
    overflow: hidden;
}

.jfc-div-check {
    /*background-color: red;*/
    margin: .5rem auto;
    position: relative;
    /*width: fit-content;
    min-width: 9rem;*/
}

    .jfc-div-check > input {
        margin-top: 0;
    }

        .jfc-div-check > input:focus:before {
            box-shadow: inset 0 0 0 1px var(--color-albonet);
        }

    .jfc-div-check > .jfc-label {
        /*background-color: wheat;*/
        padding: .5rem;
        padding-left: 0;
        text-transform: uppercase;
        /*margin-top: .25rem;*/
        display: inline-block;
        font-size: 1rem;
        line-height: 1.2;
        color: var(--color-placeholder, #797979);
        opacity: .65;
    }


.jfc-upload-div-master {
    background-color: rgba(0,0,0,.04);
    padding: 1rem 2rem;
    margin-bottom: .5rem;
    border-radius: 1rem;
    height: fit-content;
}

    .jfc-upload-div-master a {
        background-color: var(--color-yellow);
        color: var(--color-text);
        padding: .6rem 1rem;
        border-radius: 1.5rem;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1rem;
    }

    .jfc-upload-div-master svg {
        height: 2.5rem;
        width: 2.5rem;
    }

    .jfc-upload-div-master .dx-button {
        border-radius: 2rem;
    }

    .jfc-upload-div-master h4 {
        color: rgba(0,0,0,.7);
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.5rem;
        text-transform: uppercase;
        background-color: rgba(0,0,0,.05);
        /*background: linear-gradient(127deg, rgba(0,0,0,.1) 0%, rgba(173, 172, 172, 1) 50%, rgba(0,0,0,.1) 100%);*/
        border-radius: 1rem;
    }

    .jfc-upload-div-master p {
        padding: 1rem;
    }


.jfc-order-button-csv {
    background-color: var(--color-green);
    /*min-width: 21rem;*/
}

    .jfc-order-button-csv:not(:disabled):hover {
        background-color: var(--color-light-green);
        color: rgba(0,0,0,.7);
    }

    .jfc-order-button-csv:not(:disabled):active {
        background-color: var(--color-dark-green);
        color: rgba(0,0,0,.7);
    }


.jfc-order-button-add,
.jfc-order-button-csv {
    background-color: var(--color-yellow);
    color: var(--color-text);
    min-width: 17rem;
}

    .jfc-order-button-add:not(:disabled):hover,
    .jfc-order-button-csv:not(:disabled):hover {
        background-color: var(--color-light-yellow);
        color: var(--color-text);
    }

    .jfc-order-button-add:not(:disabled):active,
    .jfc-order-button-csv:not(:disabled):active {
        background-color: var(--color-yellow-dark);
        color: var(--color-text);
    }


.jfc-order-description a {
    color: var(--color-albonet);
}
/*
h4{
    color: var(--color-albonet);
}*/

.jfc-button-over-bottom {
    position: sticky;
    top: 10rem;
    left: 1rem;
    width: 14rem;
    min-width: unset;
    height: 6rem;
    border-radius: 5rem;
    border: 1px solid rgba(0,0,0,.1);
    padding: 0;
    /*background-color: var(--color-albonet-active);*/
    z-index: 5;
}



    .jfc-button-over-bottom > svg {
        height: 2rem;
        width: 100%;
        margin-top: 0rem;
    }


    .jfc-button-over-bottom > span {
        text-align: center;
        font-size: 1rem;
        line-height: 1.2;
    }

.jfc-navbar-collapse {
    /*background:red ;*/
    width: calc(100% - 15rem);
}

.jfc-nav-bar {
    display: inline-block;
    position: absolute;
    right: 0;
    top: .8rem;
    /*background-color: rebeccapurple;*/
}

@media (max-width: 1024px) {
    .jfc-button-over-bottom {
        position: sticky;
        top: 8rem;
        right: 1rem;
        left: unset;
        z-index: 1000;
        height: 5rem;
        margin-top: 0rem !important;
    }

        .jfc-button-over-bottom > svg {
            height: 2rem;
            width: 100%;
            margin-top: 0rem;
        }

        .jfc-button-over-bottom > span {
            text-align: center;
            font-size: 1rem;
            line-height: 1.2;
        }
}

@media (max-width: 780px) {
    .jfc-btn-delete {
        width: 100%;
    }

    .jfc-navbar-collapse {
        /*background:red ;*/
        width: unset;
    }

    .jfc-button-over-bottom {
        position: fixed;
        top: 1rem;
        right: 1rem;
        left: unset;
        z-index: 1000;
        height: 5rem;
        margin-top: 0rem !important;
    }

        .jfc-button-over-bottom > svg {
            height: 2rem;
            width: 100%;
            margin-top: 0rem;
        }


        .jfc-button-over-bottom > span {
            text-align: center;
            font-size: 1rem;
            line-height: 1.2;
        }
}

@media (max-width: 420px) {
    .jfc-button-over-bottom {
        transform: scale(.8);
        margin-right: -1rem;
    }
}

.jfc-div-success-svg {
    text-align: center;
}

    .jfc-div-success-svg > svg {
        width: 7rem;
        height: 7rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        color: var(--color-green);
    }

.jfc-register-master {
    margin: 0 auto;
    min-width: 45vw;
    position: relative;
    padding-bottom: 5rem;
}

.jfc-register {
    display: block;
    height: auto;
    max-width: 45rem;
    margin: 0 auto;
}

.jfc-register-span {
    width: 100%;
    display: inline-block;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
}

    .jfc-register-span > div {
        background-color: white;
        z-index: 1;
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .jfc-register-span > hr {
        top: 50%;
        position: absolute;
        right: 0;
        left: 0;
        z-index: 0;
    }

.jfc-register-source {
    max-width: 45rem;
    margin: 0 auto;
}

.jfc-loading-btn {
    width: 2.5rem;
    height: 1.2rem;
    /*display: inline-block;*/
    margin-left: -.5rem;
    margin-top: .25rem;
    float: left;
    /*background-color: red;*/
}

.jfc-div-clone-btn > input {
    margin: 0;
}

.jfc-loading-btn > div {
    background-color: rgba(255,255,255,.7);
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
}

.jfc-div-clone-desc {
    flex: 1;
    font-weight: bold;
    line-height: 1.4;
}

    .jfc-div-clone-desc > span {
        font-weight: normal;
        font-size: 1rem;
        text-transform: none;
    }

@media (max-width: 624px) {
    .jfc-register-image {
        position: absolute;
        width: 4.4rem;
        height: 4.4rem;
    }

    .jfc-div-clone-desc {
        margin-left: 5rem;
        text-align: center;
        flex: unset;
        /*width: 100%;*/
        position: relative;
    }

    .jfc-div-clone-btn {
        margin-left: 5rem;
        /*width: 100%;*/
        position: relative;
    }

    .jfc-register-source {
        display: block;
    }
}

.jfc-div-error {
    margin: 0 auto;
    width: fit-content;
    margin-bottom: 1rem;
    color: var(--color-red);
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: left;
    display: block;
}

.jfc-info-span {
    line-height: 1.4;
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
}

    .jfc-info-span > svg {
        height: 1.2rem;
        width: 1.2rem;
    }

/*Message Popup ===========================================================*/

.jfc-content-message-popup {
    height: fit-content;
    width: fit-content;
    background-color: transparent;
    position: fixed;
    right: 0;
    top: 0rem;
    padding-top: 1rem;
    padding-right: 1rem;
    transition: unset;
    z-index: 2000;
}

.jfc-content-message-popup .jfc-message-popup:last-child {
    margin-bottom: 0;
}

.jfc-message-popup {
    width: 28rem;
    min-height: 8rem;
    background-color: #f7f7f7;
    transform: translateX(29rem);
    transition: transform .35s, opacity .35s;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-wrap: nowrap;
    /*align-items: stretch;*/
    box-shadow: -2px .25rem 8px 0px rgba(0, 0, 0, 0.2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    color: rgb(16, 16, 16);
}

.jfc-message-popup-show {
    transform: unset;
    opacity: 1;
}

.jfc-message-popup-line {
    background: var(--color-blue);
    /*height: 2rem;*/
    margin-right: 1rem;
    width: .7rem;
    border-radius: .5rem;
}

.jfc-message-body-popup {
    display: flex;
    flex-flow: column;
    flex-basis: fit-content;
    flex-grow: 1;
}

.jfc-message-popup-title {
    padding-bottom: .25rem;
    position: relative;
    padding-right: 1.1rem;
}

.jfc-message-popup-description {
    flex-grow: 1;
    font-size: 1rem;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 1rem;
    /* min-height: 10rem; */
    max-width: 24rem;
    /* height: fit-content; */
    overflow-x: hidden;
    text-wrap-mode: wrap;
    /*min-height: 10rem;*/
}

.jfc-message-popup-remove-btn {
    height: 2rem;
    width: 2rem;
    /*height: 1rem !important;*/
    display: block;
    background-color: transparent;
    /*display: inline-block;*/
    font-weight: 300;
    text-align: center;
    vertical-align: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none !important;
    border: 0px solid rgba(0,0,0,.05);
    border-radius: 50%;
    /*color: rgba(0,0,0,.7);*/
    z-index: 3;
    padding: 0;
    position: absolute;
    top: -.5rem;
    right: -.5rem;
}

    .jfc-message-popup-remove-btn > svg {
        height: 1.8rem;
        width: 1.8rem;
        position: absolute;
        top: .1rem;
        left: .15rem;
    }

    .jfc-message-popup-remove-btn:focus {
        background-color: rgba(0, 0, 0, 0.1);
        outline: none;
        /*border: 1px solid rgba(0, 0, 0, 0.08);*/
    }

    .jfc-message-popup-remove-btn:hover {
        background-color: rgba(0, 0, 0, 0.1);
        outline: none;
        /*border: 1px solid rgba(0, 0, 0, 0.08);*/
    }

    .jfc-message-popup-remove-btn:active {
        background-color: rgba(0, 0, 0, 0.1);
        color: rgba(0,0,0,.5);
        outline: none;
        /*border: 1px solid rgba(0, 0, 0, 0.08);*/
    }

    .jfc-message-popup-remove-btn:disabled {
        opacity: .7;
        outline: none;
        /*border: 1px solid rgba(0, 0, 0, 0.08);*/
    }


/*PopUp =====================================================*/

.jfc-line-popup {
    margin: 0;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.jfc-popup-close {
    height: 110vh;
    width: 110vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
}

.jfc-popup {
    height: fit-content;
    width: fit-content;
    min-width: 10rem;
    max-width: 50vw;
    background-color: var(--color-content);
    z-index: 2000;
    border-radius: 1rem;
    padding: 1rem 0rem;
    /*backdrop-filter: blur(2rem);*/
    box-shadow: -2px 1rem 8px 0px rgba(0, 0, 0, 0.2);
    max-height: 50vh;
    border: 1px solid rgba(0,0,0,.1);
    position: absolute;
    overflow-y: auto;
}

    .jfc-popup::-webkit-scrollbar {
        width: .7rem;
    }

    /* Track */
    .jfc-popup::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .jfc-popup::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.1);
        border-radius: .35rem;
    }

        /* Handle on hover */
        .jfc-popup::-webkit-scrollbar-thumb:hover {
            background: rgba(0,0,0,.2);
        }


/*ListMenu PopUp =====================================================*/

.jfc-div-menu-container {
    /*background-color: rebeccapurple;*/
    position: relative;
}

.jfc-div-menu-container {
}

.jfc-div-menu-item {
    padding: .5rem 2rem;
    cursor: pointer;
    position: relative;
    /*border-radius: 1rem;*/
}

    .jfc-div-menu-item:nth-child(2n+1) > .jfc-div-menu-item-line {
        background-color: rgba(0,0,0,.2);
    }

.jfc-div-menu-item-line {
    background-color: rgba(0,0,0,.1);
    width: .7rem;
    border-radius: .5rem;
    position: absolute;
    height: calc(100% - 1rem);
    left: 1rem;
    transition: all .2s;
    transform: scale(.8);
    transform-origin: center;
}

.jfc-div-menu-item:hover {
    /*background-color: rgba(0,0,0,.05);*/
    background-color: var(--color-albonet);
    color: white;
}

    .jfc-div-menu-item:hover > .jfc-div-menu-item-icon > svg {
        /*fill: var(--primary-color);*/
        /*color: white;
        background-color: var(--primary-color);*/
        opacity: 1;
    }

    .jfc-div-menu-item:hover > .jfc-div-menu-item-icon {
        background-color: rgba(0,0,0,.1);
    }

    .jfc-div-menu-item:hover > div > .jfc-div-menu-item-title {
        /*fill: var(--primary-color);*/
        /*color: var(--primary-color);*/
        color: white;
    }

    .jfc-div-menu-item:hover > .jfc-div-menu-item-line {
        /*opacity: .7;*/
        /*width: 1rem;*/
        transform: scale(1);
        background-color: currentColor;
    }

.jfc-div-menu-item > div {
    display: inline-block;
}

.jfc-div-menu-item-icon {
    transition: all .5s;
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    padding-left: .6rem;
    padding-top: .6rem;
    margin-left: .5rem;
    display: block;
    position: absolute;
    margin-top: .25rem;
    /*border-right: 1px solid red;*/
}

    .jfc-div-menu-item-icon > svg {
        width: 1.8rem;
        height: 1.8rem;
        opacity: .7;
    }

.jfc-div-menu-item-sub {
    margin-left: 4rem;
}

.jfc-div-menu-item-title {
    font-size: 1.5rem;
    /*font-weight: bold;*/
}

.jfc-div-menu-item-description {
    font-size: 1rem;
    color: rgba(0,0,0,.5)
}


.jcf-group-caption {
    text-transform: uppercase;
    padding: .8rem 3rem;
    font-weight: bold;
    
    /*background-color: var(--color-light-green);*/
    background-color: rgba(0,0,0,.07);
    /*color: white;*/
    /*border-radius: 1.5rem;*/
    font-size: 1.2rem;
    /*width: fit-content;*/
    width: 100%;
    margin-bottom: 1rem;
    /*color: var(--color-albonet);
    border-bottom: 2px solid var(--color-albonet);*/

    background-color: var(--color-albonet);
    color: white;
}



.jcf-group-caption-secondary {
    text-transform: uppercase;
    padding: .5rem 3rem;
    font-weight: bold;
    /*background-color: var(--color-light-green);*/
    background-color: rgba(0,0,0,.05);
    color: var(--color-albonet);
    border-radius: 1.5rem;
    font-size: 1.2rem;
    width: fit-content;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0rem;
    /*color: var(--color-albonet);
    border-bottom: 2px solid var(--color-albonet);*/

    /*background-color: var(--color-albonet);*/
    /*color: white;*/
}

.jfc-info-div-html {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem !important;
}

.jfc-div-start {
    min-height: 16rem;
    padding: 2rem;
    text-align: center;
    /*background-color: rgba(0,0,0,0);*/
    background: #25b05f;
    background: linear-gradient(90deg,rgba(37, 176, 95, .7) 0%, rgba(87, 199, 133, .5) 50%, rgba(37, 146, 176, .3) 100%);
    margin: 2rem 1rem;
    /*margin-top: 0;*/
    /*border-radius: 1.5rem .7rem 1.5rem .7rem;*/
    border-radius: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    /*width: 70%;*/
    /*margin: 2rem auto;*/
}

.jfc-div-start-svg{
    text-align: right;
    fill: rgba(0,0,0,.8);
}
.jfc-div-start * h3 {
    color: rgba(0,0,0,.5);
    margin-top: 2.5rem;
    line-height: 1.5;
}
    .jfc-div-start * svg {
        height: 20rem;
        width: 20rem;
    }

.jfc-letter-select{
    color: var(--color-red);
}

.jfc-div-start * h3 > span {
    color: rgba(0,0,0,.8);
    font-size: 90%;
    text-transform: uppercase;
}

.jfc-div-master {
    margin: 2rem 1rem;
    margin-top: 4rem !important;
    background-color: white;
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    /*margin-bottom: 1rem;*/
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    /*min-height: 80vh;*/
}

.jfc-input-div-btn{
    position: absolute;
    right: -.5rem;
    top: 1rem;
}

.jfc-input-div-btn button
{
    /*font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;*/
    /*color: white;*/
    border: 0 solid;
    /*padding: .8rem;*/
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    text-transform: uppercase;
    font-size: 1rem;
    outline: none;
    line-height: 1;
    position: relative;
    background-color: transparent;
    transition: all .5s;
    cursor: pointer;
    color: rgba(0,0,0,.4);
}

    .jfc-input-div-btn button:not(:disabled):hover {
        filter: brightness(1.2);
        color: var(--color-albonet);
    }

    .jfc-input-div-btn button:not(:disabled):active {
        filter: brightness(.8);
        color: var(--color-albonet);
    }

    .jfc-input-div-btn button:not(:disabled):focus {
        /*filter: brightness(1.4);*/
        color: var(--color-albonet);
    }

    .jfc-input-div-btn button:disabled {
        opacity: .7;
        outline: none;
    }


    .jfc-input-div-btn button> svg {
        height: 2rem;
    }

.jfc-popup-info {
    margin: 0 1rem;
    font-size: 1.3rem;
    max-width: 50vw;
    max-height: 50vh;
    line-height: 1.2;
}

.jfc-popup-info-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: .5rem;
    margin-top: .5rem;
    display: inline-block;
    text-transform: uppercase;
}

.jfc-popup-info-description {
    font-size: 1.1rem;
    
}

/*AUTOCOMPLATE*/

.jfc-dorpdown-menu{
    max-height: 50vh;
}

.jfc-arrow-is-open {
    transform: rotate(-180deg);
    /*margin-top: -.5rem;*/
}
.jfc-div-menu-container{
    min-height: 5rem;
}
.jfc-loading-dropdown {
    display: grid;
    place-items: center;
}
.jfc-loading-dropdown > .jfc-flip-scale-down-hor {
    margin: unset;
}

.jfc-div-dropdwon-item{
    min-height: 3rem;
}

    .jfc-div-dropdwon-item div {
        font-size: 1.2rem;
    }
    .jfc-div-dropdwon-item div:first-child {
        font-size: 1.4rem;
    }

.jfc-dic-dorpdown-item-select div{
    font-weight: normal;
}
.jfc-dic-dorpdown-item-select div:first-child {
    /*font-weight: bold;*/
}
.jfc-dic-dorpdown-item-select {
    /*background-color: rgba(0,0,0,.05);
    background-color: red;*/
    background-color: var(--color-albonet);
    color: white;
}

    .jfc-dic-dorpdown-item-select > .jfc-div-menu-item-icon > svg {
        /*fill: var(--primary-color);*/
        /*color: white;
        background-color: var(--primary-color);*/
        opacity: 1;
    }

    .jfc-dic-dorpdown-item-select > .jfc-div-menu-item-icon {
        background-color: rgba(0,0,0,.1);
    }

    .jfc-dic-dorpdown-item-select > div > .jfc-div-menu-item-title {
        /*fill: var(--primary-color);*/
        /*color: var(--primary-color);*/
        color: white;
    }

    .jfc-dic-dorpdown-item-select > .jfc-div-menu-item-line {
        /*opacity: .7;*/
        /*width: 1rem;*/
        transform: scale(1);
        background-color: currentColor;
    }

.jfc-selected-search{
    color: var(--color-albonet);
    font-weight: bold;
}

.jfc-dic-dorpdown-item-select * .jfc-selected-search {
    color: white;
    font-weight: bold;
}


#divRecaptcha {
    margin: 1.5rem auto;
    width: fit-content;
    margin-bottom: 0;
}

.jfc-div-list {
    text-align: center;
    padding: 4rem;
    padding-bottom: 0;
    padding-top: 0rem;
}

.jfc-div-list > span{
    font-size: 80%;
    padding: 1rem 0rem;
    display: inline-block;
    /*background-color: red;*/
}

.jfc-info-user{
    margin-top: -2rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.jfc-div-info-user > .jfc-info-user{
    margin: 1rem auto;
    margin-top: -1rem;

}

.jfc-div-par{
    margin: 2rem 2rem;    
}

.jfc-table-no-data > td {
    text-align: center;
    text-transform: uppercase;
    font-size: 80%;
    padding: 2rem !important;
}

.jfc-table-buttons{
    text-align: center;
}

    .jfc-table-buttons > button {
        color: var(--color-inline,var(--color-albonet));
        background-color: transparent !important;
        border: 1px solid var(--color-inline,var(--color-albonet));
    
        /*background-color: var(--color-inline,var(--color-albonet));*/
        margin-left: .5rem;
        padding: .2rem 2rem;
        height: 3.2rem;
    }

.jfc-btn-action-only-icon {
    color: var(--color-inline,var(--color-albonet));
    background-color: transparent !important;
    border: 1px solid var(--color-inline,var(--color-albonet));

    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1.6rem;
    padding: 0rem 0rem !important;
    /*padding-left: .9rem;*/
    /*filter: brightness(.9);*/
}

    .jfc-btn-action-only-icon > svg {
        width: 1.4rem !important;
        height: 1.4rem !important;
        display: inline-block;
        margin-top: -.1rem;
        margin-left: .8rem;
    }


    .jfc-btn-action-only-icon:not(:disabled):hover,
    .jfc-table-buttons > button:not(:disabled):hover {
        background-color: var(--color-inline,var(--color-albonet)) !important;
        /*background-color: var(--color-inline,var(--color-albonet)) !important;*/
        /*filter: brightness(1.2);*/
        color: white;
    }

    .jfc-btn-action-only-icon:not(:disabled):active,
    .jfc-table-buttons > button:not(:disabled):active {
        background-color: var(--color-inline,var(--color-albonet)) !important;
        /*filter: brightness(.8);*/
        color: white;
    }

    .jfc-btn-action-only-icon:not(:disabled):focus,
    .jfc-table-buttons > button:not(:disabled):focus {
        /*filter: brightness(.8);*/
        color: white;
    }

.jfc-btn-in-loading:disabled {
    background-color: var(--color-inline,var(--color-albonet)) !important;
    /*background-color: var(--color-inline,var(--color-albonet)) !important;*/
    /*filter: brightness(1.2);*/
    color: white;
}



.jfc-row-table-select {
    background-color: #2ba84a30;
    font-weight: bold;
}

    .jfc-row-table-select td:first-child{
        border-left: .5rem solid var(--color-albonet);
    }
    .jfc-tr-items:hover {
        background-color: #2ba84a08;
        border-right: 4px solid var(--color-albonet);
    }


.jfc-row-table-select:hover {
    background-color: #2ba84a15;
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.jfc-div-success-register {
    animation: fadeIn 1s ease forwards;
    text-align: center;
}

.jfc-div-fade-in {
    animation: fadeIn 1s ease forwards;
}

.jfc-div-success-register > svg{
    color: var(--color-albonet);
    height: 16rem;
    width: 16rem;
    margin-top: 2rem;
}

.jfc-div-success-register > p{
    margin-top: 4rem;
    line-height: 2;
    font-size: 1.6rem;
}