/*@import url("assets/fonts/Manrope/Manrope.css");*/
@import url("assets/fontawesome/css/all.min.css");
@import url("old_styles.css");

:root {
	--fa: "Font Awesome 6 Pro";
	--dark-grey: #1b1b1b;
	--white: #fff;
	--light-grey: #f4f4f4;
	--medium-grey: #4f4f4f;
	--red: #A6030D;
	--transparent-black: #0002;
}

/** colors **/

.white,
a.white {
	color: var(--white) !important;
}

.white-bg {
	background-color: var(--white);
}

.dark-grey {
	color: var(--dark-grey);
}

.dark-grey-bg {
	color: #fff;
	background-color: var(--dark-grey);
}

.light-grey {
	color: var(--light-grey);
}

.light-grey-bg {
	color: var(--medium-grey);
	background-color: var(--light-grey);
}

.medium-grey {
	color: var(--medium-grey);
}

.medium-grey-bg {
	color: var(--white);
	background-color: var(--medium-grey);
}

.light-grey-bg h1,
.light-grey-bg h2,
.light-grey-bg h3 {
	color: var(--dark-grey);
}

.red,
a.red,
.rosso,
a.rosso {
	color: var(--red) !important;
}

.red-bg,
a.red-bg,
.rosso-bg,
a.rosso-bg {
	background-color: var(--red);
	color: var(--white) !important;
}

body,
html {
	font-family: 'kozuka-gothic-pro', sans-serif;
	color: var(--dark-grey);
}

a,
a:link,
a:hover,
a:active {
	color: var(--dark-grey);
	transition: all 0.3s;
}

a:focus-visible,
.accordion-button:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 0.25rem blue;
}

h1.page-title {
	font-weight: 700;
}

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

.fw-medium {
	font-weight: 600;
}

b {
	font-weight: 600;
}

strong {
	font-weight: 700;
}

b>strong,
strong>b {
	font-weight: 900;
}

/** skip nav **/
.skip-nav:focus-within {
	position: static;
	left: 0;
}

.skip-nav {
	position: absolute;
	left: -9999px;
}

/** bootstrap extend **/

.rounded-4 {
	border-radius: 1.5rem;
}

.rounded-5 {
	border-radius: 3rem;
}

.squared-bottom {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.squared-top {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}

.squared-left {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.squared-right {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

@media (min-width: 1200px) {
	.fs-1 {
		font-size: 3rem !important;
	}
}

.row .container {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}


.wp-block-columns {
	overflow: hidden;
}

/** posts **/

article {
	font-weight: 400;
	color: var(--medium-grey);
	font-size: 1.12rem;
}

article h1,
article h2,
article h3,
article h4 {
	color: var(--dark-grey)
}

/* Breadcrumb */
.breadcrumb {
	font-size: 15px;
}

ol.breadcrumb li.breadcrumb-item {
	margin: 0;
	padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
	padding: 0 10px 0;
	font-weight: normal;
}

.breadcrumb-item a {
	color: var(--dark-grey);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: var(--dark-grey);
	font-weight: 700;
}

.breadcrumb-item .breadcrumb-link,
.breadcrumb-item .nolink {
	color: var(--dark-grey);
	text-decoration: none;
	display: inline-block;
	max-width: 18rem;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.admin-bar #custom_menu_icon {
	margin-top: 0 !important;
}

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

#main-content p:empty {
	display: none;
}

/* Home - slider */
#carouselSlideHome img {
	width: 100vw;
	height: 620px;
	object-fit: cover;
}

#carouselSlideHome .carousel-caption {
	bottom: 4rem;
	z-index: 3;
	right: auto;
	text-align: left;
}

#carouselSlideHome h2.titolo-slide-home {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
}

#carouselSlideHome .carousel-control-next,
#carouselSlideHome .carousel-control-prev {
	z-index: 3;
}

/* Header */

.header-sticky {
	box-shadow: 0 0 10px #0002;
}

.header-content {
	z-index: 100;
	position: relative;
}

ul.top-bar-menu li a {
	color: var(--medium-grey);
	font-weight: 400;
	text-decoration: none;
}

ul.menu-header li a {
	color: var(--dark-grey);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

ul.menu-header li:last-child a {
	padding-right: 0;
}

.top-bar-menu .menu-item {
	position: relative;
}

.top-bar-menu .sub-menu {
	position: absolute;
	left: -999em;
	top: 100%;
	opacity: 0;
	transform: translateY(-1em);
	transition: opacity 0.3s ease 0.3s, transform 0.2s ease 0.3s, left 0s linear 0.6s;
	background: #fff;
	padding: 0 12px;
	list-style: none;
}

.top-bar-menu .menu-item:hover .sub-menu,
.top-bar-menu .menu-item:focus-within .sub-menu {
	left: 0;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s, transform 0.2s;
}

.top-bar-menu .menu-item-has-children>a::after {
	content: "\f0d7";
	font-family: var(--fa);
	font-weight: 600;
	font-size: 0.8rem;
	vertical-align: middle;
	line-height: 1;
	display: inline;
	padding-left: 0.5em;
}

button.search-btn {
	border: none;
	background: none;
}

button.icon-burger {
	color: var(--dark-grey);
	background-color: #fff;
	border: none;
}

button.search-btn i,
button.icon-burger i {
	font-size: 22px;
	top: 3px;
}

.btn-close:focus {
	outline: 0;
	box-shadow: 0 0 0 .25rem #0d6efd;
	opacity: 1;
}

/** menu sottopagine **/

.subpage-menu .page_item_has_children {
	position: relative;
}

.subpage-menu.navbar-nav li>a {
	color: var(--dark-grey);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 15px;
	display: flex;
	align-items: center;
}

.subpage-menu .opener {
	margin-left: auto;
	padding-left: 1em;
}

.subpage-menu .page_item_has_children:not(.closed)>a .down {
	display: none;
}

.subpage-menu .page_item_has_children.closed>a .up {
	display: none;
}


.subpage-menu ul.children {
	list-style-type: none;
	margin: 0;
	padding: 15px 0 5px 10px;
	border-bottom: 1px solid #D9D9D9;
}

.subpage-menu ul.children li {
	padding: 0;
}

.subpage-menu ul.children li a {
	color: var(--medium-grey);
	font-weight: normal;
	border-bottom: none;
	padding-bottom: 10px;
}

.subpage-menu ul.children li.current_page_item>a {
	font-weight: bold;
}


.subpage_card .immagine_card {
	background-image: url(images/LogoS.svg);
}

.subpage_card .immagine_card.nothumb {
	position: relative;
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: right bottom;
}


/* Form ricerca */
.box-cerca {
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 50;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-90px);
	width: 0;
	height: 0;
	overflow: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
}

.box-cerca.show {
	width: 100%;
	height: 110px;
	z-index: 50;
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

#searchform #close-searchform {
	display: block;
	cursor: pointer;
	padding: 30px;
	font-size: 12px;
	color: #000;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	background: transparent;
}

#searchform form {
	display: flex;
	width: 60%;
	margin: auto;
	top: 54px;
	position: relative;
	transform: translateY(-50%);
}

#searchform form input {
	padding: 12px 40px 12px 20px;
}

#searchform form button {
	position: absolute;
	top: 2px;
	right: 15px;
	padding: 0;
	height: 100%;
	width: 40px;
}

#searchform form button i {
	font-size: 22px;
}

input.form-control {
	background-color: #F4F4F4;
	border: none;
	border-radius: 15px;
}

input.form-control::placeholder {
	color: #000;
	font-weight: 600;
}


/* Content */
.altezza-testata {
	height: 65vh;
}

.box-content-center h2.titolo {
	font-size: 24px;
	font-weight: 700;
}

.box-content-center .abstract {
	font-size: 16px;
}

.box-opacity-home {
	position: relative;
	width: 100%;
	background-size: cover;
	min-height: 680px;
}

.box-opacity-home::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.5);
}

.box-opacity-home .content {
	position: relative;
	padding: 200px 50px 0 90px;
}

.box-opacity-home .content h2 {
	font-size: 30px;
	font-weight: 700;
}

.box-opacity-home .abstract {
	min-height: 160px;
}

.box-opacity-home p {
	min-height: 50px;
}

.box-opacity-home .button-link {
	margin-top: 60px;
}

.sfondo-grigio-chiaro {
	background-color: #F4F4F4;
}

.testata-immagine,
.immagine-testata {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	min-height: max(10vw, 10vh);
}

.immagine-testata.big {
	min-height: min(30vw, 600px);
}

.immagine-testata .title_over {
	z-index: 2;
	position: relative;
}

.immagine-testata .image-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.immagine-testata.title_over .image-container {
	filter: brightness(0.7);
}

.immagine-testata .titolo {
	text-shadow: 0 0 15px #0009;
}

.immagine-testata.no-image .titolo {
	text-shadow: 0 0 0;
}

.testata-titolo-pagina {
	background-color: #F4F4F4;
}

.testata-pagina {
	background-position: top left;
	background-repeat: no-repeat;
	height: 353px;
	border-radius: 16px;
}

.titolo-sezione-eventi h2 {
	font-size: 40px;
	font-weight: 700;
}

.testo-pagina h2 {
	color: var(--dark-grey);
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 15px;
}

.testo-pagina {
	color: var(--medium-grey);
	font-size: 18px;
	font-weight: 500;
}

.clear {
	clear: both;
	height: 1px;
}

.read-more a:link,
.read-more a:visited,
.read-more a:hover,
.read-more a:active {
	background-color: #E30613;
	display: block;
	width: 200px;
	padding: 15px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	border-radius: 10px;
}

.velina {
	background: rgba(0, 0, 0, 0.45);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.z-index-3 {
	z-index: 3;
}

.box-informazioni-utili {
	background-color: #F4F4F4;
}

.box-informazioni-utili .testo {
	font-size: 14px;
}

.box-informazioni-utili .testo a {
	text-decoration: none;
}

.box-informazioni-utili .label {
	border-bottom: 2px solid #CFCFCF;
	color: #EE2B24;
}

.btn-acquisto-biglietto a {
	background-color: var(--dark-grey);
	color: #fff;
	font-weight: 500;
	width: 210px;
	padding: 10px;
	font-size: 14px;
}

.desc-ticket {
	font-size: 12px;
	color: var(--medium-grey);
	line-height: 1.2em;
}

.prezzo {
	font-size: 12px;
	color: var(--medium-grey);
}

.box-rounded {
	background-position: top center;
	background-size: cover;
	height: 415px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.fascia-box-rounded {
	background-color: var(--dark-grey);
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	color: #fff;
	font-size: 24px;
}

.info-ingresso {
	color: #000;
	font-size: 14px;
	font-weight: 500;
}

.immagine-allegati {
	width: 60%;
	margin-bottom: 5%;
}


.immagine-allegati img {
	position: relative;
	z-index: 2;
}


.immagine-allegati::after {
	/* content: "";*/
	background-image: url('images/thumbnail-s.png');
	position: absolute;
	height: 110%;
	width: 110%;
	left: 55%;
	z-index: 1;
	background-size: contain;
	top: 0;
}

.label-link-news a {
	color: var(--medium-grey);
	font-size: 16px;
	font-weight: 500;
}

.page-item.active .page-link {
	color: #fff;
	background-color: #ccc;
	border-color: #ccc;
}

article h2 a:link,
article h2 a:visited,
article h2 a:hover,
article h2 a:active {
	color: var(--dark-grey);
	text-decoration: none;
	font-size: 30px;
	font-weight: 700;
}

.data-evento {
	background-color: var(--red);
	border-radius: 16px;
	padding: 5px 15px;
	color: #fff;
	font-size: 15px;
	display: inline-block;
}

.events-nav a {
	color: #fff;
	background: var(--red);
	padding: 3px 15px 4px;
	border-radius: 15px;
	line-height: 1.2em;
	display: inline-block;
	font-weight: 600;
	text-decoration: none;
}

/* Gallery */
.gallery .splide__arrow {
	background: var(--dark-grey);
	width: 40px;
	height: 40px;
	opacity: inherit;
}

.gallery .splide__arrow svg {
	fill: #fff;
	width: 0.9em;
}

.gallery img {
	border-radius: 16px;
	height: 682px;
}

/* Accordion */
.accordion-button {
	color: var(--dark-grey);
	font-size: 18px;
	font-weight: 700;
}

.accordion-button:not(.collapsed) {
	color: var(--dark-grey);
	background-color: #F4F4F4;
}

.accordion-button:focus {
	box-shadow: none;
}

/* Navigazione sx */
.navbar-nav li {
	padding: 6px 0;
}

.navbar-nav li:first-child {
	padding-top: 0;
}

.navbar-nav li a {
	color: var(--dark-grey);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 15px;
	display: block;
}

.navbar-nav .sub-menu {
	list-style-type: none;
	margin: 0;
	padding: 15px 0 5px 10px;
	border-bottom: 1px solid #D9D9D9;
}

.navbar-nav .sub-menu li {
	padding: 0;
}

.navbar-nav .sub-menu li.current_page_item a {
	font-weight: 700;
}

.navbar-nav .sub-menu li a {
	content: none;
	color: var(--medium-grey);
	font-weight: normal;
	border-bottom: none;
	padding-bottom: 10px;
}

.navbar-nav li.menu-item-has-children a::after {
	color: var(--dark-grey);
	float: right;
	font-family: 'Font Awesome 5 Free';
}

.navbar-nav li.menu-item-has-children a.arrow-down::after {
	content: '\f107';
}

.navbar-nav li.menu-item-has-children a.arrow-up::after {
	content: '\f106';
}

/* Home - sidebar a comparsa */
.offcanvas-end {
	border-left: none;
	box-shadow: -3px 3px 10px -3px var(--dark-grey);
}

.offcanvas-header .btn-close {
	opacity: 1;
	margin-right: 5px;
}

.offcanvas-body {
	padding: 0;
}

.offcanvas-body ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.offcanvas-body ul li:first-child a {
	border-top: 1px solid var(--medium-grey);
}

.offcanvas-body ul li a {
	padding: 30px 15px 30px 25px;
	color: var(--dark-grey);
	border-bottom: 1px solid var(--medium-grey);
}

.sidebar .sidebar-link:hover .link-icon {
	transition: transform 0.2s;
}

.sidebar .sidebar-link:hover .link-icon {
	transform: translateX(10px);
}

.sidebar .offcanvas-header {
	box-shadow: 2px 0 3px #0002;
}

/* Home - news + eventi */
.box-ultime-news h2 {
	font-size: 40px;
	font-weight: 700;
}

.cat_container {
	top: 0;
	left: 0;
	width: 100%
}

a.term_pillow {
	font-size: 13px;
	padding: 4px 16px 6px;
	border-radius: 15px;
	color: #fff;
	text-shadow: 0 0 4px #0006, 0 0 2px #0002;
	background-color: var(--dark-grey);
}

.box-news-home .bkg-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 236px;
}

.box-evento .bkg-img,
.box-mostre .bkg-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 16px;
	padding-top: 95%;
	background-image: url('images/bg-s.png');
}

.box-news-home h3,
.box-evento h3,
.box-mostre h3 {
	font-size: 21px;
	font-weight: 700;
}

.eo-event-date {
	font-size: 15px;
	font-size: 0.92rem;
}

.eo-event-date time {
	font-weight: bold;
	color: var(--red);
}

/* Home - prossimi eventi */
.box-evento .categoria {
	background: rgba(27, 27, 27, 0.6) !important;
	color: #fff;
	font-weight: 500;
	border-radius: 16px;
	font-size: 13px;
	top: 20px;
	padding: 3px 15px 5px 15px;
	position: absolute;
}

.box-evento .splide__arrow {
	top: 60%;
	background-color: var(--dark-grey);
	width: 40px;
	height: 40px;
	opacity: inherit;
}

.box-prossimi-eventi h2,
.titolo-sezione h2 {
	font-size: 40px;
}

.box-prossimi-eventi .sottotitolo {
	color: #9C9C9C;
	font-size: 17px;
	font-weight: 500;
}

.velina-grigia {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 200px;
	height: 368px;
	background-color: #F4F4F4;
}

.link-tutti-eventi a {
	color: var(--dark-grey);
	font-size: 16px;
	font-weight: 500;
}

/* Home - Newsletter */
.box-newsletter {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 380px;
	border-radius: 20px;
	position: relative;
}

.box-newsletter h3 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
}

.box-newsletter .sottotitolo {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

.border-radius-20 {
	border-radius: 20px;
}

a.btn-rosso {
	background-color: var(--red);
	padding: 9px 14px 5px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	border-radius: 8px;
}

a.btn-rosso i {
	transition: all 0.2s;
}

a.btn-rosso:hover i,
a.btn-rosso:active i {
	padding-left: 12px;
}

/* Ricerca eventi */
.cerca-eventi ::placeholder {
	color: var(--dark-grey);
	opacity: 1;
}

.cerca-eventi input,
.cerca-eventi select {
	min-height: 60px;
	font-size: 15px;
	font-weight: 700;
	padding-left: 20px;
	padding-right: 20px;
	margin-right: 20px;
	border: none;
	display: block;
	width: 100%;
	background-color: var(--white);
}

.cerca-eventi .btn-cerca {
	margin: 0;
	padding: 0;
	color: #fff;
	background-color: #E30613;
	width: 188px;
	font-size: 25px;
	font-weight: 600;
}

.cerca-eventi i {
	top: 22px;
	right: 40px;
}

.cerca-eventi select {
	border-right: 20px solid transparent;
}

body .daterangepicker {
	z-index: 500;
}

.post-type-archive-event .daterangepicker {
	margin-top: -25px;
}

.post-type-archive-event .daterangepicker .ranges li {
	font-size: 14px;
	padding: 8px 12px;
	cursor: pointer;
	white-space: nowrap;
}

body .daterangepicker .calendar-table td {
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.daterangepicker .drp-calendar {
		width: 100%;
	}

	.post-type-archive-event .daterangepicker {
		margin-top: -35px;
		width: calc(100% - 1.5rem);
	}
}


/* Footer */
footer {
	border-top: 1px solid #A4A4A4;
}

#menu-footer li,
#footer-nav li {
	margin-right: 10px;
	margin-bottom: 10px;
}

#menu-footer li:last-child {
	margin-right: 0;
}

footer ul.nav li a:link,
footer ul.nav li a:visited,
footer ul.nav li a:hover,
footer ul.nav li a:active {
	color: var(--dark-grey);
	font-size: 15px;
	text-decoration: none;
}

footer .item-footer a {
	color: var(--dark-grey);
	font-size: 12px;
	text-decoration: none;
}

footer .info-societa,
footer .label-logo {
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
}

footer .info-societa a {
	color: var(--dark-grey);
	text-decoration: none;
}

footer .icona-social a {
	color: var(--dark-grey);
}

.label-cert {
	font-size: 15px;
	font-weight: 400;
}

/* Mostre */
.box-mostre .splide__arrow {
	top: 54%;
	background-color: var(--dark-grey);
	width: 40px;
	height: 40px;
	opacity: inherit;
}

.box-evento .splide__arrow svg,
.box-mostre .splide__arrow svg {
	fill: #FFF;
	width: 0.9em;
	height: 0.9em;
}

.box-evento .splide__arrow--prev {
	left: 22.5em;
}

.box-mostre .splide__arrow--prev {
	left: 19em;
}

.box-evento .splide__arrow--next {
	left: 25.6em;
}

.box-mostre .splide__arrow--next {
	left: 22.1em;
}

.bg-s {
	background-position: bottom left;
	background-repeat: no-repeat;
}

.set-width {
	width: 170%;
}

.splide__arrows {
	display: none;
}

.gallery .splide__arrows {
	display: block;
}

.box-prossimi-eventi button {
	background-color: var(--dark-grey);
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	color: #fff;
}

/* Media Queries */
@media screen and (max-width: 992px) {}

@media (min-width: 768px) and (max-width: 992px) {}

@media screen and (max-width: 768px) {
	.set-width {
		width: auto;
	}
}

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

	#carouselSlideHome h2.titolo-slide-home {
		font-size: 30px;
	}

	#carouselSlideHome img {
		height: 400px;
	}

	#carouselSlideHome .carousel-caption {
		bottom: 8rem;
	}

	.splide__arrow {
		display: inline !important;
		position: inherit !important;
	}

	.splide__arrow--prev {
		margin-right: 10px !important;
	}

	.splide__arrow svg {
		height: inherit !important;
	}

	.box-correlati-home .sottotitolo {
		min-height: auto;
		margin-bottom: 40px;
	}

	.box-ultime-news h2,
	.box-prossimi-eventi h2,
	.titolo-sezione h2,
	.box-newsletter h3 {
		font-size: 30px;
	}

	.box-rounded {
		height: 300px;
	}

	.box-mostre .splide__arrow {
		top: 55.3%;
	}

	.box-mostre .splide__arrow--prev {
		left: 16em;
	}

	.box-mostre .splide__arrow--next {
		left: 19.1em;
	}

	.pianta-citta-scienza img {
		width: 330px;
	}

	.box-opacity-home .content {
		padding: 100px 50px 0 50px;
	}

	.immagine-testata.altezza-img-evento {
		height: 40vh;
	}

	.gallery img {
		height: 28vh;
	}

	.gallery .splide__arrow {
		top: 115%;
	}

	input[type="date"],
	.daterange {
		position: relative;
		padding: 10px;
		-webkit-appearance: none;
	}

	input[type="date"]:before,
	input.daterange:before {
		font-family: 'FontAwesome';
		content: '\f133';
		width: 15px;
		height: 20px;
		position: absolute;
		top: 20px;
		right: 20px;
		color: var(--dark-grey);
	}
}


.calendar-icon {
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 3;
	margin-top: -0.5em;
	margin-right: 1em;
}

@media screen and (max-width: 360px) {}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	body:not(.wp-admin) select {
		-webkit-appearance: menulist-button !important;
		line-height: 24px !important;
		color: #000 !important;
	}
}

.admin-bar>.sticky-top {
	top: 32px;
}

.admin-bar #offcanvasRight {
	top: 32px;
}

/** menu overlay **/

html body div.wprm-overlay {
	opacity: 0.1;
}

/** main menu effects **/

#menu-menu-principale>li a {
	position: relative;
}

#menu-menu-principale>li a::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--dark-grey);
	transition: all 0.3s;
}

#menu-menu-principale>li:hover a::after {
	width: 100%;
}


/** post grid **/

.cats {
	width: 100%;
	font-size: 0.9rem;
}

.cats .tagncat {
	padding: 0.2em 1.2em 0.05em;
	border-radius: 2rem;
	display: inline-block;
	text-decoration: none;
	margin-bottom: 0.3em;
	line-height: 1.4em;
}

.cat_list_over_image.cats .tagncat.no-color {
	background-color: transparent;
}

/** post grid effects **/

.news-container,
.grid .element article {
	position: relative;
	z-index: 2;
}

.post_grid .element,
.grid .element {
	transition: all 0.5s;
	position: relative;
	z-index: 2;
}

.grid_item_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

.element .newsphoto-aggr>.grid_item_image {
	scale: 1;
	filter: brightness(0.95);
	transition: all 0.5s;
	transform: rotate(0deg);
	background-color: #fff;
}

.element:hover .newsphoto-aggr>.grid_item_image {
	scale: 1.05;
	filter: brightness(1);
}

.hover_effect {
	position: relative;
}

.hover_effect>* {
	z-index: 3;
	position: relative;
}

.post_grid .element::after,
.grid .element::after,
.hover_effect::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: transparent;
	transition: all 0.5s;
	z-index: 1;
	scale: 0.95;
	border-radius: 8px;
}

.post_grid .element:hover::after,
.grid .element:hover::after,
.hover_effect:hover::after {
	scale: 1;
	background: var(--light-grey);
}

.title_on_image {
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.cardtitle::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	position: absolute;
	background: var(--dark-grey);
	transition: all 0.5s;
	top: 100%;
}

.title_on_image .cardtitle::after {
	background: var(--white);
}

.post_grid .element:hover .cardtitle::after {
	width: 100%;
}

.post_grid_pages .page-numbers {
	text-decoration: none;
	margin: 0 5px;
	background: var(--light-grey);
	border-radius: 3rem;
}

.post_grid_pages .page-numbers:hover,
.post_grid_pages .page-numbers.current {
	background: var(--red);
	color: #fff;
}

/** correlati effects **/
.color-bar {
	position: absolute;
	height: 7px;
	width: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
	transition: all 0.3s;
}

.box-correlati-home .box-content .d-block {
	transition: all 0.5s;
}

.box-correlati-home .box-content:hover .color-bar {
	height: 1rem;
}

.box-correlati-home .box-content:hover .arrow-link {
	padding-left: 50%;
	margin-left: -0.5em;
}

/** info box **/

.info_box_selector {
	font-size: 1rem;
}

.info_box_selector .section_title h2 {
	font-size: 1.125rem;
	font-weight: 700;
}

/** section title */

.border-separator {
	background-color: var(--transparent-black);
	height: 2px;
}

.title-icon {
	font-size: 0.8em;
}


body:not(.wp-admin) .alignfull[class*="wp-block"] {
	left: 50%;
	margin-left: -50vw;
	width: 100vw;
	position: relative;
}


@media only screen and (max-width: 1200px) {
	.wprmenu_bar #custom_menu_icon.hamburger {
		top: 30px;
		right: 20px;
		float: right;
		background-color: var(--red) !important;
	}

	.admin-bar .wprmenu_bar #custom_menu_icon.hamburger {
		top: 62px;
	}
}