@charset 'UTF-8';

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

/*--- base ---*/

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
::selection {
    background: #b3d4fc;
    text-shadow: none;
}

:root {
    /*  container */
    --margin-top-content: 117px;
    --margin-viewport: 117px;
    /* pannello menu */
    --panel-menu-width:250px;
    /* pannello destra */
    --panel-dx-width:500px;
    /* overlay */
    --overlay-background-color: rgba(51,51,51,1);
    /* general */
    --colore-alert:#fbbe49;
    --colore-error:#f84a4a;
    --colore-1:#00adef;
    --colore-2:#24a0c8;
    --colore-1-testo-over:#fff;
    --colore-2-testo-over:#fff;
    --colore-bianco:#fff;
    --colore-grigio-1:#f5f5f5;
    --colore-grigio-2:#e7e8ea;
    --colore-grigio-3:#eceef2;
    --colore-grigio-4:#f8f8f8;
    --colore-nero:#414141;
    --colore-verde:#1dc732;
    --colore-rosso:#ff0000;
    --colore-stato-1:#59a500;
    --colore-stato-2:#e80303;
    --colore-stato-3:#ddd;
    --colore-voti-1:#51cb00;
    --colore-voti-2:#ff9000;
    --colore-voti-3:#ff0000;
    --colore-sottomenu:#063949;
    --border-radius-1:4px;
    --border-radius-2:6px;
    --border-radius-3:15px;
    /* form */
    --input-background: #e9e9e9;
    --input-border-left: 5px solid #e9e9e9;
    --input-border-left-required: #ffa200;
    --input-color:#555;
    --input-focus-border-color:#fff;
    --label-color:#aaa;
    --txt-titolo-blocco:#333;
    --form-input-border-color:#ddd;
    --form-input-border-radius:5px;
    /* tables */
    --th-height: 43px;
    --th-font: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
    --th-font-size: 18px;
    --td-font: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
    --td-height: 43px;
    --td-font-size: 16px;
    --td-bg: #f2f2f2;
    --td-type-bg: #eee;
    /* panel menu */
    --font-family:"Fira Sans", "Helvetica Neue", Arial, sans-serif;
    /* modal popup*/
    --modal-header-height: 50px;
    --margin-top-modal-content: 0;
}

html {
    -webkit-text-size-adjust: none;
    touch-action: manipulation;
}

html,
body {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;
	padding: 0;
	margin: 0;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background-color:#fff;
}

/*--- blockquote ---*/

blockquote { font-style: italic; }
blockquote:before { content: "\201C";display: inline-block;padding-right: .4em; }

/*--- emphasized ---*/

strong { font-weight: bold; }
em { font-style: italic; }

/*--- paragrafi ---*/
p::-moz-selection { background: gold; }

p { -moz-user-select:text; }

p {
    position:relative;
    margin:0 0 0 0;
    padding:0 0 0 0;
    font-size:15px;
    font-weight:300;
    line-height:20px;
    color: var(--colore-nero);
    letter-spacing:0px;
}

/*--- ancore ---*/
a {
    position:relative;
    color:#333;
    text-decoration: none;
    outline: none;
}

/*--- hx ---*/
h1,
h2,
h3,
h4,
h5 {
    position:relative;
    margin:15px 0 15px 0;
    padding:0;
    color: var(--colore-nero);
    font-weight: 500;
    letter-spacing: 0;
}

h1 {
    font-size:36px;
}

h2 {
    font-size:24px;
}

h3 {
    font-size:18px;
}

h4 {
    font-size:16px;
}

h5 {
    font-size:14px;
}

/*--- colori base ---*/
.colore-1 {
    color:var(--colore-1);
}

.colore-2 {
    color:var(--colore-2);
}
/*--- ! ---*/

/*--- spacers ---*/

.dummy-10 { height:10px;line-height:10px; }
.dummy-20 { height:20px;line-height:20px; }
.dummy-30 { height:30px;line-height:30px; }
.dummy-40 { height:40px;line-height:40px; }
.dummy-50 { height:50px;line-height:50px; }
.dummy-60 { height:60px;line-height:60px; }
.dummy-70 { height:70px;line-height:70px; }
.dummy-80 { height:80px;line-height:80px; }
.dummy-90 { height:90px;line-height:90px; }
.dummy-100 { height:100px;line-height:100px; }

[class*="dummy-"] {
    display:block;
    padding:0;
    margin:0;
    width:100%;
}

[class*="dummy-"]::after {
    content: ".";
    visibility: hidden;
}

.spacer1 { padding:1px; }
.spacer2 { padding:2px; }
.spacer3 { padding:3px; }
.spacer4 { padding:4px; }
.spacer5 { padding:5px; }
.spacer6 { padding:6px; }
.spacer7 { padding:7px; }
.spacer8 { padding:8px; }
.spacer9 { padding:9px; }
.spacer10 { padding:10px; }
.spacer15 { padding:15px; }
.spacer20 { padding:20px; }
.spacer25 { padding:25px; }
.spacer30 { padding:30px; }
.spacer35 { padding:35px; }
.spacer40 { padding:40px; }
.spacer45 { padding:45px; }
.spacer50 { padding:50px; }

[class*="spacer"] {
    width:100%;
    display:block;
    clear: both;
}

.colore-rosso {
    color:var(--colore-voti-3);    
}

.colore-verde {
    color:var(--colore-voti-2);    
}

.bg-rosso {
    background-color:var(--colore-voti-3);    
}

.bg-verde {
    background-color:var(--colore-voti-2);    
}

/*--- width ---*/

.wd-10 {
    width: 10%;
}

.wd-20 {
    width: 20%;
}

.wd-30 {
    width: 30%;
}

.wd-40 {
    width: 40%;
}

.wd-50 {
    width: 50%;
}

.wd-60 {
    width: 60%;
}

.wd-70 {
    width: 70%;
}

.wd-80 {
    width: 80%;
}

.wd-90 {
    width: 90%;
}

.wd-100 {
    width: 100%;
}

/*--- ! ---*/

/*--- reset floating ---*/

.clearfix:before,
.clearfix:after { display: table;content: " "; }
.clearfix:after { clear: both; }
.clear { clear: both;display: block;overflow: hidden;visibility: hidden;width: 0;height: 0; }

/*--- floating ---*/

.float-left { float:left; }
.float-right { float:right; }

/*--- text align ---*/

.text-left { text-align:left; }
.text-center { text-align:center; }
.text-right { text-align:right; }

/*--- text styling ---*/

.italic { font-style: italic; }


/*--- text sizing ---*/
.bold {
    font-weight: 500;
}

small, 
.small {
    font-size:12px;
    font-weight: 400;
}

small.bold,
.small.bold {
    font-size:12px;
    font-weight: 400;
}

/*--- image ---*/

img { 
    max-width:100%;
    height:auto;
    border:none;
    outline: none;
    display:block; 
}

/*--- blur effect ---*/
.blur {
    -webkit-filter:blur(5px);
    filter:blur(5px);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
/*--- ! ---*/

/*--- overlay ---*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    opacity:0;
    z-index:95000;
}

#overlayclose {
    position:fixed;
    top:1px;
    right:10px;
    padding:5px;
    text-align:center;
    z-index:95500;
}

/*--- ! ---*/

/*--- display policy-privacy inline ---*/
.privacy-inline {
    position: fixed;
    top:0;
    left:0;
    bottom: auto;
    right: auto;
    width: 100%;
    margin:0 auto;
    padding: 0;
    height: 100vh;
    overflow-y: auto;
    z-index:71000;
    display:none;
    opacity: 0;
    transition: all 0.5s ease-out;
    background-color: rgba(255,255,255,0.9);
}
/*--- ! ---*/

/*--- for icomoon icons */
.glyph {
    font-size: 16px;
    width: 15em;
    float: left;
    overflow: hidden;
}

.fs1 {
    font-size: 32px;
}

.icon {
    display: inline-block;
    font-size: 50px;
    color:#333;  
}

/*--- ! ---*/

/*--- layout ---*/

main {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: transparent;
}

/*--- header ---*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 117px;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.header-content {
    position: relative;
	flex: 1 100%;
	justify-content: center;
    align-items: center;
    height: 56px;
    padding:0;
    background-color: var(--colore-1);
}

.header-content .logo {
	float: left;
	width: 40%;
    text-align: left;
	height: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-content .logo img {
    height: 56px;
    width: auto;
}

.header-content .nav {
    float: right;
    width: 60%;
    text-align: right;
    height: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    --nav-a-color:#eee;
}

@media only screen and (max-width: 480px) {

    .header-content .logo {
        width: 25%;
    }

    .header-content .logo a {
        width: 100%;
        max-width: 200px;
    }

    .header-content .logo img {
        height: auto;
        width: auto;
    }

    .header-content .nav {
        float: right;
        width: 75%;
    }

}

.header-content .nav ul {
    position:relative;
    margin:0 0 0 0;
    padding:0 0 0 0;
}

.header-content .nav ul li {
    position:relative;
    margin:0 20px 0 0;
    padding:0;
    list-style:none;
    text-align:center;
    float:left;
}

.header-content .nav ul li.hamburger {
    float:right;
    display: none;
}

.header-content .nav ul li.hamburger a img {
    width: 50px;
    height: 50px;
}

.header-content .nav ul li a {
    margin:0;
    padding:0;
    display: block;
    height: 56px;
    display: flex;
    align-items: center;
    color: var(--nav-a-color);
    font-size: 14px;
    text-transform: uppercase;
}

@media only screen and (max-width: 480px) {

    .header-content .nav ul li a {
        font-size: 12px;
    }

}

.header-content .nav ul li a:hover {
    color: #ddd;
}

.header-content .nav ul li a.active {
    color:#ddd;
}

.header-nav-left {
    position: relative;
    width: 80%;
    height: 61px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--colore-bianco);
    border-bottom: 1px solid var(--colore-grigio-2);
    float: left;
    overflow: auto hidden;
    white-space: nowrap;
}

.header-nav-left ul {
    position:relative;
    margin:0 0 0 0;
    padding:0 0 0 15px;

    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
    display: flex;
    max-height: 60px;
    overflow-y: hidden;

}

.header-nav-left ul li {
    position:relative;
    margin:0 0 0 0;
    padding:0;
    list-style:none;
    text-align:center;
    float:left;
}

.header-nav-left ul li.hamburger {
    float:right;
}

.header-nav-left ul li a {
    margin:0;
    padding:5px 15px 0;
    display: block;
    height: 60px;
    display: flex;
    align-items: center;
    color: var(--colore-nero);
    font-size: 14px;
    font-weight: 500;
    border-bottom:5px solid var(--colore-bianco);
}

.header-nav-left ul li a:hover {
    border-color: var(--colore-grigio-2);
}

.header-nav-left ul li a.active {
    border-color: var(--colore-1);
}

.header-nav-right {
    position:relative;
    width: 20%;
    height: 61px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    background-color: var(--colore-bianco);
    border-bottom:1px solid var(--colore-grigio-2);
    float: left;
}

.header-nav-right ul {
    position:relative;
    margin:0 0 0 0;
    padding:0 15px 0 0;
}

.header-nav-right ul li {
    position:relative;
    margin:0 0 0 0;
    padding:0;
    list-style:none;
    text-align:center;
    float:left;
}

.header-nav-right ul li.hamburger {
    float:right;
}

.header-nav-right ul li a {
    margin:0;
    padding:5px 15px 0;
    display: block;
    height: 60px;
    display: flex;
    align-items: center;
    color: var(--colore-nero);
    font-size: 14px;
    font-weight: 500;
    border-bottom:5px solid var(--colore-bianco);
}

@media only screen and (max-width: 480px) {

    .header-nav-right ul {
        padding:0 0 0 0;
    }
    .header-nav-right ul li a {
        padding: 5px 0 0;
    }

}

.header-nav-right ul li a:hover {
    border-color: var(--colore-grigio-2);
}

.header-nav-right ul li a.active {
    border-color: var(--colore-1);
}

.header-nav-right ul li a.disabled {
    color:#ccc;
    pointer-events: none;
    cursor: default;
    opacity: 0.9;
}

/*--- footer ---*/
.footer {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: auto;
    width: 100%;
    height: 32px;
    background-color: var(--colore-bianco);
    margin: 0;
    padding: 0;
    border-top:1px solid var(--colore-grigio-2);
}

.footer-content {
    position: relative;
    flex: 1 100%;
    justify-content: center;
    height: 30px;
    padding:0 25px 0 25px;
    font-size:11px;
}

.footer-content .text-block-sx {
    position: relative;
    width: 33%;
    float: left;
    display: flex;
    justify-content: flex-start;
}

.footer-content .text-block-cx {
    position: relative;
    width: 33%;
    float: left;
    display: flex;
    justify-content: center;
}

.footer-content .text-block-dx {
    position: relative;
    width: 33%;
    float: left;
    display: flex;
    justify-content: flex-end;
}

.footer-content ul {
    position:relative;
    margin:0 0 0 0;
    padding:0 0 0 0;
}

.footer-content ul li {
    position:relative;
    padding:0;
    list-style-type: disc;
    list-style-position: inside;
    float:left;
    color: #919191;
}

.footer-content .text-block-sx ul li {
    margin:0 0 0 10px;
}

.footer-content .text-block-cx ul li {
    margin:0 5px 0 5px;
}

.footer-content .text-block-dx ul li {
    margin:0 0 0 10px;
}

.footer-content ul li:first-child {
    list-style-type: none;
}

.footer-content ul li a {
    margin:0;
    padding:0;
    display: inline-block;
    line-height: 30px;
    color:#919191;
    font-size: 11px;
    font-weight: 400;
}

.footer-content ul li a:hover {
    border-color: var(--colore-1);
}


.footer-content .logo {
    float: left;
    width: 30%;
    text-align: left;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-content .hamburger {
    float: right;
    width: 10%;
    text-align: right;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}


/*--- type of shadow for all element ---*/

.block-shadow-type-1 {
	box-shadow: 4px 4px 8px rgba(165,178,186,0.2);
}

.block-shadow-type-2 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);	
}

/*--- only bottom ---*/
.block-shadow-only-bottom {
	box-shadow: 0 8px 3px -6px rgba(0,0,0,0.1);
}

/*--- sx, top, dx ---*/
.block-shadow-sx-top-dx {
	box-shadow: 0 -5px 10px 0 rgba(0,0,0,0.5);
}

/*--- top, sx, bottom ---*/
.block-shadow-top-sx-bottom {
	box-shadow: -5px 0 10px 0 rgba(0,0,0,0.5);
}

/*--- top, dx, bottom ---*/
.block-shadow-top-dx-bottom {
	box-shadow: 5px 0 10px 0 rgba(0,0,0,0.5);
}

/* ----------- iPhone 4 and 4S ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {

	.span-text {
		display: none;
	}

	.icon {
		font-size: 38px;
	}

}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {

}

/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {

	.span-text {
		display: none;
	}

	.icon {
		font-size: 36px;
	}

}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {

}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 

	.icon {
		font-size: 50px;
	}

    .icon-happy-certified5 {
        font-size: 40px;
    }

}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 

}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 

}

/* Portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 

}

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 

}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

}

/*--- ! ---*/


/*--- page ---*/

.page-container {
    background-color: var(--colore-bianco);
    margin-top: var(--margin-top-content);
/*
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
*/
}

.page-container.panel-menu-active {
    margin-left: 300px;
}

.page-content {
    position: relative;
    margin: 0 0 0 0;
    padding: 40px;
    width: 100%;
    height: 100%;
    background-color: var(--colore-bianco);
    opacity:0;
}

@media only screen and (max-width: 480px) {

    .page-content {
        padding: 60px 10px;
    }

}

span.assegnato {
    color: var(--colore-stato-1);
    font-style: italic;
    font-size: 12px;
}

/*--- messaggio rotazione smartphone landscape ---*/
#overlaylandscape {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgb(255, 255, 255);
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#divlandscape {
    position: relative;
    width: 100%;
    display: none;
    align-items: center;
}

#divlandscape img {
    width: 100%;    
}

#divlandscape p {
    color:#fff;
    font-weight:700;
    line-height:20px;
    text-align:center;
    text-shadow: 0 1px rgba(0, 0, 0, .75);
    margin:0;
    padding:0;
}



/*--- modal popup ---*/
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 900px;
    height: 70%;
    max-height: 900px;
    background-color:rgba(255,255,255,0.9);
    border-radius: 20px;
    z-index:96000;
    padding: 0;
    opacity: 0;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

.modal {
    -webkit-animation: 1s ease 0s normal forwards 1 fadein;
    animation: 1s ease 0s normal forwards 1 fadein;
}

@keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}

.modal.mini {
    width: 50%;
    max-width: 480px;
    height: 50%;
    max-height: 240px;
}

.modal.wide {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: inherit;
}

.modal.move-to-top {
    top: 100%;
}

.modal.move-to-bottom {
    top: -100%;
}

.modal.move-to-right {
    left: -100%;
}

.modal.move-to-left {
    right: 100%;
}
/*
.modal-header {
    position: relative;
    width: 100%;
    height: var(--modal-header-height);
    opacity: 0;
    display: flex;
    align-items: center;
    background-color:transparent !important;
    padding: 0 0 0 10px;
    color: #fff;
}

.modal-header .title {
    position: relative;
    width: calc(100% - 50px);
    font-size:18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    z-index: 73999;
}

.modal-header a.close {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 73999;
    color: #fff;
    display: block;
    min-width: 25px;
}
*/

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 0;
    float: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: var(--nero);
    text-shadow: 0 1px 0 var(--white);
    opacity: .5;
    z-index:97000;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 0 100px 0;
    padding: 50px;
    background-color: rgba(255,255,255,1);
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-content.mini {
    margin: 0 0 0 0;
}

.modal-content.wide {
    background-color:transparent;
    padding: 0;
}

.modal-content.nopadding {
    padding: 0;
    margin: 0;
}

/*
.modal-content p {

}

.modal-content.iframe {
    padding: 0 0 38px 0;
}

.modal-content.widget {
    padding: 0 0 58px 0;
}

.modal-content h4.alert {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin:0 0 0 0;
    padding: 0 20px 0 20px;
    color:#ff0000;
    text-align: center;
}
*/
/*--- ! ---*/



/*--- override ---*/
.mCSB_inside>.mCSB_container {
    margin-right: 0;
}





/*--- separator horizontal ---*/
.separator-horizontal {
    position:relative;
    display:block;
    width:100%;
    height:1px;
    margin:5px 0;
    background-color: var(--colore-grigio-2);
}










/*--- row and cols */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media only screen and (max-width: 900px) {

    .col-auto,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 89.5%;
        max-width: 100%;
    }

}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/*--- center content on td ---*/
.css-td-center {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/*--- check only css ---*/
.css-check {
    display: inline-block;
    transform: rotate(45deg);
    height: 20px;
    width: 10px;
    border-bottom: 4px solid var(--colore-1);
    border-right: 4px solid var(--colore-1);
    margin: 0 0 4px 0;
}

/*--- div img-immagine for display image uploaded or existing on form ---*/
#img-immagine {
    max-width: 150px;
    margin: 10px 0 0 10px;
}

#doc-documento {
    margin: 0 0 0 10px;
    font-size: 14px;
    border: 1px solid var(--colore-grigio-2);
    padding: 0;
    width: fit-content;
    border-radius: var(--border-radius-1);
    display: flex;
    align-items: center;
}

#doc-documento a {
    float: right;
    width: 30px;
    height: 30px;
}

#mov-movie,
#mov-movie a {
    margin: 10px 0 0 10px;
    font-size:14px;
    border: 1px solid var(--colore-grigio-2);
    padding: 10px;
    width: fit-content;
    border-radius: var(--border-radius-1);
}

.hide {
    display: none;
}

.fa-info-circle {
    font-size:14px;
    color:var(--colore-1);
}


.login-container {
    position: relative;
    display: flex;
    align-items: center;
    height: calc(100% - 90px);
    width: 100%;
    justify-content: center;
}

.login-content {
    position: relative;
    display: flex;
    align-items: center;
    height: 400px;
    width: 400px;
    justify-content: center;
    flex-direction: column;
}

/*--- medum zoom image ---*/
.medium-zoom-overlay {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    opacity:0;
    transition:opacity .3s;
    will-change:opacity;
    z-index: 95000;
}
.medium-zoom--opened .medium-zoom-overlay {
    cursor:pointer;
    cursor:zoom-out;
    opacity:1;
}
.medium-zoom-image {
    width: 100%;
    cursor:pointer;
    cursor:zoom-in;
    transition:transform .3s cubic-bezier(.2,0,.2,1);
    z-index: 96000;
}
.medium-zoom-image--hidden {
    visibility:hidden; 
}
.medium-zoom-image--opened {
    position:relative;
    cursor:pointer;
    cursor:zoom-out;
    will-change:transform;
}

/*--- sortable ---*/
ul.ul_sortable {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

ul.ul_sortable li {
    list-style: none;
    padding: 0 20px 0 10px;
    border-bottom: 1px solid var(--colore-grigio-2);
    vertical-align: middle;
    height: 50px;
    background-color: var(--colore-bianco);
    font-size: 14px;
    color: var(--colore-nero);
    text-align: left;
    min-width: 85px;
    clear: both;
}


ul.ul_sortable li .ul-riordino-li-div {
    float: left;
    padding: 0 20px 0 10px;
    border-bottom: 1px solid var(--colore-grigio-2);
    vertical-align: middle;
    height: 50px;
    background-color: var(--colore-bianco);
    font-size: 14px;
    color: var(--colore-nero);
    text-align: left;
    min-width: 85px;
}

ul.ul_sortable li .ul-riordino-li-div.title {
    font-weight: 500;
}

ul.ul_sortable .sortable-ghost {
    background-color: var(--roll-over-blocco);
    border-color:var(--border-color-blocco);
    border-radius:var(--form-input-border-radius);
}

ul.ul_sortable .sortable-drag {
    background-color: #ff0000;
    border-color:var(--border-color-blocco);
    border-radius:var(--form-input-border-radius);
}

.sorted_table tr {
    cursor: pointer; 
}

.sorted_table tr.placeholder {
    display: block;
    background: red;
    position: relative;
    margin: 0;
    padding: 0;
    border: none; 
}

.sorted_table tr.placeholder:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: red;
    margin-top: -5px;
    left: -5px;
    border-right: none; 
}

.sorted_head th {
    cursor: pointer; 
}

.sorted_head th.placeholder {
    display: block;
    background: red;
    position: relative;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0; 
}

.sorted_head th.placeholder:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: red;
    top: -6px;
    margin-left: -5px;
    border-bottom: none; 
}

body.dragging, 
body.dragging * {
    cursor: move !important; 
}

.dragged {
    position: absolute;
    top: 0;
    opacity: 0.5;
    z-index: 2000; 
}


/*--- popup siulazione ---*/

.popup-simula-header {
    width: 100vw;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.popup-simula-header .close {
    position: absolute;
    top: 0px;
    left: 20px;
    margin: 0;
    padding: 0;
    float: none;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--nero);
    text-shadow: 0 1px 0 var(--white);
    opacity: .5;
    z-index: 97000;
/*
    background-color: #ddd;
*/
    height: 38px;
    width: 38px;
}

.popup-simula-header-title {
    position: absolute;
    top: 0px;
    left: 60px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--colore-1);
    width: calc(100% - 60px);
    z-index: 97000;
}


/*--- ! ---*/




.salvataggio {
    background-color:var(--colore-alert);
    width:100%;
    height:0;
    position:fixed;
    bottom:0;
    right:0;
    padding:10px;
    color:var(--colore-1);
    font-size:16px;
    font-weight:500;
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity:0;
    z-index:999;
    text-align:right;
    padding-right:80px;
}



/*--- manutenzione ---*/

#maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.9);
    opacity:1;
    z-index:95000;
    transition: all 0.5s ease-out;
}

.maintenance-restart {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width:500px;
    height: 300px;
    color: #fff;
    background-color: transparent;
    z-index:96000;
    transition: all 0.5s ease-out;
}

.maintenance-restart a {
    color: #fff;
}

.maintenance-restart .text {
    font-size: 14px;
    text-align: center;
}

.maintenance-restart .title {
    font-size: 30px;
    line-height: 50px;
    font-weight: 500;
}


/*--- ! ---*/

.dashboard {
    width: 100%;
    height: calc(100vh - 169px);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 480px) {

    .dashboard {
        padding: 0 20px;
        line-height: 36px;
    }

}

/*--- per accettazione condizioni da parte degli utenti ---*/
/*
.condizioni {
    position: fixed;
    top:0;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
}

.condizioni-msg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.condizioni-msg a,
.condizioni-msg p,
.condizioni-msg h1,
.condizioni-msg h2,
.condizioni-msg h3,
.condizioni-msg h4,
.condizioni-msg h5 {
    color: #fff;
}
*/
.condizioni form {
    width: 100%;
}

.condizioni .form-group {
    margin-top:10px;
}
/*
.condizioni-msg p {
    font-size: 30px;
    font-weight: 500;    
    color:var(--colore-1);
    text-align: center;
    margin: 0 0 30px 0;
    display: block;
}

.condizioni-msg a {
    margin:0 0 0 0;
    display: block;
}
*/    

/*--- ! ---*/

/*--- gestione notifiche ( errori e/o segnalazioni ) ---*/
.alert {
    position: fixed;
    left: 50%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 180px;
    margin: -90px 0 0 -250px;
    padding: 50px 50px 50px 50px;
    background-color: rgba(255,255,255,1);
    z-index: 95999;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

@media only screen and (max-width: 480px)
{
    .alert {
        left: 0;
        margin: -90px 0 0 auto;
    }
}

.alert a.close {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: block;
    margin: 0;
    padding: 0;
    z-index: 75000;
}

.alert p {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 18px;
    line-height: 25px;
    font-family: 'Lato', sans-serif;
    z-index: 71000;
}
