:root {
/* ANIMAZIONE */
	--animate-duration: 800ms;
	--animate-delay: 800ms;
	--animate-repeat: 1;
}

/* BASE */
*{
	margin:0;
	padding:0;
	-webkit-tap-highlight-color: rgba(0,0,0,0.6);
	outline: 0;

	/* cursor: url("pointer.svg"), auto; */
}
*,
*:after,
*::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	/* cursor: url("pointer.svg"), auto !important; */
}

html{
	width:100%;
	min-height:100%;
	height:100%;
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
    min-height:100%;
	height:100%;
    overflow: hidden;

	background-color:#ffffff;
	position:relative;

	font-family: "gotham", sans-serif;
    font-weight: 400;
    font-style: normal;

	color:#000000;
	font-size: 16px;
	line-height: 16px;
}
body.load {
	background-color:#000000;
}
html, body {
 	-webkit-font-smoothing: antialiased !important;
	-moz-font-smoothing: unset;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1,h2,h3,h4,h5,h6,h7{
	font-weight:normal;
}
img{
	border:0;
	font-size:0;
	color:#ffffff;
}
ul{
	margin: 0;
	padding: 0;
}
ul li {
	list-style-position: inside;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
input {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-appearance: textfield;
	-moz-appearance:    textfield;
	appearance:         textfield;
}
input[type=number] {
	-webkit-appearance: textfield;
	-moz-appearance:    textfield;
	appearance:         textfield;
}
input[type=checkbox] {
   -webkit-appearance: checkbox;
   -moz-appearance:    checkbox;
   appearance:         checkbox;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
	appearance: normal;
	-moz-appearance: normal; /* Firefox */
	-webkit-appearance: normal; /* Safari and Chrome */
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
button{
	border:0;
	margin:0;
	padding: 0;

	appearance: normal;
	-moz-appearance: normal; /* Firefox */
	-webkit-appearance: normal; /* Safari and Chrome */

	background-color: transparent;
}
input, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
textarea {
	-webkit-appearance: textfield;
	resize: none;
	overflow: hidden;
}
input:required:invalid {
    outline :#ffffff solid 0px;
}
input:invalid {
    outline :#ffffff solid 0px;
}
form{
	margin: 0px;
	padding: 0px;
}

.clickable{
	cursor:pointer !important;
}
.hidden{
	display:none !important;
}
.disabled{
	pointer-events: none !important;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

/* BASE */
.txtC{
	text-align:center !important;
}
.txtL{
	text-align:left !important;
}
.txtR{
	text-align:right !important;
}
.floatL{
	float:left;
}
.floatR{
	float:right;
}
/* BASE */

/*COLOR*/
.colorYellow{
	color:#FFD900 !important;
}
.colorGrey{
	color:#808080 !important;
}
.colorWhite{
	color:#ffffff !important;
}
.colorBlack{
	color:#000000 !important;
}

.bgYellow {
	background-color: #FFD900 !important;
}
.bgGrey{
	background-color:#808080 !important;
}
.bgBlack{
	background-color: #000000 !important;
}
.bgWhite{
	background-color: #ffffff !important;
}
/*COLOR*/

/* FONT-FACE */

/* GOTHAM LIGHT */
.ffTextGL{
	font-family: "gotham", sans-serif;
    font-weight: 300;
    font-style: normal;
}
/* GOTHAM BOOK */
.ffTextGBK{
	font-family: "gotham", sans-serif;
    font-weight: 400;
    font-style: normal;
}
/* GOTHAM MEDIUM */
.ffTextGM{
	font-family: "gotham", sans-serif;
    font-weight: 500;
    font-style: normal;
}
/* GOTHAM BOLD */
.ffTextGB{
	font-family: "gotham", sans-serif;
	font-weight: 700;
    font-style: normal;
}

/* LOADING */
.pageload-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
}

.pageload-overlay.show {
    visibility: visible;
    z-index: 999;
}

body.bdsolutionview .pageload-overlay {
    background-color: #ffffff;
}

.pageload-overlay svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pageload-overlay svg path {
    fill: #fff;
}

.pageload-overlay::after,
.pageload-overlay::before {
    content: '';
    position: fixed;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    transition: opacity 0.15s, visibility 0s 0.15s;
}

/* Stesso nome di animazione, direzione invertita = perfettamente sincronizzati */
.pageload-overlay::after {
    background: rgb(255 217 0 / 50%);
    animation: loaderMove 0.6s ease-in-out infinite alternate;
}

.pageload-overlay::before {
    background: #ffd900;
    animation: loaderMove 0.6s ease-in-out infinite alternate-reverse;
}

@keyframes loaderMove {
    from { transform: translateX(-20px); }
    to   { transform: translateX(20px); }
}

.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s;
}
/* LOADING */