@import url('https://fonts.googleapis.com/css?family=Mukta+Mahee:400,500,600,700,800&display=swap');

html,
body {	
    overflow-x: hidden;
}

@keyframes loadBody {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: loadBody .6s ease 1;
  -webkit-animation: loadBody ease .6s 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
	padding: 0;
    margin: 0;
    overflow: hidden;
	font-family: 'Mukta Mahee', sans-serif;
	font-weight: 400;
	font-size: 14px;
}

/** {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

p,
input,
textarea {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}*/

div {
	box-sizing: border-box;
}

a {
	box-sizing: border-box;
}

.upper {
    text-transform: uppercase;
}

.full-w {
	width: 100%;
	height: auto;
}

.transition {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.margin-auto {
	margin: 0 auto;
}

ul.no-style, 
li.no-style {
	list-style-type: none !important;
}

ul.no-style li {
	list-style-type: none !important;
}

ol.no-style, 
ul.no-style {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
}

li {
	margin: 10px 0;
}

li.no-style {
	display: list-item;
}

.bold,
.strong {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

.strong-italic {
	font-weight: 700;
	font-style: italic;
}

.debug {
	border: dashed 1px #ff0000;
}

.wrap-screen {
    max-width: 100%;
    width: auto;
    height: 100%;
    position: relative;
    margin: 0 auto;
	padding: 0 20px;
}

.row-screen {
	height: 100%;
}

.relative {
	position: relative;
}

.block {
	display: block;
}

img {
    vertical-align: inherit !important;
}

a:link,
a:hover,
a:visited {
	text-decoration: none !important;
	color: #111;
}

.msg-popup {
	position: fixed;
	background-color: rgba(0,0,0,0.6);
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100vh;
	display: none;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.msg-popup a:link,
.msg-popup a:hover,
.msg-popup a:visited {
	text-decoration: underline !important;
	color: #111;
}

.msg-popup.active {
	display: flex;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.msg-popup .msg-box {
	position: relative;
	width: 80%;
	font-family: 'Mukta Mahee', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	padding: 60px 30px 60px 30px;
	height: 60vh;
	background-color: #fff;
	color: #272727;
	box-sizing: border-box;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.close-msg {
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
	background-color: #272727;
}

.close-msg .ico {
	width: 15px;
	height: 15px;
}

.close-msg .ico path {
	fill: #fff;
}

.cookie-block {
	position: fixed;
	bottom: 0;
	left: 0;
	font-family: 'Mukta Mahee', sans-serif;
	font-weight: 500;
    background-color: #277744;
    color: #ffffff;
    z-index: 8;
    font-size: 13px;
    line-height: 22px;
	padding: 15px 30px;
}

.cookie-block.active {
	display: block;
}

.cookie-block a {
	font-weight: 700;
	color: #d8dd50 !important;
}

.overflow {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 20px;
}

.overflow::-webkit-scrollbar {
  width: 4px;
  height: 1px;
}

.overflow::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

.overflow::-webkit-scrollbar-thumb {
  background: #8abb28;
  border: 0px none #ffffff;
  border-radius: 0px;
}

.overflow::-webkit-scrollbar-thumb:hover {
  background: #272727;
}

.overflow::-webkit-scrollbar-thumb:active {
  background: #272727;
}

.overflow::-webkit-scrollbar-track {
  background: #888888;
  border: 0px none #ffffff;
  border-radius: 0px;
}

.overflow::-webkit-scrollbar-track:hover {
  background: #888888;
}

.overflow::-webkit-scrollbar-track:active {
  background: #888888;
}

.overflow::-webkit-scrollbar-corner {
  background: transparent;
}

.bg-white a:hover {
	color: #ffd842;
}

.info-link {
	font-size: 13px;
}

.cl-sm-1 {
	width: 8.33%;
}

.cl-sm-2 {
	width: 16.66%;
}

.cl-sm-3 {
	width: 25%;
}

.cl-sm-4 {
	width: 33.33%;
}

.cl-sm-5 {
	width: 41.66%;
}

.cl-sm-6 {
	width: 50%;
}

.cl-sm-7 {
	width: 58.33%;
}

.cl-sm-8 {
	width: 66.66%;
}

.cl-sm-9 {
	width: 75%;
}

.cl-sm-10 {
	width: 83.33%;
}

.cl-sm-11 {
	width: 91.66%;
}

.cl-sm-12 {
	width: 100%;
}

.flex-stretch {
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.flex-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.flex-end {
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.flex-start {
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: flex-start;
    justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.align-self-btm-left {
	align-self: flex-end;
}

.align-self-top-right {
	align-self: flex-start;
}

.aligner-item--bottom {
  align-self: flex-end;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left !important;
}

.no-padding {
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 0 !important;
}

.no-margin {
	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}

.no-padding-top {
	padding-top: 0 !important;
}

.no-padding-btm {
	padding-bottom: 0 !important;
}

.no-block {
	display: inherit !important;
}

.typeahead__container ::-webkit-input-placeholder,
::-webkit-input-placeholder {
  opacity: 1 !important;
  color: inherit !important;
}

.typeahead__container ::-moz-placeholder,
::-moz-placeholder {
  opacity: 1 !important;
  color: inherit !important;
}

.typeahead__container :-ms-input-placeholder,
:-ms-input-placeholder {
  opacity: 1 !important;
  color: inherit !important;
}

.typeahead__container :-moz-placeholder,
:-moz-placeholder {
  opacity: 1 !important;
  color: inherit !important;
}

.bg-white {
	background: #fff;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

/*.bg-yellow {
	background: #ffc300;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bg-green {
	background: #69af23;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bottone.bg-green:hover {
	background: #99e152;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bg-blu {
	background: #ffd842;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bottone.bg-blu:hover {
	background: #233365;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bg-orange {
	background: #f18f09;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bottone.bg-orange:hover {
	background: #da7b15;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bg-fucsia {
	background: #d5327b;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.bottone.bg-fucsia:hover {
	background: #ad2864;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}*/

.background-image {
	background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50%;
    background-attachment: scroll;
    background-size: cover;
}

.background-image.contain {
    background-size: contain;
}

.background-image.pos-top {
	background-position: 0 0;
}

.background-image.pos-top-r {
	background-position: 100% 0;
}

.background-image.right-position {
	background-position: 100% 50%;
}

.background-image.left-position {
	background-position: 50% 100%;
}

.bg-none {
	background-color: transparent !important;
}

/*h1,
.h1 {
	font-size: 22pt;
	line-height: 30pt;
}

h2,
.h2 {
	font-size: 18pt;
	line-height: 26pt;
}

h3,
.h3 {
	font-size: 16pt;
	line-height: 22pt;
}

h4,
.h4 {
	font-size: 14pt;
	line-height: 20pt;
}*/

.white {
	color: #363636;
}

/*.blu {
	color: #ffd842 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.blu:hover {
	color: #233365 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.orange {
	color: #f18f09 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.orange:hover {
	color: #da7b15 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.fucsia {
	color: #d5327b !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.fucsia:hover {
	color: #ad2864 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}*/

.black {
	color: #323232 !important;
}

/*.green {
	color: #69af23 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.green:hover {
	color: #99e152 !important;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}*/

.gray {
	color: #4c4d4f !important;
}

a,
p,
div,
span,
h1,
h2,
h3,
h4,
h5 {
	-webkit-hyphens: inherit !important;
	-moz-hyphens: inherit !important;
	hyphens: inherit !important;
	word-break: keep-all !important;
}

.bottone {
    color: #fff !important;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: normal;
    padding: 8px 50px;
    margin: 50px 0 0 0;
}

.overline {
	text-decoration: line-through;
}

.circle-box {
	width: 100px;
	height: 100px;
	padding: 15px;
	margin: 0 auto;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.circle-box.circle-absolute {
	position: absolute;
	z-index: 1;
	top: -48px;
	right: 0;
}

button {
	background: none;
	text-align: left;
	border: none;
	padding: 0;
	margin: 0;
	outline: none;
    font-size: 16px;
    line-height: 24px;
	font-family: inherit;
	cursor: pointer;
}

button.accordion {
	border-bottom: solid 2px #b2b3b6;
	padding: 10px 0 20px 0;
}

.accordion-content {
	display: none;
}

.content {
	margin-top: 40px;
}

.normal-size {
	font-size: initial;
}

.info-form {
	color: #4c4d4f;
	font-size: 14px;
	line-height: 20px;
}

form {
	margin-top: 10px;
}

.row-form {
	margin: 10px 0;
}

.row-form.error {
	margin: 10px 0;
}

.row-form > div:nth-child(1) {
	margin-right: 10px;
}

.row-form .label-screen {
	width: auto !important;
	display: none;
	padding: 15px 15px 0 15px;
}

.label-screen.error {
    border: solid 1px #af2b3d;
    color: #af2b3d;
    border-radius: 10px;
    font-size: 12px;
    background-color: #f4a7a8;
    margin-top: -15px;
    z-index: 1;
    display: block;
}

.row-form > div:nth-child(2) {
	margin-left: 10px;
}

/*.row-form > div:nth-child(2) .label-screen {
	width: calc(100% - 2px);
}*/

/* input[type=text],
input[type=email],
textarea {
	font-family: 'Mukta Mahee', sans-serif !important;
	background-color: #fff !important;
    border: 1px solid #000 !important;
    font-size: 15px !important;
    letter-spacing: .1em !important;
    line-height: 18px !important;
    width: 100% !important;
    height: 50px !important;
    color: #7db92f !important;
    -webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
   	appearance: none;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    outline: none !important;
    resize: none !important;
    z-index: 2;
    margin-bottom: 30px;
    text-transform: uppercase !important;
} */

input[name="url"] {
	display: none;
}

textarea {
	height: 300px !important;
    line-height: 18px !important;
    padding-top: 20px !important;
}

input[type=search] {
	font-family: 'Mukta Mahee', sans-serif;
	font-weight: 500;
	background-color: #fff !important;
    border: 1px solid #fff !important;
    font-size: 14px !important;
    line-height: 0 !important;
    width: 100% !important;
    height: 30px !important;
    color: #000000 !important;
    border-radius: 0 !important;
    padding: 20px 10px !important;
    box-sizing: border-box;
    outline: none !important;
    z-index: 2 !important;
}

input[type="checkbox"],
input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	width: 25px;
	height: 25px;
	margin: 0;
	border: 1px solid #000;
	color: #666;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 2px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

input[type="checkbox"]:checked,
input[type=radio]:checked {
	/*background-color: #7db92f;*/
	background-image: url('../images/verified-g.png');
	background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50%;
    background-attachment: scroll;
	background-size: contain;
}

.checkbox-div {
	width: 50px !important;
	padding-right: 10px !important;
}

@-moz-document url-prefix() {

	/*input[type="text"], 
	textarea,
	input[type=search] {
		height: 24px !important;
	}*/
	
}

.typeahead__list {
    top: 37px !important;
    border-top: none !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}

.typeahead__list>li {
	font-family: 'Mukta Mahee', sans-serif !important;
    position: relative !important;
    border-top: 0px solid #ccc !important;
    text-transform: uppercase !important;
}

 .typeahead__list>li strong {
	font-family: 'Mukta Mahee', sans-serif !important; 
 }

.typeahead__list > li > a, .typeahead__dropdown > li > a {
    padding: 3px 12px !important;
}

.typeahead__cancel-button {
    top: 5px !important;
}

.checkbox span {
	background-color: transparent;
	height: 12px;
    width: 12px;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.checkbox.active span {
	background-color: #6bb1e2;
	height: 12px;
    width: 12px;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.block-privacy a {
	color: #1f1f1f !important;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

#request-form .block-privacy a {
	color: #fff !important;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.block-privacy.error a {
	color: #af2b3d !important;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.block-privacy span {
    padding-left: 10px;
}

.checkbox-screen {
	background-color: #fcfcfc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1px solid #ccc;
    padding: 2px;
    color: #555;
    border-radius: 4px !important;
    cursor: pointer;
    margin-right: 10px !important;
}

.checkbox-screen.error {
	border: 1px solid #af2b3d;
    padding: 2px;
}

.checkbox-screen.active {
    border: 1px solid #e9e9e9;
    padding: 2px;
}

.checkbox-screen .check-interno {
	width: 100%;
	height: 100%;
	display: block;
	background-color: #fff;
	border-radius: 2px !important;
	color: #fff;
	display: inline-block;
  	font: normal normal normal 14px/1 FontAwesome;
  	font-size: 18px;
  	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.checkbox-screen.active .check-interno {
	background-color: #ffd842;
}

.checkbox-screen .check-interno:before {
  	content: "\f00c";
}

.label-info-form {
	font-size: 13px;
	line-height: 18px;
}

.row-check {
	margin-top: 30px;
}

/*input[type=checkbox],
input[type=radio] {
	visibility: hidden;
	display: none;
}*/

input[type=checkbox],
input[type=radio] {
	/*width: 30px;
    height: 30px;*/
    outline: none;
   /*margin: 0 -2px 0 0;*/
    padding: 0;
}

/*@-moz-document url-prefix() { 

	input[type=checkbox],
	input[type=radio] {
		margin: 0 10px 0 0;
	}

}*/

input[type=submit] {
	font-family: 'Mukta Mahee', sans-serif;
	font-weight: 900;
	background-color: #f7b500;
	text-align: center;
	color: #323232;
	font-size: 25px;
	line-height: 0;
	padding: 15px 30px;
	border: none;
	margin: 30px 0 0 0;
	height: 60px;
	cursor: pointer;
    outline: none;
    -webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
    -webkit-appearance: none;
	-o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

select {
    outline: none;
    height: 50px;
    border: none !important;
    border-radius: 0 !important;
    font-size: 14px;
    line-height: 14px;
    -webkit-appearance: none;
    padding: 18px 10px !important;
    box-sizing: border-box;
    margin-bottom: 10px;
    background-size: 10px 20px;
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
}

.no-margin-btm {
	margin-bottom: 0;
}

input[type=text].error,
input[type=email].error,
textarea.error,
input[type=radio].error,
input[type=checkbox].error {
	border: solid 1px #af2b3d !important;
	background-color: #af2b3d !important;
	color: #fff !important;
}

.error::-webkit-input-placeholder {
  opacity: 1;
  color: #fff !important;
}
.error::-moz-placeholder {
  opacity: 1;
  color: #fff !important;
}
.error:-ms-input-placeholder {
  opacity: 1;
  color: #fff !important;
}
.error:-moz-placeholder {
  opacity: 1;
  color: #fff !important;
}

.padding-label {
	padding: 15px 15px 0px 15px;
}

.box-success {
	background-color: #e8f8ff;
	padding: 20px;
}

.tablet,
.mobile,
.mobile-flex {
	display: none;
}

.error-info-form {
	font-size: 13px;
    line-height: 18px;
    padding-top: 10px;
    color: #af2b3d;
}

.through {
	text-decoration: line-through;
}

.m-auto {
	margin: 0 auto;
}

iframe,
embed,
object {
    max-width: 100%;
    width: 100%;
    height: auto;
}

@media (max-width: 1439px) {

	.xd-all {
		width: 100%;
	}
	
	.flex-xd {
		display: block !important;
	}

	iframe.maps {
		height: 320px;
		margin-bottom: 20px;
	}
	
}

@media (max-width: 1199px) {

	.d-all {
		width: 100%;
	}
	
	.flex-d {
		display: block !important;
	}
	
	.cl-dm-4 {
		width: 33.33%;
	}
	
	.cl-dm-6 {
		width: 50%;
	}
	
	.cl-dm-8 {
		width: 66.66%;
	}

	.flex-stretch-d {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
	}
	
}
	
@media (max-width: 1023px) {
	
	.btn-cookie {
		display: block;
		margin-top: 5px;
	}
	
	.btn-cookie a {
		margin-left: 0;
	}
	
	.cl-tm-6 {
		width: 50%;
	}
	
	.t-all {
		width: 100%;
	}
	
	.flex-t {
		display: block !important;
	}
	
	.circle-box.circle-absolute {
    	top: -32px;
	}
	
	.no-tablet {
		display: none;	
	}
	
	.desktop {
		display: none !important;
	}
	
	.tablet {
		display: block !important;
	}
	
	.menu.align-self-top-right {
		align-self: normal;
	}
	
	.flex-start-t {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		text-align: left;
	}
	
	.no-margin-tablet {
		margin: 0 !important;
	}
	
	.flex-center-t {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		text-align: center;
	}
	
	.flex-end-t {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}

	.flex-stretch-t {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
	}
	
}

@media (max-width: 767px) {
	
	.flex-end-m {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}

	.no-padding-mobile {
		padding: 0 !important;
	}
	
	.no-margin-btm-mobile {
		margin-bottom: 0 !important;
	}
	
	input[type=checkbox],
	input[type=radio] {
		margin: 0 10px 0 0;
	}
	
	.cl-mm-1 {
		width: 8.33%;
	}

	.cl-mm-2 {
		width: 16.66%;
	}

	.cl-mm-3 {
		width: 25%;
	}

	.cl-mm-4 {
		width: 33.33%;
	}

	.cl-mm-5 {
		width: 41.66%;
	}

	.cl-mm-6 {
		width: 50%;
	}

	.cl-mm-7 {
		width: 58.33%;
	}

	.cl-mm-8 {
		width: 66.66%;
	}

	.cl-mm-9 {
		width: 75%;
	}

	.cl-mm-10 {
		width: 83.33%;
	}

	.cl-mm-11 {
		width: 91.66%;
	}

	.cl-mm-12 {
		width: 100%;
	}
	
	.no-mobile {
		display: none !important;	
	}
	
	.mobile {
		display: block !important;
	}
	
	.mobile-flex {
		display: flex;
	}
	
	.m-all {
		width: 100%;
	}
	
	input[type=submit] {
		width: 100% !important;
	}
	
	.flex-m,
	.block-m {
		display: block !important;
	}
	
	.align-left-m {
		text-align: left;
	}
	
	.wrap-screen.section-mobile {
		padding: 0 20px;
	}
	
	/*h1,
	.h1 {
		font-size: 18pt;
		line-height: 24pt;
	}
	
	h2,
	.h2 {
		font-size: 14pt;
		line-height: 20pt;
	}
	
	.h2.promozione-testo {
    	font-size: 20pt;
    	line-height: 26pt;
	}*/
	
	.flex-center-m {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		text-align: center;
	}
	
	.flex-start-m {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		text-align: left;
	}

	.flex-stretch-m {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
	}
	
	.flex-start-m .ico {
		margin-bottom: 0;
		margin-right: 20px;
	}
	
	.circle-box.circle-absolute {
		position: relative;
		margin-top: 20px;
		top: auto;
		right: auto;
	}
	
	.row-form div:nth-child(1) {
		margin-right: 0;
	}

	.row-form div:nth-child(2),
	.row-form > div:nth-child(3) {
		margin-left: 0;
		margin-top: 20px;
	}
	
	.checkbox-screen {
    	width: 18px;
	}
	
	.checkbox-screen.active {
		width: 26px;
	}
	
	.row-form .label-screen {
		margin-top: -15px !important;
	}
	
}

@media (max-width: 413px) {

	
}

@media (max-width: 374px) {
	
	.flex-i5 {
		display: block !important;
	}
	
}