
/* Delete Status */
.dnd-icon-remove.deleting { font-size:12px; color:#000; font-weight: 500; position: relative; top:-3px; }
.dnd-icon-remove.deleting:after { display:none!important; }

.wpcf7-drag-n-drop-file.d-none {
	display:none;
	opacity:0;
	visibility:hidden;
	position:absolute;
	top:0;
}

/* Upload Status */
.dnd-upload-status {
	display:flex;
	padding:4px 0;
	align-items:center;
	position:relative;
}

/* Progress bar - Image */
.dnd-upload-status .dnd-upload-image {
	width:40px;
	height:40px;
	border:1px solid #a5a5a5;
	text-align:center;
	border-radius:100%;
	position:relative;
}
.dnd-upload-status .dnd-upload-image span.file {
    background-image: url("data:image/svg+xml,%0A%3Csvg width='18' height='23' viewBox='0 0 18 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.569 0.659576H0.5V23H18V6.09053L12.569 0.659576ZM12.7872 1.93075L16.7288 5.87234H12.7872V1.93075ZM1.24468 22.2553V1.40426H12.0426V6.61702H17.2553V22.2553H1.24468Z' fill='%235C5B5B'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 21px;
    width: 16px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform : translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

/* Progress bar - Image Details ( Name and Size ) */
.dnd-upload-status .dnd-upload-details {
	padding-left:10px;
	width: calc(100% - 40px);
}
.dnd-upload-status .dnd-upload-details .name {color:#016d98; padding:4px 0; padding-right:60px; display:flex; }
.dnd-upload-status .dnd-upload-details .name span { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; position: relative; padding-right:10px; }
.dnd-upload-status .dnd-upload-details .name em {color:#444242;	font-weight:700; }

/* Remove Upload File */
.dnd-upload-status .dnd-upload-details .remove-file {
	position:absolute;
	right:0;
	top:10px;
	text-decoration:none;
	box-shadow:none;
	outline:none;
    opacity:1;
}
.dnd-upload-status .dnd-upload-details .remove-file span:after {
    content: '';
    width:15px;
    height:15px;
    display: block;
    background-repeat:no-repeat;
    background-size:100%;
    background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5 0C7.83499 0 0 7.83499 0 17.5C0 27.165 7.83499 35 17.5 35C27.165 35 35 27.165 35 17.5C34.9888 7.83965 27.1604 0.0112198 17.5 0ZM17.5 33.871C8.45857 33.871 1.12903 26.5414 1.12903 17.5C1.12903 8.45857 8.45857 1.12903 17.5 1.12903C26.5414 1.12903 33.871 8.45857 33.871 17.5C33.861 26.5373 26.5373 33.861 17.5 33.871Z' fill='black'/%3E%3Cpath d='M25.4834 9.51661C25.2629 9.29624 24.9056 9.29624 24.6852 9.51661L17.5 16.7018L10.3148 9.51661C10.0983 9.29236 9.74087 9.28615 9.51661 9.50271C9.29236 9.71927 9.28615 10.0767 9.50271 10.3009C9.50723 10.3057 9.51188 10.3103 9.51661 10.3148L16.7018 17.5L9.51661 24.6852C9.29236 24.9018 9.28615 25.2591 9.50278 25.4834C9.71941 25.7076 10.0768 25.7139 10.301 25.4972C10.3057 25.4927 10.3103 25.488 10.3148 25.4834L17.5 18.2982L24.6852 25.4834C24.9094 25.7 25.2668 25.6938 25.4834 25.4696C25.6947 25.2508 25.6947 24.9039 25.4834 24.6852L18.2982 17.5L25.4834 10.3148C25.7038 10.0944 25.7038 9.73705 25.4834 9.51661Z' fill='black'/%3E%3C/svg%3E%0A");
}
.dnd-upload-status.in-progress .remove-file { opacity:0.2;}

.dnd-upload-status .dnd-upload-details span.has-error { color:#f50505; }

/* Progress Loading */
.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
	display: block;
    border-radius: 5px;
    overflow: hidden;
    background: #565555;
    height: 14px;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
    background: #4CAF50;
    display: block;
    font-size: 11px;
    text-align: right;
    color: #fff;
    height: 100%;
	width:0;
	line-height:14px;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar span.complete { width:100%!important; padding-right:5px; }
.dnd-upload-counter { position:absolute; right:5px; bottom:3px; font-size:12px; }

/* CodeDropz Upload Plugin */
.codedropz-upload-handler {
	border:2px dashed #c5c5c5;
	border-radius:5px;
	margin-bottom:10px;
	position:relative;
}
.codedropz-upload-container {
	padding:15px 20px;
}

.codedropz-upload-inner {
	overflow:hidden;
	width:100%;
	/*white-space: nowrap;*/
	text-align:center;
	text-overflow: ellipsis;
	font-weight:inherit;
}
.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
	text-decoration:none;
	box-shadow:none;
}
.codedropz-upload-inner h3 {
	margin:5px 0;
	font-size:30px;
	line-height:32px;
    word-break:break-word;
}

/* Add border on dragenter, drag etc */
.codedropz-dragover {
	border-color:#6b6a6a;
}

.codedropz-upload-wrapper span.has-error-msg {
	display:inline-block;
	color:#ff0000;
	padding:5px 0;
	font-style:italic;
}

/* Jquery Validation For Contact Form 7 */
.wpcf7-form label.error-new {
    color: #900;
    font-size: 11px;
    float: none;
    padding-left: 5px;
}
.wpcf7-form .codedropz-upload-wrapper.invalid .codedropz-upload-handler{
	border-bottom-color: #900;
    border-bottom-style: solid;
}
/* END : Jquery Validation CF7 */

/* Honeypot field */
.wpcf7_hp_field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media screen and (max-width: 767px) {
	.dnd-upload-status .dnd-upload-details .name em { font-weight:normal; }
	.dnd-upload-status .dnd-upload-details .name { padding-right:60px; }
	.codedropz-upload-inner h3 { font-size:22px; }
}
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
	word-break: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

.geot-flag{width:25px;height:15px;background:url(https://varaschin.it/wp-content/plugins/geotargetingwp/public/css/flags.png) no-repeat;margin-right:5px;margin-top:1px;float:left}.geot-flag.flag-ad{background-position:-25px 0}.geot-flag.flag-ae{background-position:-50px 0}.geot-flag.flag-af{background-position:-75px 0}.geot-flag.flag-ag{background-position:-100px 0}.geot-flag.flag-ai{background-position:-125px 0}.geot-flag.flag-al{background-position:-150px 0}.geot-flag.flag-am{background-position:-175px 0}.geot-flag.flag-an{background-position:-200px 0}.geot-flag.flag-ao{background-position:-225px 0}.geot-flag.flag-ar{background-position:-250px 0}.geot-flag.flag-as{background-position:-275px 0}.geot-flag.flag-at{background-position:-300px 0}.geot-flag.flag-au{background-position:-325px 0}.geot-flag.flag-aw{background-position:-350px 0}.geot-flag.flag-az{background-position:-375px 0}.geot-flag.flag-ba{background-position:0 -15px}.geot-flag.flag-bb{background-position:-25px -15px}.geot-flag.flag-bd{background-position:-50px -15px}.geot-flag.flag-be{background-position:-75px -15px}.geot-flag.flag-bf{background-position:-100px -15px}.geot-flag.flag-bg{background-position:-125px -15px}.geot-flag.flag-bh{background-position:-150px -15px}.geot-flag.flag-bi{background-position:-175px -15px}.geot-flag.flag-bj{background-position:-200px -15px}.geot-flag.flag-bm{background-position:-225px -15px}.geot-flag.flag-bn{background-position:-250px -15px}.geot-flag.flag-bo{background-position:-275px -15px}.geot-flag.flag-br{background-position:-300px -15px}.geot-flag.flag-bs{background-position:-325px -15px}.geot-flag.flag-bt{background-position:-350px -15px}.geot-flag.flag-bv{background-position:-375px -15px}.geot-flag.flag-bw{background-position:0 -30px}.geot-flag.flag-by{background-position:-25px -30px}.geot-flag.flag-bz{background-position:-50px -30px}.geot-flag.flag-ca{background-position:-75px -30px}.geot-flag.flag-cd{background-position:-100px -30px}.geot-flag.flag-cf{background-position:-125px -30px}.geot-flag.flag-cg{background-position:-150px -30px}.geot-flag.flag-ch{background-position:-175px -30px}.geot-flag.flag-ci{background-position:-200px -30px}.geot-flag.flag-ck{background-position:-225px -30px}.geot-flag.flag-cl{background-position:-250px -30px}.geot-flag.flag-cm{background-position:-275px -30px}.geot-flag.flag-cn{background-position:-300px -30px}.geot-flag.flag-co{background-position:-325px -30px}.geot-flag.flag-cr{background-position:-350px -30px}.geot-flag.flag-cu{background-position:-375px -30px}.geot-flag.flag-cv{background-position:0 -45px}.geot-flag.flag-cy{background-position:-25px -45px}.geot-flag.flag-cz{background-position:-50px -45px}.geot-flag.flag-de{background-position:-75px -45px}.geot-flag.flag-dj{background-position:-100px -45px}.geot-flag.flag-dk{background-position:-125px -45px}.geot-flag.flag-dm{background-position:-150px -45px}.geot-flag.flag-do{background-position:-175px -45px}.geot-flag.flag-dz{background-position:-200px -45px}.geot-flag.flag-ec{background-position:-225px -45px}.geot-flag.flag-ee{background-position:-250px -45px}.geot-flag.flag-eg{background-position:-275px -45px}.geot-flag.flag-eh{background-position:-300px -45px}.geot-flag.flag-er{background-position:-325px -45px}.geot-flag.flag-es{background-position:-350px -45px}.geot-flag.flag-et{background-position:-375px -45px}.geot-flag.flag-eu{background-position:0 -60px}.geot-flag.flag-fi{background-position:-25px -60px}.geot-flag.flag-fj{background-position:-50px -60px}.geot-flag.flag-fk{background-position:-75px -60px}.geot-flag.flag-fm{background-position:-100px -60px}.geot-flag.flag-fo{background-position:-125px -60px}.geot-flag.flag-fr{background-position:-150px -60px}.geot-flag.flag-ga{background-position:-175px -60px}.geot-flag.flag-gb{background-position:-200px -60px}.geot-flag.flag-gd{background-position:-225px -60px}.geot-flag.flag-ge{background-position:-250px -60px}.geot-flag.flag-gf{background-position:-275px -60px}.geot-flag.flag-gg{background-position:-300px -60px}.geot-flag.flag-gh{background-position:-325px -60px}.geot-flag.flag-gi{background-position:-350px -60px}.geot-flag.flag-gl{background-position:-375px -60px}.geot-flag.flag-gm{background-position:0 -75px}.geot-flag.flag-gn{background-position:-25px -75px}.geot-flag.flag-gp{background-position:-50px -75px}.geot-flag.flag-gq{background-position:-75px -75px}.geot-flag.flag-gr{background-position:-100px -75px}.geot-flag.flag-gs{background-position:-125px -75px}.geot-flag.flag-gt{background-position:-150px -75px}.geot-flag.flag-gu{background-position:-175px -75px}.geot-flag.flag-gw{background-position:-200px -75px}.geot-flag.flag-gy{background-position:-225px -75px}.geot-flag.flag-hk{background-position:-250px -75px}.geot-flag.flag-hm{background-position:-275px -75px}.geot-flag.flag-hn{background-position:-300px -75px}.geot-flag.flag-hr{background-position:-325px -75px}.geot-flag.flag-ht{background-position:-350px -75px}.geot-flag.flag-hu{background-position:-375px -75px}.geot-flag.flag-id{background-position:0 -90px}.geot-flag.flag-ie{background-position:-25px -90px}.geot-flag.flag-il{background-position:-50px -90px}.geot-flag.flag-in{background-position:-75px -90px}.geot-flag.flag-io{background-position:-100px -90px}.geot-flag.flag-iq{background-position:-125px -90px}.geot-flag.flag-ir{background-position:-150px -90px}.geot-flag.flag-is{background-position:-175px -90px}.geot-flag.flag-it{background-position:-200px -90px}.geot-flag.flag-je{background-position:-225px -90px}.geot-flag.flag-jm{background-position:-250px -90px}.geot-flag.flag-jo{background-position:-275px -90px}.geot-flag.flag-jp{background-position:-300px -90px}.geot-flag.flag-ke{background-position:-325px -90px}.geot-flag.flag-kg{background-position:-350px -90px}.geot-flag.flag-kh{background-position:-375px -90px}.geot-flag.flag-ki{background-position:0 -105px}.geot-flag.flag-km{background-position:-25px -105px}.geot-flag.flag-kn{background-position:-50px -105px}.geot-flag.flag-kp{background-position:-75px -105px}.geot-flag.flag-kr{background-position:-100px -105px}.geot-flag.flag-kw{background-position:-125px -105px}.geot-flag.flag-ky{background-position:-150px -105px}.geot-flag.flag-kz{background-position:-175px -105px}.geot-flag.flag-la{background-position:-200px -105px}.geot-flag.flag-lb{background-position:-225px -105px}.geot-flag.flag-lc{background-position:-250px -105px}.geot-flag.flag-li{background-position:-275px -105px}.geot-flag.flag-lk{background-position:-300px -105px}.geot-flag.flag-lr{background-position:-325px -105px}.geot-flag.flag-ls{background-position:-350px -105px}.geot-flag.flag-lt{background-position:-375px -105px}.geot-flag.flag-lu{background-position:0 -120px}.geot-flag.flag-lv{background-position:-25px -120px}.geot-flag.flag-ly{background-position:-50px -120px}.geot-flag.flag-ma{background-position:-75px -120px}.geot-flag.flag-mc{background-position:-100px -120px}.geot-flag.flag-md{background-position:-125px -120px}.geot-flag.flag-me{background-position:-150px -120px}.geot-flag.flag-mg{background-position:-175px -120px}.geot-flag.flag-mh{background-position:-200px -120px}.geot-flag.flag-mk{background-position:-225px -120px}.geot-flag.flag-ml{background-position:-250px -120px}.geot-flag.flag-mm{background-position:-275px -120px}.geot-flag.flag-mn{background-position:-300px -120px}.geot-flag.flag-mo{background-position:-325px -120px}.geot-flag.flag-mp{background-position:-350px -120px}.geot-flag.flag-mq{background-position:-375px -120px}.geot-flag.flag-mr{background-position:0 -135px}.geot-flag.flag-ms{background-position:-25px -135px}.geot-flag.flag-mt{background-position:-50px -135px}.geot-flag.flag-mu{background-position:-75px -135px}.geot-flag.flag-mv{background-position:-100px -135px}.geot-flag.flag-mw{background-position:-125px -135px}.geot-flag.flag-mx{background-position:-150px -135px}.geot-flag.flag-my{background-position:-175px -135px}.geot-flag.flag-mz{background-position:-200px -135px}.geot-flag.flag-na{background-position:-225px -135px}.geot-flag.flag-nc{background-position:-250px -135px}.geot-flag.flag-ne{background-position:-275px -135px}.geot-flag.flag-nf{background-position:-300px -135px}.geot-flag.flag-ng{background-position:-325px -135px}.geot-flag.flag-ni{background-position:-350px -135px}.geot-flag.flag-nl{background-position:-375px -135px}.geot-flag.flag-no{background-position:0 -150px}.geot-flag.flag-np{background-position:-25px -150px}.geot-flag.flag-nr{background-position:-50px -150px}.geot-flag.flag-nu{background-position:-75px -150px}.geot-flag.flag-nz{background-position:-100px -150px}.geot-flag.flag-om{background-position:-125px -150px}.geot-flag.flag-pa{background-position:-150px -150px}.geot-flag.flag-pe{background-position:-175px -150px}.geot-flag.flag-pf{background-position:-200px -150px}.geot-flag.flag-pg{background-position:-225px -150px}.geot-flag.flag-ph{background-position:-250px -150px}.geot-flag.flag-pk{background-position:-275px -150px}.geot-flag.flag-pl{background-position:-300px -150px}.geot-flag.flag-pm{background-position:-325px -150px}.geot-flag.flag-pn{background-position:-350px -150px}.geot-flag.flag-pr{background-position:-375px -150px}.geot-flag.flag-ps{background-position:0 -165px}.geot-flag.flag-pt{background-position:-25px -165px}.geot-flag.flag-pw{background-position:-50px -165px}.geot-flag.flag-py{background-position:-75px -165px}.geot-flag.flag-qa{background-position:-100px -165px}.geot-flag.flag-re{background-position:-125px -165px}.geot-flag.flag-ro{background-position:-150px -165px}.geot-flag.flag-rs{background-position:-175px -165px}.geot-flag.flag-ru{background-position:-200px -165px}.geot-flag.flag-rw{background-position:-225px -165px}.geot-flag.flag-sa{background-position:-250px -165px}.geot-flag.flag-sb{background-position:-275px -165px}.geot-flag.flag-sc{background-position:-300px -165px}.geot-flag.flag-sd{background-position:-325px -165px}.geot-flag.flag-se{background-position:-350px -165px}.geot-flag.flag-sg{background-position:-375px -165px}.geot-flag.flag-sh{background-position:0 -180px}.geot-flag.flag-si{background-position:-25px -180px}.geot-flag.flag-sk{background-position:-50px -180px}.geot-flag.flag-sl{background-position:-75px -180px}.geot-flag.flag-sm{background-position:-100px -180px}.geot-flag.flag-sn{background-position:-125px -180px}.geot-flag.flag-so{background-position:-150px -180px}.geot-flag.flag-sr{background-position:-175px -180px}.geot-flag.flag-st{background-position:-200px -180px}.geot-flag.flag-sv{background-position:-225px -180px}.geot-flag.flag-sy{background-position:-250px -180px}.geot-flag.flag-sz{background-position:-275px -180px}.geot-flag.flag-tc{background-position:-300px -180px}.geot-flag.flag-td{background-position:-325px -180px}.geot-flag.flag-tf{background-position:-350px -180px}.geot-flag.flag-tg{background-position:-375px -180px}.geot-flag.flag-th{background-position:0 -195px}.geot-flag.flag-tj{background-position:-25px -195px}.geot-flag.flag-tk{background-position:-50px -195px}.geot-flag.flag-tl{background-position:-75px -195px}.geot-flag.flag-tm{background-position:-100px -195px}.geot-flag.flag-tn{background-position:-125px -195px}.geot-flag.flag-to{background-position:-150px -195px}.geot-flag.flag-tr{background-position:-175px -195px}.geot-flag.flag-tt{background-position:-200px -195px}.geot-flag.flag-tv{background-position:-225px -195px}.geot-flag.flag-tw{background-position:-250px -195px}.geot-flag.flag-tz{background-position:-275px -195px}.geot-flag.flag-ua{background-position:-300px -195px}.geot-flag.flag-ug{background-position:-325px -195px}.geot-flag.flag-um{background-position:-350px -195px}.geot-flag.flag-us{background-position:-375px -195px}.geot-flag.flag-uy{background-position:0 -210px}.geot-flag.flag-uz{background-position:-25px -210px}.geot-flag.flag-va{background-position:-50px -210px}.geot-flag.flag-vc{background-position:-75px -210px}.geot-flag.flag-ve{background-position:-100px -210px}.geot-flag.flag-vg{background-position:-125px -210px}.geot-flag.flag-vi{background-position:-150px -210px}.geot-flag.flag-vn{background-position:-175px -210px}.geot-flag.flag-vu{background-position:-200px -210px}.geot-flag.flag-wf{background-position:-225px -210px}.geot-flag.flag-ws{background-position:-250px -210px}.geot-flag.flag-ye{background-position:-275px -210px}.geot-flag.flag-yt{background-position:-300px -210px}.geot-flag.flag-za{background-position:-325px -210px}.geot-flag.flag-zm{background-position:-350px -210px}.geot-flag.flag-zw{background-position:-375px -210px}.geot_dropdown_container{position:relative}.geot_dropdown_container .geotdd-select{position:relative;cursor:pointer;padding:10px;padding-right:30px}.geot_dropdown_container .geotdd-desc{display:block;overflow:hidden}.geot_dropdown_container .geotdd-selected{overflow:hidden;display:block;font-weight:700;width:100%}.geot_dropdown_container .geotdd-pointer{width:0;height:0;position:absolute;right:10px;top:50%;margin-top:-3px}.geot_dropdown_container .geotdd-pointer-down{border:solid 5px transparent;border-top:solid 5px #000}.geot_dropdown_container .geotdd-pointer-up{border:solid 5px transparent!important;border-bottom:solid 5px #000!important;margin-top:-8px}.geot_dropdown_container .geotdd-options{border:solid 1px #ccc;border-top:none;list-style:none;box-shadow:0 1px 5px #ddd;display:none;position:absolute;z-index:2000;margin:0;padding:0;background:#fff;overflow:auto;right:0}.geot_dropdown_container .geotdd-option{display:block;overflow:hidden;text-decoration:none;color:#333;cursor:pointer;-webkit-transition:all .25s ease-in-out;-moz-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;-ms-transition:all .25s ease-in-out}.geot_dropdown_container .geotdd-options li{float:left!important;border:none!important;border-bottom:solid 1px #ddd;width:25%;display:inline-block;padding:0!important;margin:0!important}.geot_dropdown_container .geotdd-options li a{font-size:13px;line-height:14px;padding:6px!important;margin:0!important;min-height:42px}.geot_dropdown_container ul.geotdd-options li a:hover{background:0 0}.geot_dropdown_container ul.geotdd-options li:hover a{background:#dedede}.geot_dropdown_container .geotdd-options>li:last-child>.geotdd-option{border-bottom:none}.geot_dropdown_container .geotdd-option:hover{background:#f3f3f3;color:#000}.geot_dropdown_container .geotdd-selected-description-truncated{text-overflow:ellipsis;white-space:nowrap}.geot_dropdown_container .geotdd-option-image,.geotdd-selected-image{vertical-align:middle;float:left;margin-right:5px;max-width:64px}.geot_dropdown_container .geotdd-image-right{float:right;margin-right:15px;margin-left:5px}.geot_dropdown_container .geotdd-option span.geot-flag{margin-top:0}.geot-ajax.geot-filter,.geot-ajax.geot_menu_item{display:none}.geot-ajax.geot-filter .show-by-default,.geot-ajax.geot-filter.show-by-default,.geot-ajax.geot_menu_item .show-by-default,.geot-ajax.geot_menu_item.show-by-default,.show-by-default .geot-ajax.geot-filter,.show-by-default .geot-ajax.geot_menu_item{display:block}.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible!important;background:#f2f2f2!important;background:rgba(0,0,0,.06)!important;border:0 none!important;-webkit-box-shadow:inset 0 0 12px 4px #fff;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:'!';visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{-webkit-box-shadow:0 2px 5px rgba(0,0,0,.2);box-shadow:0 2px 5px rgba(0,0,0,.2)}.selectize-dropdown-header{position:relative;padding:5px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.selectize-dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px!important}.selectize-dropdown-header-close:hover{color:#000}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button [data-value]{position:relative;padding-right:24px!important}.selectize-control.plugin-remove_button [data-value] .remove{z-index:1;position:absolute;top:0;right:0;bottom:0;width:17px;text-align:center;font-weight:700;font-size:12px;color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 0 0 0;border-left:1px solid #0073bb;-webkit-border-radius:0 2px 2px 0;-moz-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.selectize-control.plugin-remove_button [data-value] .remove:hover{background:rgba(0,0,0,.05)}.selectize-control.plugin-remove_button [data-value].active .remove{border-left-color:#00578d}.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover{background:0 0}.selectize-control.plugin-remove_button .disabled [data-value] .remove{border-left-color:#aaa}.selectize-control.plugin-remove_button .remove-single{position:absolute;right:28px;top:6px;font-size:23px}.selectize-control{position:relative}.selectize-dropdown,.selectize-input,.selectize-input input{color:#303030;font-family:inherit;font-size:13px;line-height:18px;-webkit-font-smoothing:inherit}.selectize-control.single .selectize-input.input-active,.selectize-input{background:#fff;cursor:text;display:inline-block}.selectize-input{border:1px solid #d0d0d0;padding:8px 8px;display:inline-block;width:100%;overflow:hidden;position:relative;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.1);box-shadow:inset 0 1px 1px rgba(0,0,0,.1);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.selectize-control.multi .selectize-input.has-items{padding:5px 8px 2px}.selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default!important}.selectize-input.focus{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}.selectize-input.dropdown-active{-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.selectize-input>*{vertical-align:baseline;display:-moz-inline-stack;display:inline-block;zoom:1}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:2px 6px;background:#1da7ee;color:#fff;border:1px solid #0073bb}.selectize-control.multi .selectize-input>div.active{background:#92c836;color:#fff;border:1px solid #00578d}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:#fff;background:#d2d2d2;border:1px solid #aaa}.selectize-input>input{display:inline-block!important;padding:0!important;min-height:0!important;max-height:none!important;max-width:100%!important;margin:0 1px!important;text-indent:0!important;border:0 none!important;background:0 0!important;line-height:inherit!important;-webkit-user-select:auto!important;-webkit-box-shadow:none!important;box-shadow:none!important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:0!important}.selectize-input::after{content:' ';display:block;clear:left}.selectize-input.dropdown-active::before{content:' ';display:block;position:absolute;background:#f0f0f0;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;z-index:10;border:1px solid #d0d0d0;background:#fff;margin:-1px 0 0 0;border-top:0 none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1);-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:rgba(125,168,208,.2);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.selectize-dropdown .optgroup-header,.selectize-dropdown [data-selectable]{padding:5px 8px}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#303030;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#f5fafd;color:#495c68}.selectize-dropdown .active.create{color:#495c68}.selectize-dropdown .create{color:rgba(48,48,48,.5)}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input{cursor:text}.selectize-control.single .selectize-input:after{content:' ';display:block;position:absolute;top:50%;right:15px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:grey transparent transparent transparent}.selectize-control.single .selectize-input.dropdown-active:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent grey transparent}.selectize-control.rtl.single .selectize-input:after{left:15px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px!important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fafafa}.selectize-control.multi .selectize-input.has-items{padding-left:5px;padding-right:5px}.selectize-control.multi .selectize-input.disabled [data-value]{color:#999;text-shadow:none;background:0 0;-webkit-box-shadow:none;box-shadow:none}.selectize-control.multi .selectize-input.disabled [data-value],.selectize-control.multi .selectize-input.disabled [data-value] .remove{border-color:#e6e6e6}.selectize-control.multi .selectize-input.disabled [data-value] .remove{background:0 0}.selectize-control.multi .selectize-input [data-value]{text-shadow:0 1px 0 rgba(0,51,83,.3);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:#1b9dec;background-image:-moz-linear-gradient(top,#1da7ee,#178ee9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#1da7ee),to(#178ee9));background-image:-webkit-linear-gradient(top,#1da7ee,#178ee9);background-image:-o-linear-gradient(top,#1da7ee,#178ee9);background-image:linear-gradient(to bottom,#1da7ee,#178ee9);background-repeat:repeat-x;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 1px rgba(255,255,255,.03);box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 1px rgba(255,255,255,.03)}.selectize-control.multi .selectize-input [data-value].active{background-color:#0085d4;background-image:-moz-linear-gradient(top,#008fd8,#0075cf);background-image:-webkit-gradient(linear,0 0,0 100%,from(#008fd8),to(#0075cf));background-image:-webkit-linear-gradient(top,#008fd8,#0075cf);background-image:-o-linear-gradient(top,#008fd8,#0075cf);background-image:linear-gradient(to bottom,#008fd8,#0075cf);background-repeat:repeat-x}.selectize-control.single .selectize-input{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.05),inset 0 1px 0 rgba(255,255,255,.8);box-shadow:0 1px 0 rgba(0,0,0,.05),inset 0 1px 0 rgba(255,255,255,.8);background-color:#f9f9f9;background-image:-moz-linear-gradient(top,#fefefe,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fefefe),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fefefe,#f2f2f2);background-image:-o-linear-gradient(top,#fefefe,#f2f2f2);background-image:linear-gradient(to bottom,#fefefe,#f2f2f2);background-repeat:repeat-x}.selectize-control.single .selectize-input,.selectize-dropdown.single{border-color:#b8b8b8}.selectize-dropdown .optgroup-header{padding-top:7px;font-weight:700;font-size:.85em}.selectize-dropdown .optgroup{border-top:1px solid #f0f0f0}.selectize-dropdown .optgroup:first-child{border-top:0 none}.geotloc_overlay_box{background-color:rgba(0,0,0,.72);position:fixed;width:100%;height:100%;top:0;left:0;z-index:99999;color:#000;display:flex;justify-content:center;align-items:center}.geotloc_overlay_content img{margin:0 auto}.geotloc_overlay_box .geotloc_overlay_container{display:flex;align-content:center;justify-content:center;background-color:#e1e1e1;max-width:400px;position:relative;padding:30px;margin:10px}.geotloc_overlay_box .geotloc_overlay_text{align-items:center;display:flex;padding-right:10px;flex-wrap:wrap}.geotloc_overlay_box .geotloc_overlay_text p{font-size:2rem;margin:0;font-weight:700;line-height:1.2;text-align:left}.geotloc_overlay_box .geotloc_overlay_text p.geotloc_overlay_help{font-size:1rem}.geotloc_overlay_box .geotloc_overlay_img{align-items:center;display:flex;min-width:30%}.geotloc_overlay_box .geotloc_overlay_remove:after,.geotloc_overlay_box .geotloc_overlay_remove:before{position:absolute;left:15px;content:' ';height:20px;width:2px;background-color:#000}.geotloc_overlay_box .geotloc_overlay_remove{position:absolute;right:10px;top:10px;width:20px;height:20px;opacity:.3;cursor:pointer}.geotloc_overlay_box .geotloc_overlay_remove:before{transform:rotate(45deg)}.geotloc_overlay_box .geotloc_overlay_remove:after{transform:rotate(-45deg)}.geotloc_overlay_box .geotloc_overlay_remove:hover{opacity:1}.vc_editor.compose-mode .vc_vc_geotwp_city:hover:before,.vc_editor.compose-mode .vc_vc_geotwp_country:hover:before,.vc_editor.compose-mode .vc_vc_geotwp_radius:hover:before,.vc_editor.compose-mode .vc_vc_geotwp_state:hover:before,.vc_editor.compose-mode .vc_vc_geotwp_zip:hover:before{content:'';margin:0;padding:0;position:absolute;z-index:0;top:0;left:0;width:100%;height:100%;outline:1px dashed #ebebeb;outline:1px dashed rgba(125,125,125,.4)}
/*! This file is auto-generated */
@font-face{font-family:dashicons;src:url("https://varaschin.it/wp-includes/css/../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800");src:url("https://varaschin.it/wp-includes/css/../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix") format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),url("https://varaschin.it/wp-includes/css/../fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800") format("truetype");font-weight:400;font-style:normal}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in}.dashicons-admin-appearance:before{content:"\f100"}.dashicons-admin-collapse:before{content:"\f148"}.dashicons-admin-comments:before{content:"\f101"}.dashicons-admin-customizer:before{content:"\f540"}.dashicons-admin-generic:before{content:"\f111"}.dashicons-admin-home:before{content:"\f102"}.dashicons-admin-links:before{content:"\f103"}.dashicons-admin-media:before{content:"\f104"}.dashicons-admin-multisite:before{content:"\f541"}.dashicons-admin-network:before{content:"\f112"}.dashicons-admin-page:before{content:"\f105"}.dashicons-admin-plugins:before{content:"\f106"}.dashicons-admin-post:before{content:"\f109"}.dashicons-admin-settings:before{content:"\f108"}.dashicons-admin-site-alt:before{content:"\f11d"}.dashicons-admin-site-alt2:before{content:"\f11e"}.dashicons-admin-site-alt3:before{content:"\f11f"}.dashicons-admin-site:before{content:"\f319"}.dashicons-admin-tools:before{content:"\f107"}.dashicons-admin-users:before{content:"\f110"}.dashicons-airplane:before{content:"\f15f"}.dashicons-album:before{content:"\f514"}.dashicons-align-center:before{content:"\f134"}.dashicons-align-full-width:before{content:"\f114"}.dashicons-align-left:before{content:"\f135"}.dashicons-align-none:before{content:"\f138"}.dashicons-align-pull-left:before{content:"\f10a"}.dashicons-align-pull-right:before{content:"\f10b"}.dashicons-align-right:before{content:"\f136"}.dashicons-align-wide:before{content:"\f11b"}.dashicons-amazon:before{content:"\f162"}.dashicons-analytics:before{content:"\f183"}.dashicons-archive:before{content:"\f480"}.dashicons-arrow-down-alt:before{content:"\f346"}.dashicons-arrow-down-alt2:before{content:"\f347"}.dashicons-arrow-down:before{content:"\f140"}.dashicons-arrow-left-alt:before{content:"\f340"}.dashicons-arrow-left-alt2:before{content:"\f341"}.dashicons-arrow-left:before{content:"\f141"}.dashicons-arrow-right-alt:before{content:"\f344"}.dashicons-arrow-right-alt2:before{content:"\f345"}.dashicons-arrow-right:before{content:"\f139"}.dashicons-arrow-up-alt:before{content:"\f342"}.dashicons-arrow-up-alt2:before{content:"\f343"}.dashicons-arrow-up-duplicate:before{content:"\f143"}.dashicons-arrow-up:before{content:"\f142"}.dashicons-art:before{content:"\f309"}.dashicons-awards:before{content:"\f313"}.dashicons-backup:before{content:"\f321"}.dashicons-bank:before{content:"\f16a"}.dashicons-beer:before{content:"\f16c"}.dashicons-bell:before{content:"\f16d"}.dashicons-block-default:before{content:"\f12b"}.dashicons-book-alt:before{content:"\f331"}.dashicons-book:before{content:"\f330"}.dashicons-buddicons-activity:before{content:"\f452"}.dashicons-buddicons-bbpress-logo:before{content:"\f477"}.dashicons-buddicons-buddypress-logo:before{content:"\f448"}.dashicons-buddicons-community:before{content:"\f453"}.dashicons-buddicons-forums:before{content:"\f449"}.dashicons-buddicons-friends:before{content:"\f454"}.dashicons-buddicons-groups:before{content:"\f456"}.dashicons-buddicons-pm:before{content:"\f457"}.dashicons-buddicons-replies:before{content:"\f451"}.dashicons-buddicons-topics:before{content:"\f450"}.dashicons-buddicons-tracking:before{content:"\f455"}.dashicons-building:before{content:"\f512"}.dashicons-businessman:before{content:"\f338"}.dashicons-businessperson:before{content:"\f12e"}.dashicons-businesswoman:before{content:"\f12f"}.dashicons-button:before{content:"\f11a"}.dashicons-calculator:before{content:"\f16e"}.dashicons-calendar-alt:before{content:"\f508"}.dashicons-calendar:before{content:"\f145"}.dashicons-camera-alt:before{content:"\f129"}.dashicons-camera:before{content:"\f306"}.dashicons-car:before{content:"\f16b"}.dashicons-carrot:before{content:"\f511"}.dashicons-cart:before{content:"\f174"}.dashicons-category:before{content:"\f318"}.dashicons-chart-area:before{content:"\f239"}.dashicons-chart-bar:before{content:"\f185"}.dashicons-chart-line:before{content:"\f238"}.dashicons-chart-pie:before{content:"\f184"}.dashicons-clipboard:before{content:"\f481"}.dashicons-clock:before{content:"\f469"}.dashicons-cloud-saved:before{content:"\f137"}.dashicons-cloud-upload:before{content:"\f13b"}.dashicons-cloud:before{content:"\f176"}.dashicons-code-standards:before{content:"\f13a"}.dashicons-coffee:before{content:"\f16f"}.dashicons-color-picker:before{content:"\f131"}.dashicons-columns:before{content:"\f13c"}.dashicons-controls-back:before{content:"\f518"}.dashicons-controls-forward:before{content:"\f519"}.dashicons-controls-pause:before{content:"\f523"}.dashicons-controls-play:before{content:"\f522"}.dashicons-controls-repeat:before{content:"\f515"}.dashicons-controls-skipback:before{content:"\f516"}.dashicons-controls-skipforward:before{content:"\f517"}.dashicons-controls-volumeoff:before{content:"\f520"}.dashicons-controls-volumeon:before{content:"\f521"}.dashicons-cover-image:before{content:"\f13d"}.dashicons-dashboard:before{content:"\f226"}.dashicons-database-add:before{content:"\f170"}.dashicons-database-export:before{content:"\f17a"}.dashicons-database-import:before{content:"\f17b"}.dashicons-database-remove:before{content:"\f17c"}.dashicons-database-view:before{content:"\f17d"}.dashicons-database:before{content:"\f17e"}.dashicons-desktop:before{content:"\f472"}.dashicons-dismiss:before{content:"\f153"}.dashicons-download:before{content:"\f316"}.dashicons-drumstick:before{content:"\f17f"}.dashicons-edit-large:before{content:"\f327"}.dashicons-edit-page:before{content:"\f186"}.dashicons-edit:before{content:"\f464"}.dashicons-editor-aligncenter:before{content:"\f207"}.dashicons-editor-alignleft:before{content:"\f206"}.dashicons-editor-alignright:before{content:"\f208"}.dashicons-editor-bold:before{content:"\f200"}.dashicons-editor-break:before{content:"\f474"}.dashicons-editor-code-duplicate:before{content:"\f494"}.dashicons-editor-code:before{content:"\f475"}.dashicons-editor-contract:before{content:"\f506"}.dashicons-editor-customchar:before{content:"\f220"}.dashicons-editor-expand:before{content:"\f211"}.dashicons-editor-help:before{content:"\f223"}.dashicons-editor-indent:before{content:"\f222"}.dashicons-editor-insertmore:before{content:"\f209"}.dashicons-editor-italic:before{content:"\f201"}.dashicons-editor-justify:before{content:"\f214"}.dashicons-editor-kitchensink:before{content:"\f212"}.dashicons-editor-ltr:before{content:"\f10c"}.dashicons-editor-ol-rtl:before{content:"\f12c"}.dashicons-editor-ol:before{content:"\f204"}.dashicons-editor-outdent:before{content:"\f221"}.dashicons-editor-paragraph:before{content:"\f476"}.dashicons-editor-paste-text:before{content:"\f217"}.dashicons-editor-paste-word:before{content:"\f216"}.dashicons-editor-quote:before{content:"\f205"}.dashicons-editor-removeformatting:before{content:"\f218"}.dashicons-editor-rtl:before{content:"\f320"}.dashicons-editor-spellcheck:before{content:"\f210"}.dashicons-editor-strikethrough:before{content:"\f224"}.dashicons-editor-table:before{content:"\f535"}.dashicons-editor-textcolor:before{content:"\f215"}.dashicons-editor-ul:before{content:"\f203"}.dashicons-editor-underline:before{content:"\f213"}.dashicons-editor-unlink:before{content:"\f225"}.dashicons-editor-video:before{content:"\f219"}.dashicons-ellipsis:before{content:"\f11c"}.dashicons-email-alt:before{content:"\f466"}.dashicons-email-alt2:before{content:"\f467"}.dashicons-email:before{content:"\f465"}.dashicons-embed-audio:before{content:"\f13e"}.dashicons-embed-generic:before{content:"\f13f"}.dashicons-embed-photo:before{content:"\f144"}.dashicons-embed-post:before{content:"\f146"}.dashicons-embed-video:before{content:"\f149"}.dashicons-excerpt-view:before{content:"\f164"}.dashicons-exit:before{content:"\f14a"}.dashicons-external:before{content:"\f504"}.dashicons-facebook-alt:before{content:"\f305"}.dashicons-facebook:before{content:"\f304"}.dashicons-feedback:before{content:"\f175"}.dashicons-filter:before{content:"\f536"}.dashicons-flag:before{content:"\f227"}.dashicons-food:before{content:"\f187"}.dashicons-format-aside:before{content:"\f123"}.dashicons-format-audio:before{content:"\f127"}.dashicons-format-chat:before{content:"\f125"}.dashicons-format-gallery:before{content:"\f161"}.dashicons-format-image:before{content:"\f128"}.dashicons-format-quote:before{content:"\f122"}.dashicons-format-status:before{content:"\f130"}.dashicons-format-video:before{content:"\f126"}.dashicons-forms:before{content:"\f314"}.dashicons-fullscreen-alt:before{content:"\f188"}.dashicons-fullscreen-exit-alt:before{content:"\f189"}.dashicons-games:before{content:"\f18a"}.dashicons-google:before{content:"\f18b"}.dashicons-googleplus:before{content:"\f462"}.dashicons-grid-view:before{content:"\f509"}.dashicons-groups:before{content:"\f307"}.dashicons-hammer:before{content:"\f308"}.dashicons-heading:before{content:"\f10e"}.dashicons-heart:before{content:"\f487"}.dashicons-hidden:before{content:"\f530"}.dashicons-hourglass:before{content:"\f18c"}.dashicons-html:before{content:"\f14b"}.dashicons-id-alt:before{content:"\f337"}.dashicons-id:before{content:"\f336"}.dashicons-image-crop:before{content:"\f165"}.dashicons-image-filter:before{content:"\f533"}.dashicons-image-flip-horizontal:before{content:"\f169"}.dashicons-image-flip-vertical:before{content:"\f168"}.dashicons-image-rotate-left:before{content:"\f166"}.dashicons-image-rotate-right:before{content:"\f167"}.dashicons-image-rotate:before{content:"\f531"}.dashicons-images-alt:before{content:"\f232"}.dashicons-images-alt2:before{content:"\f233"}.dashicons-index-card:before{content:"\f510"}.dashicons-info-outline:before{content:"\f14c"}.dashicons-info:before{content:"\f348"}.dashicons-insert-after:before{content:"\f14d"}.dashicons-insert-before:before{content:"\f14e"}.dashicons-insert:before{content:"\f10f"}.dashicons-instagram:before{content:"\f12d"}.dashicons-laptop:before{content:"\f547"}.dashicons-layout:before{content:"\f538"}.dashicons-leftright:before{content:"\f229"}.dashicons-lightbulb:before{content:"\f339"}.dashicons-linkedin:before{content:"\f18d"}.dashicons-list-view:before{content:"\f163"}.dashicons-location-alt:before{content:"\f231"}.dashicons-location:before{content:"\f230"}.dashicons-lock-duplicate:before{content:"\f315"}.dashicons-lock:before{content:"\f160"}.dashicons-marker:before{content:"\f159"}.dashicons-media-archive:before{content:"\f501"}.dashicons-media-audio:before{content:"\f500"}.dashicons-media-code:before{content:"\f499"}.dashicons-media-default:before{content:"\f498"}.dashicons-media-document:before{content:"\f497"}.dashicons-media-interactive:before{content:"\f496"}.dashicons-media-spreadsheet:before{content:"\f495"}.dashicons-media-text:before{content:"\f491"}.dashicons-media-video:before{content:"\f490"}.dashicons-megaphone:before{content:"\f488"}.dashicons-menu-alt:before{content:"\f228"}.dashicons-menu-alt2:before{content:"\f329"}.dashicons-menu-alt3:before{content:"\f349"}.dashicons-menu:before{content:"\f333"}.dashicons-microphone:before{content:"\f482"}.dashicons-migrate:before{content:"\f310"}.dashicons-minus:before{content:"\f460"}.dashicons-money-alt:before{content:"\f18e"}.dashicons-money:before{content:"\f526"}.dashicons-move:before{content:"\f545"}.dashicons-nametag:before{content:"\f484"}.dashicons-networking:before{content:"\f325"}.dashicons-no-alt:before{content:"\f335"}.dashicons-no:before{content:"\f158"}.dashicons-open-folder:before{content:"\f18f"}.dashicons-palmtree:before{content:"\f527"}.dashicons-paperclip:before{content:"\f546"}.dashicons-pdf:before{content:"\f190"}.dashicons-performance:before{content:"\f311"}.dashicons-pets:before{content:"\f191"}.dashicons-phone:before{content:"\f525"}.dashicons-pinterest:before{content:"\f192"}.dashicons-playlist-audio:before{content:"\f492"}.dashicons-playlist-video:before{content:"\f493"}.dashicons-plugins-checked:before{content:"\f485"}.dashicons-plus-alt:before{content:"\f502"}.dashicons-plus-alt2:before{content:"\f543"}.dashicons-plus:before{content:"\f132"}.dashicons-podio:before{content:"\f19c"}.dashicons-portfolio:before{content:"\f322"}.dashicons-post-status:before{content:"\f173"}.dashicons-pressthis:before{content:"\f157"}.dashicons-printer:before{content:"\f193"}.dashicons-privacy:before{content:"\f194"}.dashicons-products:before{content:"\f312"}.dashicons-randomize:before{content:"\f503"}.dashicons-reddit:before{content:"\f195"}.dashicons-redo:before{content:"\f172"}.dashicons-remove:before{content:"\f14f"}.dashicons-rest-api:before{content:"\f124"}.dashicons-rss:before{content:"\f303"}.dashicons-saved:before{content:"\f15e"}.dashicons-schedule:before{content:"\f489"}.dashicons-screenoptions:before{content:"\f180"}.dashicons-search:before{content:"\f179"}.dashicons-share-alt:before{content:"\f240"}.dashicons-share-alt2:before{content:"\f242"}.dashicons-share:before{content:"\f237"}.dashicons-shield-alt:before{content:"\f334"}.dashicons-shield:before{content:"\f332"}.dashicons-shortcode:before{content:"\f150"}.dashicons-slides:before{content:"\f181"}.dashicons-smartphone:before{content:"\f470"}.dashicons-smiley:before{content:"\f328"}.dashicons-sort:before{content:"\f156"}.dashicons-sos:before{content:"\f468"}.dashicons-spotify:before{content:"\f196"}.dashicons-star-empty:before{content:"\f154"}.dashicons-star-filled:before{content:"\f155"}.dashicons-star-half:before{content:"\f459"}.dashicons-sticky:before{content:"\f537"}.dashicons-store:before{content:"\f513"}.dashicons-superhero-alt:before{content:"\f197"}.dashicons-superhero:before{content:"\f198"}.dashicons-table-col-after:before{content:"\f151"}.dashicons-table-col-before:before{content:"\f152"}.dashicons-table-col-delete:before{content:"\f15a"}.dashicons-table-row-after:before{content:"\f15b"}.dashicons-table-row-before:before{content:"\f15c"}.dashicons-table-row-delete:before{content:"\f15d"}.dashicons-tablet:before{content:"\f471"}.dashicons-tag:before{content:"\f323"}.dashicons-tagcloud:before{content:"\f479"}.dashicons-testimonial:before{content:"\f473"}.dashicons-text-page:before{content:"\f121"}.dashicons-text:before{content:"\f478"}.dashicons-thumbs-down:before{content:"\f542"}.dashicons-thumbs-up:before{content:"\f529"}.dashicons-tickets-alt:before{content:"\f524"}.dashicons-tickets:before{content:"\f486"}.dashicons-tide:before{content:"\f10d"}.dashicons-translation:before{content:"\f326"}.dashicons-trash:before{content:"\f182"}.dashicons-twitch:before{content:"\f199"}.dashicons-twitter-alt:before{content:"\f302"}.dashicons-twitter:before{content:"\f301"}.dashicons-undo:before{content:"\f171"}.dashicons-universal-access-alt:before{content:"\f507"}.dashicons-universal-access:before{content:"\f483"}.dashicons-unlock:before{content:"\f528"}.dashicons-update-alt:before{content:"\f113"}.dashicons-update:before{content:"\f463"}.dashicons-upload:before{content:"\f317"}.dashicons-vault:before{content:"\f178"}.dashicons-video-alt:before{content:"\f234"}.dashicons-video-alt2:before{content:"\f235"}.dashicons-video-alt3:before{content:"\f236"}.dashicons-visibility:before{content:"\f177"}.dashicons-warning:before{content:"\f534"}.dashicons-welcome-add-page:before{content:"\f133"}.dashicons-welcome-comments:before{content:"\f117"}.dashicons-welcome-learn-more:before{content:"\f118"}.dashicons-welcome-view-site:before{content:"\f115"}.dashicons-welcome-widgets-menus:before{content:"\f116"}.dashicons-welcome-write-blog:before{content:"\f119"}.dashicons-whatsapp:before{content:"\f19a"}.dashicons-wordpress-alt:before{content:"\f324"}.dashicons-wordpress:before{content:"\f120"}.dashicons-xing:before{content:"\f19d"}.dashicons-yes-alt:before{content:"\f12a"}.dashicons-yes:before{content:"\f147"}.dashicons-youtube:before{content:"\f19b"}.dashicons-editor-distractionfree:before{content:"\f211"}.dashicons-exerpt-view:before{content:"\f164"}.dashicons-format-links:before{content:"\f103"}.dashicons-format-standard:before{content:"\f109"}.dashicons-post-trash:before{content:"\f182"}.dashicons-share1:before{content:"\f237"}.dashicons-welcome-edit-page:before{content:"\f119"}
.tml{font-size:1em}.tml *{box-sizing:border-box}.tml .tml-field-wrap{margin-bottom:1em}.tml .tml-field-wrap:has(.tml-checkbox){align-items:center;display:flex;gap:.5em}.tml .tml-label{display:block;margin:.5em 0}.tml .tml-checkbox{vertical-align:middle}.tml .tml-checkbox+.tml-label{display:inline}.tml .tml-field{width:100%}.tml .tml-description{display:block;font-size:.85em;font-style:italic;margin:.5em 0}:where(.tml .tml-field){background-color:#fff;border:1px solid #8c8f94;border-radius:4px;color:#2c3338;padding:.75em 1em}:where(.tml .tml-field:focus){border-color:#3c434a;box-shadow:0 0 0 1px #3c434a;outline:2px solid transparent}:where(.tml .tml-button){background-color:#f6f7f7;border:1px solid #8c8f94;border-radius:4px;color:#2c3338;cursor:pointer;padding:.75em 1.5em}:where(.tml .tml-button:hover){background-color:#f0f0f1;border-color:#6c7079}:where(.tml .tml-button:focus){border-color:#3c434a;box-shadow:0 0 0 1px #3c434a;outline:2px solid transparent}.tml .tml-errors,.tml .tml-messages{list-style:none;margin:0;padding:0}.tml .tml-action-confirmaction .success,.tml .tml-error,.tml .tml-message,.tml .tml-success{background:#fff;border:1px solid rgba(0,0,0,.1);border-left:4px solid #c3c4c7;box-shadow:none;display:block;margin:0 0 1em;padding:.75em}.tml .tml-message{border-color:rgba(56,88,233,.3) rgba(56,88,233,.3) rgba(56,88,233,.3) #3858e9}.tml .tml-error{background-color:#fcf0f0;border-color:rgba(204,24,24,.3) rgba(204,24,24,.3) rgba(204,24,24,.3) #cc1818}.tml .tml-action-confirmaction .success,.tml .tml-success{background-color:#eff9f1;border-color:rgba(74,184,102,.3) rgba(74,184,102,.3) rgba(74,184,102,.3) #4ab866}#pass-strength-result{background-color:#eee;border:1px solid #ddd;color:#23282d;font-weight:700;margin-bottom:1em;opacity:0;padding:.5em}#pass-strength-result.strong{background-color:#c1e1b9;border-color:#83c373;opacity:1}#pass-strength-result.good{background-color:#ffe399;border-color:#ffc733;opacity:1}#pass-strength-result.bad{background-color:#fbc5a9;border-color:#f78b53;opacity:1}#pass-strength-result.short{background-color:#f1adad;border-color:#e35b5b;opacity:1}.tml-pwd{position:relative}.tml-pwd .tml-field{padding-right:2.5em}.tml-toggle-pwd{background:none;border:0;cursor:pointer;padding:.5em;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tml-toggle-pwd .dashicons{color:#787c82}.tml-toggle-pwd:focus{box-shadow:0 0 0 1px #3c434a;outline:2px solid transparent}
/*!
Theme Name: Care - Boilerplate
Theme URI: http://underscores.me/
Author: Care Srl
Author URI: https://www.carecom.it/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: carebp
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Care - Boilerplate is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

@font-face{font-family:lg;src:url(https://varaschin.it/wp-content/themes/care-boilerplate/css/plugins/../fonts/lg.ttf?io9a6k) format("truetype"),url(https://varaschin.it/wp-content/themes/care-boilerplate/css/plugins/../fonts/lg.woff?io9a6k) format("woff"),url(https://varaschin.it/wp-content/themes/care-boilerplate/css/plugins/../fonts/lg.svg?io9a6k#lg) format("svg");font-weight:400;font-style:normal;font-display:block}.lg-icon{font-family:lg!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-container{font-family:system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans','Liberation Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'}.lg-next,.lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1080;outline:0;border:none}.lg-next.disabled,.lg-prev.disabled{opacity:0!important;cursor:default}.lg-next:hover:not(.disabled),.lg-prev:hover:not(.disabled){color:#fff}.lg-single-item .lg-next,.lg-single-item .lg-prev{display:none}.lg-next{right:20px}.lg-next:before{content:'\e095'}.lg-prev{left:20px}.lg-prev:after{content:'\e094'}@-webkit-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-moz-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-ms-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-webkit-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-moz-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-ms-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-media-overlap .lg-toolbar{background-image:linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:medium none;will-change:color;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear;background:0 0;border:none;box-shadow:none}.lg-toolbar .lg-icon.lg-icon-18{font-size:18px}.lg-toolbar .lg-icon:hover{color:#fff}.lg-toolbar .lg-close:after{content:'\e070'}.lg-toolbar .lg-maximize{font-size:22px}.lg-toolbar .lg-maximize:after{content:'\e90a'}.lg-toolbar .lg-download:after{content:'\e0f2'}.lg-sub-html{color:#eee;font-size:16px;padding:10px 40px;text-align:center;z-index:1080;opacity:0;-webkit-transition:opacity .2s ease-out 0s;-o-transition:opacity .2s ease-out 0s;transition:opacity .2s ease-out 0s}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}.lg-sub-html a{color:inherit}.lg-sub-html a:hover{text-decoration:underline}.lg-media-overlap .lg-sub-html{background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))}.lg-item .lg-sub-html{position:absolute;bottom:0;right:0;left:0}.lg-error-msg{font-size:14px;color:#999}.lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;height:47px;vertical-align:middle}.lg-closing .lg-next,.lg-closing .lg-prev,.lg-closing .lg-sub-html,.lg-closing .lg-toolbar{opacity:0;-webkit-transition:-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-moz-transition:-moz-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-o-transition:-o-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;transition:transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object{opacity:0;will-change:opacity;-webkit-transition:opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:opacity 250ms cubic-bezier(0,0,.25,1)!important}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object{opacity:1}.lg-group:after{content:'';display:table;clear:both}.lg-container{display:none}.lg-container.lg-show{display:block}.lg-on{scroll-behavior:unset}.lg-hide-sub-html .lg-sub-html,.lg-next,.lg-pager-outer,.lg-prev,.lg-toolbar{opacity:0;will-change:transform,opacity;-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s}.lg-show-in .lg-next,.lg-show-in .lg-pager-outer,.lg-show-in .lg-prev,.lg-show-in .lg-toolbar{opacity:1}.lg-show-in.lg-hide-sub-html .lg-sub-html{opacity:1}.lg-show-in .lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-show-in .lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-show-in .lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}.lg-outer{width:100%;height:100%;position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:.001;outline:0;will-change:auto;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-zoom-from-image{opacity:1}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg{height:100%;width:100%;position:relative;overflow:hidden;margin-left:auto;margin-right:auto;max-width:100%;max-height:100%;outline:0}.lg-outer .lg-inner{width:100%;position:absolute;left:0;top:0;bottom:0;-webkit-transition:opacity 0s;-o-transition:opacity 0s;transition:opacity 0s;white-space:nowrap}.lg-outer .lg-item{will-change:transform,opacity;display:none!important}.lg-outer .lg-item:not(.lg-start-end-progress){background:url(https://varaschin.it/wp-content/themes/care-boilerplate/css/plugins/../images/loading.gif) no-repeat scroll center center transparent}.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer.lg-css .lg-current{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:'';display:inline-block;height:100%;vertical-align:middle}.lg-outer .lg-img-wrap{position:absolute;left:0;right:0;top:0;bottom:0;white-space:nowrap;font-size:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-object{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto;height:auto;position:relative}.lg-outer.lg-show-after-load .lg-item .lg-object,.lg-outer.lg-show-after-load .lg-item .lg-video-play-button{opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer.lg-show-after-load .lg-item.lg-zoom-from-image .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-zoom-from-image .lg-video-play-button{opacity:1}.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play-button{opacity:1}.lg-outer .lg-empty-html{display:none}.lg-outer[data-lg-slide-type=iframe] .lg-download,.lg-outer[data-lg-slide-type=video] .lg-download{opacity:.75;pointer-events:none}.lg-outer .lg-first-slide .lg-dummy-img{position:absolute;top:50%;left:50%}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html{opacity:1;transition:opacity .2s ease-out .15s}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;will-change:auto;-webkit-transition:opacity 333ms ease-in 0s;-o-transition:opacity 333ms ease-in 0s;transition:opacity 333ms ease-in 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-moz-transition:-moz-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-o-transition:-o-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:transform 1s cubic-bezier(.175,.885,.32,1.275) 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-container{display:none}.lg-container.lg-show{display:block}.lg-container.lg-dragging-vertical .lg-backdrop{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-inline .lg-backdrop,.lg-inline .lg-outer{position:absolute}.lg-inline .lg-backdrop{z-index:1}.lg-inline .lg-outer{z-index:2}.lg-inline .lg-maximize:after{content:'\e909'}.lg-components{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);will-change:transform;-webkit-transition:-webkit-transform .35s ease-out 0s;-moz-transition:-moz-transform .35s ease-out 0s;-o-transition:-o-transform .35s ease-out 0s;transition:transform .35s ease-out 0s;z-index:1080;position:absolute;bottom:0;right:0;left:0}
.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.lg-outer .lg-video-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.lg-outer .lg-video-poster {
  z-index: 1;
}

.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
  opacity: 0 !important;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
  opacity: 1;
}

@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  -o-transition: -o-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
}

.lg-video-play-button:hover .lg-video-play-icon-bg,
.lg-video-play-button:hover .lg-video-play-icon {
  opacity: 1;
}

.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  -o-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, 0.9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  -o-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon .lg-video-play-icon-inner {
  fill: #fcfcfc;
}

.lg-video-loading .lg-video-play-icon-circle {
  animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
}

.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}
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;
}
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;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* Default styles */

:root {
	--defaultFontSize: 16px;
	--mainColor: #000;
	--textColor: #000;
}

html, body {
	overflow-x: clip;
}

body {
	font-size: var(--defaultFontSize);
}

.section {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px; 
}
.section.section--full {
	max-width: none;
	width: 100%;
}
.row {
	position: relative;
}

/* end Default styles */

/* reset WP & plugins styles */
.wpml-ls-statics-footer,
.otgs-development-site-front-end {
    display: none;
}
.post, .page {
    margin: 0;
}

/* Nav Button (Mobile) */
.nav_button {
	position: relative;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    z-index: 999;
}

.nav_button:hover {
    opacity: .7;
}

.nav_button.active .top {
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
    transform: translateY(10px) translateX(0) rotate(45deg);
}

.nav_button.active .middle {
    opacity: 0;
}

.nav_button.active .bottom {
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
    transform: translateY(-10px) translateX(0) rotate(-45deg);
}

.nav_button span {
    background: var(--mainColor);
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}

.nav_button span:nth-of-type(2) {
    top: 10px;
}

.nav_button span:nth-of-type(3) {
    top: 20px;
}




/* Animations */
[data-anim]:not([data-anim="slideList"]):not([data-anim="parallax"]):not([data-anim="textReveal"]) {
    opacity: 0;
}
[data-anim="slide"],
[data-anim-direction="top"]:not([data-anim="slideList"]),
[data-anim="slideList"] > *,
[data-anim="slideList"][data-anim-direction="top"] > * {
    transform: translateY(50px);
}
[data-anim-direction="bottom"]:not([data-anim="slideList"]),
[data-anim="slideList"][data-anim-direction="bottom"] > * {
    transform: translateY(-50px);
}
[data-anim-direction="left"]:not([data-anim="slideList"]),
[data-anim="slideList"][data-anim-direction="left"] > * {
    transform: translateX(50px);
}
[data-anim-direction="right"]:not([data-anim="slideList"]),
[data-anim="slideList"][data-anim-direction="right"] > * {
    transform: translateX(-50px);
}
[data-anim="reveal"] {
    opacity: 0;
}
[data-anim="slideList"] > * {
    opacity: 0;
}
[data-anim="revealOverlay"] {
    position: relative;
    overflow: hidden;
    visibility: hidden;
    line-height: 0;
    height: auto;
    height: fit-content;
}
[data-anim="revealOverlay"] .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 2;
}
[data-anim="slideList"] {
    opacity: 1 !important;
}
[data-anim="parallax"] {
    position: relative;
    overflow: hidden;
}
[data-anim="parallax"] img {
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    padding: 0;
    width: 100%;
}
.parallax--holder {
    clip-path: inset(0 0 0 0); /* used to fix overflow in case of pinned animation */
}
[data-anim="textReveal"] {
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
}

/*!
Theme Name: Varaschin
Theme URI: https://varaschin.it/
Author: Care Srl
Author URI: https://www.carecom.it/
Description: Tema per Varaschin
Version: 1.0.0
Tested up to: 8.1
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: varaschin
Template: care-boilerplate
*/
@font-face {
    font-family: 'Platform';
    src: url('https://varaschin.it/wp-content/themes/varaschin/fonts/Platform-Regular.woff2') format('woff2'),
        url('https://varaschin.it/wp-content/themes/varaschin/fonts/Platform-Regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Platform';
    font-weight: 300;
    src: url('https://varaschin.it/wp-content/themes/varaschin/fonts/Platform-Light.woff2') format('woff2'),
        url('https://varaschin.it/wp-content/themes/varaschin/fonts/Platform-Light.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Platform';
    font-weight: 100;
    src: url('https://varaschin.it/wp-content/themes/varaschin/fonts/Platform-Hairline.woff2') format('woff2'),
        url('https://varaschin.it/wp-content/themes/varaschin/fonts/Platform-Hairline.woff') format('woff');
    font-display: swap;
}
/* windsong-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'WindSong';
    font-style: normal;
    font-weight: 400;
    src: url('https://varaschin.it/wp-content/themes/varaschin/fonts/windsong-v11-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* windsong-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'WindSong';
    font-style: normal;
    font-weight: 500;
    src: url('https://varaschin.it/wp-content/themes/varaschin/fonts/windsong-v11-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
    --main-color: #555555;
    --f20: 20px;
    --f60: 60px;
    --f70: 70px;
    --f85: 85px;
    --shadow1: 0 0 10px 0 rgba(0, 0, 0, .3);
    --hero-transition: cubic-bezier(.12, .43, .12, 1.01);
    --bg-dark: #2d2d2d;
}
/*
.mm-menu {
    --mm-color-background: linear-gradient(180deg, rgba(45,45,45,1) 0%, rgba(255,255,255,0.2) 100%) !important;
    --mm-color-text: #fff !important;
    --mm-color-text-dimmed: #fff !important;
    --mm-color-icon: rgb(255 255 255 / 0.4) !important ;
}
.mm-navbar {
    background: #2d2d2d !important;
}
*/
body.mm-wrapper--position-left .mm-slideout, .mm-wrapper--position-right .mm-slideout {
    transform: none;
}
#menu-mobile.mm-menu--opened {
    z-index: 1;
    max-width: 80vw;
}
@keyframes slide {
    from {
        transform: translateY(100%)
    }
    to {
        transform: translateY(0)
    }
}
@keyframes slideTop {
    from {
        transform: translateY(-100%)
    }
    to {
        transform: translateY(0)
    }
}
html,
body {
    overflow-x: unset;
}
em {
    font-style: italic;
}
h1 {
    font-size: var(--f85);
    font-weight: 100;
    line-height: 1;
    margin-top: 0;
}
.mm-wrapper__blocker.mm-blocker.mm-slideout {
    /*display: none;*/
}
#menu-mobile .mm-panels a {
    font-size: 16px;
    line-height: 1;
}
#menu-mobile:not(.mm-menu) {
    display: none;
}
.post, .page {
    margin-bottom: 0;
}
body {
    font-family: 'Platform', sans-serif;
    font-weight: 300;
    color: var(--main-color);
    font-size: 20px;
    line-height: 1.5;
}
strong, b {
    font-weight: 400
}
p + p {
    margin-top: 1em;
}
a {
    text-decoration: none
}
a,
a:visited,
a:hover,
a:focus,
a:active {
    color: inherit
}
.page-content,
.entry-content,
.entry-summary {
    margin: 0
}
#masthead {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 999;
    margin-top: -140px;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
    height: 140px;
}
.lang-switch {
    position: absolute;
    color: #fff;
    right: 70px;
    top: 15px;
    z-index: 9;
}
.lang-switch li {
    display: inline-block;
    padding-right: 20px;
    position: relative;
}
.lang-switch li:after {
    content: '\\';
    display: inline-block;
    position: absolute;
    font-size: 16px;
    transform: translate(0%, -50%);
    top: 50%;
    right: 7px;
}
.lang-switch li:last-child {
    padding-right: 0;
}
.lang-switch li:last-child:after {
    display: none;
}
.lang-switch li a {
    font-size: 16px;
    transition: all .5s;
}
.lang-switch li a:hover,
.lang-switch li a.active {
    text-decoration: underline;
}
.nav-container {
    padding: 50px 70px;
    display: grid;
    grid-template-columns: auto auto auto;
    color: #fff;
    position: relative;
    align-items: center;
}
.nav-container-left {}
.nav-container-center {
    text-align: center;
}
.nav-container-center ul {}
.nav-container-center ul li {
    display: inline-block;
    margin: 0 5px;
}
.nav-container-center a {
    color: #fff;
    text-transform: uppercase;
    padding: 7px 10px;
    transition: .5s all;
    border: 1px solid transparent;
    font-size: 16px;
}
.nav-container-center a:hover,
.nav-container-center .current-menu-item a,
.nav-container-center .vn-active a {
    border: 1px solid;
}
.nav-container-right {
    text-align: right;
}
.nav-container-right .nav_button {
    position: absolute;
    right: 70px;
    top: 50%;
    scale: .8;
    transform: translateY(-50%);
}
.nav-container-right .nav_button span {
    background-color: #fff;
}
.nav-container-right .service-menu {
    margin-right: 60px;
    margin-left: auto;
}
.nav-container-right .service-menu li {
    display: inline-block;
    padding-right: 20px;
}
.nav-container-right .service-menu li a {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 7px 10px;
    transition: .5s all;
    border: 1px solid transparent;
    font-size: 16px;
}
.nav-container-right .service-menu li:nth-child(1) a:hover {
    border: 1px solid;
}
.nav-container-right .service-menu li a img {
    width: 20px;
    top: 5px;
    position: absolute;
    display: block;
}
.nav-container-right .service-menu li a.research {
    width: 22px;
    height: 22px;
    display: block;
    padding: 0;
}
.nav-container-right .service-menu li a.user {
    width: 22px;
    height: 22px;
    display: block;
    padding: 0;
}
.nav-container-right .service-menu li a.user.out {
    height: 22px;
    width: 30px;
}
.nav-container-right .service-menu li a.user.out img {
    width: 30px;
}
.search-box {
    height: 100vh;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    /* Black with a little bit see-through */
}
/* The content */
.search-box-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}
/* Close button */
.search-box .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
    width: 30px;
    height: 30px
}
.search-box .closebtn:hover {
    color: #ccc;
}
/* Style the search field */
.search-box input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: calc(100% - 60px);
    background: white;
}
.search-box input[type=text]:hover {
    background: #f1f1f1;
}
/* Style the submit button */
.search-box button {
    width: 35px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg width='1024px' height='1024px' viewBox='0 0 1024 1024' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1014.64 969.04L703.71 656.207c57.952-69.408 92.88-158.704 92.88-256.208 0-220.912-179.088-400-400-400s-400 179.088-400 400 179.088 400 400 400c100.368 0 192.048-37.056 262.288-98.144l310.496 312.448c12.496 12.497 32.769 12.497 45.265 0 12.48-12.496 12.48-32.752 0-45.263zM396.59 736.527c-185.856 0-336.528-150.672-336.528-336.528S210.734 63.471 396.59 63.471c185.856 0 336.528 150.672 336.528 336.528S582.446 736.527 396.59 736.527z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
    background-size: cover;
    border: none;
    position: relative;
    float: left;
    margin-left: 20px;
    margin-top: 10px;
}
.search-box button:hover {
    /* background: #bbb; */
}
.arrow-down {
    transform: rotate(90deg);
    width: 20px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -10px;
    -webkit-animation: actionDown 1s infinite alternate;
    animation: actionDown 1s infinite alternate;
}
@-webkit-keyframes actionDown {
    0% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg)
    }
    100% {
        -webkit-transform: translateY(-5px) rotate(90deg);
        transform: translateY(-5px) rotate(90deg)
    }
}
@keyframes actionDown {
    0% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg)
    }
    100% {
        -webkit-transform: translateY(-5px) rotate(90deg);
        transform: translateY(-5px) rotate(90deg)
    }
}
.btn-arrow {}
.btn-arrow-inherit {
    color: inherit;
    position: relative;
}
.btn-arrow-inherit span {
    position: absolute;
    width: 20px;
    height: 14px;
    right: -25px;
    bottom: 5px;
    transition: all .2s ease-in-out;
}
.btn-arrow-inherit.down span {
    transform: rotate(90deg);
    right: -30px;
    bottom: 0;
}
.btn-arrow-inherit.map span {
    width: 15px;
    right: -20px;
}
.btn-arrow-inherit:hover {}
.btn-arrow-inherit:hover span {
    right: -30px;
}
.btn-arrow-inherit.down:hover span {
    right: -30px;
    bottom: -15px;
}
.btn-arrow-inherit.map:hover span {
    right: -20px;
    bottom: 0px;
}
.btn-arrow-inherit svg {
    
}
.btn-arrow-inherit svg path {}
.tit-slash {
    position: relative;
}
.tit-slash:before {
    content: '\\';
    position: absolute;
    display: inline-block;
    left: -.4em;
    top: -.1em;
}
.custom-select {
    display: inline-block;
    position: relative;
}
.custom-select select {
    -webkit-appearance: none;
    background: transparent;
    padding: 10px 40px 10px 20px;
    color: #fff;
    border-color: #fff;
    font-family: 'Platform';
    font-weight: 300;
}
.custom-select:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10.072 8.024 5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z' clip-rule='evenodd' fill='%23fff'/%3E%3C/svg%3E");
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 9;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(90deg);
    background-size: contain;
    right: 5px;
    top: 50%;
}
/** homepage*/
.slider-hp {}
.slider-hp rs-module-wrap {
    left: 0 !important;
}
.new-hp {}
.new-hp-container {}
.new-hp-container .new-hp-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.new-hp-container .new-hp-intro {
    grid-column: 1 / 5;
    padding: 70px 130px 60px 105px;
    position: relative;
    position: relative;
    display: flex;
    flex-direction: column;
}
.new-hp-container .new-hp-intro h2 {
    font-size: var(--f85);
    font-weight: 100;
    margin-bottom: 30px;
    line-height: 1;
}
.new-hp-container .new-hp-intro p {
    font-size: var(--f20);
    line-height: 1.5;
    max-width: 290px;
    margin-bottom: 20px;
}
.new-hp-container .new-hp-intro .link {
    align-self: flex-end;
    margin-top: auto;
}
.new-hp-container .new-hp-intro a {
    position: relative;
    color: inherit;
}
.new-hp-container .new-hp-intro a strong {
    font-weight: 400;
}
.new-hp-container .new-hp-img {
    grid-column: span 2;
}
.new-hp-container .new-hp-img:nth-child(2) {}
.new-hp-container .new-hp-img:nth-child(3) {}
.new-hp-container .new-hp-img:nth-child(4) {}
.new-hp-container .new-hp-img:nth-child(5) {}
.new-hp-container .new-hp-img:nth-child(6) {}
.new-hp-container .new-hp-img:nth-child(7) {}
.new-hp-container .new-hp-img a {
    display: block;
    overflow: hidden;
    position: relative
}
.new-hp-container .new-hp-img a .sing-item-img {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
}
.new-hp-container .new-hp-img a:hover .sing-item-img {
    opacity: 0;
}
.new-hp-container .new-hp-img a .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.new-hp-container .new-hp-img a .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.new-hp-container .new-hp-img a:hover {}
.new-hp-container .new-hp-img a img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .5s ease-in-out;
}
.new-hp-container .new-hp-img a:hover img {
    /*transform: scale(1.1);*/
}
.coll-hp {
    padding: 70px 70px 70px 105px;
}
.coll-hp-container {}
.coll-hp-container .coll-hp-grid {
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-gap: 70px;
}
.coll-hp-container .coll-hp-intro {
    position: relative;
    margin-bottom: 140px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.coll-hp-container .coll-hp-intro h2 {
    font-size: var(--f85);
    font-weight: 100;
    margin-bottom: 30px;
    align-self: start;
    line-height: 1;
}
.coll-hp-container .coll-hp-intro p {
    font-size: var(--f20);
    line-height: 1.5;
    max-width: 400px;
    margin-bottom: 30px;
}
.coll-hp-container .coll-hp-intro .link {
    align-self: flex-end;
    margin-top: auto;
}
.coll-hp-container .coll-hp-intro a {
    position: absolute;
    right: 20px;
    /* bottom: 60px; */
    color: inherit;
    margin-top: 50px;
    position: relative;
}
.coll-hp-container .coll-hp-intro a strong {
    font-weight: 400;
}
.coll-hp-container .coll-hp-gallery {
    width: calc((((100vw - 150px) / 10)*7) - 70px);
}
.coll-hp-container .coll-hp-gallery > div {
    box-shadow: var(--shadow1);
}
.coll-hp-container .coll-hp-gallery a {
    display: block;
}
.coll-hp-container .coll-hp-gallery img {
    width: 100%;
    height: auto;
    display: block;
}
.esp-hp {
    margin-top: -140px;
    margin-bottom: -280px;
}
.esp-hp-container {
    padding: 140px 70px 280px;
}
.esp-hp-container .esp-hp-grid {
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-gap: 70px;
}
.esp-hp-container .esp-hp-intro {
    position: relative;
    position: relative;
    margin-bottom: 140px;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}
.esp-hp-container .esp-hp-intro h2 {
    font-size: var(--f85);
    font-weight: 100;
    margin-bottom: 30px;
    line-height: 1;
}
.esp-hp-container .esp-hp-intro p {
    font-size: var(--f20);
    line-height: 30px;
    max-width: 400px;
    margin-bottom: 30px;
}
.esp-hp-container .esp-hp-intro .link {
    align-self: flex-end;
    margin-top: auto;
}
.esp-hp-container .esp-hp-intro a {
    position: absolute;
    right: 20px;
    /* bottom: 60px; */
    color: inherit;
    margin-top: 50px;
    margin-top: 50px;
    position: relative;
}
.esp-hp-container .esp-hp-intro a strong {
    font-weight: 400;
}
.esp-hp-container .esp-hp-gallery {
    width: calc((((100vw - 150px) / 10)*7) - 70px);
}
.esp-hp-container .esp-hp-gallery > div {
    box-shadow: var(--shadow1);
}
.esp-hp-container .esp-hp-gallery a {
    display: block;
}
.esp-hp-container .esp-hp-gallery img {
    width: 100%;
    height: auto;
    display: block;
}
.vt-hp {
    text-align: center;
    margin-top: 70px;
}
.vt-overlay-container {
    position: relative;
}
.vt-hp h2 {
    font-size: var(--f85);
    font-weight: 100;
    margin-bottom: 50px;
    line-height: 1;
    color: #fff;
    position: relative;
    display: inline-block;
}
.news-hp {
    padding: 70px;
}
.news-hp-container {}
.news-hp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 70px;
}
.news-hp-grid .sing-news-hp {
    position: relative;
}
.news-hp-grid .sing-news-hp .news-hp-img {}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-yt-cont,
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-video-cont {
    position: relative;
    aspect-ratio: 550 /680;
}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-yt {
    height: 100%;
    overflow: hidden;
    /* padding-bottom: 56.25%; */
    padding-top: 0;
    position: relative;
    width: 220%;
    left: -50%;
}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-yt iframe,
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-yt object,
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-yt embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-yt > div {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-video {
    height: 100%;
    overflow: hidden;
    /* padding-bottom: 56.25%; */
    padding-top: 0;
    position: relative;
    width: 100%;
    left: -0%;
}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-video video {
    height: 150%;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.news-hp-grid .sing-news-hp .news-hp-img .hp-news-video > div {}
.news-hp-grid .sing-news-hp .news-hp-img a {
    display: block;
    overflow: hidden;
    box-shadow: var(--shadow1);
}
.news-hp-grid .sing-news-hp .news-hp-img a img {
    display: block;
    transition: all .5s ease-in-out;
    width: 100%;
}
.news-hp-grid .sing-news-hp .news-hp-img a:hover img {
    transform: scale(1.1);
}
.news-hp-grid .sing-news-hp .news-hp-text {
    padding: 40px 30px;
}
.news-hp-grid .sing-news-hp .news-hp-title {
    font-size: 50px;
    font-weight: 100;
    margin-bottom: 20px;
    line-height: 1;
	-webkit-text-stroke: .3px;
}
.news-hp-grid .sing-news-hp .news-hp-intro {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 50px;
}
.news-hp-grid .sing-news-hp .link {
    position: relative;
    display: inline-block;
}
/** fine homepage*/
/*** famiglia **/
.vc-arc-wide {
    padding: 250px 70px;
}
.vc-arc-wide.family {
    background-size: 100vw !important;
    background-blend-mode: multiply;
    background-attachment: fixed !important;
}
.vc-arc-wide .page-header {
    padding-bottom: 150px;
    position: relative;
}
.vc-arc-wide.designer .page-header {}
.vc-arc-wide .page-header-container {
    display: grid;
    grid-template-columns: 3fr 5fr 2fr;
    grid-gap: 30px;
    align-items: center;
}
.vc-arc-wide .page-header .title {}
.vc-arc-wide .page-header .title h1 {
    margin-left: .4em;
    margin-bottom: 30px;
}
.vc-arc-wide .page-header .description {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: #fff;
}
.vc-arc-wide .page-header .link {
    text-align: right;
    margin-right: 20px;
    align-self: center;
}
.vc-arc-wide .page-header .link a {
    display: block;
    margin: 20px 0px;
}
.vc-arc-wide .page-header .link a strong {
    display: block
}
.vc-arc-wide .loop-coll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
    position: relative;
}
.vc-arc-wide .page-header .link a.all-esp {
    font-size: 16px;
}
.vc-arc-wide .sing-family {}
.vc-arc-wide .sing-family a {
    color: inherit;
}
.vc-arc-wide .sing-family-tit {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1;
}
.vc-arc-wide .sing-family-tit h2 {
    display: inline-block;
}
.vc-arc-wide .sing-family-tit span {
    font-size: 20px;
}
.vc-arc-wide .sing-family-img {
    overflow: hidden;
    box-shadow: var(--shadow1)
}
.vc-arc-wide .sing-family img {
    transition: .5s all;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}
.vc-arc-wide .sing-family a:hover img {
    transform: scale(1.1);
}
.vc-arc-wide .row-cit {
    grid-column: span 2;
    padding: 0 200px;
    text-align: center;
}
.vc-arc-wide .row-cit-txt {
    font-size: 20px;
    font-style: italic;
    padding-bottom: 20px;
}
.vc-arc-wide .row-cit-firma {
    font-family: 'WindSong';
    font-size: 40px;
    text-align: left;
    margin-left: 60%;
}
/*** fine famiglia **/
/** singola famiglia **/
.fam-row-intro {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.fam-row-intro.tipo-slider {
    height: auto;
}
.fam-row-intro .layer-overlap {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    color: #fff;
}
.fam-row-intro .layer-overlap.velina {
    background-image: url(https://varaschin.it/wp-content/themes/varaschin/img/pattern-1.png);
}
.fam-row-intro .layer-overlap-info {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 12; */
}
.fam-row-intro .layer-overlap-info h1 {
    /* flex-grow: 1; */
    font-size: 150px;
    animation: slide 1.25s var(--hero-transition);
    animation-fill-mode: backwards;
}
.fam-row-intro .layer-overlap-info div {
    /* align-self: flex-start; */
    animation: slideTop 1.75s var(--hero-transition);
    animation-fill-mode: backwards;
}
.fam-row-intro .layer-overlap-info div strong {}
.fam-row-intro .video {
    /* Proporzione 16:9 per i video di YouTube */
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}
.fam-row-intro .video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}
.fam-row-intro .video iframe video {}
@media screen and (min-aspect-ratio: 16/9) {
    .fam-row-intro .video iframe {
        height: 56.25vw
    }
}
@media screen and (max-aspect-ratio: 16/9) {
    .fam-row-intro .video {
        /* width: 177.78vh; */
    }
    .fam-row-intro .video iframe {
        width: 177.78vh
    }
}
.fam-row-intro .bg-img {
    width: 100%;
    height: 100%;
}
.fam-row-intro .bg-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.fam-row-1-container {
    padding: 70px 70px 70px 70px;
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-gap: 70px;
}
.fam-row-1-container .fam-row-1-coll-1 {
    position: relative;
    margin-bottom: 140px;
    display: flex;
    flex-direction: column;
    flex: 1;
    row-gap: 40px;
}
.fam-row-1-container .fam-row-1-coll-1 .link {
    align-self: flex-end;
    margin-top: auto;
}
.fam-row-1-container .fam-row-1-coll-2 {}
.fam-row-1-container .fam-row-1-coll-2 img {
    display: block;
    box-shadow: var(--shadow1);
}
.fam-row-2-container {
    padding: 140px 70px;
    display: grid;
    grid-template-columns: 7fr 3fr;
    grid-gap: 70px;
    margin-top: -140px;
}
.fam-row-2-container .fam-row-2-coll-2 {
    position: relative;
    position: relative;
    /* margin-bottom: 140px; */
    display: flex;
    flex-direction: column;
    padding-left: 70px;
}
.fam-row-2-container .fam-row-2-coll-2 h2 {
    font-size: var(--f85);
    font-weight: 100;
    margin-bottom: 30px;
}
.fam-row-2-container .fam-row-2-coll-2 p {
    font-size: 20px;
    line-height: 30px;
    max-width: 400px;
    margin-bottom: 30px;
}
.fam-row-2-container .fam-row-2-coll-2 .link {
    align-self: flex-end;
    margin-top: auto;
}
.fam-row-2-container .fam-row-2-coll-2 a {
    position: absolute;
    right: 20px;
    /* bottom: 60px; */
    color: inherit;
    margin-top: 50px;
    margin-top: 50px;
    position: relative;
}
.fam-row-2-container .fam-row-2-coll-1 {}
.fam-row-2-container {}
.fam-row-2-container .fam-row-2-coll-1 img {
    display: block;
    box-shadow: var(--shadow1);
}
.fam-row-2-container .fam-row-2-coll-2 {
    align-self: center;
    /* min-height: 200px; */
    row-gap: 40px;
}
.fam-row-3-container {
    margin-top: -70px;
    margin-bottom: 140px;
}
.fam-row-3-container .fam-row-3-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 1px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-intro {
    grid-column: span 4;
    font-size: 20px;
    line-height: 30px;
    padding-top: 70px;
    padding-left: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 80px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-intro a.btn-arrow-inherit {
    display: inline-block;
    position: absolute;
    right: 140px;
    bottom: 50px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-intro h2 {
    font-size: var(--f85);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 30px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-intro p {
    max-width: 400px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img:nth-child(2) {
    margin-top: 70px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img:nth-child(3) {
    margin-top: 70px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img {
    grid-column: span 2;
    outline-width: 1px;
    outline-style: solid;
    outline-color: #e9e9e9;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a {}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a img {
    display: block;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-img {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-img img {
    display: block;
    width: 100%;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-text p {}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a {
    position: relative;
    display: block;
    overflow: hidden;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a:hover {}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a:hover .sing-item-img {
    opacity: 0;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a span {
    margin-right: 60px;
    margin-bottom: 40px;
}
.fam-row-3-container .fam-row-3-grid .fam-row-3-img a:hover .sing-item-text {}
/** fine singola famiglia **/
.filters {
    margin-left: 35px;
    display: inline-grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 70px;
    margin-top: 40px;
}
.filters span {
    font-size: 18px;
    padding-top: 5px;
    /* display: block; */
}
.filters .button-group {}
.filters button {
    color: inherit;
    background-color: transparent;
    border-radius: 0;
    padding: 10px 15px;
    margin: 0;
    border-color: transparent;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}
.filters button.active {
    border: 1px solid;
}
.filters button.hide {
    opacity: .5;
    cursor: auto;
}
.filters .filters-1 {
    display: flex;
    grid-gap: 20px;
}
.filters .filters-2 {
    display: flex;
    grid-gap: 20px;
}

#filters-custom {
    grid-template-columns: 1fr;
    place-items: center;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}
@media screen and (max-width: 1280px) {
    #filters-custom {
        place-items: start;
    }
}
/*** listato famiglia tipo (prodotto) e singola famiglia */
.vn-prod-type {
    /* padding: 250px 70px; */
}
.vn-prod-type .bg-img {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
}
.vn-prod-type .page-header {
    padding: 250px 70px 140px;
    position: relative;
    background-size: cover !important;
    background-blend-mode: multiply;
}
.vn-prod-type.term-type .page-header {
    padding-bottom: 70px;
}
.vn-prod-type .page-header-container {
    display: grid;
    grid-template-columns: 3fr 5fr 2fr;
    grid-gap: 30px;
    align-items: center;
}
.vn-prod-type.term-type .page-header-container {
    grid-template-columns: 1fr
}
.vn-prod-type.term-type .bread-type {
    margin-left: 35px;
}
.vn-prod-type .page-header .title {}
.vn-prod-type .page-header .intro, .family .intro {
    font-size: 45px;
    line-height: 1;
    font-weight: 100;
    margin-left: 35px;
    -webkit-text-stroke: .3px;
}
.vn-prod-type .page-header .title h1 {
    margin-left: .4em;
    margin-bottom: 30px;
}
.vn-prod-type.term-type .page-header .description {
    font-size: 20px;
    line-height: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
    margin-left: 35px;
    color: unset;
    font-weight: unset;
}
.vn-prod-type.term-type .page-header .description {
    max-width: 1400px;
}
.vn-prod-type .page-header .link {
    text-align: right;
    margin-right: 20px;
    align-self: center;
}
.loop-prod-type {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1px;
    margin-bottom: 170px;
}
.loop-prod-type.iso-grid {
    height: auto !important;
}
.loop-prod-type .sing-prod {
    outline: 1px solid #e3e3e3;
}
.loop-prod-type.iso-grid .sing-prod {
    position: relative !important;
    left: auto !important;
    top: 1px !important;
}
.loop-prod-type .sing-prod a {
    color: inherit;
    height: 100%;
    display: block;
}
.loop-prod-type .sing-prod figure {
    overflow: hidden;
}
.loop-prod-type .sing-prod a:hover figure img {
    transform: scale(1.1);
}
.loop-prod-type .sing-prod figure img {
    display: block;
    transition: all .5s;
}
.loop-prod-type .sing-prod .sing-prod-info {
    padding: 50px 50px 70px;
}
.loop-prod-type .sing-prod h2 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.loop-prod-type .sing-prod p {}
.loop-prod-type .sing-prod span {
    margin-right: 60px;
    margin-bottom: 40px;
}
/*** fine listato famiglia tipo (prodotto) e singola famiglia */
/** singolo prodotto**/
.prod-row-intro {
    width: 100%;
    height: 100vh;
    position: relative;
}
.prod-row-intro .layer-overlap {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    color: #fff;
}
.prod-row-intro .layer-overlap.velina {
    background-image: url(https://varaschin.it/wp-content/themes/varaschin/img/pattern-1.png);
}
.prod-row-intro .layer-overlap-info {
    color: #fff;
    position: absolute;
    right: 30px;
    bottom: 25px;
}
.prod-row-intro .layer-overlap-info ul.vn-registered li {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='666.67'%3E%3Cpath d='M300 416.67v66.67M133.33 267.63c15.71-.96 35.09-.96 60-.96h213.33c24.91 0 44.29 0 60 .96m-333.33 0c-19.61 1.2-33.52 3.89-45.4 9.94a99.981 99.981 0 0 0-43.7 43.7c-10.9 21.39-10.9 49.39-10.9 105.4v46.67c0 56.01 0 84.01 10.9 105.4a100.033 100.033 0 0 0 43.7 43.7c21.39 10.9 49.39 10.9 105.4 10.9h213.33c56.01 0 84.01 0 105.4-10.9a99.981 99.981 0 0 0 43.7-43.7c10.9-21.39 10.9-49.39 10.9-105.4v-46.67c0-56.01 0-84.01-10.9-105.4a99.981 99.981 0 0 0-43.7-43.7c-11.88-6.05-25.79-8.74-45.4-9.94m-333.33 0V200c0-92.05 74.62-166.67 166.67-166.67S466.67 107.95 466.67 200v67.63' style='fill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:66.67px'/%3E%3C/svg%3E");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 0px center;
    padding-left: 25px;
    font-size: 16px;
}
.prod-row-intro .layer-overlap-info h1 {
    /* flex-grow: 1; */
}
.prod-row-intro .layer-overlap-info div {
    /* align-self: flex-start; */
}
.prod-row-intro .layer-overlap-info div strong {}
.prod-row-intro .video {
    /* Proporzione 16:9 per i video di YouTube */
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}
.prod-row-intro .video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}
.prod-row-intro .video iframe video {}
@media screen and (min-aspect-ratio: 16/9) {
    .prod-row-intro .video iframe {
        height: 56.25vw
    }
}
@media screen and (max-aspect-ratio: 16/9) {
    .prod-row-intro .video {
        width: 177.78vh;
    }
    .prod-row-intro .video iframe {
        width: 177.78vh
    }
}
.prod-row-intro .bg-img {
    width: 100%;
    height: 100%;
}
.prod-row-intro .bg-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.prod-row-1-container {}
.prod-row-1-container .prod-row-1-grid {
    /*display: grid;*/
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 1px;
}
.prod-row-1-container .prod-row-1-grid .sizer {
    width: 25vw;
}
.prod-row-1-container .prod-row-1-grid .width1 {
    width: 25%;
}
.prod-row-1-container .prod-row-1-grid .width2 {
    width: 50%;
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-intro {
    font-size: 20px;
    line-height: 30px;
    /*height: 25vw;*/
    z-index: 9;
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-intro > div {
    position: absolute;
    bottom: 0;
    padding-top: 70px;
    padding-left: 105px;
    padding-right: 70px;
    padding-bottom: 70px;
    background-color: inherit;
    min-height: calc(25vw + 70px);
    display: flex;
    flex-direction: column;
}
.prod-row-1-container .prod-coll-des {
    display: inline-block;
    margin-bottom: 40px;
}
.prod-row-1-container .prod-coll-des a {
    font-weight: 400;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.prod-row-1-container .prod-coll-des span {
    display: inline-block;
    padding: 0 10px;
}
.prod-row-1-container .prod-coll-des .prod-coll {
    display: inline-block;
}
.prod-row-1-container .prod-coll-des .prod-des {}
.prod-row-1-container .prod-row-1-grid .prod-row-1-intro h1 {
    font-size: var(--f60);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 20px;
    -webkit-text-stroke: .3px;
}
.prod-row-1-container .prod-links {
    align-self: flex-start;
    margin-top: auto;
}
.prod-row-1-container .prod-links ul {
    margin-top: 20px;
}
.prod-row-1-container .prod-links ul li {
    display: inline-block;
    padding-right: 20px;
}
.prod-row-1-container .prod-links ul li a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-transform: uppercase;
    font-size: 17px;
}
.prod-row-1-container .prod-links ul li#exp,
.prod-row-1-container .prod-links ul li#vid {
    display: none;
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-intro p {}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img:nth-child(2) {
    margin-top: 70px;
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img:nth-child(3) {
    /* margin-top: 70px; */
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img.hide_visibility {
    /*display: none;*/
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img {
    /*height: 25vw; */
}
.prod-row-1-container .prod-row-1-grid .width1 {
    aspect-ratio: 1/1;
}
.prod-row-1-container .prod-row-1-grid .width2 {
    aspect-ratio: 2/1;
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    outline-width: 1px;
    outline-style: solid;
    outline-color: #e3e3e3;
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img a img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* image-rendering: pixelated; */
}
.prod-row-1-container .prod-row-1-grid .prod-row-1-img a img{filter: contrast(110%) brightness(102%);}
/** usato sharpen anche in esperienze**/
div.item .sharpen {
    mix-blend-mode: hard-light;
    /* display:none;*/
    overflow: hidden;
}
div.item .sharpen,
div.item .sharpen::before,
div.item .sharpen::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}
div.item .sharpen::after {
    filter: invert(1);
    opacity: 0.5;
    top: -1px;
    left: -1px;
}
.prod-fake-tit {
    font-size: 55px;
    font-weight: 100;
    line-height: 1;    
	-webkit-text-stroke: .3px;
}
.prod-second-info-cont {}
.prod-row-2-container {
    padding: 70px;
}
.prod-row-2-container .prod-second-info {
    padding: 30px 50px;
    font-size: 17px;
}
.prod-row-2-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 140px;
}
.prod-row-2-grid .prod-row-2-col-1 {}
.prod-row-2-grid .prod-row-2-col-2,
.prod-row-2-grid .prod-row-3-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    grid-gap: 60px;
}
.prod-row-2-grid .prod-row-2-col-2:before,
.prod-row-2-grid .prod-row-3-col-2:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 100%;
    background: #d4d4d4;
    left: -70px;
}
.prod-row-2-grid .prod-row-2-col-2 .col-1 {}
.prod-row-2-grid .prod-row-2-col-2 .col-1 .prod-link-tessuti {
    text-align: right;
    max-width: 250px;
    margin-right: 0;
    margin-left: auto;
}
.prod-row-2-grid .prod-row-3-col-2 .col-1 .prod-link-deigner {
    text-align: right;
}
.prod-row-2-grid .prod-row-2-col-2 .col-2 {}
.prod-row-2-grid .prod-row-2-col-2 .col-2 figure {
    box-shadow: var(--shadow1);
}
.prod-row-2-grid .prod-row-2-col-2 .col-2 figure img {
    display: block;
}
.prod-row-2-grid .prod-link-tessuti {}
.prod-row-2-col-2 .prod-tessuti .tessuti-gallery .sing-tessuto a:hover figure {
    opacity: 1;
}
.prod-row-2-col-2 .prod-tessuti .tessuti-gallery {
    margin-bottom: 20px;
}
.prod-row-2-col-2 .prod-tessuti .tessuti-gallery:last-child {
    margin-bottom: 0px;
}
.prod-row-2-col-2 .col-2 .tessuti-gallery figure {
    box-shadow: none;
}
@media screen and (min-width:1401px) {
    .prod-row-2-col-2 .prod-tessuti .tessuti-gallery {
        grid-template-columns: repeat(5, 1fr);
    }
}
.prod-row-3-container {
    padding: 70px 70px 140px;
    border-top: 1px solid #d4d4d4;
}
.prod-row-3-container .prod-second-info {
    padding: 50px 30px;
    font-size: 17px;
}
.prod-row-3-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 140px;
}
.prod-row-3-grid .prod-row-3-col-1 {}
.prod-row-3-grid .prod-row-3-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    grid-gap: 60px;
}
.prod-row-3-grid .prod-row-3-col-2:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 100%;
    background: #d4d4d4;
    left: -70px;
}
.prod-row-3-grid .prod-row-3-col-2 .col-1 {}
.prod-row-3-grid .prod-row-3-col-2 .col-1 .prod-link-deigner {
    text-align: right;
}
.prod-row-2-grid .prod-row-3-col-2 .col-1 .prod-second-info,
.prod-row-3-grid .prod-row-3-col-2 .col-1 .prod-second-info {
    padding-top: 0;
}
.prod-row-2-grid .prod-row-3-col-2 .col-1 .prod-second-info .prod-fake-tit,
.prod-row-3-grid .prod-row-3-col-2 .col-1 .prod-second-info .prod-fake-tit {
    margin-bottom: 50px;
}
.prod-row-3-grid .prod-row-3-col-2 .col-2 {}
.prod-row-2-grid .prod-row-3-col-2 .col-2 figure,
.prod-row-3-grid .prod-row-3-col-2 .col-2 figure {
    box-shadow: var(--shadow1);
    aspect-ratio: 650/560;
}
.prod-row-2-grid .prod-row-3-col-2 .col-2 figure img,
.prod-row-3-grid .prod-row-3-col-2 .col-2 figure img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.list-download {}
.list-download li {
    padding: 8px 0px;
}
.list-download li:first-child {
    padding-top: 0
}
a.download {
    font-size: 20px;
    color: inherit;
    padding-left: 30px;
    position: relative;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #d4d4d4;
}
a.download:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Capa_1' x='0' y='0' style='enable-background:new 0 0 477.9 477.9' version='1.1' viewBox='0 0 477.9 477.9'%3E%3Cstyle%3E.st0%7Bfill:%237a7a7a%7D%3C/style%3E%3Cpath d='M443.7 307.2c-9.4 0-17.1 7.6-17.1 17.1v102.4c0 9.4-7.6 17.1-17.1 17.1H68.3c-9.4 0-17.1-7.6-17.1-17.1V324.3c0-9.4-7.6-17.1-17.1-17.1S17 314.8 17 324.3v102.4c0 28.3 22.9 51.2 51.2 51.2h341.3c28.3 0 51.2-22.9 51.2-51.2V324.3c.1-9.5-7.5-17.1-17-17.1z' class='st0'/%3E%3Cpath d='M335.9 295.1c-6.6-6.4-17.1-6.4-23.7 0L256 351.3V17.1C256 7.6 248.4 0 238.9 0s-17.1 7.6-17.1 17.1v334.3l-56.2-56.2c-6.8-6.5-17.6-6.4-24.1.4-6.4 6.6-6.4 17.1 0 23.7l85.3 85.3c6.7 6.7 17.5 6.7 24.1 0l85.3-85.3c6.7-6.8 6.5-17.6-.3-24.2z' class='st0'/%3E%3C/svg%3E");
    content: '';
    display: inline-block;
    width: 20px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 2px;
}
a.download.login:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 512 512' viewBox='0 0 512 512'%3E%3Cpath d='M510.7 438.7c-2.3-10.8-12.8-17.8-23.7-15.5-10.8 2.3-17.8 12.8-15.5 23.7 1.3 6.2-.2 12.6-4.2 17.5-2.3 2.8-7.5 7.6-16 7.6H60.7c-8.5 0-13.7-4.8-16-7.6-4-4.9-5.5-11.3-4.2-17.5 20.8-99.7 108.7-172.5 210.2-175 1.8.1 3.5.1 5.3.1 1.8 0 3.6 0 5.3-.1 71.5 1.7 137.6 37.9 177.7 97.7 6.2 9.2 18.6 11.6 27.8 5.5 9.2-6.2 11.6-18.6 5.5-27.7-32.8-48.9-80.5-84.5-134.8-102.4 33-25 54.5-64.5 54.5-109C392 61 331 0 256 0S120 61 120 136c0 44.5 21.5 84.1 54.6 108.9-30.4 10-58.9 25.6-83.8 46.1-45.7 37.6-77.5 90.1-89.5 147.7-3.8 18.1.7 36.6 12.4 50.9 11.6 14.2 28.7 22.4 47 22.4h390.6c18.3 0 35.5-8.2 47-22.4 11.7-14.3 16.2-32.8 12.4-50.9zM160 136c0-52.9 43.1-96 96-96s96 43.1 96 96c0 51.3-40.5 93.3-91.1 95.9h-9.7c-50.7-2.6-91.2-44.6-91.2-95.9z' style='fill:%237a7a7a'/%3E%3C/svg%3E");
}
.prod-row-4-container {
    margin-top: -70px;
    margin-bottom: 140px;
}
.prod-row-4-container .prod-fake-tit {
    padding-left: 70px;
}
.prod-row-4-container .prod-row-4-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 1px;
    padding-top: 30px;
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-intro {
    grid-column: span 4;
    font-size: 20px;
    line-height: 30px;
    padding-top: 70px;
    padding-left: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 80px
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-intro a.btn-arrow-inherit {
    display: inline-block;
    position: absolute;
    right: 140px;
    bottom: 50px
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-intro h2 {
    font-size: var(--f85);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 30px
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-intro p {
    max-width: 400px
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img {
    grid-column: span 2;
    outline-width: 1px;
    outline-style: solid;
    outline-color: #e9e9e9;
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img a img {
    display: block
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-img {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
    width: 100%;
    height: 100%;
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s all;
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img a {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img a:hover .sing-item-img {
    opacity: 0
}
.prod-row-4-container .prod-row-4-grid .prod-row-4-img a span {
    margin-right: 60px;
    margin-bottom: 40px
}
.prod-row-5-container {
    padding: 70px 70px 140px;
    border-top: 1px solid #d4d4d4;
}
.prod-row-5-container .prod-second-info {
    padding: 50px 30px;
    font-size: 17px;
}
.prod-row-5-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 140px;
}
.prod-row-5-grid .prod-row-5-col-1 {}
.prod-row-6-container {
    padding: 40px 70px;
    border-bottom: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
}
.prod-row-6-container .prod-second-info {
    padding: 50px 30px;
    font-size: 17px
}
.prod-row-6-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 30px;
    align-items: center;
}
.prod-row-6-grid .prod-row-6-col-1 {}
.prod-row-6-grid .prod-row-6-col-2 {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 60px;
    align-items: center;
}
.prod-row-6-grid .prod-row-6-col-2 .col-loghi {}
.prod-row-6-grid .prod-row-6-col-2 .col-loghi ul {
    display: inline-grid;
    grid-auto-flow: column;
    grid-gap: 20px 60px;
    align-items: center;
}
.prod-row-6-grid .prod-row-6-col-2 .col-loghi ul li {}
.prod-row-6-grid .prod-row-6-col-2 .col-loghi ul li img {}
.prod-row-6-grid .prod-row-6-col-2 .col-awards {}
.prod-row-6-grid .prod-row-6-col-2 .col-awards ul {}
.prod-row-6-grid .prod-row-6-col-2 .col-awards ul li {}
.prod-row-6-grid .prod-row-6-col-2 .col-awards ul li img {}
/** fine singolo prodotto**/
/** listato esperienze*/
.vc-arc-wide.esperienze {
    background-size: 100% !important;
    background-blend-mode: multiply;
    /*background-repeat: repeat-y !important;*/
    background-attachment: fixed !important;
}
.vc-arc-esp .loop-coll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
}
.vc-arc-wide.esperienze .page-header-container {
    margin-bottom: 70px;
}
.vc-arc-wide.esperienze .page-header .intro {
    font-size: 45px;
    line-height: 1;
    font-weight: 100;
    margin-left: 35px;
    
	-webkit-text-stroke: .3px;
}
.vc-arc-esp .sing-family {}
.vc-arc-esp .sing-family a {
    color: inherit;
}
.vc-arc-esp .sing-family-tit {
    font-size: 30px;
    margin-bottom: 20px;
}
.vc-arc-esp .sing-family-img {
    overflow: hidden;
    /* box-shadow: var(--shadow1) */
}
.vc-arc-esp .sing-family img {
    transition: .5s all;
}
.vc-arc-esp .sing-family a:hover img {
    transform: scale(1.1);
}
.vc-arc-wide.esperienze .loop-coll.iso-grid {
    height: auto !important;
}
.vc-arc-wide.esperienze .sing-family {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: translate(0px, 0px) !important;
}
.vc-arc-wide.esperienze .sing-family-tit h2 {
    margin-right: 30px;
}
.vc-arc-wide.esperienze .sing-family.evidence {}
.vc-arc-wide.esperienze .sing-family.no-evidence {
    display: none;
}
.vc-arc-wide.esperienze .sing-family.no-evidence.active {
    display: block;
}
/** fine listato esperienze*/
/* singola esperienza */
.acf-map {
    height: calc(100vh - 100px);
    width: 95vw;
    margin: auto;
    margin-top: 50px;
}
.vn-prod-type.sing-esp {}
.vn-prod-type.sing-esp .page-header-container {
    grid-template-columns: 1fr;
}
.vn-prod-type.sing-esp .bread-type {
    margin-left: 35px;
}
.vn-prod-type.sing-esp .page-header-container .description {
    grid-template-columns: 1fr 2fr 2fr;
    display: grid;
    grid-gap: 70px;
    margin-left: 35px;
}
.vn-prod-type.sing-esp .page-header-container .description p,
.vn-prod-type.sing-esp .page-header-container .description a {color: #fff;}
.vn-prod-type.sing-esp .page-header-container .description p a {
    text-decoration: underline;
}
.vn-prod-type.sing-esp .page-header-container .description .col-1 {}
.vn-prod-type.sing-esp .page-header-container .description .col-1 a {
    display: block;
    padding-left: 25px;
    margin: 11px auto;
    font-size: 16px;
}
.vn-prod-type.sing-esp .page-header-container .description .col-1 a span {
    right: 0;
    left: 5px;
}
.vn-prod-type.sing-esp .page-header-container .description .col-1 a.map span {
    left: 4px;
}
.vn-prod-type.sing-esp .page-header-container .description .col-2 {}
.vn-prod-type.sing-esp .page-header-container .description .col-3 {}
.esp-row-1-container {}
.esp-row-1-container .esp-row-1-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 1px;
}
.esp-row-1-container .esp-row-1-grid .sizer {
    width: 25vw;
}
.esp-row-1-container .esp-row-1-grid .width1 {
    /*width: 25%;*/
    grid-column: span 2;
}
.esp-row-1-container .esp-row-1-grid .esp-row-1-img a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    outline-width: 1px;
    outline-style: solid;
    outline-color: #e3e3e3;
}
.esp-row-1-container .esp-row-1-grid .esp-row-1-img a img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.esp-row-1-container .esp-row-1-grid .esp-row-1-img a img {filter: contrast(110%) brightness(103%);}
.esp-row-1-container .esp-row-1-grid .width2 {
    /* width: 50%; */
    grid-column: span 4;
}
.esp-row-2-container {}
.esp-row-2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
    grid-gap: 1px;
    margin-bottom: 140px;
}
.esp-row-2-grid .sing-item {
    outline: 1px solid #e3e3e3;
}
.esp-row-2-grid .sing-item.first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}
.esp-row-2-grid .sing-item.first h2 {
    font-size: clamp(1.9rem, 0.7452rem + 2.2436vw, 3.4375rem);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 30px;
    
	-webkit-text-stroke: .3px;
}
.esp-row-2-grid .sing-item.first h3 {
    font-size: 18px;
    line-height: 1.2;
}
.esp-row-2-grid .sing-item.first h3 span {
    display: block;
    font-weight: 400;
}
.esp-row-2-grid .sing-item.element {}
.esp-row-2-grid .sing-item .sing-item-img {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
}
.esp-row-2-grid .sing-item .sing-item-img img {
    display: block;
}
.esp-row-2-grid .sing-item .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 0;
}
.esp-row-2-grid .sing-item .double-link {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px;
    bottom: 10px;
    right: 10px;
    text-align: right;
}
.esp-row-2-grid .sing-item.element>div:hover .double-link {z-index:2}
.esp-row-2-grid .sing-item .double-link .btn-arrow-inherit{
    display: inline-block;
    /* border: 1px solid; */
    /* border-radius: 20px; */
    padding: 3px 40px 3px 20px;
    margin-right: 0;
    margin-left: auto;
}
.esp-row-2-grid .sing-item .double-link .btn-arrow-inherit:hover span{
    right: 10px;
}
.esp-row-2-grid .sing-item .double-link .btn-arrow-inherit span {
    margin-right: auto !important;
    margin-bottom: auto !important;
    right: 13px;
    bottom: 13px;
}
.esp-row-2-grid .sing-item .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.esp-row-2-grid .sing-item .sing-item-text p {}
.esp-row-2-grid .sing-item.element a
.esp-row-2-grid .sing-item.element>div {
    position: relative;
    display: block;
    overflow: hidden;
}
.esp-row-2-grid .sing-item.element>a{display: block;}
.esp-row-2-grid .sing-item.element a:hover {}
.esp-row-2-grid .sing-item.element a:hover .sing-item-img,
.esp-row-2-grid .sing-item.element>div:hover .sing-item-img {
    opacity: 0;
}
.esp-row-2-grid .sing-item.element a span,
.esp-row-2-grid .sing-item.element>div span{
    margin-right: 60px;
    margin-bottom: 40px;
}
.esp-row-2-grid .sing-item.element a:hover .sing-item-text {}
/* fine singola esperienza */
/* singola moodboard */
.vn-prod-type.sing-mood {}
.vn-prod-type.sing-mood .page-header {
    padding-bottom: 10px;
}
.vn-prod-type.sing-mood .page-header-container {
    grid-template-columns: 1fr;
}
.vn-prod-type.sing-mood .bread-type {
    margin-left: 35px;
}
.vn-prod-type.sing-mood .page-header-container .description {
    grid-template-columns: 1fr;
    display: grid;
    grid-gap: 0px;
    margin-left: 0px;
}
.vn-prod-type.sing-mood .page-header-container .description .col-1 {
    margin-left: 35px;
}
.vn-prod-type.sing-mood .page-header-container .description .col-1 a {
    display: block;
    padding-left: 25px;
    margin: 11px auto;
    font-size: 16px;
}
.vn-prod-type.sing-mood .page-header-container .description .col-1 a span {
    right: 0;
    left: 5px;
}
.vn-prod-type.sing-mood .page-header-container .description .col-1 a.map span {
    left: 4px;
}
.vn-prod-type.sing-mood .page-header-container .description .col-2 {}
.vn-prod-type.sing-mood .page-header-container .description .col-3 {}
.mood-row-1-container {
    padding: 30px 70px 70px;
}
.mood-row-1-container .mood-row-1-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 60px;
    margin-left: 35px;
}
.mood-row-1-grid .vn-main-mood {
    grid-template-columns: 1fr 1fr;
    display: grid;
    box-shadow: var(--shadow1);
}
.mood-row-1-grid .col-1 {}
.mood-row-1-grid .vn-main-mood .vn-img-emotion {
    background-repeat: no-repeat;
    background-size: cover;
}
.mood-row-1-grid .vn-main-mood .vn-img-mood {}
.mood-row-1-grid .vn-main-mood .vn-img-mood img {
    padding: 40px 15px 30px;
}
.mood-row-1-grid .col-2 {
    padding-top: 50px;
    max-width: 410px;
}
.mood-row-1-grid .col-2 .vn-btn {
    margin-top: 60px;
}
.mood-row-1-grid .col-2 .btn-mb-new {
    position: relative;
    padding-left: 30px;
    text-decoration: underline;
    cursor: pointer;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}
.mood-row-1-grid .col-2 .btn-mb-new:before {
    content: '';
    display: inline-block;
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/paper-document.svg');
    width: 23px;
    height: 27px;
    background-size: cover;
    position: absolute;
    left: 0;
}
.mood-row-2-container {}
.mood-row-2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
    grid-gap: 1px;
    margin-bottom: 140px;
}
.mood-row-2-grid .sing-item {
    outline: 1px solid #e3e3e3;
}
.mood-row-2-grid .sing-item.first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    outline: none;
}
.mood-row-2-grid .sing-item.first h2 {
    font-size: clamp(1.6rem, 0.7452rem + 2.2436vw, 3.4375rem);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 30px;
}
.mood-row-2-grid .sing-item.first h3 {
    font-size: 18px;
    line-height: 1.2;
}
.mood-row-2-grid .sing-item.first h3 span {
    display: block;
    font-weight: 400;
}
.mood-row-2-grid .sing-item.element {}
.mood-row-2-grid .sing-item .sing-item-img {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
    aspect-ratio: 1/1;
}
.mood-row-2-grid .sing-item .sing-item-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.mood-row-2-grid .sing-item .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mood-row-2-grid .sing-item .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.mood-row-2-grid .sing-item .sing-item-text p {}
.mood-row-2-grid .sing-item.element a {
    position: relative;
    display: block;
    overflow: hidden;
}
.mood-row-2-grid .sing-item.element a:hover {}
.mood-row-2-grid .sing-item.element a:hover .sing-item-img {
    opacity: 0;
}
.mood-row-2-grid .sing-item.element a span {
    margin-right: 60px;
    margin-bottom: 40px;
}
.mood-row-2-grid .sing-item.element a:hover .sing-item-text {}
/* fine singola moodboard */
/** listato designer **/
.vc-arc-wide.designer {
    background-blend-mode: lighten;
    background-repeat: no-repeat !important;
    background-position: top right !important;
    background-attachment: fixed !important;
}
.vc-arc-wide.designer .page-header .intro {
    font-size: 45px;
    line-height: 1;
    font-weight: 100;
    margin-left: 35px;    
	-webkit-text-stroke: .3px;
}
.vc-arc-wide.designer .loop-coll {
    grid-template-columns: 1fr 1fr 1fr;
}
.vc-arc-wide.designer .sing-family figure {
    aspect-ratio: 600/510;
}
.vc-arc-wide.designer .sing-family img {}
/** fine listato designer **/
/** singolo designer**/
.vn-prod-type.sing-des {}
.vn-prod-type.sing-des .page-header {
    background-blend-mode: lighten;
    background-repeat: no-repeat !important;
    background-position: top right !important;
    background-size: auto !important;
    background-attachment: fixed !important;
    padding-bottom: 70px;
}
.vn-prod-type.sing-des .page-header-container {
    grid-template-columns: 1fr;
    grid-gap: 60px;
}
.vn-prod-type.sing-des .page-header .link {
    text-align: left;
    margin-top: -70px;
}
.vn-prod-type.sing-des .page-header .link a {
    display: block;
    padding-left: 35px;
    margin: 11px auto;
}
.vn-prod-type.sing-des .page-header .link a.video {}
.vn-prod-type.sing-des .page-header .link a.idee {
    font-size: 16px;
}
.vn-prod-type.sing-des .page-header .link a span {
    right: 0;
    left: 5px
}
.vn-prod-type.sing-des .page-header .link a.video span {
    top: 0;
    bottom: auto;
    width: 25px;
    left: 0;
}
.vn-prod-type.sing-des .bread-type {
    margin-left: 35px;
}
.vn-prod-type.sing-des .page-header-container .description {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    grid-gap: 30px;
    margin-bottom: 30px;
    margin-top: 60px;
    margin-left: 35px;
}
.vn-prod-type.sing-des .page-header-container .description .col-1 {
    padding-left: 35px;
    padding-right: 20px;
    order: 2;
}
.vn-prod-type.sing-des .page-header-container .description .col-2 {
    padding-right: 35px;
    padding-left: 20px;
    order: 3;
}
.vn-prod-type.sing-des .page-header-container .description .col-3 {
    margin-top: -60px;
    order: 1
}
.vn-prod-type.sing-des #video-container {
    display: none
}
/** fine singolo designer**/
/** pagina tessuti **/
.page-template-page-tessuti {
    background-color: var(--bg-dark);
}
.page-template-page-tessuti .vn-prod-type {}
.page-template-page-tessuti .vn-prod-type .page-header {
    color: #fff;
    /*padding-bottom: 50px;*/
}
.tessuti-anchor {
    padding: 0 70px;
}
.tessuti-buttons {
    margin-bottom: 50px
}
.tessuti-select {
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
    display: none;
}
.tessuti-select select .tessuti-select select {
    padding: 10px;
    background: transparent;
    color: #fff;
    padding-right: 30px;
}
.tessuti-select select option {
    background-color: var(--bg-dark);
}
.tessuti-buttons button {
    background: transparent;
    border-radius: 0;
    color: #fff;
    margin: 0 10px 10px 0;
    border-color: #393939;
    cursor: pointer;
}
.tessuti-buttons button:hover {
    border-color: #fff
}
.tessuti-listing {
    padding: 0 70px 140px;
    color: #fff;
}
.tessuto {
    margin-bottom: 60px;
}
.tessuto .tessuto-main-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px 50px;
    margin-bottom: 30px;
}
.tessuto h2 {
    font-size: 35px;
    line-height: 1;
}
.indicazioni-cont {
    display: flex;
    flex-direction: row;
    grid-gap: 20px 50px;
}
.indicazioni {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1;
    grid-gap: 20px;
}
.indicazioni .indicazioni-txt {}
.indicazioni .indicazioni-ico {
    position: relative;
}
.indicazioni .indicazioni-ico .sing-ico {
    display: inline-block;
    padding-right: 5px;
    position: relative;
}
.indicazioni .indicazioni-ico .sing-ico img {
    display: block;
}
.tessuti-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}
.tessuti-gallery .sing-tessuto {
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
.tessuti-gallery .sing-tessuto a {}
.tessuti-gallery .sing-tessuto figure {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
}
.tessuti-gallery .sing-tessuto a:hover figure {
    opacity: 0
}
.tessuti-gallery .sing-tessuto img {
    display: block;
}
.tessuti-gallery .sing-tessuto .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tessuti-gallery .sing-tessuto .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.tessuti-gallery .sing-tessuto .sing-item-text p {}
/** fine pagina tessuti **/
/** pagina video **/
.page-template-page-video {
    background-color: var(--bg-dark);
}
.page-template-page-video .vn-prod-type .page-header {
    color: #fff;
    padding-bottom: 50px;
}
.video-filters {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    grid-gap: 30px;
}
.video-filters .select-cont {}
.video-filters select {
    padding: 10px 30px 10px 20px;
    background: var(--bg-dark);
    color: #fff;
    border-color: #fff;
}
.video-filters select:focus-visible {
    outline: none;
}
.video-filters select option {}
.vn-list-section {
    padding: 0 70px 70px;
    transition: all .2s;
    color: #fff;
    height: auto;
}
.vn-list-section.fakeHidden {
    padding-bottom: 0;
    opacity: 0;
    height: 0;
}
.vn-list-section .video-titles {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.vn-list-section .video-descrizione {
    margin-bottom: 30px;
}
.vn-list-section .no-video {
    display: none
}
.vn-list-section:last-of-type {
    padding-bottom: 140px;
}
.video-listing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    height: auto !important;
}
.video-listing li {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: translate(0px, 0px) !important;
    height: auto;
}
.video-listing li .vn-videopl-img {
    position: relative;
}
.video-listing li .vn-videopl-img-play {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.video-listing li .vn-videopl-img-over {
    aspect-ratio: 320/180;
}
.video-listing li .vn-videopl-img-over img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.video-listing li .vn-videopl-info {
    padding: 20px 20px 30px;
}
.video-listing li .vn-videopl-tit {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 20px;
}
.video-listing li .vn-videopl-txt {}
/** fine pagina video **/
/** pagina download**/
.page-template-page-download .vn-prod-type .page-header {
    color: #fff;
    padding-bottom: 50px;
}
.page-template-page-download {
    background-color: var(--bg-dark);
}
.download-filters-container {}
.download-filters {
    display: flex;
    flex-direction: row;
    grid-gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
.download-filters button {
    color: inherit;
    background-color: transparent;
    border-radius: 0;
    padding: 10px 15px;
    margin: 0;
    border-color: #fff;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.download-elements-container {
    padding: 0 70px 140px;
}
.download-elements {
    margin-bottom: 60px;
}
.download-elements h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1;
    color: #fff
}
.download-elements-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.download-elements-box.bim {
    grid-template-columns: 1fr;
}
.download-elements-box.bim #syncronia_connect {
    background-color: transparent;
}
.download-elements-box.bim #syncronia_custom_header {
    color: #fff
}
.download-elements-box.bim #syncronia_custom_header .img-responsive {
    display: none;
}
.download-element-box {
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}
.download-element-box figure {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    aspect-ratio: 1/1;
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
}
.download-element-box figure img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.download-element-box .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.download-element-box .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 05px;
    color: #fff;
}
.download-element-box:hover figure {
    opacity: 0;
}
.download-elements-box.no-fade .download-element-box:hover figure {
    opacity: 1;
}
.download-elements-box.no-fade .download-element-box {
    box-shadow: none;
}
.download-elements-box.no-fade .download-element-box .sing-item-text {
    position: relative;
    width: auto;
    height: auto;
    padding: 20px 20px 30px;
}
.download-elements-box.no-fade .video-link {
    cursor: pointer;
}
.download-elements-box.no-fade .item-down,
.download-elements-box.no-fade .video-link-style {
    padding-left: 40px;
    position: relative;
}
.download-elements-box.no-fade .video-link-style:before {
    content: '';
    position: absolute;
    background-image: url(https://varaschin.it/wp-content/uploads/play-video.png);
    width: 30px;
    background-size: contain;
    left: 0;
    top: 50%;
    height: 22px;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
.download-element-box:hover .sing-item-text {}
.download-element-box .item-down {
    display: block;
    position: relative;
    color: #fff;
    padding-left: 20px;
}
.download-elements-box.no-fade .vn-videopl-img-play {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    object-fit: none;
}
.download-element-box .item-down:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Capa_1' x='0' y='0' style='enable-background:new 0 0 477.9 477.9' version='1.1' viewBox='0 0 477.9 477.9'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D%3C/style%3E%3Cpath d='M443.7 307.2c-9.4 0-17.1 7.6-17.1 17.1v102.4c0 9.4-7.6 17.1-17.1 17.1H68.3c-9.4 0-17.1-7.6-17.1-17.1V324.3c0-9.4-7.6-17.1-17.1-17.1S17 314.8 17 324.3v102.4c0 28.3 22.9 51.2 51.2 51.2h341.3c28.3 0 51.2-22.9 51.2-51.2V324.3c.1-9.5-7.5-17.1-17-17.1z' class='st0'/%3E%3Cpath d='M335.9 295.1c-6.6-6.4-17.1-6.4-23.7 0L256 351.3V17.1C256 7.6 248.4 0 238.9 0s-17.1 7.6-17.1 17.1v334.3l-56.2-56.2c-6.8-6.5-17.6-6.4-24.1.4-6.4 6.6-6.4 17.1 0 23.7l85.3 85.3c6.7 6.7 17.5 6.7 24.1 0l85.3-85.3c6.7-6.8 6.5-17.6-.3-24.2z' class='st0'/%3E%3C/svg%3E");
    content: '';
    display: inline-block;
    width: 20px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}
.download-element-box .item-down.login:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 512 512' viewBox='0 0 512 512'%3E%3Cpath d='M510.7 438.7c-2.3-10.8-12.8-17.8-23.7-15.5-10.8 2.3-17.8 12.8-15.5 23.7 1.3 6.2-.2 12.6-4.2 17.5-2.3 2.8-7.5 7.6-16 7.6H60.7c-8.5 0-13.7-4.8-16-7.6-4-4.9-5.5-11.3-4.2-17.5 20.8-99.7 108.7-172.5 210.2-175 1.8.1 3.5.1 5.3.1 1.8 0 3.6 0 5.3-.1 71.5 1.7 137.6 37.9 177.7 97.7 6.2 9.2 18.6 11.6 27.8 5.5 9.2-6.2 11.6-18.6 5.5-27.7-32.8-48.9-80.5-84.5-134.8-102.4 33-25 54.5-64.5 54.5-109C392 61 331 0 256 0S120 61 120 136c0 44.5 21.5 84.1 54.6 108.9-30.4 10-58.9 25.6-83.8 46.1-45.7 37.6-77.5 90.1-89.5 147.7-3.8 18.1.7 36.6 12.4 50.9 11.6 14.2 28.7 22.4 47 22.4h390.6c18.3 0 35.5-8.2 47-22.4 11.7-14.3 16.2-32.8 12.4-50.9zM160 136c0-52.9 43.1-96 96-96s96 43.1 96 96c0 51.3-40.5 93.3-91.1 95.9h-9.7c-50.7-2.6-91.2-44.6-91.2-95.9z' style='fill:%23fff'/%3E%3C/svg%3E");
}
/** fine pagina download**/
/** pagina customer care **/
.page-template-page-ctomercare .vn-prod-type .page-header {}
.vn-page-corporate.customer-care #primary {
    color: #fff;
}
.section-anchor-cc {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
    margin-top: 20px
}
.section-anchor-cc a {
    color: #fff;
    border: 1px solid #fff;
    padding: 7px 40px 7px 10px;
    position: relative;
    transition: all .2s;
}
.section-anchor-cc a:hover {
    background-color: #fff;
    color: var(--bg-dark);
}
.section-anchor-cc a:after {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10.072 8.024 5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z' clip-rule='evenodd' fill='%23fff'/%3E%3C/svg%3E");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    background-size: cover;
    right: 5px;
}
.section-anchor-cc a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10.072 8.024 5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z' clip-rule='evenodd' fill='%232d2d2d'/%3E%3C/svg%3E")
}
.section-customer {
    padding: 0 70px 140px;
}
.section-customer .vn-lista-must-customer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
.section-customer .vn-lista-must-customer li {
    border: 1px solid;
    padding: 40px;
}
.section-customer .vn-lista-must-customer .vn-cc-sing {}
.section-customer .vn-lista-must-customer .vn-cc-img {
    text-align: center;
    margin-bottom: 20px;
}
.section-customer .vn-lista-must-customer .vn-cc-img img {}
.section-customer .vn-lista-must-customer .vn-cc-tit {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
    min-height: 60px;
}
.section-customer .vn-lista-must-customer .vn-cc-txt {}
/** pagina fine customer care **/
/** pagina materiali**/
.page-template-page-materiali .vn-prod-type .page-header,
.page-template-page-mb-2024 .vn-prod-type .page-header {
    color: #fff;
    padding-bottom: 50px;
}
.page-template-page-materiali,
.page-template-page-mb-2024 {
    background-color: var(--bg-dark);
}
.materiali-main-container {
    padding: 0 70px 140px;
    color: #fff;
}
#vn-manutenzione-cat.materiali-main-container {
    padding-bottom: 140px
}
.vn-prod-anchor {
    text-align: center;
    margin: 0px 15px 70px;
}
.vn-prod-anchor .vn-down {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 15px;
    display: inline-block;
    font-size: 16px;
}
.materiali-main-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1;
    color: #fff;
}
.materiali-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.materiali-container .sing-item {
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}
.materiali-container .sing-item a {}
.materiali-container .sing-item figure {
    display: block;
    z-index: 2;
    position: relative;
    transition: all .5s;
    opacity: 1;
}
.materiali-container .sing-item a:hover figure {
    opacity: 0
}
.materiali-container .sing-item img {
    display: block;
}
.materiali-container .sing-item .sing-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.materiali-container .sing-item .sing-item-text h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.materiali-container .item-down {
    position: relative;
    padding-left: 20px;
}
.materiali-container .item-down:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Capa_1' x='0' y='0' style='enable-background:new 0 0 477.9 477.9' version='1.1' viewBox='0 0 477.9 477.9'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D%3C/style%3E%3Cpath d='M443.7 307.2c-9.4 0-17.1 7.6-17.1 17.1v102.4c0 9.4-7.6 17.1-17.1 17.1H68.3c-9.4 0-17.1-7.6-17.1-17.1V324.3c0-9.4-7.6-17.1-17.1-17.1S17 314.8 17 324.3v102.4c0 28.3 22.9 51.2 51.2 51.2h341.3c28.3 0 51.2-22.9 51.2-51.2V324.3c.1-9.5-7.5-17.1-17-17.1z' class='st0'/%3E%3Cpath d='M335.9 295.1c-6.6-6.4-17.1-6.4-23.7 0L256 351.3V17.1C256 7.6 248.4 0 238.9 0s-17.1 7.6-17.1 17.1v334.3l-56.2-56.2c-6.8-6.5-17.6-6.4-24.1.4-6.4 6.6-6.4 17.1 0 23.7l85.3 85.3c6.7 6.7 17.5 6.7 24.1 0l85.3-85.3c6.7-6.8 6.5-17.6-.3-24.2z' class='st0'/%3E%3C/svg%3E");
    content: '';
    display: inline-block;
    width: 20px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}
.materiali-container .sing-item .sing-item-text p {}
.tax-product_material .filter-mat_designer {
    text-align: center;
    margin-top: 50px;
}
.tax-product_material .filter-mat_designer select {}
.tax-product_material .filter-mat_designer select option {
    background-color: var(--bg-dark);
}
.tax-product_material .filter-mat_designer select:focus-visible {
    outline: none;
}
/** fine pagina materiali**/
/** moodboard - parti in comune con materiali **/
.vn-filter-cont.coll-mood {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    grid-gap: 30px;
    display: none;
}
select.select-coll-mood {
    padding: 10px 40px 10px 20px;
    background: var(--bg-dark);
    color: #fff;
    border-color: #fff;
}
select.select-coll-mood {
    outline: none;
}
/** moodboard fine **/
/** news **/
.blog {}
.blog main,
.page-template-page-news main {
    padding-top: 230px;
    background-image: url(https://varaschin.it/wp-content/uploads/sfondo-news.jpg);
    background-attachment: fixed;
    background-size: 100vw;
    color: #fff;
    padding-bottom: 150px;
}
.vn-prod-type.news {}
.news-listing-container {
    padding-bottom: 50px;
}
.news-listing.loop-coll {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.news-listing.loop-coll .sing-item {
    /* overflow: hidden; */
    height: 100%;
    grid-column: span 2;
}
.news-listing.loop-coll .sing-news.type-post {
    outline: 1px solid #343434;
    background-color: #3f3e41;
    transition: all .2s;
}
.news-listing.loop-coll .sing-news.type-post:hover {
    background-color: #333237;
}
.news-listing.loop-coll .sing-news.sing-item a {
    display: block;
    height: 100%;
}
.news-listing.loop-coll .sing-item .sing-news-img {}
.news-listing.loop-coll .sing-item .sing-news-img figure {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.news-listing.loop-coll .sing-news.sing-item a:hover img {
    transform: scale(1.1);
}
.news-listing.loop-coll .sing-item .sing-news-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .2s
}
.news-listing.loop-coll .sing-item .sing-news-info {
    padding: 50px 50px 100px;
}
.news-listing.loop-coll .sing-item .sing-news-info h2 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 20px;
}
.news-listing.loop-coll .sing-item .sing-news-info p {
    font-size: 18px;
    line-height: 1.4;
}
.news-listing.loop-coll .sing-item .sing-news-info span {
    margin-right: 60px;
    margin-bottom: 40px;
}
.news-listing.loop-coll .sing-item.first-item {
    padding: 0 70px 80px;
    outline: none;
    position: relative;
    background-color: transparent;
}
.news-listing.loop-coll .sing-item.first-item a {
    text-align: right;
    display: inline-block;
    position: absolute;
    right: 70px;
    bottom: 70px;
    line-height: 1;
}
.news-listing.loop-coll .sing-item.first-item a span {
    bottom: -15px;
}
.news-listing.loop-coll .sing-item h1 {
    margin-left: 0.4em;
    margin-bottom: 30px;
}
.news-listing.loop-coll .sing-item h1 span {
    font-size: 1.5em;
    padding-left: 50px;
}
.news-listing.loop-coll .sing-item .intro {
    font-size: 45px;
    line-height: 1;
    font-weight: 100;
    margin-left: 35px;
        -webkit-text-stroke: .3px;
}
.news-listing.loop-coll .sing-item .intro .intro-2 {
    font-size: 20px;
    line-height: 1.5;
    max-width: 500px;
}
.vn-btn.vn-load {}
.vn-btn.vn-load a {
    text-align: right;
    display: inline-block;
    transform: translateX(-50%);
    margin-left: 50%;
}
.single-post-main-container {
    display: grid;
    grid-template-columns: 400px auto;
    padding: 250px 70px 140px 105px;
    grid-gap: 100px;
    background-image: url(https://varaschin.it/wp-content/uploads/sfondo-news.jpg);
    background-attachment: fixed;
    background-size: 100vw;
    color: #fff;
}
.single-post-main-container main {
    order: 2;
    max-width: 850px;
    position: relative;
    font-size: 18px;
}
.single-post-main-container main .fake-news-intro {
    display: none
}
#secondary .fake-news-intro {
    margin-bottom: 30px
}
.single .dropandspace {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
.single-post-main-container aside {}
.single-post-main-container aside .widget-title {
    font-size: 45px;
    font-weight: 100;
}
.single-post-main-container aside .rpwe-ul {}
.single-post-main-container aside .rpwe-ul li {
    border-bottom: 0;
}
.single-post-main-container aside .rpwe-ul li h3 {
    font-size: 22px !important;
    font-weight: 400;
    line-height: 1;
}
.single-post-main-container aside .rpwe-ul li div {
    font-size: 18px;
    font-weight: 300;
}
.fake-news-intro {}
.fake-news-intro .tit-slash {
    font-size: var(--f85);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 30px;
}
.fake-news-intro .backlink {}
.fake-news-intro .backlink .btn-arrow-inherit span {
    left: -20px;
    bottom: -5px;
}
.fake-news-intro .backlink .btn-arrow-inherit:hover span {
    left: -25px;
}
.fake-news-intro .backlink .btn-arrow-inherit span svg {
    width: 20px;
    transform: rotate(180deg);
}
.single-post {}
.single-post .single-post-container {}
.single-post-container h1 {
    margin-bottom: 30px;
}
.single .single-post-container .vn-news-media-top {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}
.single .single-post-container .vn-news-media-top .img-responsive {
    display: block;
    box-shadow: var(--shadow1);
}
.single .single-post-container .embed-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    padding-bottom: 56.25%;
    box-shadow: var(--shadow1);
}
.single .single-post-container .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.social-share.post {
    position: absolute;
    right: -35px;
}
.social-share.post .heateor_sss_sharing_ul {}
.social-share.post .heateor_sss_sharing_ul a {
    display: block !important;
    float: none;
}
/** fine news **/
/** outdoor therapy*/
.post-type-archive-outdoor_therapy {}
.post-type-archive-outdoor_therapy main {
    padding-top: 230px;
    background-image: url(https://varaschin.it/wp-content/uploads/sfondo-blog.jpg);
    background-attachment: fixed;
    background-size: 100vw;
    color: #fff;
    padding-bottom: 150px;
}
.news-listing.loop-coll .sing-item.first-item.type-outdoor_therapy {
    grid-column: span 4;
    background-color: transparent;
}
.news-listing.loop-coll .sing-news.type-outdoor_therapy {
    background-color: #324156;
    outline: 1px solid #455974;
    transition: all .2s;
}
.news-listing.loop-coll .sing-item.type-outdoor_therapy .intro {
    margin-left: 90px;
}
.news-listing.loop-coll .sing-news.type-outdoor_therapy:hover {
    background-color: #293649;
}
.single-outdoor_therapy .single-post-main-container {
    background-image: url(https://varaschin.it/wp-content/uploads/sfondo-blog.jpg);
}
/** fine outdoor therapy*/
/** sponsorship **/
.post-type-archive-sponsorship main {
    padding-top: 230px;
    background-image: url(https://varaschin.it/wp-content/uploads/sfondo-news.jpg);
    background-attachment: fixed;
    background-size: 100vw;
    color: #fff;
    padding-bottom: 150px;
}
.news-listing.loop-coll .sing-item.first-item.type-sponsorship {
    grid-column: span 4;
    background-color: transparent;
}
.news-listing.loop-coll .sing-news.type-sponsorship {
    outline: 1px solid #343434;
    background-color: #3f3e41;
    transition: all .2s;
}
.news-listing.loop-coll .sing-news.type-sponsorship:hover {
    background-color: #333237;
}
.single-sponsorship .single-post-main-container {
    background-image: url(https://varaschin.it/wp-content/uploads/sfondo-news.jpg);
}
/** fine sponsorship **/
/** pagina azienda**/
.vn-page-corporate {}
.vn-page-corporate.azienda #primary {
    background-image: url(https://varaschin.it/wp-content/uploads/patern-azienda.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
}
.vn-page-corporate #primary h2 {
    font-size: 45px;
    line-height: 1;
    font-weight: 100;
    margin-bottom: 20px;
	-webkit-text-stroke: .3px;
}
.vn-page-corporate .page-header {
    padding: 250px 70px 70px 105px;
}
.vn-page-corporate .page-header h1 {
    margin-bottom: 10px;
    max-width: 80vw;
}
.section-alternate {
    display: grid;
    grid-gap: 70px;
    padding: 0 70px 70px;
}
.section-alternate .lc-row {
    display: grid;
    grid-template-columns: 8fr 4fr;
    grid-gap: 70px;
    align-items: center;
}
.section-alternate .lc-row.inverted {
    grid-template-columns: 4fr 8fr;
}
.section-alternate .lc-row .lcr-img {}
.section-alternate .lc-row .lcr-img img {
    box-shadow: var(--shadow1)
}
.section-alternate .lc-row .lcr-content {
    max-width: 450px;
    padding-left: 35px;
}
.section-alternate .lc-row.inverted .lcr-content {
    order: -1;
}
.section-mission-vision {
    padding: 0 70px 140px;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-gap: 70px;
}
.section-mission-vision .sing-element {}
.section-mission-vision .sing-element.mission {
    text-align: right;
    grid-column-start: 2;
    grid-column-end: 6;
}
.section-mission-vision .sing-element.vision {
    grid-column-start: 6;
    grid-column-end: 10;
}
/** fine pagina azienda**/
/** partner **/
.vn-page-corporate.partner #primary {
    background-image: url(https://varaschin.it/wp-content/uploads/bg-collaborazioni.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    background-color: #303843;
    background-position: top right;
}
.vn-page-corporate.partner #primary h2 {
    min-height: 90px;
}
.section-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 70px 140px;
    grid-gap: 70px;
}
.section-partners .sing-partner {}
.section-partners .sing-partner-intro {
    padding: 0 35px;
}
.section-partners .sing-partner-intro h2 {}
.section-partners p.enfasi {
    font-size: 30px;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 30px;
	-webkit-text-stroke: .3px;
}
.section-partners .sing-partner-img {}
.section-partners .sing-partner-img img {
    box-shadow: var(--shadow1);
    width: 100%;
    display: block;
}
.section-partners .sing-partner-text {
    padding: 30px 35px;
}
.section-partners .sing-partner-text p {}
.section-partners .sing-partner-text a {
    margin-top: 50px;
    display: inline-block;
}
/** fine partner **/
/** eco-formazione **/
.vn-page-corporate.eco-formazione #primary {
    background: var(--bg-dark);
    color: #fff;
}
.vn-page-corporate.eco-formazione .page-header {}
.section-eco-formazione-container {
    padding: 0 70px 140px;
}
.section-eco-formazione {}
.section-eco-formazione figure {
    max-width: 740px;
    padding: 20px;
    background-color: #fff;
    margin-top: 70px;
}
.section-eco-formazione figure img {}
/** fine eco-formazione **/
/** qualita **/
.vn-page-corporate.qualita #primary {
    background-image: url(https://varaschin.it/wp-content/uploads/bg-politica-qualita.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    background-color: #354c42;
    background-position: top right;
    padding-bottom: 70px;
}
.vn-page-corporate.qualita a.download {
    margin-top: 20px;
    display: inline-block;
}
.vn-page-corporate.qualita a.download:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Capa_1' x='0' y='0' style='enable-background:new 0 0 477.9 477.9' version='1.1' viewBox='0 0 477.9 477.9'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D%3C/style%3E%3Cpath d='M443.7 307.2c-9.4 0-17.1 7.6-17.1 17.1v102.4c0 9.4-7.6 17.1-17.1 17.1H68.3c-9.4 0-17.1-7.6-17.1-17.1V324.3c0-9.4-7.6-17.1-17.1-17.1S17 314.8 17 324.3v102.4c0 28.3 22.9 51.2 51.2 51.2h341.3c28.3 0 51.2-22.9 51.2-51.2V324.3c.1-9.5-7.5-17.1-17-17.1z' class='st0'/%3E%3Cpath d='M335.9 295.1c-6.6-6.4-17.1-6.4-23.7 0L256 351.3V17.1C256 7.6 248.4 0 238.9 0s-17.1 7.6-17.1 17.1v334.3l-56.2-56.2c-6.8-6.5-17.6-6.4-24.1.4-6.4 6.6-6.4 17.1 0 23.7l85.3 85.3c6.7 6.7 17.5 6.7 24.1 0l85.3-85.3c6.7-6.8 6.5-17.6-.3-24.2z' class='st0'/%3E%3C/svg%3E");
    content: '';
    display: inline-block;
    width: 20px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 2px;
}
.section-poilitca-intro {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 0 70px 105px;
    width: 50vw;
}
.vn-page-corporate #primary .section-poilitca-intro h2 {
    min-height: auto;
}
.section-poilitca-intro p {}
/** fine qualita **/
/** territorio **/
.vn-page-corporate.territorio #primary {
    background-image: url(https://varaschin.it/wp-content/uploads/bg-territorio.jpg);
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    color: #fff;
    background-color: #354c42;
    background-position: top center;
    padding-bottom: 70px;
    background-color: #474f24;
    background-size: contain;
}
.vn-page-corporate.territorio .page-header h1 {
    max-width: 1000px;
    line-height: .78;
}
.vn-page-corporate.territorio .page-header h1 span {
    font-size: 1.2em;
    font-weight: 300;
}
.section-territorio {}
.section-territorio div {
    max-width: 1100px;
    padding: 0 30px 70px;
    margin: auto;
    text-align: center;
}
.section-territorio div p {
    font-size: 45px;
    font-weight: 100;
    line-height: 1.2;
}
.section-territorio div p.no-enfasi {
    font-size: 30px;
}
.section-territorio div span {}
/** fine territorio **/
/** privacy **/
.vn-page-corporate.privacy #primary {
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    background-color: var(--bg-dark);
    background-position: top right;
}
.vn-page-corporate.privacy .section-privacy {
    padding: 0 70px 140px;
}
.vn-page-corporate.privacy .section-privacy ul {
    list-style-type: disc;
    margin: 1em 0 1em 1em;
}
/** fine privacy **/
/** awards **/
#primary.awards {
    background-image: url(https://varaschin.it/wp-content/uploads/bg-awards.jpg);
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    color: #fff;
    background-color: #324156;
    background-position: top right;
    padding-bottom: 70px
}
.loop-prod-type.awards {}
.sing-prod.award {
    color: var(--main-color);
    background-color: #fff;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sing-prod.award .btn-arrow-inherit {
    position: relative;
    display: inline-block;
}
.sing-prod.award .btn-arrow-inherit span {
    margin-right: auto;
    margin-bottom: auto;
}
.sing-prod.award .sing-prod-info {
    /* display: flex; */
    flex-direction: column;
    /* height: 100%; */
    padding-bottom: 130px;
    position: relative;
    height: 100%;
}
.sing-prod.award .sing-prod-info .awards-desc {
    /* flex-grow: 1; */
    /* margin-bottom: 10px; */
    font-size: 18px;
}
.sing-prod.award .sing-prod-info .awards-imgs {
    position: absolute;
    bottom: 35px;
}
.sing-prod.award .sing-prod-info .awards-imgs ul {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.sing-prod.award .sing-prod-info .awards-imgs ul li {
    height: 50px;
}
.sing-prod.award .sing-prod-info .awards-imgs ul li img {
    display: block;
    width: auto;
    height: 100%;
}
/** fine awards **/
.v-form {}
.v-form input:focus-visible {
    outline: none
}
.v-form input[type="text"],
.v-form input[type="email"],
.v-form input[type="tel"],
.v-form textarea {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 10px;
    border-radius: 0;
    font-family: 'Platform';
    font-weight: 300;
    width: 100%;
}
.v-form .vn-txt-upload {
    font-size: 13px;
}
.v-form input[type="text"]::placeholder,
.v-form input[type="email"]::placeholder,
.v-form input[type="tel"]::placeholder,
.v-form textarea::placeholder {
    color: #fff
}
.v-form .row {}
.v-form .col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px;
}
.v-form .col-2 > div:nth-child(1) {
    margin-right: 10px
}
.v-form .col-2 > div:nth-child(2) {
    margin-left: 10px
}
.v-form .custom-select {
    width: 100%;
}
.v-form .custom-select select {
    width: 100%;
    border-radius: 0;
    padding: 8px 10px;
}
.v-form .custom-select:before {
    transform: rotate(90deg);
    top: 6px;
}
.v-form .custom-select select option {}
.footer-col-2 .v-form .custom-select select option {
    background-color: #4e6958;
}
.v-form .col-1 {}
.v-form .col-1 .vn-form-sing {
    margin-bottom: 10px;
}
.v-form .col-1 .dnd-upload-image {
    border-color: #fff;
    background-color: #fff;
}
.v-form .col-1 .dnd-upload-status .dnd-upload-image span.file {
    /* mix-blend-mode: normal; */
    /* background-color: #fff; */
}
.v-form .col-1 .dnd-upload-status .dnd-upload-details .name {
    color: #fff;
    font-size: 14px;
    flex-direction: column;
    padding-right: 20px;
}
.v-form .col-1 .dnd-upload-status .dnd-upload-details .name span {
    display: block;
    max-width: 280px;
}
.v-form .col-1 .dnd-upload-status .dnd-upload-details .name em {
    display: block;
}
.v-form .col-1.submit {
    margin-top: 10px;
}
.v-form .col-1.submit input {
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 0 30px 5px 0;
    background-image: url(https://varaschin.it/wp-content/themes/varaschin/img/arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px 14px;
    background-position: bottom right;
    text-transform: uppercase;
}
.v-form .wpcf7-list-item {
    margin-left: 0;
    font-size: 12px;
}
.v-form .my-mc4wp label {
    font-size: 12px;
}
.v-form .my-mc4wp label span {
    padding-left: 5px;
}
.v-form .wpcf7-list-item a {
    color: inherit;
    text-decoration: underline
}
/** login reset register */
/* fix for tml update 20230221  */
.page-login .tml-field-wrap label {
    display: none;
}
.tml .tml-checkbox + .tml-label {
    font-size: 13px
}
.tml .tml-field-wrap {
    margin-bottom: 10px;
}
.tml-field-wrap input[type="text"],
.tml-field-wrap input[type="email"],
.tml-field-wrap input[type="password"] {
    display: block;
    width: 100% !important;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: transparent;
    background-image: none;
    border: 1px solid #fff;
    -webkit-box-shadow: none !important;
    border-radius: 0;
    outline: none;
    font-family: "Platform";
    font-size: 16px;
    font-weight: 300;
    color: #58595b;
    text-transform: none !important;
    box-shadow: none;
    border-radius: 0;
    outline: none;
    font-family: "Platform";
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}
.tml-field-wrap input[type="text"]::placeholder,
.tml-field-wrap input[type="email"]::placeholder,
.tml-field-wrap input[type="password"]::placeholder {
    color: #fff;
}
.tml-field-wrap.tml-reg_passmail-wrap {
    display: none;
}
.tml-submit-wrap button[type="submit"] {
    background: transparent;
    color: #fff;
    padding: 10px 20px 0 0 !important;
    border-radius: 0;
    font-family: "Platform";
    font-size: 20px;
    font-weight: 300;
    border: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    position: relative;
    cursor: pointer
}
.tml-submit-wrap button[type="submit"]:after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 450 316.7' viewBox='0 0 450 316.7'%3E%3Cpath d='M291.7 291.7 425 158.3m0 0L291.7 25M425 158.3H25' style='fill:none;stroke:%23fff;stroke-width:50;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:133.3333'/%3E%3C/svg%3E");
    width: 21px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: -10px;
    bottom: -3px;
    transition: all .2s;
}
.tml-submit-wrap button[type="submit"]:hover:after {
    right: -20px;
}
.tml-links {
    list-style: none;
}
.tml-links li a {
    line-height: initial;
    font-family: 'Platform';
    font-weight: 300;
    position: relative;
    margin: 0px auto !important;
    display: inline-block;
    font-size: 16px;
}
.tml-links li a::after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 450 316.7' viewBox='0 0 450 316.7'%3E%3Cpath d='M291.7 291.7 425 158.3m0 0L291.7 25M425 158.3H25' style='fill:none;stroke:%23fff;stroke-width:50;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:133.3333'/%3E%3C/svg%3E");
    width: 21px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: -30px;
    bottom: -3px;
    transition: all .2s;
}
.tml-links li a:hover::after {
    right: -40px;
}
.tml-links {
    display: grid;
    gap: 10px;
    place-self: center;
    margin: 0 auto;
    margin-top: 50px;
}
.tml-links li a:hover {}
.tml {
    /*max-width: 420px;*/
    margin: 0 auto;
}
.tml-submit-wrap {
    text-align: left;
}
.tml-activity-wrap,
.tml-country-wrap {
    display: inline-block;
    position: relative;
    width: 100%;
}
.tml-activity-wrap label,
.tml-country-wrap label {
    display: none !important;
}
.tml-activity-wrap select,
.tml-country-wrap select {
    -webkit-appearance: none;
    background: transparent;
    padding: 6px 40px 6px 12px;
    color: #fff;
    border-color: #fff;
}
.tml-activity-wrap:before,
.tml-country-wrap:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10.072 8.024 5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z' clip-rule='evenodd' fill='%23fff'/%3E%3C/svg%3E");
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 9;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(90deg);
    background-size: contain;
    right: 5px;
    top: 50%;
}
.tml-activity-wrap select option,
.tml-country-wrap select option {
    background: #5292d2;
}
.tml-action-login {}
.page-template-page-download_new #main_container,
.tml-action-login #main_container,
.tml-action-register #main_container,
.tml-action-lostpassword #main_container,
.tml-action-resetpass #primary {
    color: #fff;
    padding-bottom: 200px;
    padding-top: 250px;
    padding-left: 70px;
    background: #6f867e;
    padding-right: 70px;
}
.tml-action-resetpass #primary .tml.tml-resetpass {
    max-width: 500px;
}
.page-template-page-download_new .page-intro .cols,
.tml-action-login .page-intro .cols,
.tml-action-register .page-intro .cols,
.tml-action-lostpassword .page-intro .cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    grid-gap: 80px;
    margin-top: 60px;
}
.tml-action-login .page-intro .col-1 {}
.tml-action-login .page-intro .col-2,
.tml-action-register .page-intro .col-2 {}
/** fine login reset register */
/** contatti */
.vn-page-contatti {}
.vn-page-contatti #primary {
    background: #4b627b;
    color: #fff;
}
.vn-page-contatti.pageIT-49875 #primary {
    background: #4d7067
}
.vn-page-contatti .vn-contatti-cont {
    padding: 250px 70px 70px 105px;
}
.vn-page-contatti .vn-contatti {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    grid-gap: 100px;
    grid-template-areas:
        'c1 c2 c3';
    max-width: 1600px;
}
.vn-page-contatti .vn-contatti > .col-1 {
    grid-area: c1;
    margin-top: -20px;
}
.vn-page-contatti .vn-contatti > .col-1 p {
    font-size: 45px;
    font-weight: 100;
    line-height: 1;
        -webkit-text-stroke: .3px;
}
.vn-page-contatti .vn-contatti > .col-2 {
    grid-area: c2;
    max-width: 400px;
}
.vn-page-contatti .vn-contatti > .col-2 .vn-cont-azienda-tit {
    font-weight: 400;
    font-size: 24px;
}
.vn-page-contatti .vn-contatti > .col-2 .vn-cont-marker {
    position: relative;
    padding-left: 50px;
    display: inline-block;
}
.vn-page-contatti .vn-contatti > .col-2 .vn-cont-marker:before {
    content: '';
    display: inline-block;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='enable-background:new 0 0 800 800' viewBox='0 0 800 800'%3E%3Cpath d='m389.8 0-20.2 2.1-19.8 4.1-19.4 6.1-18.6 7.9-17.7 9.8-16.6 11.6-15.4 13.3-14 14.7-12.3 15.9-10.8 17.2-8.9 18.2-7 19.1-5.1 19.5-3 20.1-1 20.2 1 32.7 3 32.7 5.2 32.3 7.2 32 9.1 31.5 11.2 30.9 13 30 14.9 29.1 16.7 28.2 18.5 27.1 20.2 25.9 21.7 24.5h.1l9.6 8.7 11 7 11.9 5.2 12.7 3.2 13 1.3 13-1.3 12.6-3.2 12-5.2 11-7 9.7-8.7 21.7-24.5 20.1-25.9 18.6-27.1 16.6-28.2 14.9-29.1 13-30 11.2-30.9 9.2-31.5 7.1-32 5.2-32.3 3-32.7 1.1-32.7-1.1-20.2-3-20.1-5-19.5-7.1-19.1-8.9-18.2-10.6-17.2-12.4-15.9-14.1-14.7-15.4-13.3L505.8 30 488 20.2l-18.7-7.9L450 6.2l-19.8-4.1L410 0h-20.2zm10.1 39.8 17.9 1 17.7 3 17.3 5 16.5 6.9 15.8 8.7 14.6 10.4 13.4 12 12 13.4 10.4 14.6 8.7 15.7 6.9 16.6 5 17.2 3 17.7.9 17.9-.9 30.3-2.9 30.1-4.8 29.8-6.6 29.6-8.5 29L526 377l-12.1 27.8-13.8 26.9-15.5 26-17 25-18.7 23.8-20 22.7-6.2 5.4-7 3.9-7.7 2.3-8.1 1.1-8.1-1.1-7.7-2.3-7-3.9-6.2-5.4-20-22.7-18.7-23.8-17-25-15.5-26-13.8-26.9-12.1-27.8-10.2-28.4-8.5-29-6.6-29.6-4.8-29.8-2.9-30.1-.9-30.3 1-17.9 3-17.7 4.9-17.2 6.9-16.6 8.8-15.7 10.4-14.6 12-13.4 13.4-12 14.6-10.4 15.7-8.7 16.6-6.9 17.2-5 17.7-3 17.8-.9zm-3.3 80-12.7 1.6-12.3 3.7-11.6 5.4-10.6 7.3-9.2 8.9-7.7 10.3-6 11.5-4.1 12.2-2 12.7v13l2 12.7 4.1 12.2 6 11.4 7.7 10.3 9.2 8.8 10.6 7.3 11.6 5.5 12.3 3.6 12.7 1.6 12.9-.2 12.7-2.7 12-4.6 11.2-6.4 10-8.1 8.5-9.6 6.9-10.9 5-11.8 3.1-12.5 1-12.9v-.1l-1-12.8-3.1-12.5-5-11.9-6.9-10.9-8.5-9.6-10-8.3-11.2-6.4-12-4.5-12.7-2.7-12.9-.6zm3.3 40 8.8 1.1 8.5 3 7.6 4.8 6.4 6.3 4.8 7.5 2.9 8.5 1 8.9-1 8.8-2.9 8.5-4.8 7.6-6.4 6.4-7.6 4.8-8.5 3-8.8 1-8.9-1-8.5-3-7.5-4.8-6.3-6.4-4.8-7.6-3-8.5-1-8.8 1-8.9 3-8.5 4.8-7.5 6.3-6.3 7.5-4.8 8.5-3 8.9-1.1zM207 424.6l-18.8 5.5-18.7 6.2-18.4 6.9-18.2 7.7-17.7 8.4-17.2 9.3-16.7 10.3-16 11.4L50 502.9l-13.9 13.8-6.4 7.4-6 7.9-5.5 8-4.8 8.6-4.4 8.7-3.5 9.2-2.7 9.5-1.8 9.7-1 9.8.1 9.9 1 9.8 2 9.7 2.9 9.4 3.6 9.1 4.3 8.8 5.1 8.5 5.5 8 6 7.8L43.9 691l14.7 13 15.6 11.8 16.5 10.8 17 9.8 17.6 8.8 18 8 18.4 7.2 18.5 6.4 18.8 5.9 18.9 5.2 19.1 4.5 19.3 4.1 19.4 3.4 19.4 2.9 39.1 4.2 39.2 2.4 39.2.5 39.4-1.6 39.1-3.6 38.8-5.5 19.3-3.6 19.3-4.2 19-4.7 19-5.3 18.8-6.1 18.4-6.6 18.2-7.4 17.9-8.3 17.2-9 17-10 16.2-11.1 15.4-12.2 14.3-13.4 6.7-7.3 6.2-7.6 5.9-7.9 5.2-8.3 4.7-8.7 3.9-9 3.1-9.4 2.4-9.5 1.5-9.8.5-9.8-.4-9.1-1.2-9-2-8.8-2.7-8.6-3.4-8.4-4-8.1-4.5-7.8-5.1-7.5-11.4-14.1-12.6-12.9-13.6-11.7-14.5-10.8-15.2-9.8-15.6-8.9-16.2-8.3-16.4-7.5-16.8-6.8-17-6.2-17.1-5.6-17.4-5.1v-.4l-8.5 18.5-9.2 18.1 29.4 8.5 28.8 10.3 14.1 5.9 13.8 6.4 13.7 7 13.3 7.5 12.8 8.4 12.3 9.1 11.6 9.9 10.7 11 9.5 11.9 4.1 6.5 3.6 6.7 3 7 2.3 7.3 1.5 7.5.5 7.7-.5 8.5-1.8 8.3-2.7 8-3.7 7.7-4.3 7.3-4.9 7-11.1 12.8-12.7 11.6-13.4 10.5L691 691l-14.7 8.5-15.1 7.9-15.5 7-15.7 6.5-15.9 5.8-16.2 5.3-16.3 4.6-33 8-33.4 6.2-33.7 4.6-33.9 2.8-34 1.4-34-.2-33.9-1.6-33.8-3.3-33.8-4.8-33.3-6.5-33-8.4-16.2-5-16.1-5.4-15.9-6.1-15.6-6.7-15.3-7.3-15-8-14.4-9-14-9.8-13-10.8-12-12.2L59 648l-5-6.9-4.5-7.2-3.8-7.6-3-8-2-8.3-.9-8.4.4-8.5 1.6-8.4 2.4-8 3.4-7.7 4.2-7.5 4.8-7 5.3-6.7 11.7-12.3 12.8-11.2 13.8-10 14.3-9.1 14.9-8.3 15.2-7.6 15.5-6.7 15.9-6.2 16-5.5 16.2-5 16.4-4.6-9.1-18.1-8.5-18.6z' style='fill:%23fff'/%3E%3C/svg%3E");
    width: 40px;
    height: 40px;
    left: 0;
    top: 8px;
}
.vn-page-contatti .vn-contatti > .col-3 {
    grid-area: c3;
    padding: 0 30px;
}
.vn-page-contatti .vn-contatti > .col-3 .v-form .col-2 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
}
.vn-page-contatti .vn-contatti > .col-3 .v-form .custom-select select option {
    background: #4b627b
}
.vn-page-contatti .vn-contatti > .col-3 .v-form .col-2 > div {
    margin-left: 0;
    margin-right: 0;
}
/** fine contatti */
/** ricerca **/
body.search {}
.search-no-results .vn-prod-type.term-type .page-header {
    padding-bottom: 140px;
}
.vn-search-search {}
.vn-search-search form {
    margin-top: 10px;
    display: flex;
}
.vn-search-search form input {
    height: 40px;
    border-radius: 0;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px;
}
.vn-search-search form input:focus,
.vn-search-search form input:focus-visible,
.vn-search-search form input::placeholder {
    color: inherit;
    outline: none;
}
.vn-search-search button {
    padding: 0;
    background: var(--bg-dark);
    height: 40px;
    border: none;
    width: 40px;
    position: relative;
    cursor: pointer;
}
.vn-search-search button img {
    width: 24px;
    position: absolute;
    left: 8px;
    top: 8px;
}
.vn-search-search button span {}
.vn-search-search button span:before {
    content: '';
    display: inline-block;
}
/** fine ricerca **/
/*** footer ***/
.footer-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    font-size: 15px;
    line-height: 20px;
    margin-top: -70px;
    z-index: 10;
    position: relative;
}
.footer-logo-green {height: 38px; width:auto;}
.link-green-site {}
.link-green-site img{height: 38px; width:auto;margin-left: 5px;}
.footer-container.form-disable {
    margin-top: 0;
}
.footer-container a {
    color: var(--main-color);
}
.footer-col-1 {
    background: #f3f2f0;
    margin-top: 70px;
    padding: 70px;
}
.form-disable .footer-col-1 {
    margin-top: 0;
}
.footer-col-1 .footer-logo {
    margin-bottom: 30px;
}
.footer-col-1 .footer-links {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    column-gap: 15px;
}
.footer-col-1 .footer-links .footer-links-cont {
    margin-bottom: 30px;
}
.footer-col-1 .footer-links .footer-links-cont.mini {
    font-weight: 400
}
.footer-col-1 .footer-links .footer-links-cont.piattaforme p {
    font-weight: 400
}
.m-credits{padding-top:10px}
.footer-col-1 .footer-links .footer-links-cont.social {}
.footer-col-1 .footer-links .footer-links-cont.social p {}
.footer-col-1 .footer-links .footer-links-cont.social ul {}
.footer-col-1 .footer-links .footer-links-cont.social li {
    display: inline-block;
    padding-right: 5px;
}
.footer-col-1 .footer-links .footer-links-cont.social li a {
    background-repeat: no-repeat;
    font-size: 0;
    width: 22px;
    height: 22px;
    display: inline-block;
    line-height: 0;
    vertical-align: top;
    opacity: 0.7;
    transition: all .2s ease-in-out;
}
.footer-col-1 .footer-links .footer-links-cont.social li a:hover {
    opacity: 1
}
.footer-col-1 .footer-links .footer-links-cont.social li.youtube {}
.footer-col-1 .footer-links .footer-links-cont.social li.pinterest {}
.footer-col-1 .footer-links .footer-links-cont.social li.facebook {}
.footer-col-1 .footer-links .footer-links-cont.social li.instagram {}
.footer-col-1 .footer-links .footer-links-cont.social li.linkedin {}
.footer-col-1 .footer-links .footer-links-cont.social li.spotify {}
.footer-col-1 .footer-links .footer-links-cont.social li.youtube a {
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/ico-social-youtube.svg');
}
.footer-col-1 .footer-links .footer-links-cont.social li.pinterest a {
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/ico-social-pinterest.svg');
}
.footer-col-1 .footer-links .footer-links-cont.social li.facebook a {
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/ico-social-facebook.svg');
}
.footer-col-1 .footer-links .footer-links-cont.social li.instagram a {
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/ico-social-instagram.svg');
}
.footer-col-1 .footer-links .footer-links-cont.social li.linkedin a {
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/ico-social-linkedin.svg');
}
.footer-col-1 .footer-links .footer-links-cont.social li.spotify a {
    background-image: url('https://varaschin.it/wp-content/themes/varaschin/img/ico-social-spotify.svg');
}
.footer-col-1 .footer-links-1 {
    padding-left: 52px;
}
.footer-col-1 .footer-links-2 {}
.footer-col-1 .footer-links-3 {}
.footer-col-1 .footer-links-3 .apps {
    margin-top: 10px;
}
.footer-col-1 .footer-links-3 .apps a {
    display: block;
}
.footer-col-1 .footer-links-3 .apps img {
    width: 120px;
}
.footer-col-1 .footer-links-3 .apps .downFooIOS {}
.footer-col-1 .footer-links-3 .apps .downFooPLAY {}
.footer-col-2 {
    background: #4e6958;
    color: #fff;
    padding: 70px;
}
.form-disable .footer-col-2 {
    background: #f3f2f0;
}
.footer-col-2 .footer-tit-cont {
    font-size: 60px;
    font-weight: 100;
    line-height: 1;
    margin-bottom: 50px;
    margin-bottom: 35px;
}
.footer-col-2 .footer-form-cont {}
#btt {
    cursor: pointer;
    position: fixed;
    right: 70px;
    bottom: 50px;
    z-index: 99;
    width: 50px;
    height: 52px;
    border: 1px solid #fff;
    color: #fff;
    transform: rotate(-90deg);
    padding: 15px 10px;
    background-color: var(--bg-dark);
    display: none;
}
#btt.btnscroll {
    display: block;
}
.wwa-stripe {
    margin-left: 52px;
    border-top: 1px solid #e0e0e0;
    padding-left: 13px;
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.wwa-stripe h5{
	font-size: 35px;
	line-height: 1;
	font-weight: 100;
	margin-bottom: 30px;
	-webkit-text-stroke: .3px;
	}
.wwa-stripe p{}
.wwa-stripe a{}
.wwa-stripe a span{bottom: -3px;}
.fse-stripe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        'text logo';
    gap: 15px;
    padding-top: 60px
}
.fse-stripe--text {
    order: -1;
    grid-area: text;
    padding-left: 52px;
}
.fse-stripe img {
    width: 100%;
    mix-blend-mode: multiply;
    grid-area: logo
}
.fse-stripe--text b {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400
}
.fse-stripe--text p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-top: 6px
}
.fse-stripe--text a {
    text-decoration: underline;
    color: inherit;
    margin-top: 10px;
    display: inline-block;
}
.error-404.not-found {
    padding: 200px 15px;
    text-align: center;
}
.error-404.not-found p {
    font-size: 30px;
    line-height: 1.2;
    padding: 20px 0;
}
.error-404.not-found form {
    color: inherit;
    display: inline-flex;
}
.error-404.not-found form label {
    color: inherit;
}
.error-404.not-found form input[type="search"] {
    color: inherit;
    border-radius: 0;
}
.error-404.not-found form input[type="submit"] {
    color: inherit;
    border-radius: 0;
    padding: 7px 16px;
}

.single-seo-pages {}
.single-seo-pages #primary {
    background-size: 100vw !important;
    background-blend-mode: multiply;
    background-attachment: fixed !important;
}
.single-seo-pages header {position: relative;}
.single-seo-pages .section-alternate {position: relative; padding-bottom: 140px;} 
.post-type-archive-seo-pages .page-header {
    position: relative;
}
.single-seo-pages #exper{
    margin-bottom: 0;
    padding-bottom: 140px;
    position: relative;
}
.post-type-archive-seo-pages .loop-coll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 70px 140px;
    grid-gap: 70px; position:relative}

.post-type-archive-seo-pages .sing-seo-page {}
.post-type-archive-seo-pages .sing-seo-page a{}
.post-type-archive-seo-pages .sing-seo-page .sing-seo-page-tit{}
.post-type-archive-seo-pages .sing-seo-page .sing-seo-page-tit h2{
    min-height: calc(1.0em * 2);
}
.post-type-archive-seo-pages .sing-seo-page .sing-seo-page-img{
    aspect-ratio: 5/3;
    overflow: clip;
    margin-bottom: 20px;
}
.post-type-archive-seo-pages .sing-seo-page .sing-seo-page-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .2s all;
    display: block;
}
.post-type-archive-seo-pages .sing-seo-page a:hover .sing-seo-page-img img{
    transform: scale(1.1);
}
@media screen and (min-width: 1401px) {
    .page-template-page-download_new #main_container,
    .tml-action-login #main_container,
    .tml-action-register #main_container,
    .tml-action-lostpassword #main_container,
    .tml-action-resetpass #primary {
        background-image: url(https://varaschin.it/wp-content/themes/varaschin/img/bg-login.jpg);
        background-size: cover;
        background-position: center;
        color: #fff;
        padding-bottom: 200px;
        padding-top: 250px;
        padding-left: 105px;
    }
}
@media screen and (min-width: 1601px) {
    .vn-page-contatti .vn-contatti {
        max-width: calc(100vw - 350px);
    }
}
@media screen and (max-width: 1600px) {
    .new-hp-container .new-hp-grid {
        /* grid-template-columns: repeat(6, 1fr); */
    }
    .new-hp-container .new-hp-intro {
        padding: 70px 70px 60px 105px;
    }
    .new-hp-container .new-hp-intro p {
        max-width: none;
    }
    .new-hp-container .new-hp-img {}
    .new-hp-container .new-hp-img:nth-child(2) {}
    .new-hp-container .new-hp-img:nth-child(3) {
        /* grid-column: span 3; */
    }
    .new-hp-container .new-hp-img:nth-child(4) {
        /* grid-column: span 3; */
    }
    .new-hp-container .new-hp-img:nth-child(5) {}
    .new-hp-container .new-hp-img:nth-child(6) {}
    .new-hp-container .new-hp-img:nth-child(7) {}
    .news-listing.loop-coll {
        grid-template-columns: repeat(8, 1fr);
    }
    .news-listing.loop-coll .sing-item.first-item {
        grid-column: span 4;
    }
    .fse-stripe.container {
        grid-template-areas:
            'logo'
            'text';
        grid-template-columns: min(100%, 680px);
        gap: 25px;
        padding-left: 52px;
    }
    .fse-stripe img {
        max-width: 560px
    }
    .fse-stripe--text {
        padding-left: 0
    }
}
@media screen and (max-width: 1400px) {
    .coll-hp-container .coll-hp-intro h2,
    .esp-hp-container .esp-hp-intro h2,
    .vt-hp h2 {
        font-size: 50px;
    }
    .esp-hp-container .esp-hp-intro {
        margin-bottom: 0;
    }
    .new-hp-container .new-hp-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .new-hp-container .new-hp-intro {}
    .new-hp-container .new-hp-intro p {
        max-width: none;
    }
    .new-hp-container .new-hp-img {}
    .new-hp-container .new-hp-img:nth-child(2) {}
    .new-hp-container .new-hp-img:nth-child(3) {
        grid-column: span 3;
    }
    .new-hp-container .new-hp-img:nth-child(4) {
        grid-column: span 3;
    }
    .new-hp-container .new-hp-img:nth-child(5) {}
    .new-hp-container .new-hp-img:nth-child(6) {}
    .new-hp-container .new-hp-img:nth-child(7) {}
    .vn-prod-type .page-header-container,
    .vc-arc-wide .page-header-container {
        grid-template-columns: 1fr
    }
    .vn-prod-type .page-header .link,
    .vc-arc-wide .page-header .link {
        display: none
    }
    .vc-arc-wide.designer .page-header .title,
    .vc-arc-wide.family .page-header .title,
    .vc-arc-wide.esperienze .page-header .title {
        margin-left: -35px;
    }
    .vn-prod-type .page-header .title h1,
    .vn-prod-type .page-header .intro {
        margin-left: 0
    }
    .vn-prod-type.term-type .bread-type {
        margin-left: 0
    }
    .vn-prod-type.term-type .page-header .description {
        margin-left: 0
    }
    .filters {
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .loop-prod-type {
        grid-template-columns: repeat(3, 1fr)
    }
    .loop-prod-type .sing-prod h2 {
        font-size: 26px;
    }
    .prod-row-1-container .prod-row-1-grid .prod-row-1-intro {
        width: 100% !important;
        aspect-ratio: unset;
    }
    .prod-row-1-container .prod-row-1-grid .prod-row-1-intro > div {
        position: relative;
        padding: 70px;
    }
    .prod-row-1-container .prod-row-1-grid .width1 {
        width: 33.33%;
    }
    .prod-row-1-container .prod-row-1-grid .width2 {
        width: 66.66%;
    }
    .prod-row-2-grid,
    .prod-row-3-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 100px;
    }
    .prod-row-2-grid .prod-row-2-col-2:before, .prod-row-2-grid .prod-row-3-col-2:before,
    .prod-row-3-grid .prod-row-3-col-2:before {
        left: -50px;
    }
    .prod-row-2-grid .prod-row-2-col-2, .prod-row-2-grid .prod-row-3-col-2, .prod-row-3-grid .prod-row-3-col-2 {
        grid-template-columns: 1fr;
    }
    .vc-arc-wide .row-cit {
        padding: 0 50px;
    }
    .fam-row-intro .layer-overlap-info h1 {
        font-size: 80px;
    }
    .fam-row-1-container {
        grid-template-columns: repeat(10, 1fr);
        grid-gap: 70px 0;
    }
    .fam-row-1-container .fam-row-1-coll-1 {
        grid-column: span 7;
        margin-bottom: 0;
    }
    .fam-row-1-container .fam-row-1-coll-2 {
        grid-column-start: 4;
        grid-column-end: 11;
    }
    .fam-row-2-container {
        grid-template-columns: repeat(10, 1fr);
        grid-gap: 70px 0;
    }
    .fam-row-2-container .fam-row-2-coll-1 {
        order: 2;
        grid-column-start: 4;
        grid-column-end: 11;
    }
    .fam-row-2-container .fam-row-2-coll-2 {
        order: 1;
        padding-left: 0;
        grid-column: span 7;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-text p,
    .esp-row-2-container .esp-row-2-grid .sing-item-text p {
        display: none;
    }
    .vn-prod-type.sing-esp .bread-type {
        margin-left: 0;
    }
    .vn-prod-type.sing-esp .page-header-container .description {
        grid-template-columns: 1fr;
        grid-gap: 0;
        margin-left: 0;
    }
    .vn-prod-type.sing-esp .page-header-container .description .col-1 {
        order: 3;
        margin-top: 20px;
    }
    .vn-prod-type.sing-esp .page-header-container .description .col-2 {}
    .vn-prod-type.sing-esp .page-header-container .description .col-3 {}
    .esp-row-2-grid .sing-item.first {
        grid-column: span 2;
    }
    .vn-page-contatti .vn-contatti-cont {
        padding: 250px 70px 70px;
    }
    .vn-page-contatti .vn-contatti {
        grid-template-areas:
            'c1 c1'
            'c2 c3';
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px 70px;
    }
    .vn-page-contatti .vn-contatti > .col-1 {
        margin-top: 0
    }
    .vn-page-contatti .vn-contatti .col-3 {
        padding: 0
    }
    .tessuti-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    .tessuti-gallery .sing-tessuto .sing-item-text {
        padding: 30px;
    }
    .section-partners {
        grid-template-columns: repeat(2, 1fr);
    }
    .vn-prod-type.sing-des .bread-type {
        margin-left: 0
    }
    .vn-prod-type.sing-des .page-header-container .description {
        grid-template-columns: 1fr 1fr;
        margin-left: 0;
    }
    .vn-prod-type.sing-des .page-header-container .description .col-1 {
        grid-column-start: 1;
        padding: 0;
    }
    .vn-prod-type.sing-des .page-header-container .description .col-2 {
        padding: 0;
    }
    .vn-prod-type.sing-mood .bread-type,
    .vn-prod-type.sing-mood .page-header-container .description .col-1 {
        margin-left: 0
    }
    .mood-row-1-container .mood-row-1-grid {
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .mood-row-1-grid .col-2 {
        max-width: unset;
    }
    .news-listing.loop-coll {
        grid-template-columns: repeat(9, 1fr);
    }
    .news-listing.loop-coll .sing-item.first-item,
    .news-listing.loop-coll .sing-item.first-item.type-outdoor_therapy,
    .news-listing.loop-coll .sing-item.first-item.type-sponsorship {
        grid-column: span 6;
    }
    .news-listing.loop-coll .sing-item h1 {
        margin-left: 0;
    }
    .news-listing.loop-coll .sing-item .intro {
        margin-left: 0;
    }
    .news-listing.loop-coll .sing-news.type-post,
    .news-listing.loop-coll .sing-news.type-outdoor_therapy,
    .news-listing.loop-coll .sing-item.type-sponsorship {
        grid-column: span 3;
    }
    .news-listing.loop-coll .sing-item .sing-news-info {
        padding: 20px 20px 70px;
    }
    .single-post-main-container {
        grid-template-columns: 1fr;
        padding: 250px 70px 140px;
    }
    .single-post-main-container main .fake-news-intro {
        display: block;
        margin-bottom: 30px;
    }
    .single-post-main-container main {
        order: -1;
    }
    #secondary .fake-news-intro {
        display: none
    }
    .video-listing {
        grid-template-columns: repeat(3, 1fr);
    }
    .download-elements-box,
    .section-customer .vn-lista-must-customer {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-container-right .service-menu li {
        padding-right: 10px;
    }
    .post-type-archive-seo-pages .loop-coll {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 1200px) {
    .esp-hp {
        margin-bottom: -280px;
        margin-top: 0
    }
    .esp-hp-container {
        padding: 70px;
        padding-bottom: 280px;
    }
    .news-hp {
        margin-bottom: 70px;
    }
    .news-hp-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .news-hp-grid .sing-news-hp .news-hp-intro {
        margin-bottom: 25px;
    }
    .news-hp-grid .sing-news-hp {
        display: grid;
        grid-template-columns: 2fr 3fr;
        grid-gap: 70px;
        align-items: center;
    }
    .news-hp-grid .sing-news-hp:nth-last-child(even) {
        grid-template-columns: 3fr 2fr;
    }
    .news-hp-grid .sing-news-hp:nth-last-child(even) > div:nth-child(1) {
        /* order: 2; */
    }
    .news-hp-grid .sing-news-hp:nth-last-child(even) > div:nth-child(2) {}
    .news-hp-grid .sing-news-hp .news-hp-text {
        padding: 40px 0;
    }
    .vn-page-corporate .page-header {
        padding: 250px 70px 70px;
    }
    .section-poilitca-intro {
        width: 100%;
        padding: 0 70px 70px;
    }
    .section-alternate .lc-row,
    .section-alternate .lc-row.inverted {
        grid-template-columns: 1fr;
    }
    .section-alternate .lc-row .lcr-content {
        max-width: unset;
        padding-left: 0;
    }
    .section-alternate .lc-row.inverted .lcr-content {
        order: 0;
    }
    .section-mission-vision {
        grid-template-columns: 1fr;
        grid-gap: 70px;
    }
    .section-mission-vision .sing-element.mission {
        text-align: left;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .section-mission-vision .sing-element.vision {
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .section-partners .sing-partner-intro {
        padding: 0;
    }
    .section-partners .sing-partner-text {
        padding: 30px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-col-2 {
        order: -1;
    }
    .footer-col-1 {
        margin-top: 0;
    }
    .prod-row-6-grid {
        grid-template-columns: 1fr
    }
    .nav-container-right .service-menu li.hide-mobile.stores {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .tessuti-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-container {
        grid-template-columns: auto auto;
    }
    .nav-container-center {
        display: none
    }
    .coll-hp-container .coll-hp-grid {
        grid-template-columns: 1fr;
    }
    .coll-hp-container .coll-hp-intro p {
        max-width: unset;
    }
    .coll-hp-container .coll-hp-intro {
        margin-bottom: 0;
    }
    .coll-hp-container .coll-hp-gallery {
        width: calc((((100vw - 150px))) - 0px);
        margin-left: -35px
    }
    .esp-hp-container .esp-hp-grid {
        grid-template-columns: 1fr
    }
    .esp-hp-container .esp-hp-gallery {
        order: 2
    }
    .esp-hp-container .esp-hp-gallery {
        width: calc((((100vw - 150px) / 1)*1) - 0px);
    }
    .esp-hp-container .esp-hp-intro p {
        max-width: unset;
    }
    .new-hp-container .new-hp-grid {
        /* grid-template-columns: repeat(6, 1fr); */
    }
    .new-hp-container .new-hp-intro {
        grid-column: span 6;
    }
    .new-hp-container .new-hp-intro p {
        max-width: none;
    }
    .new-hp-container .new-hp-img {}
    .new-hp-container .new-hp-img:nth-child(2) {}
    .new-hp-container .new-hp-img:nth-child(3) {
        grid-column: span 2;
    }
    .new-hp-container .new-hp-img:nth-child(4) {
        grid-column: span 2;
    }
    .new-hp-container .new-hp-img:nth-child(5) {}
    .new-hp-container .new-hp-img:nth-child(6) {}
    .new-hp-container .new-hp-img:nth-child(7) {}
    .new-hp-container .new-hp-img .sing-item-text p {
        display: none
    }
    .fam-row-1-container .fam-row-1-coll-2 {
        grid-column-start: 1;
    }
    .fam-row-2-container .fam-row-2-coll-1 {
        grid-column-start: 1;
    }
    .fam-row-3-container .fam-row-3-grid,
    .prod-row-4-container .prod-row-4-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-intro {
        grid-column: span 12;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img {}
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img:nth-child(2),
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img:nth-child(3) {
        margin-top: 0
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img,
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img {
        grid-column: span 4;
    }
    .tessuti-buttons {
        display: none;
    }
    .tessuti-select {
        display: block;
    }
}
@media screen and (min-width:768px) and (max-width:1024px) {
    .nav-container-right .service-menu li.hide-mobile.stores {
        display: inline-block;
    }
}
@media screen and (max-width: 991px) {
    .loop-prod-type {
        grid-template-columns: repeat(2, 1fr);
    }
    .vn-prod-type.term-type .page-header .description {
        grid-template-columns: 1fr;
        grid-gap: 0
    }
    .prod-row-2-container .prod-second-info,
    .prod-row-3-container .prod-second-info {
        padding: 30px 0;
    }
    .prod-row-2-grid,
    .prod-row-3-grid,
    .prod-row-4-grid {
        grid-template-columns: 1fr;
    }
    .prod-row-2-grid .prod-row-2-col-2,
    .prod-row-2-grid .prod-row-3-col-2,
    .prod-row-3-grid .prod-row-3-col-2 {
        grid-template-columns: 1fr 1fr
    }
    .prod-row-2-grid .prod-row-2-col-2:before,
    .prod-row-2-grid .prod-row-3-col-2:before,
    .prod-row-3-grid .prod-row-3-col-2:before {
        left: -70px;
        width: calc(100% + 140px);
        height: 1px;
        top: -50px;
    }
    .prod-row-3-grid .prod-row-3-col-2:before {
        bottom: -50px;
        top: unset;
    }
    .prod-row-3-grid .prod-row-3-col-1 {
        order: 2;
    }
    .prod-row-3-grid .prod-row-3-col-2 {
        order: 1;
    }
    .vc-arc-wide .loop-coll {
        grid-gap: 30px
    }
    .page-template-page-download_new .page-intro .cols,
    .tml-action-login .page-intro .cols, .tml-action-register .page-intro .cols, .tml-action-lostpassword .page-intro .cols {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img,
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img {
        grid-column: span 6;
    }
    .esp-row-2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .esp-row-2-grid .sing-item.first {
        grid-column: span 3;
    }
    .vc-arc-wide.designer .loop-coll {
        grid-template-columns: 1fr 1fr;
    }
    .materiali-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .materiali-container .sing-item .sing-item-text {
        padding: 30px
    }
    .materiali-container .sing-item .sing-item-text h3 {
        font-size: 26px
    }
    .mood-row-2-grid {}
    .mood-row-2-grid .sing-item.first {
        grid-column: span 4;
    }
    .mood-row-2-grid .sing-item.element {
        grid-column: span 2
    }
    .news-listing.loop-coll {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-listing.loop-coll .sing-item.first-item,
    .news-listing.loop-coll .sing-item.first-item.type-outdoor_therapy,
    .news-listing.loop-coll .sing-item.first-item.type-sponsorship {
        grid-column: span 2;
    }
    .news-listing.loop-coll .sing-item.first-item a {
        display: none
    }
    .news-listing.loop-coll .sing-news.type-post,
    .news-listing.loop-coll .sing-news.type-outdoor_therapy,
    .news-listing.loop-coll .sing-item.type-sponsorship {
        grid-column: span 1;
    }
    .video-listing {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-elements-box,
    .section-customer .vn-lista-must-customer {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .tessuti-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .lang-switch {
        right: 30px;
    }
    .new-hp-container .new-hp-img {
        grid-column: span 3 !important;
    }
    .news-hp-grid .sing-news-hp,
    .news-hp-grid .sing-news-hp:nth-last-child(even) {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .news-hp-grid .sing-news-hp:nth-last-child(even) > div:nth-child(1) {
        order: unset;
    }
    .nav-container {
        padding: 50px 30px;
    }
    .nav-container-right .nav_button {
        right: 30px;
    }
    .nav-container-right .service-menu li.hide-mobile {
        display: none;
    }
    .loop-prod-type {
        grid-template-columns: repeat(1, 1fr);
    }
    .filters .filters-1,
    .filters .filters-2 {
        flex-direction: column;
        grid-gap: 10px;
    }
    .filters button {
        font-size: 12px;
        padding: 8px 10px;
    }
    .prod-row-1-container .prod-row-1-grid .prod-row-1-intro > div {
        padding: 30px;
    }
    .prod-row-intro,
    .fam-row-intro {
        height: 50vh;
    }
    .fam-row-intro.tipo-video {
        /* height: auto; */
    }
    .fam-row-intro .video {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        width: calc(100vh * 16 / 9 /2);
    }
    .fam-row-intro .video iframe {
        width: 100%;
    }
    rs-fullwidth-wrap {
        /*aspect-ratio: 16/9;
    height: calc(100vw * 9 /16) !important;*/
    }
    rs-fullwidth-wrap rs-module-wrap,
    rs-fullwidth-wrap rs-module-wrap img {
        /*height: calc(100vw * 9 /16) !important;
    width: 100% !important;*/
        /*transform: none !important;*/
    }
    rs-fullwidth-wrap rs-fw-forcer {
        /*height: calc(100vw * 9 /16) !important;*/
    }
    .prod-fake-tit {
        font-size: 30px;
        font-weight: 300;
    }
    .prod-row-2-grid, .prod-row-3-grid {
        grid-gap: 40px;
    }
    .prod-row-2-grid .prod-row-2-col-2:before, .prod-row-2-grid .prod-row-3-col-2:before, .prod-row-3-grid .prod-row-3-col-2:before {
        top: -40px;
        left: -30px;
        width: calc(100% + 60px);
    }
    .prod-row-3-grid .prod-row-3-col-2:before {
        bottom: -25px;
        top: unset;
    }
    .prod-row-2-container,
    .prod-row-6-container {
        padding: 30px;
    }
    .prod-row-3-container,
    .prod-row-5-container {
        padding: 30px 30px 70px;
    }
    .prod-row-2-grid .prod-row-2-col-2, .prod-row-2-grid .prod-row-3-col-2, .prod-row-3-grid .prod-row-3-col-2 {
        grid-template-columns: 1fr;
    }
    .prod-row-1-container .prod-row-1-grid .width1 {
        width: 100%;
    }
    .prod-row-1-container .prod-row-1-grid .width2 {
        width: 100%;
    }
    .prod-row-6-grid .prod-row-6-col-2 {
        grid-template-columns: 1fr
    }
    .vc-arc-wide .loop-coll {
        grid-template-columns: 1fr
    }
    .vc-arc-wide .row-cit {
        grid-column: span 1;
        padding: 0;
    }
    .vc-arc-wide .row-cit-firma {
        margin-left: auto;
        text-align: right;
    }
    .fam-row-intro .layer-overlap-info {
        left: 30px;
        transform: translate(-0%, -0%);
        top: auto;
        bottom: 10px;
    }
    .arrow-down {
        display: none
    }
    .fam-row-intro .layer-overlap-info h1 {
        font-size: 50px;
    }
    .fam-row-1-container {
        padding: 30px;
    }
    .fam-row-1-container .fam-row-1-coll-1 {
        grid-column: span 10;
    }
    .fam-row-2-container .fam-row-2-coll-2 {
        grid-column: span 10;
    }
    .fam-row-2-container {
        padding: 140px 30px;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-intro {
        padding: 30px 30px 80px;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-intro a.btn-arrow-inherit,
    .prod-row-4-container .prod-row-4-grid .prod-row-4-intro a.btn-arrow-inherit {
        right: 30px;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img,
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img {
        grid-column: span 12;
    }
    .prod-row-4-container .prod-fake-tit {
        padding-left: 30px;
    }
    .prod-row-4-container {}
    .prod-row-4-container .prod-row-4-grid{
    padding-left: 30px;
    padding-right: 30px;
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img{
    outline: none;
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img a {
    aspect-ratio: unset;
    /* margin: 30px; */
    overflow: unset;
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-img img{
    /* max-width: 80%; */
    aspect-ratio: 1/1;
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-img{
    /* aspect-ratio: 1/1; */
    overflow: hidden;
    box-shadow: var(--shadow1);
    /* margin: 30px; */
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img a:hover .sing-item-img{
    opacity: 1;
    /* transform: scale(1.1); */
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img a:hover .sing-item-img img{transform: scale(1.1);}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-text{
    position: relative;
}
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-text h3{
    font-size: 25px;
    margin-bottom: 5px;
}
    .esp-row-2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .esp-row-2-grid .sing-item.first {
        grid-column: span 2;
        padding: 30px 70px;
    }
    .vn-prod-type.sing-des .page-header-container .description {}
    .vn-prod-type.sing-des .page-header-container .description .col-1 {
        grid-column: span 2;
    }
    .vn-prod-type.sing-des .page-header-container .description .col-2 {
        grid-column: span 2;
    }
    .vn-page-contatti .vn-contatti-cont {
        padding: 100px 30px 70px;
    }
    .vn-page-contatti .vn-contatti {
        grid-template-areas:
            'c1'
            'c2'
            'c3';
        grid-template-columns: 1fr;
    }
    .vn-page-corporate .page-header {
        padding: 250px 30px 30px;
    }
    .section-partners {
        grid-template-columns: 1fr;
        padding: 0 30px 140px;
    }
    .footer-col-1,
    .footer-col-2 {
        padding: 30px;
    }
    .footer-col-1 .footer-links {
        grid-template-columns: 1fr;
        grid-template-areas:
            'links1 links1'
            'links2 links3';
        column-gap: 30px;
    }
    .footer-col-1 .footer-links-1 {
        grid-area: links1;
        padding-left: 0;
    }
    .footer-col-1 .footer-links-2 {
        grid-area: links2;
    }
    .footer-col-1 .footer-links-3 {
        grid-area: links3;
    }
    .wwa-stripe {margin-left: 0;}
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-text,
    .prod-row-4-container .prod-row-4-grid .prod-row-4-img .sing-item-text {
        padding: 30px;
        box-sizing: border-box;
    }
    .fse-stripe.container {
        padding-left: 0;
    }
    .section-eco-formazione-container {
        padding: 0 30px 140px;
    }
    .materiali-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-listing.loop-coll .sing-news.type-post,
    .news-listing.loop-coll .sing-news.type-outdoor_therapy,
    .news-listing.loop-coll .sing-item.type-sponsorship {
        grid-column: span 2;
    }
    .video-listing {
        grid-template-columns: repeat(1, 1fr);
    }
    .video-filters {
        flex-direction: column;
        justify-content: unset;
        text-align: center;
    }
    .download-elements-box,
    .section-customer .vn-lista-must-customer {
        grid-template-columns: repeat(1, 1fr);
    }
    .download-filters {
        flex-direction: column;
        margin: 0 70px 30px;
    }
    .post-type-archive-seo-pages .loop-coll {
        grid-template-columns: 1fr;
        padding: 0 30px 140px;}
}
@media screen and (max-width: 480px) {
    :root {
        --f20: 20px;
        --f60: 40px;
        --f70: 70px;
        --f85: 60px
    }
    .tessuti-gallery {
        grid-template-columns: 1fr;
    }
    .tessuti-listing {
        padding-left: 35px;
        padding-right: 35px;
    }
    .tessuto .tessuto-main-info {
        flex-direction: column;
        align-items: start;
        grid-gap: 10px;
        margin-bottom: 15px;
    }
    .indicazioni-cont {
        flex-direction: column;
        grid-gap: 10px;
    }
    .indicazioni {
        flex-direction: column;
        align-items: start;
        grid-gap: 10px;
    }
    .indicazioni .indicazioni-ico .sing-ico {
        max-width: 35px;
    }
    #btt {
        right: 30px;
        bottom: 30px;
        width: 40px;
        height: 42px;
        padding: 6px 10px;
    }
    .nav-container-right .service-menu {
        margin-right: 50px;
    }
    .nav-container-left {
        width: 120px;
        padding-top: 10px;
    }
    .nav-container-right .service-menu li {
        padding-right: 10px
    }
    .new-hp-container .new-hp-intro {
        padding: 30px;
    }
    .coll-hp,
    .esp-hp-container,
    .news-hp {
        padding: 30px;
    }
    .esp-hp-container {
        padding-bottom: 280px;
    }
    .coll-hp-container .coll-hp-gallery {
        width: calc((((100vw - 60px))) - 0px);
        margin-left: 0px;
    }
    .esp-hp-container .esp-hp-intro {
        padding-left: 0
    }
    .esp-hp-container .esp-hp-gallery {
        width: calc((((100vw - 60px))) - 0px);
        margin-left: 0px;
    }
    .new-hp-container .new-hp-img {
        grid-column: span 6 !important;
    }
    .esp-row-2-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .vn-prod-type.sing-des .page-header {
        padding-bottom: 30px
    }
    .esp-row-2-grid .sing-item.first {
        grid-column: span 1;
        padding: 30px;
    }
    .esp-row-1-container .esp-row-1-grid .width1,
    .esp-row-1-container .esp-row-1-grid .width2 {
        /*width: 100%;*/
    }
    .esp-row-1-container .esp-row-1-grid .width1{
    grid-column: 1/-1;
}
    .esp-row-1-container .esp-row-1-grid .width2 {
    grid-column: 1/-1;
}
    .vn-prod-type .page-header {
        padding: 100px 30px 60px;
    }
    .vc-arc-wide.family {
        padding: 100px 30px 100px;
    }
    .vc-arc-wide .page-header .title h1 {
        margin-left: 0
    }
    .vc-arc-wide.esperienze {
        padding: 100px 30px 100px;
    }
    .vc-arc-wide.esperienze .page-header-container {
        margin-bottom: 40px;
    }
    .vc-arc-wide.esperienze .page-header .intro {
        margin-left: 0
    }
    .vc-arc-wide .page-header {
        padding-bottom: 60px
    }
    .vn-prod-type .page-header .intro,
    .vc-arc-wide.designer .page-header .intro,
    .vc-arc-wide.esperienze .page-header .intro {
        font-size: 30px
    }
    .loop-prod-type .sing-prod .sing-prod-info {
        padding: 30px
    }
    .page-template-page-download_new #main_container,
    .tml-action-login #main_container, .tml-action-register #main_container, .tml-action-lostpassword #main_container {
        padding: 150px 30px;
    }
    .vn-page-contatti .vn-contatti > .col-1 p {
        font-size: 30px;
    }
    .vn-page-corporate .page-header {
        padding: 100px 30px 30px;
    }
    .section-alternate {
        padding: 0 30px 70px;
    }
    .section-alternate .lc-row, .section-alternate .lc-row.inverted {
        grid-gap: 30px;
    }
    .section-mission-vision {
        padding: 0 30px 140px;
    }
    .section-poilitca-intro {
        padding: 0 30px 30px;
    }
    .vc-arc-wide.designer {
        padding: 100px 30px 140px;
    }
    .vc-arc-wide.designer .page-header .title,
    .vc-arc-wide.designer .page-header .intro,
    .vc-arc-wide.esperienze .page-header .title,
    .vc-arc-wide.family .page-header .title,
    .family .intro {
        margin-left: 0
    }
    .vc-arc-wide.designer .loop-coll {
        grid-template-columns: 1fr;
    }
    .vn-prod-type.sing-des .page-header-container .description .col-3 {
        grid-column: span 2;
    }
    .materiali-main-container {
        padding: 0 30px 140px;
    }
    .mood-row-1-container {
        padding: 30px 20px 70px;
    }
    .mood-row-2-grid .sing-item.first {
        padding: 30px;
    }
    .mood-row-2-grid .sing-item.element {
        grid-column: span 4
    }
    .news-listing.loop-coll .sing-item.first-item {
        padding: 0 30px 30px;
    }
    .news-listing.loop-coll .sing-item h1 span {
        padding-left: 20px;
        font-size: 1.2em;
    }
    .news-listing.loop-coll .sing-item.type-outdoor_therapy .intro {
        margin-left: 20px;
    }
    .single-post-main-container {
        padding: 100px 30px 140px;
        grid-gap: 30px;
    }
    .vn-list-section {
        padding: 0 30px 70px;
    }
    .download-filters {
        margin: 0 30px 30px;
    }
    .download-elements-container,
    .section-customer {
        padding: 0 30px 140px;
    }
    .section-territorio div p {
        font-size: 30px;
    }
    .vn-page-corporate.territorio #primary {
        background-size: auto 400px;
    }
    .vn-page-corporate.territorio .page-header h1 {
        font-size: 45px;
    }
}
.shadowy {
    box-shadow: var(--shadow1);
}
@media screen and (max-width: 1024px) {
    .single-family .prod-link-deigner {
        display: none !important;
    }
}
/* Prodotti consigliati */
.loop-prod-type .sing-prod-info.show-all {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0 50px;
    padding: 50px 0;
}
.sing-prod-info.show-all h2 span svg {
    width: 20px;
}
.loop-prod-type .sing-prod.sing-type .sing-prod-info.show-all h2 span {
    margin: 0;
    position: relative;
    bottom: 0;
    right: -10px;
    bottom: -10px;
}
.loop-prod-type .sing-prod .sing-prod-info.show-all h2 span {}
.loop-prod-type .sing-prod.sing-type:hover .sing-prod-info.show-all h2 span {
    right: -15px;
}
.sing-prod-info.show-all h2 i {
    font-weight: 200;
    -webkit-text-stroke: .3px;
}
.loop-prod-type .sing-prod .sing-prod-info.show-all h2 {
    margin-bottom: 0;
}
.sing-prod.sing-type.filterable {
    outline: none;
}
@media screen and (max-width: 767px) {
    .single-product .loop-prod-type.iso-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-product .loop-prod-type.iso-grid .sing-prod-info p {
        display: none;
    }
    .single-product .loop-prod-type .sing-prod span {
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 480px) {
    .loop-prod-type .sing-prod-info.show-all {
        margin: 0 30px;
        padding: 30px 0;
    }
    .loop-prod-type .sing-prod .sing-prod-info.show-all h2 {
        font-weight: 400;
        font-size: inherit;
    }
    .loop-prod-type .sing-prod .sing-prod-info.show-all h2 i {
        font-weight: 300;
    }
}
/* Mobile - Always show product name in listing */
@media screen and (max-width: 780px) {
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img .sing-item-text {
        position: relative;
    }
    .fam-row-3-container .fam-row-3-grid .fam-row-3-img a:hover .sing-item-img {
        opacity: 1;
    }
}
/* Removes lightbox border */
.lightbox .lb-container .lb-image {
    border: none;
    border-radius: 0;
}

/* Dynamic Text Extensions CF7 */
.wpcf7dtx-textarea {
    height: 7rem;
}


/* Fix for MMenu mobile scroll */
#menu-mobile {
    pointer-events: auto !important;
    touch-action: auto !important;
}

#menu-mobile .mm-panel {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: 100% !important;
    max-height: 100vh !important;
    -webkit-overflow-scrolling: touch !important;
    pointer-events: auto !important;
}

#menu-mobile .mm-listview {
    pointer-events: auto !important;
}




.sticky-bar-mobile-cont {
    display: none;
}
.sticky-bar-mobile {
    
    /*background: rgba(255, 255, 255, 0.6);
    border-radius: 26px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);*/
    display: flex;
    justify-self: center;
    gap: 10px;
}
.sticky-bar-mobile div {
    display: flex;
    gap: 20px;
    padding: 13px 20px 13px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 26px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    justify-self: center;
    gap: 10px;
}
    .sticky-bar-mobile a {color: var(--bg-dark);font-size: 18px;position:relative;line-height: 1;}

    


@media (max-width: 480px) {
    .sticky-bar-mobile-cont {
        display: flex;
        position: fixed;
        bottom: 0px;
        left: 0;
        width: 100%;
        z-index: 9999;
        justify-content: center;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sticky-bar-mobile-cont.show {
        transform: translateY(-13px);
    }
    .cky-btn-revisit-wrapper .cky-btn-revisit img {    filter: invert(.4);}
    .cky-revisit-bottom-left {border: 1px solid rgba(255, 255, 255, 0.6);
    bottom: 13px !important;
}
    #btt.btnscroll {backdrop-filter: blur(5px);background: rgba(255, 255, 255, 0.6);border: 1px solid rgba(255, 255, 255, 0.6);right: 15px;bottom: 13px;border-radius: 50%;width: 45px;height: 45px;padding: 8px 10px;z-index: 99999;}
    #btt.btnscroll svg {}
    #btt.btnscroll svg path{stroke: var(--main-color);stroke-width: 30px;}

    .post-type-archive-seo-pages h1{font-size: 45px;}
}
@media (max-width: 400px) {
    .sticky-bar-mobile div {gap:10px;}
.sticky-bar-mobile a {font-size: 16px;}
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(https://varaschin.it/wp-content/themes/varaschin/js/owl-carousel/assets/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
@charset "UTF-8";/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */:root{--mm-lineheight:22px}.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu,.mm-menu *,.mm-menu :after,.mm-menu :before{-webkit-transition-property:none;-o-transition-property:none;transition-property:none;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}:root{--mm-blocker-visibility-delay:0.4s;--mm-blocker-opacity-delay:0s}.mm-blocker{display:block;position:absolute;bottom:100%;top:0;right:0;left:0;z-index:3;opacity:0;background:var(--mm-color-background);-webkit-transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),-webkit-transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),-webkit-transform .4s ease;-o-transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease,-webkit-transform .4s ease}.mm-blocker:focus-visible{opacity:.75}.mm-btn{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;width:50px;padding:0}.mm-btn--next,[dir=rtl] .mm-btn--prev{--mm-btn-rotate:135deg}.mm-btn--prev,[dir=rtl] .mm-btn--next{--mm-btn-rotate:-45deg}.mm-btn--next:after,.mm-btn--prev:before{content:"";display:block;position:absolute;top:0;bottom:0;width:8px;height:8px;margin:auto;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid var(--mm-color-icon);border-bottom:none;border-right:none;-webkit-transform:rotate(var(--mm-btn-rotate));-ms-transform:rotate(var(--mm-btn-rotate));transform:rotate(var(--mm-btn-rotate))}.mm-btn--prev:before{inset-inline-start:23px}.mm-btn--next:after{inset-inline-end:23px}.mm-btn--close:before{content:"×";font-size:150%}.mm-btnreset{padding:0;background:0 0;border:none;cursor:pointer}.mm-divider{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:-webkit-sticky;position:sticky;z-index:2;top:0;min-height:var(--mm-lineheight);padding:calc((var(--mm-listitem-size) * .65 - var(--mm-lineheight)) * .5) 20px;font-size:75%;text-transform:uppercase;background:var(--mm-color-background);background-image:-webkit-gradient(linear,left top,left bottom,from(var(--mm-color-background-highlight)),to(var(--mm-color-background-highlight)));background-image:-o-linear-gradient(var(--mm-color-background-highlight),var(--mm-color-background-highlight));background-image:linear-gradient(var(--mm-color-background-highlight),var(--mm-color-background-highlight));opacity:1;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.mm-navbar:not(.mm-hidden)~.mm-listview .mm-divider{top:var(--mm-navbar-size)}:root{--mm-listitem-size:50px}.mm-listitem{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative;padding:0;margin:0;color:var(--mm-color-text);border-color:var(--mm-color-border)}.mm-listitem:after{content:"";border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;inset-inline-start:20px;inset-inline-end:0;bottom:0}.mm-listitem__btn,.mm-listitem__text{padding:calc((var(--mm-listitem-size) - var(--mm-lineheight))/ 2) 0}.mm-listitem__text{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%;display:block;padding-left:20px;padding-right:20px;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-listitem__btn{display:block;position:relative;width:auto;-webkit-padding-end:50px;padding-inline-end:50px;border-color:inherit;background:rgba(3,2,1,0)}.mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}.mm-listitem--selected>.mm-listitem__text{background:var(--mm-color-background-emphasis)}.mm-listitem--opened>.mm-listitem__btn,.mm-listitem--opened>.mm-panel{background:var(--mm-color-background-highlight)}.mm-listview{list-style:none;display:block;padding:0;margin:0}.mm-menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0;margin:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;-ms-scroll-chaining:none;overscroll-behavior:none;background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:var(--mm-lineheight);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mm-menu ::-webkit-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::-moz-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu :-ms-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::-ms-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::placeholder{color:var(--mm-color-text-dimmed)}.mm-menu,.mm-menu *{-webkit-box-sizing:border-box;box-sizing:border-box}.mm-menu :focus,.mm-menu :focus-visible,.mm-menu:focus,.mm-menu:focus-visible{outline:0}.mm-menu a,.mm-menu button,.mm-menu label{color:inherit}.mm-menu a:focus,.mm-menu button:focus,.mm-menu label:focus{outline:0}.mm-menu a:focus-visible,.mm-menu button:focus-visible,.mm-menu label:focus-visible{outline:2px solid var(--mm-color-focusring);outline-offset:-5px}.mm-menu input:focus,.mm-menu input:focus-visible,.mm-menu select:focus,.mm-menu select:focus-visible,.mm-menu textarea:focus,.mm-menu textarea:focus-visible{outline:2px solid var(--mm-color-focusring);outline-offset:2px}.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{text-decoration:none;color:inherit}:root{--mm-navbar-size:50px}.mm-navbar{display:-webkit-box;display:-ms-flexbox;display:flex;position:-webkit-sticky;position:sticky;top:0;z-index:2;min-height:var(--mm-navbar-size);padding-top:env(safe-area-inset-top);color:var(--mm-color-text-dimmed);text-align:center;opacity:1;background:var(--mm-color-background);border-bottom:1px solid var(--mm-color-border);-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.mm-navbar>*{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-sizing:border-box;box-sizing:border-box}.mm-navbar__btn{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.mm-navbar__title{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 20px;overflow:hidden}.mm-navbar__title[href="#"]{pointer-events:none}.mm-navbar__title>span{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-btn.mm-hidden+.mm-navbar__title:not(:last-child){-webkit-padding-start:60px;padding-inline-start:60px;-webkit-padding-end:10px;padding-inline-end:10px}.mm-btn:not(.mm-hidden)+.mm-navbar__title:last-child{-webkit-padding-start:10px;padding-inline-start:10px;-webkit-padding-end:60px;padding-inline-end:60px}.mm-panel{--mm-panel-child-offset:100%;--mm-panel-parent-offset:-30%;position:absolute;left:0;right:0;top:0;bottom:0;z-index:1;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:contain;color:var(--mm-color-text);border-color:var(--mm-color-border);background:var(--mm-color-background);-webkit-transform:translate3d(var(--mm-panel-child-offset),0,0);transform:translate3d(var(--mm-panel-child-offset),0,0);-webkit-transition-property:inset-inline-start,-webkit-transform;transition-property:inset-inline-start,-webkit-transform;-o-transition-property:transform,inset-inline-start;transition-property:transform,inset-inline-start;transition-property:transform,inset-inline-start,-webkit-transform}[dir=rtl] .mm-panel{--mm-panel-child-offset:-100%;--mm-panel-parent-offset:30%}.mm-panel:after{content:"";display:block;height:var(--mm-listitem-size)}.mm-panel:focus{outline:0}.mm-panel--opened{z-index:2;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.mm-panel--parent{-webkit-transform:translate3d(var(--mm-panel-parent-offset),0,0);transform:translate3d(var(--mm-panel-parent-offset),0,0);z-index:0}.mm-panel--highest{z-index:3}.mm-menu--opened .mm-panel--noanimation{-webkit-transition:none!important;-o-transition:none!important;transition:none!important;-webkit-transition-duration:0s!important;-o-transition-duration:0s!important;transition-duration:0s!important}.mm-panel__content{padding:20px}.mm-panels{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative;height:100%;overflow:hidden;background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}.mm-panels:focus{outline:0}:root{--mm-toggle-size:34px}.mm-toggle{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center;-webkit-box-flex:calc(var(--mm-toggle-size) * 1.75);-ms-flex:calc(var(--mm-toggle-size) * 1.75) 0 0px;flex:calc(var(--mm-toggle-size) * 1.75) 0 0;height:var(--mm-toggle-size);-webkit-margin-end:10px;margin-inline-end:10px;-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;border:none!important;border-radius:var(--mm-toggle-size);border:var(--mm-color-border);background:var(--mm-color-border);cursor:pointer;-webkit-transition-property:background-color;-o-transition-property:background-color;transition-property:background-color}.mm-toggle:before{content:"";aspect-ratio:1;margin:2px;border-radius:100%;background:var(--mm-color-background);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.mm-toggle:checked{background:#4bd963}.mm-toggle:checked:before{-webkit-transform:translateX(calc(var(--mm-toggle-size) * .75));-ms-transform:translateX(calc(var(--mm-toggle-size) * .75));transform:translateX(calc(var(--mm-toggle-size) * .75))}[dir=rtl] .mm-toggle:checked:before{-webkit-transform:translateX(calc(var(--mm-toggle-size) * -.75));-ms-transform:translateX(calc(var(--mm-toggle-size) * -.75));transform:translateX(calc(var(--mm-toggle-size) * -.75))}.mm-listitem--vertical>.mm-panel{position:static;width:100%;padding:10px 0 10px 20px;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.mm-listitem--vertical>.mm-panel:after{content:none;display:none}.mm-listitem--vertical:not(.mm-listitem--opened)>.mm-panel{display:none}.mm-listitem--vertical>.mm-listitem__btn{height:var(--mm-listitem-size);bottom:auto}.mm-listitem--vertical .mm-listitem:last-child:after{border-color:transparent}.mm-listitem--opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}:root{--mm-size:80%;--mm-min-size:240px;--mm-max-size:440px}.mm-menu--offcanvas{position:fixed;z-index:0}.mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh;background:inherit}:where(.mm-slideout){position:relative;z-index:1;width:100%;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}.mm-wrapper--opened,.mm-wrapper--opened body{overflow:hidden}.mm-wrapper__blocker{background:rgba(0,0,0,.4)}.mm-wrapper--opened .mm-wrapper__blocker{--mm-blocker-visibility-delay:0s;--mm-blocker-opacity-delay:0.4s;bottom:0;opacity:.5}.mm-menu{--mm-translate-horizontal:0;--mm-translate-vertical:0}.mm-menu--position-left,.mm-menu--position-left-front{right:auto}.mm-menu--position-right,.mm-menu--position-right-front{left:auto}.mm-menu--position-left,.mm-menu--position-left-front,.mm-menu--position-right,.mm-menu--position-right-front{width:clamp(var(--mm-min-size),var(--mm-size),var(--mm-max-size))}.mm-menu--position-left-front{--mm-translate-horizontal:-100%}.mm-menu--position-right-front{--mm-translate-horizontal:100%}.mm-menu--position-top{bottom:auto}.mm-menu--position-bottom{top:auto}.mm-menu--position-bottom,.mm-menu--position-top{width:100%;height:clamp(var(--mm-min-size),var(--mm-size),var(--mm-max-size))}.mm-menu--position-top{--mm-translate-vertical:-100%}.mm-menu--position-bottom{--mm-translate-vertical:100%}.mm-menu--position-bottom,.mm-menu--position-left-front,.mm-menu--position-right-front,.mm-menu--position-top{z-index:2;-webkit-transform:translate3d(var(--mm-translate-horizontal),var(--mm-translate-vertical),0);transform:translate3d(var(--mm-translate-horizontal),var(--mm-translate-vertical),0);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.mm-menu--position-bottom.mm-menu--opened,.mm-menu--position-left-front.mm-menu--opened,.mm-menu--position-right-front.mm-menu--opened,.mm-menu--position-top.mm-menu--opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper--position-left{--mm-translate-horizontal:clamp(
      var(--mm-min-size),
      var(--mm-size),
      var(--mm-max-size)
  )}.mm-wrapper--position-right{--mm-translate-horizontal:clamp(
      calc(-1 * var(--mm-max-size)),
      calc(-1 * var(--mm-size)),
      calc(-1 * var(--mm-min-size))
  )}.mm-wrapper--position-left .mm-slideout,.mm-wrapper--position-right .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout,.mm-wrapper--position-right.mm-wrapper--opened .mm-slideout{-webkit-transform:translate3d(var(--mm-translate-horizontal),0,0);transform:translate3d(var(--mm-translate-horizontal),0,0)}.mm-wrapper--position-bottom .mm-wrapper__blocker,.mm-wrapper--position-left-front .mm-wrapper__blocker,.mm-wrapper--position-right-front .mm-wrapper__blocker,.mm-wrapper--position-top .mm-wrapper__blocker{z-index:1}.mm-menu--theme-light{--mm-color-background:#f3f3f3;--mm-color-border:rgb(0 0 0 / 0.15);--mm-color-icon:rgb(0 0 0 / 0.4);--mm-color-text:rgb(0 0 0 / 0.8);--mm-color-text-dimmed:rgb(0 0 0 / 0.4);--mm-color-background-highlight:rgb(0 0 0 / 0.05);--mm-color-background-emphasis:rgb(255 255 255 / 0.75);--mm-color-focusring:#06c}.mm-menu--theme-light-contrast{--mm-color-background:#f3f3f3;--mm-color-border:rgb(0 0 0 / 0.5);--mm-color-icon:rgb(0 0 0 / 0.5);--mm-color-text:#000;--mm-color-text-dimmed:rgb(0 0 0 / 0.7);--mm-color-background-highlight:rgb(0 0 0 / 0.05);--mm-color-background-emphasis:rgb(255 255 255 / 0.9);--mm-color-focusring:#06c}.mm-menu--theme-dark{--mm-color-background:#333;--mm-color-border:rgb(0, 0, 0, 0.4);--mm-color-icon:rgb(255, 255, 255, 0.4);--mm-color-text:rgb(255, 255, 255, 0.8);--mm-color-text-dimmed:rgb(255, 255, 255, 0.4);--mm-color-background-highlight:rgb(255, 255, 255, 0.08);--mm-color-background-emphasis:rgb(0, 0, 0, 0.1);--mm-color-focusring:#06c}.mm-menu--theme-dark-contrast{--mm-color-background:#333;--mm-color-border:rgb(255 255 255 / 0.5);--mm-color-icon:rgb(255 255 255 / 0.5);--mm-color-text:#fff;--mm-color-text-dimmed:rgb(255 255 255 / 0.7);--mm-color-background-highlight:rgb(255 255 255 / 0.1);--mm-color-background-emphasis:rgb(0 0 0 / 0.3);--mm-color-focusring:#06c}.mm-menu--theme-white{--mm-color-background:#fff;--mm-color-border:rgb(0 0 0 / 0.15);--mm-color-icon:rgb(0 0 0 / 0.3);--mm-color-text:rgb(0 0 0 / 0.8);--mm-color-text-dimmed:rgb(0 0 0 / 0.3);--mm-color-background-highlight:rgb(0 0 0 / 0.06);--mm-color-background-emphasis:rgb(0 0 0 / 0.03);--mm-color-focusring:#06c}.mm-menu--theme-white-contrast{--mm-color-background:#fff;--mm-color-border:rgb(0 0 0 / 0.5);--mm-color-icon:rgb(0 0 0 / 0.5);--mm-color-text:#000;--mm-color-text-dimmed:rgb(0 0 0 / 0.7);--mm-color-background-highlight:rgb(0 0 0 / 0.07);--mm-color-background-emphasis:rgb(0 0 0 / 0.035);--mm-color-focusring:#06c}.mm-menu--theme-black{--mm-color-background:#000;--mm-color-border:rgb(255 255 255 / 0.2);--mm-color-icon:rgb(255 255 255 / 0.4);--mm-color-text:rgb(255 255 255 / 0.7);--mm-color-text-dimmed:rgb(255 255 255 / 0.4);--mm-color-background-highlight:rgb(255 255 255 / 0.1);--mm-color-background-emphasis:rgb(255 255 255 / 0.06);--mm-color-focusring:#06c}.mm-menu--theme-black-contrast{--mm-color-background:#000;--mm-color-border:rgb(255 255 255 / 0.5);--mm-color-icon:rgb(255 255 255 / 0.5);--mm-color-text:#fff;--mm-color-text-dimmed:rgb(255 255 255 / 0.6);--mm-color-background-highlight:rgb(255 255 255 / 0.125);--mm-color-background-emphasis:rgb(255 255 255 / 0.1);--mm-color-focusring:#06c}.mm-counter{display:block;-webkit-padding-start:20px;padding-inline-start:20px;float:right;color:var(--mm-color-text-dimmed)}[dir=rtl] .mm-counter{float:left}:root{--mm-iconbar-size:50px}.mm-menu--iconbar-left .mm-navbars,.mm-menu--iconbar-left .mm-panels{margin-left:var(--mm-iconbar-size)}.mm-menu--iconbar-right .mm-navbars,.mm-menu--iconbar-right .mm-panels{margin-right:var(--mm-iconbar-size)}.mm-iconbar{display:none;position:absolute;top:0;bottom:0;z-index:2;width:var(--mm-iconbar-size);overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid;border-color:var(--mm-color-border);background:var(--mm-color-background);color:var(--mm-color-text-dimmed);text-align:center}.mm-menu--iconbar-left .mm-iconbar,.mm-menu--iconbar-right .mm-iconbar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mm-menu--iconbar-left .mm-iconbar{border-right-width:1px;left:0}.mm-menu--iconbar-right .mm-iconbar{border-left-width:1px;right:0}.mm-iconbar__bottom,.mm-iconbar__top{width:100%;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:contain}.mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:calc((var(--mm-iconbar-size) - var(--mm-lineheight))/ 2) 0}.mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}.mm-iconbar__tab--selected{background:var(--mm-color-background-emphasis)}:root{--mm-iconpanel-size:50px}.mm-panel--iconpanel-0{inset-inline-start:calc(0 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-1{inset-inline-start:calc(1 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-2{inset-inline-start:calc(2 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-3{inset-inline-start:calc(3 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-4{inset-inline-start:calc(4 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-first~.mm-panel{inset-inline-start:var(--mm-iconpanel-size)}.mm-menu--iconpanel .mm-panel--parent .mm-divider,.mm-menu--iconpanel .mm-panel--parent .mm-navbar{opacity:0}.mm-menu--iconpanel .mm-panels>.mm-panel--parent{overflow-y:hidden;-webkit-transform:unset;-ms-transform:unset;transform:unset}.mm-menu--iconpanel .mm-panels>.mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0){border-inline-start-width:1px;border-inline-start-style:solid}.mm-navbars{-ms-flex-negative:0;flex-shrink:0}.mm-navbars .mm-navbar{position:relative;padding-top:0;border-bottom:none}.mm-navbars--top{border-bottom:1px solid var(--mm-color-border)}.mm-navbars--top .mm-navbar:first-child{padding-top:env(safe-area-inset-top)}.mm-navbars--bottom{border-top:1px solid var(--mm-color-border)}.mm-navbars--bottom .mm-navbar:last-child{padding-bottom:env(safe-area-inset-bottom)}.mm-navbar__breadcrumbs{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:0 20px;overflow-x:auto;-webkit-overflow-scrolling:touch}.mm-navbar__breadcrumbs>*{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-padding-end:6px;padding-inline-end:6px}.mm-navbar__breadcrumbs>a{text-decoration:underline}.mm-navbar__breadcrumbs:not(:last-child){-webkit-padding-end:0;padding-inline-end:0}.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs{-webkit-padding-start:0;padding-inline-start:0}.mm-navbar__tab{padding:0 10px;border:1px solid transparent}.mm-navbar__tab--selected{background:var(--mm-color-background)}.mm-navbar__tab--selected:not(:first-child){border-inline-start-color:var(--mm-color-border)}.mm-navbar__tab--selected:not(:last-child){border-inline-end-color:var(--mm-color-border)}.mm-navbars--top.mm-navbars--has-tabs{border-bottom:none}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar{background:var(--mm-color-background-emphasis)}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs~.mm-navbar{background:var(--mm-color-background)}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child{border-bottom:1px solid var(--mm-color-border)}.mm-navbars--top .mm-navbar__tab{border-bottom-color:var(--mm-color-border)}.mm-navbars--top .mm-navbar__tab--selected{border-top-color:var(--mm-color-border);border-bottom-color:transparent}.mm-navbars--bottom.mm-navbar--has-tabs{border-top:none}.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar{background:var(--mm-color-background)}.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs,.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs~.mm-navbar{background:var(--mm-color-background-emphasis)}.mm-navbars--bottom .mm-navbar__tab{border-top-color:var(--mm-color-border)}.mm-navbars--bottom .mm-navbar__tab--selected{border-bottom-color:var(--mm-color-border);border-top-color:transparent}.mm-searchfield{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:var(--mm-navbar-size);padding:0;overflow:hidden}.mm-searchfield__input{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;width:100%;max-width:100%;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box}.mm-searchfield__input input{display:block;width:100%;max-width:100%;height:calc(var(--mm-navbar-size) * .7);min-height:auto;max-height:auto;margin:0;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box;border:none;border-radius:4px;line-height:calc(var(--mm-navbar-size) * .7);font:inherit;font-size:inherit}.mm-searchfield__input input,.mm-searchfield__input input:focus,.mm-searchfield__input input:hover{background:var(--mm-color-background-highlight);color:var(--mm-color-text)}.mm-menu[class*=-contrast] .mm-searchfield__input input{border:1px solid var(--mm-color-border)}.mm-searchfield__input input::-ms-clear{display:none}.mm-searchfield__btn{display:none;position:absolute;inset-inline-end:0;top:0;bottom:0}.mm-searchfield--searching .mm-searchfield__btn{display:block}.mm-searchfield__cancel{display:block;position:relative;-webkit-margin-end:-100px;margin-inline-end:-100px;-webkit-padding-start:5px;padding-inline-start:5px;-webkit-padding-end:20px;padding-inline-end:20px;visibility:hidden;line-height:var(--mm-navbar-size);text-decoration:none;-webkit-transition-property:visibility,margin;-o-transition-property:visibility,margin;transition-property:visibility,margin}.mm-searchfield--cancelable .mm-searchfield__cancel{visibility:visible;-webkit-margin-end:0;margin-inline-end:0}.mm-panel--search{left:0!important;right:0!important;width:100%!important;border:none!important}.mm-panel__splash{padding:20px}.mm-panel--searching .mm-panel__splash{display:none}.mm-panel__noresults{display:none;padding:40px 20px;color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;line-height:1.4}.mm-panel--noresults .mm-panel__noresults{display:block}:root{--mm-sectionindexer-size:20px}.mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:var(--mm-sectionindexer-size);position:absolute;top:0;bottom:0;inset-inline-end:calc(-1 * var(--mm-sectionindexer-size));z-index:5;-webkit-transition-property:inset-inline-end;-o-transition-property:inset-inline-end;transition-property:inset-inline-end;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.mm-sectionindexer a{color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}.mm-sectionindexer~.mm-panel{-webkit-padding-end:0;padding-inline-end:0}.mm-sectionindexer--active{right:0}.mm-sectionindexer--active~.mm-panel{-webkit-padding-end:var(--mm-sectionindexer-size);padding-inline-end:var(--mm-sectionindexer-size)}.mm-menu--selected-hover .mm-listitem__btn,.mm-menu--selected-hover .mm-listitem__text,.mm-menu--selected-parent .mm-listitem__btn,.mm-menu--selected-parent .mm-listitem__text{-webkit-transition-property:background-color;-o-transition-property:background-color;transition-property:background-color}@media (hover:hover){.mm-menu--selected-hover .mm-listview:hover>.mm-listitem--selected:not(:hover)>.mm-listitem__text{background:0 0}.mm-menu--selected-hover .mm-listitem__btn:hover,.mm-menu--selected-hover .mm-listitem__text:hover{background:var(--mm-color-background-emphasis)}}.mm-menu--selected-parent .mm-listitem__btn,.mm-menu--selected-parent .mm-listitem__text{-webkit-transition-delay:.2s;-o-transition-delay:.2s;transition-delay:.2s}@media (hover:hover){.mm-menu--selected-parent .mm-listitem__btn:hover,.mm-menu--selected-parent .mm-listitem__text:hover{-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}}.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent)>.mm-listitem__text{background:0 0}.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__btn,.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__text{background:var(--mm-color-background-emphasis)}:root{--mm-sidebar-collapsed-size:50px;--mm-sidebar-expanded-size:var(--mm-max-size)}.mm-wrapper--sidebar-collapsed .mm-slideout{width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout{-webkit-transform:none;-ms-transform:none;transform:none}.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider,.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar{opacity:0}.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded{width:var(--mm-sidebar-expanded-size);border-right-width:1px;border-right-style:solid}.mm-wrapper--sidebar-expanded.mm-wrapper--opened{overflow:auto}.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker{display:none}.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout{width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout{-webkit-transform:none;-ms-transform:none;transform:none}
:root {
	--title-fs: 85px;
	--subtitle-fs: 45px;
	--subtitle-lh: 45px;
	--text-fs: 20px;
	--text-lh: 26px;
	--leaf-fs: 55px;
	--inner-sub-fs: 24px;
	--tl-date-fs: 65px;
	--section-pad: 70px;
	--content-pad: 34px;
	--white-bg: #ffffff;
	--white-bg: #2d2d2d;
    --green-bg: #deebd9;
	--green-bg: #2d2d2d;
	--esg-green: #31b258;
	--esg-pink: #f66495;
	--esg-purple: #7284f7;
	--esg-blue: #02818c;
	--text-color: #2d3f26;
	--text-color: #ffffff;
	--vert-spacing: 30px;
	--grid-gap: 5.77vw;
	--img-shadow: drop-shadow(0 0 10px rgba(0, 0, 0, .3));
	--rating-fs: 95px;
	--rating-s-fs: 65px;
}
#primary {
    background-image: url(https://varaschin.it/wp-content/uploads/bg-valori.jpg);
    background-color: var(--bg-dark);
    background-repeat: no-repeat;
    padding-bottom: 70px;
}
#leaf {
	color: var(--text-color);
	overflow-y: clip;
}
.scroller {
	position: relative;
    overflow: visible;
}
#side-menu-container {
    position: sticky;
    height: 0;
    z-index: 99;
    top: var(--section-pad);
    left: var(--section-pad);
}
#side-menu {
    display: inline-block;
    padding-top: var(--section-pad);
    padding-left: var(--section-pad);
}

#side-menu ul li:not(:first-child) {
	padding: 9px 0;
}
#side-menu ul li a {
	display: inline-block;
	font-size: var(--text-fs);
	line-height: var(--text-fs);
	font-weight: 300;
	transition: .5s color ease-in-out;
}
#side-menu ul li a.sel {
	padding: 8px 14px;
	border: 1px solid var(--text-color);
	margin-left: -14px;
	font-weight: 400;
}
#side-menu.white ul li a {
	color: #fff;
}
#side-menu.white ul li a.sel {
	border-color: #fff;
}
#leaf .intro-codice{
		color:#fff;
		/* background: var(--bg-dark); */
		padding: 230px 70px 00px 105px;
		max-width: 1200px;
}
#leaf .intro-codice h1{margin-bottom:30px}
#leaf .section {
	padding: var(--section-pad);
	max-width: none;
	/* background: var(--white-bg); */
}
#leaf .section.green {
	/* background: var(--green-bg); */
}
#leaf .section.no-pad-bot {
	padding-bottom: 0;
}
#leaf .section h1, 
#leaf .section h2 {
	font-size: var(--title-fs);
	color: var(--text-color);
	font-weight: 100;
	margin-bottom: var(--vert-spacing);
    line-height: var(--title-fs);
    /*margin-left: calc(var(--content-pad)* -1);*/
}
#leaf .section h2 {
	font-size: var(--subtitle-fs);
	line-height: var(--subtitle-fs);
	
	-webkit-text-stroke: .3px;
}

#leaf .section .subtitle {
	font-size: var(--subtitle-fs);
	line-height: var(--subtitle-lh);
	color: var(--text-color);
	font-weight: 100;
	display: block;
	margin-bottom: var(--vert-spacing);
    margin-left: 0;
}
#leaf .section .subtitle b {
	font-weight: 300;
}
#leaf .section p {
	font-size: var(--text-fs);
	line-height: var(--text-lh);
	color: var(--text-color);
	font-weight: 300;
}
#leaf .section ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
#leaf .section ul.no-bullet {
    list-style: none;
}

#leaf .section .section--inner {
	display: grid;
	grid-template-columns: .18fr .82fr;
}
#leaf .section .section--inner .content {
	padding-left: var(--content-pad);
}
.info-box h3 {
	text-transform: uppercase;
	font-size: var(--leaf-fs);
	font-weight: 100;
}
.info-box h3 b {
	font-weight: 300;
}

.content--grid,
.content--text-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--grid-gap);
}
.content--grid.single,.content--text-grid.single{
    grid-template-columns: 1fr;
}
.vn-download-etico{
    margin-top: 50px;
}
.vn-download-etico a.download{}
.vn-download-etico a.download:before{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Capa_1' x='0' y='0' style='enable-background:new 0 0 477.9 477.9' version='1.1' viewBox='0 0 477.9 477.9'%3E%3Cstyle%3E.st0%7Bfill:%23ffffff%7D%3C/style%3E%3Cpath d='M443.7 307.2c-9.4 0-17.1 7.6-17.1 17.1v102.4c0 9.4-7.6 17.1-17.1 17.1H68.3c-9.4 0-17.1-7.6-17.1-17.1V324.3c0-9.4-7.6-17.1-17.1-17.1S17 314.8 17 324.3v102.4c0 28.3 22.9 51.2 51.2 51.2h341.3c28.3 0 51.2-22.9 51.2-51.2V324.3c.1-9.5-7.5-17.1-17-17.1z' class='st0'/%3E%3Cpath d='M335.9 295.1c-6.6-6.4-17.1-6.4-23.7 0L256 351.3V17.1C256 7.6 248.4 0 238.9 0s-17.1 7.6-17.1 17.1v334.3l-56.2-56.2c-6.8-6.5-17.6-6.4-24.1.4-6.4 6.6-6.4 17.1 0 23.7l85.3 85.3c6.7 6.7 17.5 6.7 24.1 0l85.3-85.3c6.7-6.8 6.5-17.6-.3-24.2z' class='st0'/%3E%3C/svg%3E");}
.mystrong{
display: inline-block;
  padding-top: 15px;
  padding-bottom: 7px;}
.myspan {
    padding-left: 10px;
    display: inline-block;
    padding-bottom: 10px;
  }
.leaf--info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: var(--grid-gap);
    row-gap: 40px;
}

#leaf i {
	font-style: italic;
}

#leaf .inner-section {
	padding-top: var(--section-pad);
}

#leaf .inner-section h3,
#leaf .inner-section h4{/* font-size:30px; */font-weight: 100;}
.percorso-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: var(--section-pad);
}
.percorso-box {
	position: relative;
}
.percorso-box h4,
.tli-box h4 {
	font-size: var(--inner-sub-fs);
	font-weight: normal;
	margin-bottom: 20px;
	line-height: var(--inner-sub-fs);
}
.percorso-box ul li,
.tli-box ul li,
.col-values ul li {
	position: relative;
	padding-left: 22px;
}
.percorso-box ul li:before,
.tli-box ul li:before,
.col-values ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 14px;
	height: 1px;
	background: var(--text-color);
}
.percorso-box ul li:not(:first-child) {
	padding-top: 8px;
}
.percorso-box ul li:not(:first-child):before {
	top: 20px;
}
.percorso-box:nth-child(3n+1) {
	padding-right: 40px;
}
.percorso-box:nth-child(3n+2) {
	padding-right: 40px;
	padding-left: 40px;
}
.percorso-box:nth-child(3n+3) {
	padding-left: 40px;
}
.percorso-box:not(:nth-child(3n+1)):before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	left: 0;
	top: 0;
	background: #c8cfc6;
}

.actions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: var(--section-pad);
	row-gap: 40px;
}
.action-box img {
	margin-bottom: 28px;
	width: 100%;
    filter: var(--img-shadow);
}

.content--valori-grid,
.tl-info--grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--section-pad);
}
.valore-box h4 {
	font-size: var(--subtitle-fs);
	line-height: var(--subtitle-lh);
	font-weight: 300;
	margin-bottom: 14px;
}

#tessuti {
	background-image: url(https://varaschin.it/wp-content/uploads/varaschin-leaf-bg-tessuti.jpg);
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
}
#tessuti .content h2,
#tessuti .content .subtitle,
#tessuti .content p {
	color: #fff;
}
#tessuti .content p {
	max-width: 810px;
}


.tl--grid {
	display: grid;
	grid-auto-flow: row;
	gap: 24px;
}
.tl--row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--grid-gap);
}
.tl-info--grid {
	padding-top: 30px;
}
.tl-date {
	position: relative;
	height: 100%;
	display: grid;
	place-items: start;
}
.tl-date:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	height: 100%;
	width: 1px;
	background: #b2c0ac;
}
.tl-date span {
	font-size: var(--tl-date-fs);
	line-height: 45px;
	background: var(--green-bg);
	padding-bottom: 20px;
	position: relative;
	z-index: 2;
	font-weight: 100;
}


.leaf-collections {
	display: grid;
	grid-auto-flow: row;
	gap: 45px;
}
.lc-row {
	display: grid;
	grid-template-columns: .6fr .4fr;
	gap: 45px;
	align-items: center;
}
.lcr-img {
	line-height: 0;
}
.lcr-img img {
	filter: var(--img-shadow);
	width: 100%;
}
.lcr-content {
	position: relative;
	/* padding-bottom: 100px; */
	max-width: 380px;
}
.lcr-content h4 {
	font-size: var(--subtitle-fs);
	line-height: 40px;
	margin-bottom: 30px;
}
a.btn-leaf {
	font-size: var(--text-fs);
	position: relative;
}
.lcr-content a.btn-leaf {
	position: absolute;
	right: 0;
	bottom: 30px;
}
a.btn-leaf b {
	font-weight: normal;
}
.lc-row.inverted {
	grid-template-columns: .4fr .6fr;
}
.lc-row.inverted .lcr-content {
	order: -1;
}

.arrow-left {
	width: 20px;
	position: absolute;
    bottom: -6px;
    right: -18px;
    transition: right .5s ease-in-out;
}
.arrow-left path {
	fill: none;
	stroke: var(--text-color);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 50px;
}
a.btn-leaf:hover .arrow-left {
	right: -22px;
}



#leaf #c7.section {
	padding-bottom: calc(var(--section-pad) + 90px);
}

#codice-etico .btn-leaf {
	display: inline-block;
	margin-top: 45px;
}

#prodotti .inner-section {
	padding-top: 50px;
}





.content--esg-info {
	padding: 50px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--section-pad);
}
.esg-info {
	position: relative;
	padding-left: 35px;
}
.esg-info:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 13px;
	height: 105px;
}
#esg-env:before {
	background-color: var(--esg-green);
}
#esg-soc:before {
	background-color: var(--esg-pink);
}
#esg-gov:before {
	background-color: var(--esg-purple);
}
.esg-info h4 {
	font-size: var(--subtitle-fs);
	line-height: 40px;
	margin-bottom: 20px;
	font-weight: 300;
}

.esg-2023 {
	padding-top: var(--section-pad);
}

.ratings {
	display: grid;
	grid-template-columns: auto auto;
	gap: var(--section-pad);
}
@media screen and (max-width: 1830px) {
	.ratings {
		grid-template-columns: auto;
		gap: var(--vert-spacing);
	}
}
.ratings-small {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--section-pad);
	align-items: end;
}



.rating {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
}

.rating.rating-main {
    gap: 22px;
}

span.rating--type {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 19px;
    line-height: 15px;
}

.rating-main span.rating--type {
    font-size: 22px;
}

h5.rating--value {
    font-size: var(--rating-fs);
    line-height: 85px;
}

h6.rating--value {
    font-size: var(--rating-s-fs);
    line-height: 55px;
}

h5.rating--value,
h6.rating--value {
    font-weight: 100;
}
h5.rating--value b,
h6.rating--value b {
	font-weight: 300;
}

.rating--grade span {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 22px;
    font-weight: 300;
}

.rating-main .rating--grade span {
    font-size: 20px;
    line-height: 15px;
    width: fit-content;
}

.grade--value {
    font-weight: bold;
    font-size: 16px;
    padding: 7px 16px;
    display: inline-block;
    line-height: 12px;
}

.grade--value.grade-green {
    color: #354941;
    background: #d1e7de;
}
.grade--value.grade-yellow {
    color: #564e38;
    background: #fff2cd;
}

.rating-main svg {
	width: 138px;
}
.rating-main .grade--value {
    font-size: 20px;
    line-height: 16px;
    padding-left: 13px;
    padding-right: 13px;
    width: fit-content;
}

.rating-main .rating--grade {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 14px;
    align-items: end;
    width: fit-content;
}

.rating:not(.rating-main) .rating--grade span {
    display: block;
    margin-bottom: 5px;
}

.rating--mark {
	position: relative;
    height: fit-content;
}
.rating-val {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    line-height: 0;
    color: #fff;
    font-weight: 300;
    font-size: 40px;
}
.rating-main .rating-val {
    font-size: 50px;
}

.rating-esg .rating--type {
	color: var(--esg-blue);
}
.rating-amb .rating--type {
	color: var(--esg-green);
}
.rating-soc .rating--type {
	color: var(--esg-pink);
}
.rating-gov .rating--type {
	color: var(--esg-purple);
}
.rating-esg svg path {
	fill: var(--esg-blue);
}
.rating-amb svg path {
	fill: var(--esg-green);
}
.rating-soc svg path {
	fill: var(--esg-pink);
}
.rating-gov svg path {
	fill: var(--esg-purple);
}
.rating--info {
	display: grid;
	align-items: start;
	width: fit-content;
}



/* Rating table */
.table-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 25px;
}
.table-values-col {
	display: grid;
	grid-auto-flow: row;
	gap: 9px;
	height: fit-content;
}
.values-stripe {
    display: grid;
    grid-template-columns: 105px 57px 1fr;
    gap: 5px;
    height: fit-content;
}
.value--info {
    padding: 22px 15px;
    text-align: center;
    text-transform: uppercase;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    place-items: center;
    display: grid;
}
.values--info h3 {
    font-size: 22px;
}
.value--info h3 {
    font-size: 22px;
    font-weight: bold;
}
.value--info span {
    font-size: 16px;
    display: block;
    margin-top: 6px;
}
.values-yellow .value--info {
    color: #564e38;
    background: #fff2cd;
}
.values-green .value--info {
    background: #d1e7de;
    color: #354941;
}
.values-red .value--info {
    background: #f8d7da;
    color: #491313;
}
.values-grey .value--info {
    background: #cccccc;
}
.value--levels {
    display: grid;
    grid-auto-flow: row;
    gap: 3px;
    place-items: center;
}
.level {
    padding: 7px 15px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: bold;
}
.values-green .value--levels .level {
    background: #d1e7de;
    color: #354941;
}
.values-yellow .value--levels .level {
    color: #564e38;
    background: #fff2cd;
}
.values-red .value--levels .level {
    background: #f8d7da;
    color: #491313;
}
.values-grey .value--levels .level {
    background: #cccccc;
}
.value--desc {
    font-size: 16px;
    background: #f3f3f3;
    align-items: center;
    display: grid;
    padding: 15px 25px;
    position: relative;
}
.value--desc:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}
.values-green .value--desc:before {
    background-color: #d1e7de;
}
.values-yellow .value--desc:before {
    background-color: #fff2cd;
}
.values-red .value--desc:before {
    background-color: #f8d7da;
}
.values-grey .value--desc:before {
    background-color: #cccccc;
}
.value--desc-grid {
    display: grid;
    grid-template-rows: 3fr .95fr;
    gap: 3px;
}
.value--desc-grid .value--desc:last-child {
    padding: 0 25px;
}
.no-top-bot-pad {
	padding-top: 0 !important;
	padding-bottom: 0;
}
.esg-content .ratings {
	grid-template-columns: auto;
	grid-template-rows: auto auto;
	gap: 25px;
}
.esg-content .ratings-small {
	grid-template-columns: auto;
	grid-template-rows: auto auto auto;
	gap: 15px;
}
.esg-compare {
	display: inline-grid;
	grid-template-columns: auto 100px auto;
	padding-top: calc(var(--section-pad) - 36px);
}
@media screen and (max-width: 1420px) {
	.esg-compare {
		grid-template-columns: auto 50px auto;
	}
}
.esg-column {
	max-width: 563px;
}
.esg-chart {
	line-height: 0;
	margin-top: 45px;
}
.esg-column fieldset {
	border: 1px solid #060702;
    border-radius: 15px;
    padding: 36px 32px;
}
.esg-column legend {
	position: relative;
    padding: 20px 55px 0 32px;
    font-size: var(--subtitle-fs);
    font-weight: 100;
    margin-left: -65px;
    position: relative;
    top: -25px;
}
.esg-column legend b {
	font-weight: 300;
}
.esg-separator {
    text-align: center;
}
.esg-separator svg {
    max-width: 32px;
    padding-top: 185px;
}


.values-from-to {
	padding-top: var(--section-pad);
}
.compare-fields {
	display: grid;
	grid-auto-flow: row;
	gap: 20px;
}


.compare-field fieldset {
	border: 2px solid var(--esg-green);
	border-radius: 15px;
	padding: 12px 35px 32px;
}
.compare-field legend {
	font-size: 35px;
	color: var(--esg-green);
	padding: 20px 55px 0 32px;
    font-weight: 300;
    margin-left: -65px;
    position: relative;
    top: -20px;
}
.compare-field legend b {
	font-weight: 300;
}
.field-values {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.89vw;
	overflow: hidden;
}
@media screen and (max-width: 1930px) {
	.field-values {
		gap: 1.89vw;
	}
}
@media screen and (max-width: 1850px) {
	.field-values {
		grid-template-columns: repeat(2, 1fr);
	}
}
.fv-label {
	font-size: var(--text-fs);
	line-height: 22px;
	font-weight: 300;
	display: inline-grid;
}
.fv-val {
	font-size: var(--subtitle-fs);
	line-height: var(--subtitle-fs);
	font-weight: 100;
}
.fv-val.big {
	font-size: var(--tl-date-fs);
	line-height: var(--tl-date-fs);
}
.fv-val b {
	font-weight: 300;
}
.fv-sep svg {
	width: 14px;
}
.difference {
	display: inline-grid;
	grid-auto-flow: column;
	gap: 10px;
    align-items: center;
}

.compare-field.field-soc fieldset {
	border-color: var(--esg-pink);
}
.compare-field.field-soc legend {
	color: var(--esg-pink);
}

.compare-field.field-gov fieldset {
	border-color: var(--esg-purple);
}
.compare-field.field-gov legend {
	color: var(--esg-purple);
}

.field-value {
	display: grid;
}

#leaf .section .values-from-to .subtitle {
	margin-bottom: 20px;
}

.values-improv-issues {
	padding-top: var(--section-pad);
}



/* Tables */
.col-header span {
	font-size: var(--text-fs);
	line-height: var(--text-lh);
	color: var(--esg-green);
	font-weight: 400;
}
.col-header h6 {
	font-size: var(--tl-date-fs);
	line-height: var(--tl-date-fs);
	font-weight: 100;
}
.col-val-header {
    margin-bottom: 11px;
    padding-top: 20px;
    position: relative;
}
.col-val-header span {
	font-weight: 400;
}
.field-col {
	position: relative;
}
.field-col:first-child .col-val-header:after {
    content: '';
    bottom: 0;
    position: absolute;
    left: 0;
    height: 1px;
    width: 100vw;
    background: #c8cfc6;
}
.field-col:not(:first-child):before {
    content: '';
    height: 100%;
    width: 1px;
    background: #c8cfc6;
    position: absolute;
    left: calc(2.89vw / 2* -1);
    top: 0;
}
.field-col:not(:first-child) .col-val-header span {
    color: #fff;
}

.field-soc .col-header span {
	color: var(--esg-pink);
}
.col-2 {
	grid-column: span 2;
}

.field-gov .col-header span {
	color: var(--esg-purple);
}

/* Intro Video */
#intro-header video {
    width: 100%;
    height: auto;
}
#intro-header {
    position: relative;
    line-height: 0;
}
.video-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}
#intro-header .arrow-down {
    z-index: 2;
}
#intro-header .arrow-down svg {
    transform: rotate(-90deg);
    width: 12px;
}
#audioBars {
    position: absolute;
    bottom: 20px;
    right: 35px;
    z-index: 999;
    height: 30px;
    width: 40px;
    cursor: pointer;
}
.bar {
    background: rgb(255, 255, 255);
    bottom: 1px;
    height: 3px;
    position: absolute;
    width: 3px;
    animation: 2500ms ease-in-out -1200ms infinite alternate none running sound;
}
@keyframes sound {
    0% {
        opacity: 0.35;
        height: 12px;
    }

    100% {
        opacity: 1;
        height: 28px;
    }
}
.bar:nth-child(1) {
    left: 1px;
    animation-duration: 474ms;
}
.bar:nth-child(2) {
    left: 5px;
    animation-duration: 433ms;
}
.bar:nth-child(3) {
    left: 9px;
    animation-duration: 407ms;
}
.bar:nth-child(4) {
    left: 13px;
    animation-duration: 458ms;
}
.bar:nth-child(5) {
    left: 17px;
    animation-duration: 400ms;
}
.bar:nth-child(6) {
    left: 21px;
    animation-duration: 427ms;
}
.bar:nth-child(7) {
    left: 25px;
    animation-duration: 441ms;
}


/* Side menu on top */
@media screen and (max-width: 1360px) {
	#side-menu {
	    padding-top: var(--section-pad);
	    padding-left: 0;
	    width: 100%;
	    display: block;
	    text-align: center;
	}
	#side-menu ul {
	    display: inline-block;
	    background: rgba(0,0,0,0.8);
	    padding: 12px;
	    filter: var(--img-shadow);
	}
	#side-menu ul li {
		display: inline-block;
		margin: 0 10px;
	}
	#leaf .section .section--inner {
		grid-template-columns: 1fr;
	}
	.spacing {
	    display: none;
	}
	#side-menu.white ul li a {
		color: var(--text-color);
	}
	#side-menu.white ul li a.sel {
		border-color: var(--text-color);
	}
	#leaf #c1 {
		padding-top: calc(var(--section-pad)* 2 + var(--vert-spacing));
	}
}


/* Responsive styles */
@media screen and (max-width: 1140px) {
	.table-values {
		grid-template-columns: 1fr;
	}
	.lc-row, .lc-row.inverted {
		grid-template-columns: 1fr;
	}
	.lc-row .lcr-content{max-width:unset}
	.lc-row.inverted .lcr-content {
	    order: 1;
	}
	.esg-compare {
	    grid-template-columns: 1fr;
	    gap: var(--vert-spacing);
	}
	.esg-separator {
	    display: none;
	}
	.actions-grid {
	    grid-template-columns: repeat(2, 1fr);
	}
	.leaf--info {
		grid-template-columns: 1fr;
	}
	.info-box h3 {
		line-height: var(--leaf-fs);
	}
	.content--esg-info {
		grid-template-columns: 1fr;
	}
	.content--valori-grid, .tl-info--grid {
	    grid-template-columns: repeat(2, 1fr);
	}
	.ratings-small {
		gap: 30px;
	}
}
@media screen and (max-width: 960px) {
	:root {
		--section-pad: 60px 30px;
	}
	#leaf .section .section--inner .content {
	    padding-left: var(--content-pad);
	    margin-left: calc(var(--content-pad) * -1);
	}
	#side-menu-container {
		display: none;
	}
	#leaf #c1 {
	    padding: var(--section-pad);
	    padding-left: 0;
	    padding-right: 0;
	}
	.actions-grid {
		gap: var(--grid-gap);
		grid-template-columns: 1fr;
	}
	#leaf #c7.section {
	    padding-bottom: calc(60px + 90px);
	}
	.esg-2023 {
		padding-top: 60px;
	}
	.esg-compare {
	    padding-top: calc(60px - 36px);
	}
	.values-from-to {
	    padding-top: 60px;
	}
}
@media screen and (max-width: 860px) {
	:root {
		--grid-gap: 20px;
	}
	.content--grid, .content--text-grid {
	    grid-template-columns: 1fr;
	}
	.percorso-grid {
	    grid-template-columns: 1fr;
	    gap: var(--grid-gap);
	}
	.percorso-box:nth-child(3n+1),
	.percorso-box:nth-child(3n+2),
	.percorso-box:nth-child(3n+3) {
	    padding: 0;
	}
	.percorso-box:not(:nth-child(3n+1)):before {
	    display: none;
	}
	#leaf .inner-section {
	    padding-top: 00px;
	}
	.content--valori-grid, .tl-info--grid {
	    grid-template-columns: 1fr;
	    gap: var(--grid-gap);
	}
	.field-values {
		grid-template-columns: 1fr;
	}
	.ratings-small {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 767px) {
		:root {
		--section-pad: 30px 30px;
	}
}
@media screen and (max-width: 520px) {
	:root {
	    --rating-fs: 65px;
    	--rating-s-fs: 35px;
        --title-fs: 50px;
	}
	.rating-main .rating-val {
	    font-size: 35px;
	}
	.rating-main svg {
	    width: 90px;
	}
}

@media screen and (max-width: 480px) {
	.tl--grid {
		gap: 40px;
	}
	.tl--row {
	    grid-template-columns: 1fr;
	}
	.tl-info--grid {
	    padding-top: 0;
	}
	.tl-date span {
		padding-bottom: 0;
	}
	.tl-date:after {
		display: none;
	}
	#leaf .intro-codice{
    padding: 100px 30px 30px;
}
}

@media screen and (max-width: 440px) {
	.difference {
		grid-auto-flow: row;
		gap: 0;
	}
	.fv-sep svg {
	    transform: rotate(90deg);
	}
	.rating-main .rating--grade {
		grid-template-columns: 1fr;
	}
	.values-stripe {
		grid-template-columns: 1fr;
	}
	.value--info {
	    border-top-left-radius: 5px;
	    border-bottom-left-radius: 0;
	    border-top-right-radius: 5px;
	}
	.value--levels {
		grid-auto-flow: column;
	}
}
@media screen and (max-width: 400px) {
	:root {
	    --section-pad: 60px 25px;
	}
	.esg-column fieldset {
		border: none;
		padding: 0;
	}
	.esg-column legend {
		top: 0;
		margin: 0;
		padding: 0;
	}
	.info-box h3 {
		font-size: 35px;
	}
	.valore-box h4 {
		font-size: 35px;
	    line-height: 35px;
	}
	.esg-info {
		padding-left: 10px;
	}
	.esg-info:before {
		width: 3px;
	}
	h5.rating--value {
		font-size: 55px;
	}
	.leaf--info {
		row-gap: 20px;
	}
}

@media screen and (max-width: 380px) {
	:root {
	    --title-fs: 75px;
	}
	#leaf .section h1, #leaf .section h2 {
	    /*margin-left: calc(var(--content-pad) / 2* -1);*/
	}
}
