﻿:root {
    --color-albonet: #ac2360;
    --primary-color: #ac2360;
    --color-albonet-hover: #8a0943;
    --color-albonet-active: #d12070;
    --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-span: rgba(0,0,0,.5);
    --color-line: 0, 0, 0;
    --color-line-complate: rgba(0,0,0,.1);
}

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 > 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);
            /*opacity: .5;*/
            font-size: 70%;
            font-weight: 300;
            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: white;
    padding: 0 1rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 80%;
    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;
}

@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: 1700;
    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: 1700;
    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: 1700;
    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: 1701;
    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: 1701;
    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: 1700;
    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);
            color: white;
            border: 0 solid;
            padding: .5rem 2rem;
            border-radius: 2rem;
            text-transform: uppercase;
            font-size: 1.2rem;
            outline: none;
            position: relative;
        }

        .jfc-btn-action:not(:disabled):hover,
        .jfc-order-button:not(:disabled):hover {
            background-color: var(--color-albonet-active);
            color: white;
        }

        .jfc-btn-action:not(:disabled):active,
        .jfc-order-button:not(:disabled):active {
            background-color: var(--color-albonet-hover);
            color: white;
        }

        .jfc-btn-action:not(:disabled):focus {
            background-color: var(--color-albonet-hover);
            color: white;
        }

        .jfc-btn-action:disabled,
        .jfc-order-button:disabled {
            opacity: .7;
            outline: none;
        }


        .jfc-btn-action > svg,
        .jfc-order-button > svg {
            height: 2rem;
            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 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;
    border-radius: 50%;
}
    .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.25rem;
    height: 1.2rem;
    display: inline-block;
    margin-left: -.5rem;
    margin-top: .5rem;
    /*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;
    }

.jfc-div-check-list-master {
    /*background-color: rgba(0,0,0,.01);*/
    max-height: calc(80vh + 12rem);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,.1);
    margin-bottom: 1.2rem;
}


.jfc-div-check-list-title {
    text-transform: uppercase;
    /*background-color: rgba(255,255,255,.2);*/
    background-color: rgba(0,0,0,.05);
    /*background-color: #2994ff07;*/
    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 1rem 2rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.jfc-search-cap-title > h2 {
    text-transform: uppercase;
    /*font-size: 140%;*/
    font-size: 2.5rem;
}

.jfc-div-check-list-content{
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    
}

.jfc-div-check-list-search{
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.jfc-div-check-list-master::-webkit-scrollbar,
.jfc-div-check-list-content::-webkit-scrollbar {
    width: .7rem;
}

/* Track */
.jfc-div-check-list-master::-webkit-scrollbar-track,
.jfc-div-check-list-content::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.jfc-div-check-list-master::-webkit-scrollbar-thumb,
.jfc-div-check-list-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.1);
    border-radius: .35rem;
}

    /* Handle on hover */
    .jfc-div-check-list-master::-webkit-scrollbar-thumb:hover,
    .jfc-div-check-list-content::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,.2);
    }

.jfc-div-check-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: .5rem;
    padding-bottom: .5rem;
    
}

    .jfc-div-check-list-expander {
        padding-left: .2rem;
        padding-top: .45rem;
        border-radius: 50%;
        height: 2.6rem;
        width: 2.6rem;
        margin-top: -.25rem;
        cursor: pointer;
        transition: transform 0.5s ease;
        text-align: center;
        /*background-color: rgba(0,0,0,.1);*/
    }

.jfc-div-check-list-expander-open {
    transform: rotate(90deg);
    background-color: rgba(0,0,0,.1);
    color: var(--color-blue);
}

.jfc-div-check-list-expander:hover {
    background-color: rgba(0,0,0,.1);
}

    .jfc-div-check-list-expander, .jfc-div-check-list-check {
    vertical-align: middle;
    flex: 0 0 auto; /* larghezza fissa o basata sul contenuto */
}

    .jfc-div-check-list-check > .jfc-checkbox{
        margin-top: 0;
        vertical-align: top;
        margin-left: .25rem;
        margin-right: .5rem;
    }

.jfc-div-check-list-description {
    vertical-align: middle;
    cursor: pointer;
    flex: 1 1 auto; /* larghezza fissa o basata sul contenuto */
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    overflow: hidden;
    max-width: calc(100% - 8rem);
    padding: 0 .5rem;
    border-radius: .5rem;
    text-transform: uppercase;  
}


    .jfc-div-check-list-description:hover {
        background-color: rgba(255,255,255,.5);
    }

.jfc-div-check-list-sub {
    flex: 0 0 100%; /* forza l'elemento ad andare a capo e occupare tutto */
    margin-left: 1.25rem;
    border-left: 1px solid rgba(0,0,0,.1);
    margin-top: .5rem;
    padding: .5rem;
}

.jfc-div-check-list-sub-hide{
    display: none;
}

.jfc-selected-search {
    background-color: var(--color-blue);
    color: white;
    
    /*border-radius: .5rem;
    padding: 0 .5rem;*/

    /*color: var(--color-blue);
    font-weight: bold;*/

    /*background-color: var(--color-yellow);
    font-weightjfc-loading-btn bold;
    color: #353535;*/
}

.jfc-btn-action-standard {
    background-color: var(--color-blue);
    /*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-standard-only-text {
    line-height: 1.2;
    padding: .5rem 2rem;
}


    .jfc-btn-action-standard:not(:disabled):hover {
        background-color: var(--color-blue);
        filter: brightness(1.2);
        color: white;
    }

    .jfc-btn-action-standard:not(:disabled):active {
        background-color: var(--color-blue);
        filter: brightness(.8);
        color: white;
    }

    .jfc-btn-action-standard:not(:disabled):focus {
        /*background-color: var(--color-albonet-hover);*/
        /*background-color: var(--color-albonet);*/
        color: white;
    }

    .jfc-btn-action-standard:disabled{
        opacity: .7;
        outline: none;
    }


    .jfc-btn-action-standard > svg{
        height: 2rem !important;
        width: 2rem !important;
        margin-right: .5rem;
        margin-top: .2rem;
        float: left;
    }

.jfc-div-list-categories{
    display: flex;
    /*margin-left: -1px;
    margin-right: 0;*/
}

    .jfc-div-list-categories > .col-md-6{
        flex: 1;
    }

    .jfc-div-list-categories * .jfc-div-check-list-master {
        height: calc(100% - 1.2rem);
    }

@media only screen and (max-width: 900px) {
    .jfc-div-list-categories {
        display: block;
    }

}

.jfc-tr-align-top > td{
    vertical-align: top;
}

[data-th="Oggetto"] {

}
.jfc-div-categories{
    
}
.jfc-ul-categories {
    /*cursor: pointer;*/
    /*display: flex;*/
    list-style: disc !important;
    list-style-position: inside !important;
    overflow-y: hidden;
    max-height: 0rem;
    text-overflow: ellipsis;
    transition: max-height 0.4s ease;
    margin-top: .5rem;
}

        .jfc-ul-categories div {
            display: inline-block;
            padding: .25rem 1rem;
            background-color: rgba(0,0,0,.05);
            border-radius: 1.5rem;
            text-indent: 0rem;
            margin: .25rem .5rem;
            margin-left: 0;
            overflow-x: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-size: 70%;
            text-transform: uppercase;
            
        }

.jfc-categorie-view{
    cursor: pointer;
}
.jfc-categorie-view > svg {
    width: 1.5rem;
    margin-left: .7rem;
    margin-bottom: -.45rem;
}
/*[data-th="Categorie"] ul li {
        display: block;
        padding-left: 1.2rem;
    }
    
    [data-th="Categorie"] ul li::before {
        content: "•";
        left: 0;
        font-size: 3rem;
        line-height: .5;
    }*/
.jfc-ul-categories.expanded {
    max-height: 1000rem;
    overflow-y: hidden;
}

.jfc-category-find {
    /*color: var(--color-blue);*/
    background-color: var(--color-blue) !important;
    color:white;
    /*font-weight: bold;*/
}

.jfc-div-files {
    min-width: 18rem;

}
.jfc-div-files > .jfc-div-file-item {
    cursor: pointer;
    display: inline-block;
    margin-right: .5rem;
    margin-top: .5rem;
}

.jfc-div-file-item > svg {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0rem auto;
    display: block;
}

.jfc-div-file-item > span{
    display: block;
    font-size: 60%;
    margin-top: .5rem;
    color: white;
    padding: 0 1rem;
    border-radius: 1rem;
    text-transform:uppercase;
}


.jfc-span-file-convenzione span {
    background-color: var(--color-red);
}

.jfc-span-file-capitolato span {
    background-color: var(--color-use);
}

.jfc-div-check-empty{
    opacity: .4;
    cursor: default;
    font-size: 80%;
}

.jfc-div-check-empty .jfc-div-check-list-description{
    cursor: default;
}
    .jfc-div-check-empty .jfc-div-check-list-description:hover {
        background-color: transparent !important;
    }
.jfc-loading-btn-download {
    width: 2.4rem;
    height: 2.4rem;
    display: block;
    margin: 0 auto;
    /*background-color: red;*/
}

    .jfc-loading-btn-download > div {
        background-color: rgba(0,0,0,.7);
        width: 1.6rem;
        height: 1.6rem;
        border-radius: 50%;
        margin: 0 auto;
    }

.jfc-tr-loader{
    cursor: pointer;
}
.jfc-tr-loader > th {
    text-align: center;
}

#inputSearch{
    font-weight: bold;
}
#divSelectCategories {
    max-height: calc(50vh + 6rem);  
}

.jfc-table-div-caption{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 60%;
    margin-top: 1rem;
}

.jfc-tr-items > td > div > .jfc-table-div-caption:first-child{
    margin-top: 0;
}

.jfc-table-div-inline {
    width: 100%;
}

.jfc-table-div-inline > div{
    display: inline-block;
    margin-right: 1.5rem;
}


.jfc-div-start {
    /*min-height: 12rem;*/
    padding: 2rem;
    text-align: left;
    /*background-color: rgba(0,0,0,0);*/
    background: #25b05f;
    background: linear-gradient(25deg,rgb(37, 109, 193) 0%, rgba(255, 255, 255, .5) 80%, rgba(255,255, 255, 0) 100%);
    margin: 2rem 0rem;
    /*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;*/
    color: white;
}

    .jfc-div-start .jfc-search-cap-title > h2 {
        margin-top: 10rem;
        color: white;
    }

.jfc-div-start-svg  > svg{
    float: right;
    text-align: right;
    width: 20rem;
    height: 20rem;
    fill: rgba(0,0,0,.7);
}

@media only screen and (max-width: 900px) {
    .jfc-div-start {
        color: unset;
    }

        .jfc-div-start .jfc-search-cap-title > h2 {
            margin-top: 1rem;
            color: unset;
            /*color: black;*/
        }
    .jfc-div-start-svg > svg{
        float: unset;
        text-align: center;
        width: 18rem;
        height: 18rem;
        fill: rgba(0,0,0,.7);
    }
}