:root {
    --radius: 5px;
    --box-shadow: var(--black) 0px 5px 35px -34px;
    --transition: 0.2s;
    --font-body: 14px;
    --font-label: 14px;
    --font-btn: 14px;
    --font-h1: 23px;
    --font-h2: 18px;
    --font-h3: 16px;

    --overlay-opacity: 0.2;
    --overlay-hex: rgb(0 0 0 / 20%);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    display: flex;
    height: 100%;
    width: 100%;
}

body {
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    font-size: var(--font-body);
    color: var(--dark);
    box-sizing: border-box;
    font-weight: 400;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fromFastEditor body {
    /* overflow: auto; */
    display: flex !important;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--primary);
}

a.disabled,
.btn.disabled {
    pointer-events: none;
}

/*
a[target="_blank"]:after {
    content: ' \f35d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 95%;
}s
 */

img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

h1 {font-size: var(--font-h1);}
h2 {font-size: var(--font-h2);}
h3 {font-size: var(--font-h3);}
h4 {font-size: var(--font-h4);}

:is(h1, h2, h3, h4, h5, p) {
    padding: 0;
    margin: 0;
    line-height: 1.15em;
}

:is(p, h1, h2, h3, h4, h5, h6, ul, section, table, address, blockquote) + :is(p, h1, h2, h3, h4, h5, h6, ul, section, table, address, blockquote, div),
:is(p) + :is(a,code,form) {
    margin-top: 0.5rem;
}

b {
    font-weight: 700;
}

address, blockquote {
    border-left: 3px  solid var(--border);
    background: var(--white);
    padding: 30px;
    margin: 0;
}

code {
    border-left: 5px  solid var(--primary);
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    display: block;
    overflow-wrap: break-word;
}

form {
    margin: 0;
}

hr, .hr-line-dashed {
    border: none;
    border-top: 1px dashed var(--border);
    margin: 15px 0;
}

/* [START] UTILS ============ */
.m-0 {margin: 0 !important;}
.block {display: block !important;}
.text-left {text-align: left  !important;}
.text-center {text-align: center !important;}
.text-right {text-align: right  !important;}
.pull-left {float: left;}
.pull-right {float: right;}
.rounded-circle {border-radius: 50%;aspect-ratio: 1;object-fit: cover;width: 45px;height: 45px;min-width: 45px;}
div:focus-visible {
    outline-color: var(--primary);
}
/* [END] UTILS ============ */

/* [START] GRID ====== */
.row + :is(div),
:is(div):not([style*="none"]) + :is(.row,.ibox) {
    margin-top: 15px;
}
/* [END] GRID ====== */

/* [START] SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
    height:10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: hsla(0, 0%, 0%, 0.2);
}
/* [END] SCROLLBAR ============ */


/* [START] PRELOADER ============ */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.circlePreloader {
    background-color: rgba(255, 255, 255, 0.6);
    background-image: url('/assets/img/360.png');
    background-repeat: no-repeat;
    background-position: center 49%;
    background-size: 75px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(3px);
}

.circlePreloader.small {
    background-position: center;
}

body.fwLoading .circlePreloader {
    position: fixed;
}

.circlePreloader > div {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: spin 1.3s cubic-bezier(0.65, 0.16, 0.15, 0.73) infinite;
    animation: spin 1.3s cubic-bezier(0.65, 0.16, 0.15, 0.73) infinite;
    width: 250px;
    height: 250px;
    line-height: 33px;
    font-size: 30px;
    border-radius: 50%;
    border-top: 5px solid var(--primary);
}


.circlePreloader.small > div {
    width: 120px;
    height: 120px;
    top: 0;
}


.fwLoadingText {
    width: 200px;
    display: block;
    color: var(--dark);
    margin-top: 90px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
}

.fwLoadingText:after {
    -webkit-animation-name: fwLoadingText;
    -webkit-animation-duration: 1s;
    animation-name: fwLoadingText;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    content: '';
}

@-webkit-keyframes fwLoadingText {
    0% {content: '.';}
    50% {content: '..';}
    100% {content: '...';}
}

@keyframes fwLoadingText {
    0% {content: '.';}
    50% {content: '..';}
    100% {content: '...';}
}

.circlePreloader.small > .fwLoadingText {
    display: none;
}

.elementPreloader {
    position: fixed;
    z-index: 1000;
    transition: transform 0.5s ease, top 0.5s ease, left 0.5s ease, width 0.5s ease, height 0.5s ease;
    object-fit: contain;
}
/* [END] PRELOADER ============ */


/* [START] CARICAMENTO ====== */
.loading {

}

.loading:not(.modal, .loading .loading) > *,
.loading:not(.modal, .loading .loading) > #form.steps-loaded,
.loading.modal .modal-content > * {
    opacity: 0.3 !important;
    pointer-events: none;
    transition: none;
}

.loading:not(.modal, .loading .loading) > iframe {
    opacity: 0 !important;
}

.loading:not(.modal, .loading .loading):after,
.loading.modal > :after{
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid var(--border);
    border-top:5px solid var(--success);
    border-radius: 100%;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
    z-index: 10;
}

@keyframes spin {
    from{
        transform: rotate(0deg);
    }to{
         transform: rotate(360deg);
     }
}

@-webkit-keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -75px 0px;
    }
}
@-moz-keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -75px 0px;
    }
}
@-ms-keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -75px 0px;
    }
}
@keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -70px 0px;
    }
}

.preloader-bootbox-container {
    padding: 30px;
}

.preloader-bootbox-container lottie-player {
    height: 280px;
    margin: -60px 0 -60px;
}

.preloader-bootbox-container h3 {
    text-align: center;
}
/* [END] CARICAMENTO ====== */

/* [START] WRAPPER ============ */
#fw360-container {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 100%;
    flex: 1;
}

#fw360-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wrapper-modal + #fw360-wrapper {
    display: none;
}

#fw360-wrapper .fw360-wrapper-content {
    flex: 1;
    background: var(--light);
    padding: 15px;
    overflow: hidden;
    overflow-y: overlay;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

#fw360-wrapper .fw360-wrapper-content.loading {
    scroll-behavior: initial;
}

html.fullscreen #fw360-wrapper .fw360-wrapper-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#fw360-wizard, #wizard-container {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.fromFastEditor #fw360-wrapper .fw360-wrapper-content {}
/* [END] WRAPPER ============ */

/* [START] FOOTER ============ */
#fw360-wrapper .fw360-footer {
    border-top: 1px solid var(--border);
    padding: 15px;
    display: flex;
    background: var(--white);
    align-items: center;
    gap: 10px;
}

.fromFastEditor #fw360-wrapper .fw360-footer,
.fullscreen #fw360-wrapper .fw360-footer {
    display: none;
}

#fw360-wrapper .fw360-footer .fw360-copyright {
    flex: 1;
    display: flex;
    gap: 5px;
    align-items: center;
}

#fw360-wrapper .fw360-footer .fw360-copyright img {
    height: 15px;
}
/* [END] FOOTER ============ */

/* [START] BOX CENTRATI ============  */
#fw360-wrapper .wrapper-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--light);
    overflow: auto;
    background-size: cover;
    background-position: center;
}

#fw360-wrapper .box-form {
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--primary);
    width: 400px;
}

#fw360-wrapper .wrapper-center .box-logo {
    text-align: center;
    margin: 0 0 30px;
}

#fw360-wrapper .wrapper-center .box-logo img {
    width: 340px;
    height: 40px;
    margin: auto;
    display: block;
    object-fit: contain;
}


#fw360-wrapper .wrapper-center .box-form .box-description {
    text-align: center;
    margin: 0 0 30px;
}


#fw360-wrapper .wrapper-center .box-form .box-title {
    margin: 0;
}

#fw360-wrapper .wrapper-center .box-form .box-subtitle {
    margin: 5px 0 0 0;
    font-weight: 400;
}
/* [END] BOX CENTRATI ============  */

/* VIDEO EMEBED */
.embed-video, figure {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
    background: var(--white);
    position: relative;
    width: 100%;
    margin: 0;
}
.embed-video > iframe,
figure > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* [START] IMMAGINE ========= */
.image-group {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 5px;
}

.image-group > img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: var(--radius);
}

.image-group > img + img {
    /* margin-left: -20px; */
}

/* [START] SIMPLE MODE ======= */
html.simpleMode .fw360-advanced-mode {
    display: none !important;
}
html.advancedMode .fw360-simple-mode {
    display: none !important;
}