/* ----------------------------------
 * deloitalia.com custom css
 *
 * coding style roughly based on: 
 * http://smacss.com/
 * ----------------------------------
 *
  *
  * INDICE
  *   - Base styles
  *   - Typography
  *   - Buttons
  *   - Layouts
  *   - Moduli
  *   - States
  *   - Themes
  *   - Pages and posts
  *
  */




 /* ========================
  *
  *  BASE styles
  *
  * ========================
  */

:root{
	--dark-blue-color: #1f5d8f;
	--light-blue-color: #00aeef;
  --transp-blue-color: rgba(0,174,239,0.08);
  --light-gray-color: #f0f0f0;
  --medium-gray-color: #9C9E9F;
  --medium-blue-color: #96b9b6;
  --cold-transp-light-blue-color: rgba(105,156,151,0.21);
  --transp-light-blue-velatura-foto: rgba(100,139,135,0.5);
  /*--cold-transp-dark-blue-color: rgba(3,86,135,0.82);*/
  --cold-transp-dark-blue-color: rgba(3, 61, 117, 0.82);
}

body{
	font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a{
	color: var(--light-blue-color);
}

a:hover{
	color: inherit;
	text-decoration: none;
}

/* Gutenberg wide and full width styles for bootstrap */
.container .alignfull {
  max-width: none;
  width: 100vw;
  margin-left: calc( 50% - 50vw );
}
@media screen and (max-width:991px) {
  .container .alignwide {
    max-width: none;
    width: 100vw;
    margin-left: calc( 50% - 50vw );
  }
}








/*========================
*
*  TYPOGRAPHY
*
* ========================
*/

h2, h3, h4, h5 {
  color: var(--light-blue-color);
  font-weight: 600;
}

.txt-normal-light {
	font-weight: 400;
	color: #ffffff;
}

.txt-normal-aqua {
	font-weight: 400;
	color: #00aeef;
}

.txt-normal-dark {
	font-weight: 400;
	color: #1f5d8f;
}

.txt-semibold-light {
	font-weight: 600;
	color: #ffffff;
}

.txt-semibold-aqua {
	font-weight: 600;
	color: #00aeef;
}

.txt-semibold-dark {
	font-weight: 600;
	color: #1f5d8f;
}
.txt-bold-light {
	font-weight: 700;
	color: #ffffff;
}

.txt-bold-aqua {
	font-weight: 700;
	color: #00aeef;
}

.txt-bold-dark {
	font-weight: 700;
	color: #1f5d8f;
}

.txt-extrabold-light {
	font-weight: 800;
	color: #ffffff;
}

.txt-extrabold-aqua {
	font-weight: 800;
	color: #00aeef;
}

.txt-extrabold-dark {
	font-weight: 800;
	color: #1f5d8f;
}

.banner-heading h1 {
	font-size: 1rem;
  font-weight: inherit;
  line-height: inherit;
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 375px) {
	.banner-heading h1 {
		font-size: 1.15rem;
	}
}
@media (min-width: 600px) {
	.banner-heading h1 {
		font-size: 1.5rem;
	}
}
@media (min-width: 992px) {
	.banner-heading h1 {
		font-size: 1.75rem;
	}
}

.entry-header{
	text-align: center;
	color: var(--dark-blue-color)!important;
}

.entry-title{
	text-transform: uppercase;
	font-weight: 600;
}

.entry-content{
	color:var(--dark-blue-color)!important;
	padding-right: 3%;
}






/*========================
*
*  BUTTONS
*
* ========================
*/

.btn, 
.button, 
.btn-primary{
  border: 0px !important;
  background: linear-gradient(var(--light-blue-color) 0%, var(--dark-blue-color) 100%) !important;
  color: #fff !important;
  border-radius: .4rem !important;
}

.dl-btn,
.dl-btn-torna {
  border: 1px solid var(--dark-blue-color);
  color: #1f5d8f;
}

.wpcf7-submit, 
.dl-btn {
    display: inline-block;
    border-radius: 0.4rem !important;
    margin: 0 auto 1rem;
   	min-width: 200px;
	  max-width: 49%;
    text-align: center;
    padding: 10px 5px;
}

.dl-btn a {
  color: var(--dark-blue-color);
}

.dl-btn-grad a {
  color: #ffffff;
}

.dl-btn p {
	margin-bottom: 0;
}

.wpcf7-submit, 
.dl-btn-grad {
	border: 0px solid transparent !important;
  background: linear-gradient(#00aeef 0%, #1f5d8f 100%) !important;
  color: #fff !important;
}

.dl-btn-torna{
	border: 1px solid rgb(31, 93, 143) !important;
    background: transparent !important;
    color: rgb(31, 93, 143) !important;
}

#btn-fai-domanda {
	    background-color: rgb(240, 248, 255)!important;
}








/* ========================
*
*  LAYOUTS
*
* ========================
*/

/* -- Base layout -- */

.wrapper {
	padding-top: 0;
	min-height: calc(100vh - 245px);
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .wrapper {
    overflow-x: initial;
  }
}

#single-wrapper {
	padding-top: 30px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.prod-separator {
  height: 1px;
  background-color:var(--dark-blue-color);
}

#prodotti > .row{
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  #prodotti > .row{
    margin-left: auto;
    margin-right: auto;
  }
}






/* ========================
*
*  MODULI
*
* ========================
*/


/* -----------------------
 *  modulo NAVBAR 
 * -----------------------  
 */

.navbar {
  padding: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.navbar-brand{
	padding-left: .35rem;
  max-width: 70px;
}

.navbar-toggler{
	border: 0px !important;
}

.navbar-nav > li{
  padding: 5px;
}

.navbar-nav > li:not(:last-child){
  border-bottom: 1px solid #fff;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .dropdown-menu .nav-link {
    color: rgba(255,255,255,1)!important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,.5);
}

.navbar-dark .navbar-nav .dropdown-menu .nav-link {
  padding-bottom: 8px;
  padding-top: 8px;
}

.navbar-dark .navbar-nav .dropdown-menu .nav-link:hover{
	color: rgba(255,255,255,.5) !important;
	background-color: transparent;
}

#navbarNavDropdown{
  background-color: rgb(0, 174, 239);
  padding: 0px 10px;
}

.dropdown-menu{
	top: 50px;
	border: 0px !important;
	border-radius: 0px !important;
	background-color: #00aeef !important;
	color: #fff;
}

ul.dropdown-menu.show {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -4px;
}

.dropdown-menu > li {
	box-shadow: -1px 16px 0px -15px #fff;
}

.dropdown-menu > li:last-child{
	box-shadow: none;
}

/* hierarchical menus 2022 07*/

.navbar-dark .navbar-nav .dropdown-menu .nav-link:focus {
  color: #fff!important;
  text-decoration: none;
  background-color: var(--light-blue-color);
}

.menu-item-has-children.dropdown-submenu > .dropdown-menu {
  padding-left: 1.5rem;
  padding-top: 0;
  margin-top: -0.5rem;
}

.menu-item-has-children.dropdown-submenu > .dropdown-menu li {
  box-shadow: -1px 16px 0px -15px rgba(255,255,255, 0.5);
}
.menu-item-has-children.dropdown-submenu > .dropdown-menu li:last-child {
  box-shadow: none;
}

 /* right arrow for mobile hierarchical menu subitems */
.dropdown-submenu > .nav-link::after {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-left: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}


@media (min-width: 768px) {

  .navbar #navbarNavDropdown {
    position: relative; /* context for #main-menu width */
  }

  .navbar #main-menu {
    width: 100%;
    justify-content: space-between;
  }

	.navbar-brand{
		padding-bottom: .3125rem;
		margin-right: 1.6rem;
		margin-bottom: 0.1rem;
  }

  .navbar-nav > li{
    padding: 0;
    font-weight: 300;
  }

  .navbar-nav > li:not(:last-child){
    border-bottom: none;
  }

  ul.dropdown-menu.show {
    margin-top: -10px;
  }

  .navbar-nav .dropdown-toggle[aria-expanded="true"] {
    background-color:#00aeef;
  }

  #navbarNavDropdown{
		background-color: inherit;
		padding: 0;
  }

  /* hierarchical menus for desk navbar 2022 07*/
  .menu-item-has-children.dropdown-submenu > .dropdown-menu{ 
    display: none;
    position: absolute;
    left: 100%; 
    top: 0.5rem;
    padding-left: 1rem;
  }

  .menu-item-has-children.dropdown-submenu:hover > .dropdown-menu {
    display: block!important;
    border-left: 1px solid var(--dark-blue-color)!important;
  }

  /* right arrow for desk hierarchical menu subitems */
  .dropdown-submenu > .nav-link::after {
    position: static;
    margin-left: 0.5em;
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
  }

}

@media (min-width: 992px) {

  .navbar #main-menu {
    justify-content: unset;
  }

  #main-menu > li:not(.delo-search) {
    padding-right: 1.5rem !important;
  }

  #main-menu .delo-search {
    margin-left: auto; /* push search icon to the right */
  }

}

/* --- navbar > SEARCH / GLASS icon  --- */ 

.navbar .delo-search-icon {
  display: none;
}

.navbar #searchform {
  margin: 10px 0;
  width: 100%;
}

.navbar #searchsubmit {
  border-radius: 0px !important;
  padding: 0 1rem;
  border: none;
  background: none;
  background-color: var(--dark-blue-color);
  color: #ffffff;
	cursor: pointer;
}

.navbar #searchform .assistive-text{
	display: none;
}

.navbar #searchform #s {
  border: 2px solid white;
}

.navbar .delo-searchform ::-moz-placeholder {
  color: #999 !important;
  opacity: 1;
}

.navbar .delo-searchform ::-webkit-input-placeholder {
  color: #999 !important;

}

@media screen and (min-width:768px) {

  .navbar .delo-search-icon {
    display: block;
    cursor: pointer;
  }

  .navbar .delo-searchform{
    display: none; /* toggle handled by js */
    width: 400px;
    position: absolute;
    right: 0;
    margin-top: 10px;
    z-index: 9999;
    background-color: rgba(255,255,255,0.5);
    padding: 0;
    border-radius: 0;
     -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.15);
    box-shadow: 0 1px 10px rgba(0,0,0,0.15);
  }
  
  .navbar .delo-searchform form input:focus {
    color: #555;
  }
  
  .navbar .delo-searchform input[type="search"] {
    border-radius: 0;
  }
  
  .navbar #searchform {
    margin: 10px;
    width: unset;
  }

}

/* --- end navbar --- */ 



/* -----------------------
 *  modulo DROPDOWN
 * -----------------------
 */

.dropdown-item:hover{
	color: rgba(255,255,255,.5) !important;
	background-color: transparent;
}



/* -----------------------
 *  modulo HEADER con ondina
 *  sotto navbar
 * -----------------------
 */

 .delo-header-hero a {
   color: #ffffff;
   text-decoration: none;
   background-color: transparent;
 }

.delo-header-hero {
    position: relative;
    max-height: 350px;
    height: 25vh;
    /* fallbacks for no background image */
    background-color: #c2e4f0;
    background-image: linear-gradient(90deg, rgb(0, 174, 239) 0%, rgb(31, 93, 143) 100%);
    
    background-position: center top;
    background-size: cover;
    margin-bottom: 2rem;
}

.delo-header-hero.has-title,
.delo-header-hero.has-logo {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.delo-header-hero.has-logo > img {
	height: 55%;
    width: auto;
}

.delo-header-hero.has-title.has-logo {
	min-height: 200px;
}

.delo-header-hero.has-title.has-logo > img {
	min-height: 60px;
}

.delo-header-hero-onda {
	position: absolute;
	bottom: -1px;
	left: 0;

	width:100%;
	fill: white;
}

.delo-header-hero .banner-heading {
	position: static;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  top: unset;
  text-shadow: 2px 2px var(--dark-blue-color);
}


@media (min-width: 768px) {
	.delo-header-hero .banner-heading {
		font-size: 2rem;
	}
}

@media (min-width: 992px) {
	.delo-header-hero {
		margin-bottom: 4rem;
	}
}
@media (min-width: 1200px) {
	.delo-header-hero {
		min-height:300px;
		background-position-y: 5%;
	}
}
@media only screen and (orientation:portrait) {
  	.delo-header-hero {
		max-height:200px;
	}
}
@media only screen and (min-aspect-ratio: 12/7) and (max-height: 768px) {
  	.delo-header-hero {
		max-height:unset;
		min-height: unset;
		height: 200px;
	}
}


/*-- header indici famiglie prodotto  --*/

    /*-  foto piu grande -*/
    body.tax-catalogazione .delo-header-hero {
      max-height: unset;
      height: 50vh;
    }

    /*- animazione invito a scroll in basso -*/
    body.tax-catalogazione .delo-header-hero .arrow{
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translate(-50%,-50%);
      z-index: 99;
      display: none; /* attivato da js */
    }
    body.tax-catalogazione .delo-header-hero .arrow span{
      display: block;
      width: 25px;
      height: 25px;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      margin: -10px;
      animation: animate 2s infinite;
    }
    body.tax-catalogazione .delo-header-hero .arrow span:nth-child(2){
      animation-delay: -0.2s;
    }
    body.tax-catalogazione .delo-header-hero .arrow span:nth-child(3){
      animation-delay: -0.4s;
    }
    @keyframes animate {
      0%{
          opacity: 0;
          transform: rotate(45deg) translate(-15px,-15px);
      }
      50%{
          opacity: 1;
      }
      100%{
          opacity: 0;
          transform: rotate(45deg) translate(15px,15px);
      }
    }


/*--- end header con ondina ---*/




/* ----------------------------------------
*  modulo MAXIBUTTON stili comuni
* ----------------------------------------
*/

.delo-content-onda-alto {
	fill: #ffffff;
  width: 100%; 
	position: absolute;
  top: 0;
  left: 0;
}




/* ----------------------------------------
*  modulo MAXIBUTTON categoria con dida
* ----------------------------------------
*/

.delo-maxibutton {
  position: relative;
  background-color: #b9b3a5;
  background-size: cover;
  background-position-x: center;
  height: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .delo-maxibutton {
    background-position-y: 25%;
  }
}

.delo-maxibutton .delo-icona {
	fill: white;
  margin-top: 2rem;
	height: 85px;
}
@media (min-width: 660px) {
	.delo-maxibutton .delo-icona {
		height: 175px;
	}
}
@media (max-width: 991px) {
	.delo-maxibutton .delo-icona {
		max-width: 158px!important;
	}
}

.delo-maxibutton h2 {
  margin: 1.5rem 0;
  color: #fff!important;
  font-weight: 800;
  font-size: 1.5rem;
}
@media (min-width: 660px) {
  .delo-maxibutton h2 {
    margin-top: 3rem;
    font-size: 2rem;
  }
}

.delo-maxibutton .descr-overlay{
	background-color: rgba(0, 174, 239, 0.55);
	flex-grow: 1;
}

.delo-maxibutton .prod-intro{
	text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  padding: 12%;
}
@media (max-width: 350px) {
  .delo-maxibutton .prod-intro {
   padding: 15px;
   font-size: 0.75rem;
 }
}
@media (min-width: 576px) {
  .delo-maxibutton .prod-intro{
    font-size: 1.2rem;
    line-height: 1.6rem;
		padding: 18% 12%;
	}
}

/*--- end modulo maxibutton categoria---*/



/* --------------------------------------------------------
 *  modulo BOX SERIE O FAMIGLIA
 *  per taxonomy catalogazione (index page term con figli)
 * --------------------------------------------------------
 */

 .tax-catalogazione .delo-box-categorie {
	position: relative;
	background-color: #b9b3a5;
  background-size: cover;
  background-position-x: center;
  background-position-y: 25%;
  height: 100%;
  min-height: 200px;
  text-align: center;
  justify-content: center;
  padding: 0 0.5rem 1rem;
  /* opacity: 0.7; */
}
@media (min-width: 512px) {
	.tax-catalogazione .delo-box-categorie {
		min-height: 300px;
	}
}
@media (min-width: 992px) {
	.tax-catalogazione .delo-box-categorie {
		background-position-y: unset;
	}
}

.tax-catalogazione .delo-box-categorie h2 {
    margin-top: auto;
    margin-bottom: 0;
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 2rem;
    text-shadow: 2px 2px #5e5e5e;
    text-align: left;
}
@media (min-width: 512px) {
	.tax-catalogazione .delo-box-categorie h2 {
    font-size: 1.5rem;
    line-height: 1.3;
	}
}
@media (min-width: 992px) {
	.tax-catalogazione .delo-box-categorie h2 {
    font-size: 1.75rem;
	}
}



/* --------------------------------------------------------
 *  modulo BOX PRODOTTI
 *  per taxonomy catalogazione (index page term senza figli)
 *  e related products
 * --------------------------------------------------------
 */

.no-pad-mob:nth-child(odd){
  padding-right: 5px !important;
  padding-left: 0px !important;
}

.no-pad-mob:nth-child(even){
  padding-left: 5px !important;
  padding-right: 0px !important;
}
@media screen and (min-width: 768px) {
  .no-pad-mob:nth-child(odd),
  .no-pad-mob:nth-child(even) {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

 .delo-prod-col > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.delooprodotto {
	display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 2rem;
}
@media (min-width:768px) {
  .delooprodotto {
    margin-bottom: 0;
  }
}


.delooprodotto .black-overlay {
	width: 100%;
    height: 110%;
    background: rgba(0, 0, 0, .05);
    position: absolute;
    top: 0;
}

.prod-img-wrap{
  position: relative;
  padding: 35px 0px;
  text-align: center;
  height: 380px;
}
@media (max-width:414px) {
  .prod-img-wrap {
    height: 300px;
  }
}

.prod-img-wrap img {
	max-width: 100%;
  max-height: 100%;
  width: auto;
  padding: 25px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.prod-title-wrap {
  width: 100%;
  /* min-height: 160px; */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  top: -15px;
  background-size: 100% 100%; /* 4 mozilla */
  text-transform: uppercase;
  color: #fff;
  padding: 10% 8% 8% 8%;
  font-size: 4.5vw;
}
@media (min-width:320px) {
  .prod-title-wrap {
    padding: 30px 15px 15px 15px;
    font-size: 1rem;
  }
}
@media (min-width:576px) {
  .prod-title-wrap {
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }
}

.prod-title-wrap .sottotitolo-prodotto {
  margin-top: auto;
}




/* ----------------------------------------------------------------
 *  modulo RIBBON NOVITA
 *  per taxonomy catalogazione (index page serie/famiglia prodotto)
 * ----------------------------------------------------------------
 */

 .delo-ribbon-wrapper {
	width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
  z-index: 1;
}

.delo-ribbon-wrapper.on-left-corner {
  right: initial;
  transform: rotate(-90deg);
}

.delo-ribbon {
  font-size: 12px;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 15px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  right: -11px;
  top: 10px;
  width: 100px;
  height: 28px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  background-color: #1a8bbc;
  background-image: -webkit-linear-gradient(top, #177aa6 45%, #1a8bbc 100%);
  background-image: -o-linear-gradient(top, #177aa6 45%, #1a8bbc 100%);
  background-image: linear-gradient(to bottom, #177aa6 45%, #1a8bbc 100%);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#177aa6', endColorstr='#ff1a8bbc', GradientType=0);
}

.delo-ribbon:before,
.delo-ribbon:after {
  content: "";
  border-top: 3px solid #9e9e9e;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: -3px;
}

.delo-ribbon:before {
  left: 0;
}

.delo-ribbon:after {
  right: 0;
}



/* ----------------------------------------
 *  modulo SIDERIBBON NOVITA
 *  per post single prodotto
 * ----------------------------------------
 */
 .delo-sideribbon-wrapper {
  width: 105px;
  height: 0;
  border-bottom: 20px solid #045089;
  border-top: 20px solid #045089;
  border-left: 15px solid transparent;
  font-size: 17px;
  font-weight:700;
}

.delo-sideribbon {
  color:white;
  position: relative;
  top: -12px;
  text-align: center;
  right: -7px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .delo-sideribbon-wrapper {
    margin-top: 15px;
  }
  .delo-sideribbon-outer {
    border-right: 1px solid gray;
      height: 70px;
  }
}




/* ----------------------------------------
 *  modulo COLORE/FINITURA
 *  per post single prodotto
 * ----------------------------------------
 */

.finitura-icons-wrapper {
  text-align: center;
}

.finitura-icons-wrapper > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.finitura-icon-wrapper {
  display: inline-block;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.finitura-icon-wrapper .finitura-icon {
  display: inline-block;
  height: 3.5rem;
}

.finitura-icon-wrapper a .finitura-icon {
  transition: transform 0.2s;
}

.finitura-icon-wrapper a .finitura-icon:hover {
  transform: scale(1.05);
}

.finitura-icon-wrapper .finitura-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue-color)
}

@media (min-width: 768px) {
  .finitura-icon-wrapper {
    margin-left: 0.85rem;
    margin-right: 0.85rem;
  }

  .finitura-icon-wrapper .finitura-icon {
    display: inline-block;
    height: 4.85rem;
  }  

  .finitura-icon-wrapper .finitura-name {
    font-size: 1rem;
  }
}

/* colore finitura > per piatti doccia */

.finitura-icons-wrapper {
  margin-top: 2rem;
}



/* ----------------------------------------
 *  modulo TABELLA MISURE
 *  per post single prodotto
 * ----------------------------------------
 */

 .single-delooprodotto .delo-table table {
  width: 100%;
 }

 .single-delooprodotto .delo-table td,
 .single-delooprodotto .delo-table th {
  padding: 0.5rem;
  text-align: left;
  margin: 0;
}

.single-delooprodotto .delo-table th {
  border-bottom: 1px solid var(--dark-blue-color);
}

.single-delooprodotto .delo-table tbody tr:nth-child(2n){
  background-color: var(--transp-blue-color);
}

@media screen and (min-width:768px) {
  .single-delooprodotto .delo-table {
    font-size: 1.25rem;
   }
 }




/* ----------------------------------------
 *  modulo ICONE OPZIONI PRODOTTO
 *  per post single prodotto
 * ----------------------------------------
 */

 div.icone-opzioni-prodotto {
   text-align: center;
   margin-top: 2rem;
 }

 img.opzione-icon {
  width: 68px;
  margin: 0 0.5rem 1rem;
 }

 .filetto-icone-opzioni {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--dark-blue-color);
 }

 @media screen and (min-width:768px) {
  img.opzione-icon {
    width: 46px;
   }
 }

  @media screen and (min-width:992px) {
  img.opzione-icon {
    width: 60px;
  }
 }

 @media screen and (min-width:1200px) {
  img.opzione-icon {
    width: 70px;
  }
 }






/* ----------------------------------------
 *  modulo PREZZO
 *  per post single prodotto
 * ----------------------------------------
 */

.delo-prezzo-wrapper {
  text-align: center;
}

.delo-prezzo {
  color: var(--dark-blue-color);
  font-weight: 800;
  padding: 1rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--dark-blue-color) ;
}

@media (min-width: 768px) {
  .delo-prezzo-wrapper {
    margin: 0 auto 0 auto;
  }
}



/* ----------------------------------------
 *  modulo FORM INFO RAPIDE
 * ----------------------------------------
 */

.form-domanda {
  padding: 0 15px;
}

#submit-domanda-rapida {
  padding: 10px 5px;
  font-weight: 700;
  background: unset!important;
  background-image: none!important;
  background-color: rgb(240 248 255)!important;
  color: var(--dark-blue-color)!important;
  border: 1px solid var(--dark-blue-color)!important;
}

#submit-domanda-rapida.form-espansa {
  display: block!important;
}

.form-domanda .wpcf7 form .wpcf7-response-output {
  margin: -2rem 0 1rem 0;
  padding: 0.75rem
}




/* ----------------------------------------
 *  modulo STORE LOCATOR
 *  parti comuni rivenditori-showrooms
 * ----------------------------------------
 */

 .store_locator_main {
  padding: 0;
  margin-top: 0;
}

/* map */
#store_locator_map{
	height: 500px !important;
	margin-bottom: 30px;
}

#store_locator_dragged_button {
	display: none!important;
}

/* buttons */
#store_locator_find_stores_button, 
#store_locator_result_list .button,
.store_locator_infowindow .button {
  background-color: var(--dark-blue-color);
  border-color: var(--dark-blue-color);
  font-size: 1rem;
}

#store_locator_find_stores_button {
  margin: 10px auto;
}

#store_locator_get_all_stores > i,
#store_locator_get_my_position > i {
    display: block;
    border: 1px var(--dark-blue-color) solid;
    text-align: center;
    font-style: normal;
    margin: 10px auto;
    font-weight: bold;
    color: var(--dark-blue-color);
    padding: 7px;
    border-radius: 0.5rem;
}

.store_locator_find_stores_button {
  border: 0px !important;
  background: linear-gradient(var(--light-blue-color) 0%, var(--dark-blue-color) 100%) !important;
  color: #fff !important;
  border-radius: .4rem !important;
}

/* common fields */
#store_locator_address_field {
  padding: 5px 15px;
}

/* results */
#store_locator_result_list .store_locator_name {
  color: var(--dark-blue-color)!important;
}

#store_locator_result_list .store_locator_city br,
.store_locator_infowindow .store_locator_city br {
  display:none;
}

#store_locator_result_list .store_locator_region::before,
.store_locator_infowindow .store_locator_region::before {
  content: ' (';
}

#store_locator_result_list .store_locator_region::after,
.store_locator_infowindow .store_locator_region::after {
  content: ')';
}

.store_locator_no_stores {
	margin-top: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* infowindow */
.store_locator_infowindow .button {
  font-size: 0.75rem;
}

.store_locator_infowindow .store_locator_name {
 font-size: 1.2rem;
}

.store_locator_infowindow p {
line-height: 1.1rem;
}

.store_locator_infowindow .store_locator_address {
 margin-bottom: 10px;
}

.store_locator_infowindow .store_locator_contact {
 margin-bottom: 18px;
}

.store_locator_infowindow .store_locator_image {
 display: none;
}

.store_locator_infowindow .store_locator_description {
 margin-top: -64px;
 font-weight: bold;
}

.store_locator_infowindow .store_locator_actions {
 margin-top: 1rem;
}
/* infowindow safari fix */
@media not all and (min-resolution:.001dpcm) { 
     @supports (-webkit-appearance:none) {
          .store_locator_infowindow .store_locator_actions {
	 		margin-bottom: 1rem;
			}
     }
}

.store_locator_infowindow .store_locator_fax {
display:none;
}


/* fix for "loading" spinwheel */
.store_locator_loading {
  opacity: 0.5;
}

.store_locator_loading i {
 position: fixed;
   top: 50%;
}





/* ----------------------------------------
 *  modulo PIEDINO DOWNLOAD catalogo serie
 *  sotto navbar
 * ----------------------------------------
 */

.dwnl-cat-serie-content a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
}

.dwnl-cat-serie-content {
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 0;
  color: white;
  font-size: 1.3rem;
  line-height: 1.3;
  background: #00adee;
  /* img background caricata da php */
  background-size: cover;
  background-position-y: 25%;
}

.dwnl-cat-serie-content .delo-icona-dwnl-catal {
  padding: 1rem 1rem 0 1rem;
}

.dwnl-cat-serie-content [class*="col-"].download-cta-txt {
  padding-left: 2rem;
  padding-right: 1rem;
}

.dwnl-cat-serie-content .download-cta-txt p {
padding-top: 1.3rem;
}

.dwnl-cat-serie-content .download-cta-txt p span {
display: none; 
}

.delo-spaziatore-catal-pdf {
  margin-top: 4rem;
}

.delo-dwnl-onda  {
  width: 100%;
  margin-bottom: -7px;
}

.delo-dwnl-onda svg {
  fill: #ffffff;
    transform: scale(-1,1);
  /* fix safari bug */
  width: 102%;
  position: relative;
  left: -2px; 
}


@media (min-width: 512px) {
  .dwnl-cat-serie-content .download-cta-txt p span {
    display: inline; 
  }
}

@media (min-width: 992px) {
  .dwnl-cat-serie-content {
    margin-left: 0;
    margin-right: 0;
  }
  .dwnl-cat-serie-content .delo-icona-dwnl-catal {
    width: 65%;
  }
  .dwnl-cat-serie-content [class*="col-"].download-cta-txt {
    padding-left: 0;
  }
  .dwnl-cat-serie-content .download-cta-txt p {
    margin-left: -15%;
  }	
}

/*--- end piedino download catalogo serie ---*/



/* ----------------------------------------
*  modulo COMMENTI blog
* ----------------------------------------
*/

/* blocco lascia un commento */
#respond {
  border-top: 1px solid var(--dark-blue-color);
  padding-top: 2rem;
  margin-top: 1rem;
}

/* commenti */
#commentform {
  color: var(--dark-blue-color);
}

.comments-title{
	font-size: 120%;
	font-weight: 800;
}

#comments {
  margin: 2.5rem 15px 0.5rem 15px;
}
@media screen and (min-width: 768px) {
  #comments {
    margin-left: 0;
    margin-right: 0;
  }
}

#comments .author {
	margin-bottom: 0;
}

#comments .post-date {
	color: var(--medium-gray-color);
	font-size: .8rem;
}

#comments li {
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
}

#comments ul.children {
	margin-top: -2rem;
}

#comments .comment-list {
  padding-inline-start: 0;
}

#comments .comment-list li{
	list-style-type: none;
}

#comments .comment-list .children {
  padding-inline-start: 1rem;
}

#comments .comment-list .author{
	color: var(--dark-blue-color);
	text-transform: uppercase;
	font-weight: bold;
}

.comment-content{
	color: var(--dark-blue-color) !important;
	margin: 0;
}


.is-reply, .is-reply p{
	color: var(--light-blue-color) !important;
	text-decoration: none !important;
	font-weight: bold;
	font-size: 80%;
}

.btn-blog-comment{
	float: right !important;
}

.comment-form #submit{
	width: 100%;
	max-width: 304px;
	font-weight: bold;
}

.comment-alert{
	color: #ffffff;
	padding: 5px;
	margin-top: 1rem;
	margin-left: 1rem;
	background: red;
	display: none;
}

/* checkbox privacy in linea col form */
#wp-comment-cookies-consent {
  margin-left: -15px;
}
@media (min-width: 768px){
  #wp-comment-cookies-consent {
    margin-left: -1.25rem;
  }
}

#al-sent {
	background-color: green;
}



/* ----------------------------------------
*  modulo blog index CATEGORIE
* ----------------------------------------
*/


.delo-blog-categorie {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
}

.delo-blog-categorie .delo-blog-label-categorie {
  color: var(--medium-blue-color);
  padding-right: 0.5rem;
}

.delo-blog-categorie ul {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.delo-blog-categorie .current-cat a {
  color: var(--medium-blue-color);
}

.delo-blog-categorie ul > li a {
  color: var(	--dark-blue-color);
  padding-right: 0.5rem;
  transition: background-color 0.25s;
  transition-timing-function: ease-out;
}
.delo-blog-categorie ul > li a:hover {
  color: var(	--light-blue-color);
  background-color: var(--light-gray-color);
}
.delo-blog-categorie li {
  display: inline-block;
  list-style-type: none; 
  padding: 0;
  margin: 0;
}
.delo-blog-categorie li:last-child a {
  padding-right: 0;
}
@media (min-width: 576px){
  .delo-blog-categorie .delo-blog-label-categorie {
    padding-right: 0;
  }
  .delo-blog-categorie ul > li a {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
}




/* ----------------------------------------
*  modulo blog CTA
* ----------------------------------------
*/

.blogpost-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.col-wrapper-blogpost-cta {
  background-color: var(--medium-blue-color);
  /* background image set in markup */
  background-position-y: 50rem;
  margin-left: 0;
  margin-right: 0;
}

.col-wrapper-blogpost-cta .col-cta-resellers {
  background-color: rgba(150,185,182, 0.7);
  padding: 0 30px;
}

.col-wrapper-blogpost-cta .col-cta-resellers p {
  color: var(--dark-blue-color);
  margin-top: -5px;
  margin-bottom: 2rem;
}

.blogpost-cta .col-wrapper-blogpost-cta .col-cta h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue-color);
}

.blogpost-cta #submit-domanda-rapida {
  margin-bottom: 0;
}

.blogpost-cta .wpcf7-spinner {
  position: absolute;
  left: 50%;
  margin-top: 0.6rem;
}

.blogpost-cta .form-domanda .wpcf7 form .wpcf7-response-output {
  margin-top: 1rem;
}



/* ----------------------------------------
*  modulo blog RELATED old
* ----------------------------------------
*/

.delo-related-blog-post-wrapper {
	background-color: var(--light-blue-color);
}

.related-blog-post{
	margin-bottom: 35px;
  padding: 40px 25px;
}
@media (min-width: 768px) {
	.related-blog-post {
		padding: 40px 10px;
	}
}

.related-blog-post .related-wrap{
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.delo-related-blog-titolo h2 {
  color: white;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 15px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}

.related-blog-post .delo-blog-categorie {
  color: #ffffff;
}

.related-blog-post .related-img-wrap{
    height: 250px;
    background-size: cover;
    background-position: center;
}

.related-blog-post .related-excerpt {
	padding: 20px 20px 20px 0;
}

.related-excerpt{
	background-color: var(--light-blue-color);
	color: #fff;
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* colonna sx di padding col layout post single */
#cat-col-1 {
  display: none;
}
@media (min-width: 768px) {
  #cat-col-1 {
    display: block;
  }
}



/* ----------------------------------------
*  modulo SOCIAL BAR
* ----------------------------------------
*/

#social-wrap{
  display: none;
}

#social-wrap-mobile {
	text-align: center;
}

#social-wrap svg{
	margin: 10px;
}

#social-wrap-mobile{
	display: none;
	margin-top: 30px;
}

#social-wrap-mobile svg{
	margin: 10px;
}

#social-wrap svg:hover,
#social-wrap-mobile svg:hover{
	filter: invert(50%);
}

@media (min-width: 768px) {
  #social-wrap {
    display: block;
    padding-top: 150px;
  }

  #social-wrap-mobile svg{
    margin: 15px;
  }

}



/* ---------------------------------------
*  modulo YOU TUBE EMBEDS responsive
*  aggiungere div con classe 
*  'youtube-responsive-container' 
* ----------------------------------------
*/

.youtube-responsive-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.youtube-responsive-container iframe, 
.youtube-responsive-container object, 
.youtube-responsive-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}



/* ----------------------------------------
*  modulo PAGINATION
* ----------------------------------------
*/
.pagination-nav .pagination, 
.pagination-nav .pagination .page-item {
	display:inline-block;
}

.pagination-nav nav {
  text-align: center;
}

.pagination-nav .page-link {
  color: var(--dark-blue-color);
}

.fa-step-forward, 
.fa-step-back{
	color: var(--dark-blue-color);
}




/* ---------------------------------------
*  modulo MAXI-FOOTER
* ----------------------------------------
*/

footer a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
}

/* zoccolo rivenditori vicini */

footer .rivenditori-vicini {
  margin-top: 3rem;
  margin-bottom: -2rem;
  padding: 5rem 15px 7rem 15px;
  text-align: center;
  background-color: var(--light-gray-color);
  /* background img impostata da php */
  background-position: center;
}
@media (min-width:520px) {
  footer .rivenditori-vicini {
    margin-bottom: -3rem;
  }
}
@media (min-width:768px) {
  footer .rivenditori-vicini {
    margin-bottom: -3.5rem;
  }
}
@media (min-width:992px) {
  footer .rivenditori-vicini {
    margin-bottom: -4rem;
  }
}
@media (min-width:1080px) {
  footer .rivenditori-vicini {
    margin-bottom: -10rem;
    padding-bottom: 14rem;
    background-size: cover;
  }
}

.home footer .rivenditori-vicini {
  margin-top: 0;
}

footer .rivenditori-vicini h3 {
  margin-bottom: 0.25rem;
  color: var(--dark-blue-color);
  font-size: 1.16rem;
}

footer .rivenditori-vicini p {
  color: var(--dark-blue-color);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

footer .rivenditori-vicini #store_locator_search_box {
  display: flex;
  justify-content: center;
}

footer .rivenditori-vicini #store_locator_find_stores_button {
  margin: 0;
  border-radius: 0!important;
  padding: 7px 1rem;
  background-color: var(--dark-blue-color)!important;
  background: var(--dark-blue-color)!important;
}

footer .rivenditori-vicini #store_locator_address_field {
  border: none;
  padding: 7px 12px;
  width: 260px;
}
footer .rivenditori-vicini #store_locator_address_field::placeholder {
  color: #a7a7a7;
}
@media (min-width:1200px) {
  footer .rivenditori-vicini #store_locator_address_field {
    width: 400px;
    max-width: 25vw;
  }
}

/* end zoccolo rivend vicini */


footer a:hover {
  color: #fff;
  text-decoration: underline;
}

svg.ondina-footer {
	display: block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   /* fix svg scaling IE10+  */
   svg.ondina-footer {
		height: 6vw;
	}
}

.footer-content {
  background-color: #1f5d8f;
  background: linear-gradient(90deg, #00aeef 0%, #1f5d8f 100%);
}


.social-icons {
	display: flex;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #fff !important;
  vertical-align: middle;
  border-bottom: 1px solid white;

}
/* footer patch FontAwesome: PvtContent carica css versione successiva di fa */
.social-icons .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 600px) {
	.social-icons {
		margin-bottom: 1.25rem;
	}
}

.social-icons .social-icon {
  margin: 0 1rem;
}

.social-icons > a:hover{
	text-decoration: none !important;
}

.fai-cgd-logo {
  margin-left: auto;
  text-align: right;
  padding-top: 0.5rem;
}
.fai-cgd-logo img {
  height: 75%;
  width: auto;
}


/* accordion / colonne footer */

footer h4,
footer h5,
footer p {
  color: #fff;
}

@media screen and (min-width: 600px) {
  .footer-navigation {
    margin-bottom: 1rem;
    border-bottom: 1px solid #fff;
  }
}

.footer-navigation ul {
  list-style: none;
  padding-left: 0;
}


/* su mobile colonne footer diventano accordion */

.footer-nav-accordion {
  display: flex;
  flex-direction: column;
  min-height: 1px;
}
@media screen and (min-width: 600px) {
  .footer-nav-accordion {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-accordion-item {
    flex: 0 1 auto;
    width: 41.6667%;
  }
  .footer-accordion-item:last-child {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 900px) {
  .footer-accordion-item {
    width: calc(25% - 26.25px);
  }
  .footer-accordion-item:last-child {
    margin-top: 0
  }
}

/* titoli sezioni footer */
.footer-accordion-item-title {
  font-size: 1.2rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
.footer-accordion-item-title::after {
  content: "+";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  position: absolute;
  right: 15px;
}
@media screen and (min-width: 600px) {
  .footer-accordion-item-title {
    margin-bottom: 0;
  }
}

.footer-accordion-item-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.footer-accordion-item-content p {
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .footer-accordion-item-title {
    border-bottom: none;
  }
  .footer-accordion-item-title::after {
    content: "";
  }
}


/* descrizioni seo footer*/
.footer-accordion-item-content {
  display: none;
}
@media screen and (min-width: 600px) {
  .footer-accordion-item-content {
    display: block;
  }
}


/* indirizzo */
.footer-delo-address {
  font-size: 0.9rem;
  margin-top: 1.75rem;
}

/* striscia finale legal */
.footer-legal {
  background-color: var(--dark-blue-color);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.footer-legal a {
  display: inline-block;
  margin-right: 1rem;
}

@media screen and (min-width: 600px) {
  .footer-delo-address,
  .footer-legal {
    font-size: 0.75rem;
  }
  .footer-delo-address {
    margin: 1.5rem 0;
  }
  
}

/*--- end modulo maxi-footer ---*/


/* ------------------------
 *  modulo BLOG PROMO CARD
 * ------------------------ 
 */

 .blogpost-promo-card {
   background-size: cover;
   background-position: center;
   margin: 0 7px;
   flex: 1;
 }

 .blogpost-promo-card a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  color: #ffffff;
  background-color: var(--cold-transp-dark-blue-color);
  padding: 1rem 1.5rem 2rem 1.5rem;
  transition: background-color 0.35s;
 }
 .blogpost-promo-card a:hover {
  background-color: rgba(3,86,135,0.4);
 }

 .blogpost-promo-card .blog-cat {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding: 0.2rem 0.8rem 0.2rem 1rem; /* compensate letter spacing on right */
  background-color: var(--light-blue-color);
  border-radius: 12%/50%;
  margin-bottom: 2rem;
 }

 .blogpost-promo-card .card-title {
   font-size: 1.2rem;
   padding-right: 35%;
 }

 .blogpost-promo-card .card-arrow {
    font-family: 'FontAwesome';  
     margin-top: auto;
     margin-bottom: 0;
 }




/* ----------------------------
 *  modulo BLOG PROMO CAROUSEL
 * ----------------------------  
 */

/* background */
 .delo-blogpromo-outer-container {
   background-color: var(--cold-transp-light-blue-color);
   /* background image set in markup */
   background-repeat: repeat;
   background-position-y: -12rem;
   padding: 2rem 0;
 }

 /* carousel, equal height slides */
 .delo-blogpromo-carousel .slick-track{
  display: flex!important;
 }
 .delo-blogpromo-carousel .slick-slide{
  height: inherit !important;
 }

 /* carousel, nav arrows */
 .delo-blogpromo-carousel .slick-arrow:before {
    background-color: transparent!important;
    color: var(--dark-blue-color)!important;
    font-size: 26px!important;
    opacity: 1;
 }

 /* titoli */
 .delo-blogpromo-title {
   margin-bottom: 2rem;
 }
 .delo-blogpromo-title a {
  color: var(--dark-blue-color);
}

 .delo-blogpromo-title h1 {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1rem;
  color: inherit;
 }

 .delo-blogpromo-title h2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: inherit;
 }
 .delo-blogpromo-title h2 span {
   display: block;
   font-weight: 800;
 }

 @media screen and (min-width: 440px){
  .delo-blogpromo-title h1 {
    font-size: 1.1rem;
   }
   .delo-blogpromo-title h2 {
    font-size: 1.5rem;
   }
}

 @media screen and (min-width: 768px){
  /* background */
  .delo-blogpromo-outer-container {
    background-position-y: -10rem;
  }

  /* titoli */
  .delo-blogpromo-title {
    margin-bottom: 3rem;
  }
 
  .delo-blogpromo-title h1 {
   letter-spacing: 0.3rem;
   font-size: 1.25rem;
  }
 
  .delo-blogpromo-title h2 {
   font-size: 1.85rem;
  }
 }



 @media screen and (min-width: 1200px){
  /* background */
  .delo-blogpromo-outer-container {
    background-position-y: -10rem;
  }

  /* titoli */
  .delo-blogpromo-title h1 {
   letter-spacing: 0.3rem;
   font-size: 1.25rem;
  }
 
  .delo-blogpromo-title h2 {
   font-size: 1.85rem;
  }
 }




 /* -------------------------------
 *  modulo BLOGPOST RELATED
 *  potrebbero interessarti anche
 * --------------------------------
 */

/* titolo */
.delo-relatedblogposts-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 14px;
}

/* carousel, equal height slides */
.delo-relatedblogposts-carousel .slick-track{
 display: flex!important;
}
.delo-relatedblogposts-carousel .slick-slide{
 height: inherit !important;
 margin: 0 14px!important;
}

/* carousel, nav arrows */
.delo-relatedblogposts-carousel .slick-arrow:before {
   background-color: transparent!important;
   color: var(--dark-blue-color)!important;
   font-size: 26px!important;
   opacity: 1;
}

@media screen and (min-width: 414px) {
  .delo-relatedblogposts-title h2 {
    padding-left: 7px;
  }

  .delo-relatedblogposts-carousel .slick-slide{
    margin: 0 7px!important;
   }
}




 /* -------------------------------
 *  Blogpost gutenberg customizations
 *  (potrebbero interessarti anche)
 * --------------------------------
 */


/* foto 1 colonna liquid o in giustezza col testo */
.delo-single-img-wide figcaption,
.post-template-blog-single-fullwidth .wp-block-image.alignwide figcaption, 
.post-template-blog-single-fullwidth.wp-block-image.alignfull figcaption {
  padding-left: 14px;
}
@media screen and (min-width: 782px) {
.delo-single-img-wide figcaption, 
.post-template-blog-single-fullwidth .wp-block-image.alignwide figcaption, 
.post-template-blog-single-fullwidth.wp-block-image.alignfull figcaption {
    padding-left: calc((100vw - 726px) /2 + 15px);
  }
}
@media screen and (min-width: 992px) {
  .delo-single-img-wide figcaption, 
  .post-template-blog-single-fullwidth.wp-block-image.alignfull figcaption {
    padding-left: calc((100vw - 800px) /2 + 15px);
  }
  .post-template-blog-single-fullwidth .wp-block-image.alignwide figcaption {
    padding-left: 0;
  }
}


 /* 2 foto su 2 colonne al vivo (.delo-img-2cols-wide) */
 .delo-img-2cols-wide .wp-block-column figcaption{
  padding-left: 14px;
}
 @media screen and (min-width: 782px) {
  .delo-img-2cols-wide .wp-block-column:nth-child(2) figcaption{
    padding-left: 0;
  }
 }

.delo-img-2cols-wide img {
  object-fit: cover;
  width: 100%;
  height: calc(100% - 1rem);
}

@media screen and (min-width: 600px) {
  .delo-img-2cols-wide .wp-block-image {
    height: 100%;
  }
}




 /* -----------------------------------
 *  modulo FORMS Delo CLUB (PVTcontent)
 * ------------------------------------
 */

 /* target all pc_*_form */
 [class^="pc_"][class*="_form"],
 [class^="pvtcont_"][class*="_form"] {
  padding: 0!important;
  margin-bottom: 0!important;
  max-width: unset!important;
  background-color: transparent!important;
}

[class^="pc_"][class*="_form"] input,
[class^="pc_"][class*="_form"] textarea,
[class^="pc_"][class*="_form"] select {
  border: none!important;
  background-color: rgba(0, 174, 239, .1)!important;
  border-radius: 0px!important;
  font-weight: 600!important;
  color: var(--dark-blue-color)!important;
  padding: 0.5rem!important;
}

[class^="pc_"][class*="_form"] label,
.pc_form_txt_block  {
  color: var(--dark-blue-color)!important;
}

[class^="pc_"][class*="_form"] button {
  border: 0px!important;
  background: linear-gradient(var(--light-blue-color) 0%, var(--dark-blue-color) 100%)!important;
  color: #fff!important;
  border-radius: .4rem!important;
  min-width: 200px!important;
  max-width: 49%!important;
  text-align: center!important;
  font-size: 1rem!important;
  font-weight: 700!important;
  padding: 12px 5px!important;
}

[class^="pc_"][class*="_form"] button:hover,
[class^="pc_"][class*="_form"] button:focus,
[class^="pc_"][class*="_form"] button:active{
  background: var(--dark-blue-color)!important;
  color: #fff!important;
  transition: none!important;
}

.pc_checkbox {
  top: -4px!important;
  height: 1.1rem!important;
  width: 1.1rem!important;
  border: 1px solid var(--dark-blue-color)!important;
}

.pc_error_mess {
  color: red;
  background-color: #ffd6d6;
}

/* nasconde select custom PvtContent e mostra le standard*/
.lcslt {
  display: none!important;
}
.pc_field_container .lcslt-wrap select {
  display: inline-block!important;
  padding-top: 6px!important;
  padding-bottom: 6px!important;
}



/* ========================
*
*  STATES
*
* ========================
*/

.page-item.active .page-link{
	background-color: var(--dark-blue-color)!important;
  border: 1px solid var(--dark-blue-color);
}









/* ========================
*
*  THEMES
*
* ========================
*/

.bg-dark {
	background-color: var(--dark-blue-color)!important;
}

.title{
	color: var(--light-blue-color);
}

.subtitle {
	color: var(--dark-blue-color);
	text-align: center;
	font-weight: 400;
	font-size: 1.2rem;
	margin-bottom: 1rem
}

/* bordo/shadow onfocus su campi */
.form-control:focus, .wpcf7 input[type=text]:focus,
.wpcf7 input[type=search]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 input[type=range]:focus,
.wpcf7 input[type=date]:focus,
.wpcf7 input[type=month]:focus,
.wpcf7 input[type=week]:focus,
.wpcf7 input[type=time]:focus,
.wpcf7 input[type=datetime]:focus,
.wpcf7 input[type=datetime-local]:focus,
.wpcf7 input[type=color]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=file]:focus,
.wpcf7 input[type=submit]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus, .wpcf7 .wpcf7-validation-errors:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--light-blue-color);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(31, 93, 143, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(31, 93, 143, 0.25); 
}








/*========================
*
*  PAGES and posts
*
* ========================
*/




/* -----------------------
 * PAGINA HOME PAGE 
 * refactoring 2021 03 02
 * -----------------------
 */

.home .home-wrapper {
  margin-bottom: -90px;
}
@media screen and (min-width: 992px) {
  .home .home-wrapper{
		margin-bottom: auto !important;
	}
}

/* testo intro */
.home .intro-txt {
  padding: 0.8rem;
  margin-bottom: 16px
}

/* maxipulsanti (def in modules) spaziatura*/
.home .delo-col-maxipuls {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 2rem;
}

@media screen and (min-width: 576px) {
  .home .delo-col-maxipuls:nth-child(1){
    padding-right: 7px;
    padding-left: 0;
  }

  .home .delo-col-maxipuls:nth-child(2){
  padding-left: 7px;
  padding-right: 0;
  }
}

.home .delo-col-maxipuls.col-rivenditori {
  /* contiene sia colonna rivenditori che showrooms */
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
} 

/* rivenditori e showrooms: setup comune */
 .home .maxipuls-rivenditori,
 .home .maxipuls-showroom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.home .maxipuls-rivenditori a,
.home .maxipuls-showroom a {
  text-align: center;
}

.home .col-rivenditori .delo-icona{
  margin-top: 2rem;
  max-width: 158px;
  height: 85px;
}

.home .maxipuls-rivenditori .prod-intro,
.home .maxipuls-showroom .prod-intro {
  font-size: 0.75rem;
  padding: 8%;
  color: var(--dark-blue-color);
  margin-bottom: 5rem;
}

.home .col-rivenditori .delo-content-onda-alto {
  display: none;
 }

 .home .col-rivenditori h2 {
  display: none;
 }
 
 .home .col-rivenditori .delo-icona {
  fill: var(--dark-blue-color);
 }

 .home .col-rivenditori .prod-intro .maxibtn-cta {
  color: var(--light-blue-color);
 }

 .home .col-rivenditori h2 {
 display: none;
}


/* maxi pulsante rivenditori */ 
.home .maxipuls-rivenditori {
  margin-right: 0;
  background-position-y: 10%;
  background-color: rgb(173 223 254);
}
@media screen and (min-width: 576px) {
  .home .maxipuls-rivenditori {
    margin-right: 15px;
  }
}

.home .maxipuls-rivenditori .txt-extrabold-aqua {
  filter: drop-shadow(1px 1px 0 #ffffff);
}

.home .maxipuls-rivenditori .descr-overlay {
  background-color: transparent;
 }


/* maxi pulsante showrooms */
.col-rivenditori .maxipuls-showroom {
  background-color:#719ba9;
  background-position-y: 30%;
  background-blend-mode: soft-light;
}

.col-rivenditori .maxipuls-showroom span {
  color: var(--dark-blue-color);
}

.home .maxipuls-showroom .delo-icona {
  fill: #ffffff;
}

.home  .maxipuls-showroom .prod-intro {
  color: #ffffff;
  font-weight: 800;
}

.col-rivenditori .maxipuls-showroom .delo-icona {
  fill: #ffffff;
}


@media (min-width: 375px) {
  .home .maxipuls-rivenditori .prod-intro,
  .home .maxipuls-showroom .prod-intro {
    font-size: 1rem;
    padding: 18% 12%;
  }
}

@media (min-width: 576px) {
  .home .maxipuls-rivenditori .prod-intro,
  .home .maxipuls-showroom .prod-intro {
    font-size: 1.2rem;
  }
}

@media (min-width: 660px) {
  .home .col-rivenditori .delo-icona,
  .home .col-rivenditori .delo-icona {
    height: 125px;
  }
}

@media (min-width: 992px) {
  .home .home-wrapper{
		margin-bottom: auto !important;
	}

  /* maxipulsanti (def in modules) spaziatura*/
  .home .delo-col-maxipuls:first-child {
    padding-right: 15px;
   }

   .home .delo-col-maxipuls:nth-child(2) {
    padding-left: 15px;
    padding-right: 15px;
   }

   .home .delo-col-maxipuls:last-child {
    padding-left: 15px;
   }

  .home .delo-col-maxipuls.col-rivenditori {
    flex-direction: column;
    margin-top: 0;
   } 

  .home .delo-col-maxipuls.col-rivenditori:before {
    /* ondina sulla colonna rivenditori*/
    content: url("data:image/svg+xml; charset=utf-8,%3Csvg data-name='wave' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 751.13 46.2'%3E%3Cpath fill='%23fff' d='M0,46.2S97.11,7.28,230.57,1.8C387.09-4.63,495.09,17.21,547.78,21.55,675.75,32.08,751.13,0,751.13,0H0Z'/%3E%3C/svg%3E");
    left: 0;
    right: 0;
    margin-left: 15px;
    margin-right: 15px;
    z-index: 99;
    position: absolute;
    width: 100%;
  } 


    /* rivenditori e showrooms: setup comune */
 .home .maxipuls-rivenditori,
 .home .maxipuls-showroom {
    width: 100%;
  }

  .home .maxipuls-rivenditori .prod-intro,
  .home .maxipuls-showroom .prod-intro {
    font-size: 1.2rem;
    padding-top: 5%;
    padding-bottom: 11%;
    margin-bottom: 0;
  }


  /* rivenditori */
  .home .maxipuls-rivenditori .delo-icona {
    height: 145px;
  }

  .home .maxipuls-rivenditori .txt-extrabold-aqua {
    filter: unset;
  }


  /* showroom */
  .home .maxipuls-showroom {
    border-top: 5px solid #ffffff;
    flex-grow: 1;
  }

  .home .maxipuls-showroom .delo-icona {
    height: 110px;
  }

}

/* hacks ie & edge */
@supports (-ms-ime-align:auto) {
  .home .col-rivenditori .maxipuls-showroom {
    background-color:#719ba9;
    background-image: none!important;
  }
    @media screen and (min-width: 992px) {
      .home .delo-col-maxipuls.col-rivenditori:before {
      left: -8px;
      top: -1px;
    }
  }
}
/* end edge hacks */


/* modulo blogpromo > adattamenti home */
.home .delo-blogpromo-outer-container {
  margin-top: 0;
  margin-bottom: 6rem;
  padding-bottom: 3rem;
}

.home .delo-blogpromo-title { 
  padding-left: 16px;
}

.home .delo-blogpromo-carousel-wrapper {
  padding-left: 24px;
  padding-right: 28px;
}
.home .delo-blogpromo-carousel-wrapper .slick-prev {
  left: -20px;
}
.home .delo-blogpromo-carousel-wrapper .slick-next {
  right: -20px;
}

@media screen and (min-width: 768px){
  .home .delo-blogpromo-title { 
    padding-left: 0;
  }
  .home .delo-blogpromo-carousel-wrapper {
    padding-left: 10px;
    padding-right: 14px;
  }
}

@media screen and (min-width: 992px){
  .home .delo-blogpromo-outer-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 7.5rem;
  }
  .home .delo-blogpromo-outer-container .container {
    padding-left: 28px;
    padding-right: 24px;
  }
}


/* -----------------------
 * PAGINA CHI SIAMO v2
 * 2022 12
 * -----------------------
 */

 /* module local css variables */
 .page-template-about-us {
  --vertical-space: 2rem;
 }

 /* titolo header +grande */
 .page-template-about-us .banner-heading h1 {
  font-weight: 900;
  font-size: 1.75rem;
 }

 /* txt intro e foto nel cerchio */
 .page-template-about-us .foto01 img {
    border-radius: 50%;
 }

 .page-template-about-us .content-wrapper p {
  color: var(--dark-blue-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: var(--vertical-space);
 }

 .page-template-about-us .content-wrapper p strong{
  font-weight: 900;
 }

 .page-template-about-us .foto01{
  margin-bottom: var(--vertical-space);
 }

 /* foto prodotto sborda a margine*/
 .page-template-about-us .foto02{
  padding-left: 0;
  padding-right: 0;
  margin-bottom: var(--vertical-space);
 }

 .page-template-about-us .txt3 {
  background-color: #18191e;
  text-align: center;
  padding-top: var(--vertical-space);
  padding-bottom: calc( var(--vertical-space) * 0.6666);
  padding-left: var(--vertical-space);
  padding-right: var(--vertical-space);
 }
 .page-template-about-us .txt3 p:last-child {
  margin-bottom: calc(var(--vertical-space)/2);
 }

 /* txt dopo la foto prodotto */
 .page-template-about-us .txt4 p:last-child {
  border-bottom: 1px solid var(--dark-blue-color);
  padding-bottom: var(--vertical-space);
 }

 .page-template-about-us .txt5 p:last-child {
  margin-bottom: 0;
 }

 /* fai */
 .page-template-about-us .logofai {
  text-align: center;
  border-bottom: 1px solid var(--dark-blue-color);
  margin-bottom: var(--vertical-space);
  padding-bottom: calc( var(--vertical-space) / 4 );
 }
 .page-template-about-us .logofai img {
  width: 60%;
  height: auto;
 }
 
  /* pulsanti CTA */
 .page-template-about-us .r4 div {
  text-align: center;
 }
 .page-template-about-us .r4 .dl-btn {
  max-width: none;
  padding: 10px 25px;
  color: #fff;
  border: none;
 }

 .page-template-about-us .scopri-rubinett-btn {
  background: var(--dark-blue-color);
  background: linear-gradient(90deg, var(--light-blue-color), var(--dark-blue-color) 100%);
  margin-bottom: calc(var(--vertical-space)/1.25);
 }
 
 .page-template-about-us .scopri-doccia-btn {
  background: var(--dark-blue-color);
  background: linear-gradient(90deg, #609c9c, var(--light-blue-color) 100%);
 }

 .page-template-about-us footer .rivenditori-vicini {
  margin-top: var(--vertical-space);
 }


@media (min-width: 512px) {
  .page-template-about-us .logofai img {
    width: 50%;
    height: auto;
   }
}

@media (min-width: 768px) {
  /* centra verticalmente txt a fianco foto nel cerchio */
  .page-template-about-us .txt1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
   }

  /* foto prodotto boxata */
  .page-template-about-us .r2 {
    margin-right: 0;
    margin-left: 0;
  }
  .page-template-about-us .foto02 {
    margin-bottom: calc( var(--vertical-space) * 1.35 );
  }

  /* bordo alto txt dopo la foto prodotto */
 .page-template-about-us .txt4 p:last-child {
  padding-top: var(--vertical-space);
  border-top: 1px solid var(--dark-blue-color);
 }

 /* fai */
 .page-template-about-us .r3 {
  margin-bottom: var(--vertical-space);
 }
 .page-template-about-us .txt5 {
  border-right: 1px solid var(--dark-blue-color);
 }
 .page-template-about-us .logofai {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: none;
 }
 .page-template-about-us .logofai img {
  width: 60%;
  }
}

@media (min-width: 992px) {

  .page-template-about-us {
    --vertical-space: 2.5rem;
   }

  /* titolo header +grande */
 .page-template-about-us .banner-heading h1 {
  font-size: 2.2rem;
 }

  /* font testo +grande */
  .page-template-about-us .content-wrapper p {
    font-size: 1.5rem;
   }

  /* foto nel cerchio e testo marginati sx/dx */
  .page-template-about-us .foto01 {
    padding-left: 5%;
  }
  .page-template-about-us .txt1{
    padding-right: 4%;
    padding-left: 3%;
  }

}

@media (min-width: 1200px) {
    .page-template-about-us .txt1{
      padding-right: 10%;
      padding-left: 3.5%;
    }
}



/* -------------------------
 * PAGINA TROVA RIVENDITORE
 * basata su modulo store locator
 * -------------------------
 */

 body.page-template-store-locator {
	background-color: var(--light-gray-color);
}

.page-template-store-locator .delo-header-hero {
	margin-bottom: 0;
}

.page-template-store-locator .delo-header-hero-onda {
	fill: var(--light-gray-color);
}

/* links */
.page-template-store-locator #store_locator a {
  text-decoration: none;
}

.page-template-store-locator #store_locator a:hover {
color: #d85c00;
}

/* boxed search + result divs */
.page-template-store-locator #store_locator_search_box, 
.page-template-store-locator #store_locator_sidebar {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 2162px) {
	.page-template-store-locator #store_locator_search_box, 
	.page-template-store-locator #store_locator_sidebar {
	  margin-left: calc((100vw - 1080px)/2);
	}
}
	
/* search box */
@media screen and (max-width: 991px) {
	.page-template-store-locator #store_locator .store_locator_filter_radius,
  .page-template-store-locator #store_locator_filter_categories,
	.page-template-store-locator #store_locator_name_search_field {
		margin-bottom: 0.5rem;
	}
}

.page-template-store-locator #store_locator_search_box {
	margin-bottom: 2.8rem;
}

.page-template-store-locator #store_locator_search_box h5 {
	margin-top: 10px;
	margin-bottom: 10px;
  color: var(--light-blue-color);
}

.page-template-store-locator #store_locator_address_field, 
.page-template-store-locator #store_locator_filter_categories,
.page-template-store-locator #store_locator_filter_radius,
.page-template-store-locator #store_locator_name_search_field {
  border: 3px solid rgba(0, 174, 239, .1)!important;
  background-color: rgba(0, 174, 239, .1);
  border-radius: 0px !important;
  font-weight: 600;
  color: var(--dark-blue-color) !important;
}

.page-template-store-locator #store_locator_address_field:focus, 
.page-template-store-locator #store_locator_filter_categories:focus,
.page-template-store-locator #store_locator_filter_radius:focus,
.page-template-store-locator #store_locator_name_search_field:focus {
  outline-offset: 0px;
  border-color: transparent;
  box-shadow: 0 0 0 0.2rem rgba(31, 93, 143, .75);
}

.page-template-store-locator #store_locator_filter_radius:disabled {
  opacity: 0.5;
}

.page-template-store-locator #store_locator_name_search_field {
  padding: 5px 15px;
}

.page-template-store-locator #store_locator_filter_radius {
  width: 100%;
}


/* results */

.page-template-store-locator #store_locator_result_list a {
  color: var(--dark-blue-color);
}
.page-template-store-locator #store_locator_result_list a:hover {
  color: var(--light-blue-color);
}

.page-template-store-locator .store_locator_image_container img {
  /* store locator logo */
  height: 3.125rem;
  width: 50%;
  max-width: 14rem;
  margin-top: 1rem;
  object-fit: contain;
  object-position: left bottom;
}

.page-template-store-locator #store_locator_result_list .store_locator_details{
  color: var(--dark-blue-color);
  font-size: 15px;
  line-height: 19px;
  float: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-template-store-locator #store_locator_result_list .store_locator_badges {
  order: -1;
}

.page-template-store-locator .store-locator-badge {
  border-radius: 0;
  
}
.page-template-store-locator .store-locator-badge.punto-vendita {
	color: var(--dark-blue-color);
  background-color: #d8eaf0;
}
.page-template-store-locator .store-locator-badge.punto-vendita-con-show-room {
	color: #ffffff;
  background-color:rgba(31, 93, 143, 0.8);
}

.page-template-store-locator #store_locator_result_list .store_locator_name {
  font-size: 20px;
  order: -2;
  margin-bottom: 0;
}

.page-template-store-locator #store_locator_result_list .store_locator_contact {
  margin-top: 10px;
}

.page-template-store-locator  #store_locator_result_list .store_locator_distance{ 
  margin-top: 12px;
}

.page-template-store-locator #store_locator_result_list .store_locator_actions .button {
  font-size: 15px;
}

.page-template-store-locator #store_locator_result_list .store_locator_website::before {
  content: '';
  display: block;
}

/* result action buttons (telefono, navigatore, etc) */
.page-template-store-locator #store_locator_result_list .store_locator_actions .btn {
  background: transparent!important;
  border: 2px solid var(--dark-blue-color)!important;
  color: var(--dark-blue-color)!important;
  font-size: 14px;
  padding: 6px 9px;
  margin-bottom: 8px;
  width: 48%;
}

@media screen and (min-width: 360px) {
  /* Android 6.5" */
  .page-template-store-locator #store_locator_result_list .store_locator_actions .btn {
    margin-bottom: 0;
    width: auto;
  }
}

@media screen and (min-width: 375px) {
  /* iPhone 6.5" */
  .page-template-store-locator #store_locator_result_list .store_locator_actions .btn {
    padding: 6px 12px;
  }
}

@media screen and (min-width: 768px) {
  .page-template-store-locator .store_locator_image_container img {
    /* store locator logo */
    width: 30%;
  }
}






/* -------------------------
 * PAGINA TROVA SHOWROOM
 * basata su modulo store locator
 * -------------------------
 */

/* header */
.page-template-showrooms .delo-header-hero {
  background-position-y: center;
}

/* intro */
.page-template-showrooms .intro {
  font-size: 1.2rem;
}
.page-template-showrooms .intro > .col > p {
  margin-bottom: 0;
}
.page-template-showrooms .intro br {
  display: none;
}
.page-template-showrooms .subtitle {
  font-size: 1.5rem!important;
  color: #649c9a!important;
  margin: 1.75rem;
}

@media screen and (min-width: 768px) {
  .page-template-showrooms .intro {
    font-size: 1.5rem;
  }
  .page-template-showrooms .intro br {
    display: block;
  }
  .page-template-showrooms .subtitle {
    font-size: 1.75rem!important;
  }
}


/* showrooms > store locator */
.page-template-showrooms .storelocator {
  margin-top: 2rem;
}

.page-template-showrooms #store_locator_filter,
.page-template-showrooms .wordpress-store-locator-address-title {
  display: none;
}

.page-template-showrooms #store_locator_search_box {
  background-color: #e5ebeb;
  padding: 2rem 1rem;
  margin-bottom: 1rem;
}

.page-template-showrooms #store_locator_address_field {
  background-color: #ffffff;
  border: none!important;
  height: 3rem;
}

.page-template-showrooms #store_locator_find_stores_button {
  margin: unset;
}

/* infowindow */
.page-template-showrooms #store_locator_map .store_locator_visit_store {
  font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  width: 50%;
  padding: 5px 16px;
}
.page-template-showrooms #store_locator_map .store_locator_visit_store i {
  display: none;
}

/* results */
.page-template-showrooms #store_locator_result_list .store_locator_contact,
.page-template-showrooms #store_locator_result_list .store_locator_street,
.page-template-showrooms #store_locator_result_list .store_locator_zip,
.page-template-showrooms #store_locator_result_list .store_locator_badges,
.page-template-showrooms #store_locator_result_list .store_locator_visit_store i {
  display: none;
}

.page-template-showrooms #store_locator_result_list .store_locator_name {
  font-size: 1.5rem;
  order: 1;
}

.page-template-showrooms #store_locator_result_list .store_locator_visit_store {
  font-size: 1rem;
  width: 10rem;
  margin-top: 0.75rem;
}

.page-template-showrooms #store_locator_result_list .store_locator_address {
  font-size: 1rem;
  margin-top: 0;
}

.page-template-showrooms #store_locator_result_list .store_locator_distance {
  font-size: 0.85rem;
  margin-top: 0;
}

.page-template-showrooms .store-locator-row .store-locator-col-sm-4 {
  display: flex;
  flex-direction: column;
}
.page-template-showrooms #store_locator_result_list .store_locator_address {
  order: 2;
}
.page-template-showrooms #store_locator_result_list .store_locator_distance {
  order: 3;
}

/* results > buttons sanity enforcement */
.page-template-showrooms #store_locator_result_list .store_locator_get_direction,
.page-template-showrooms #store_locator_result_list .store_locator_call_now,
.page-template-showrooms #store_locator_result_list .store_locator_visit_website,
.page-template-showrooms #store_locator_result_list .store_locator_write_email,
.page-template-showrooms #store_locator_result_list .store_locator_show_on_map{
  display: none!important;
}
.page-template-showrooms #store_locator_result_list .store_locator_visit_store{
  display: inline-block!important;
}


@media screen and (min-width: 576px) {
  /*search box */
  .page-template-showrooms #store_locator_search_box {
    padding: 3rem 2rem 2rem 2rem;
  }

  /* Reset button */
  .page-template-showrooms #store_locator_get_all_stores i {
    display: inline-block;
    background-color: #ffffff;
    width: 50%;
  }

  /* Search button */
  .page-template-showrooms #store_locator_get_all_stores + .store-locator-row {
    display: inline-block;
    width: 50%;
  }
  .page-template-showrooms #store_locator_find_stores_button {
    margin-top: -6px;
  }
  .page-template-showrooms #store_locator_get_all_stores + .store-locator-row > div {
    display: inline-block;
    padding-right: 0;
    padding-left: 15px;
    right: -12px;
  }

  /* righe rivenditori */
  .page-template-showrooms #store_locator_sidebar {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-template-showrooms .store-locator-row .store-locator-col-sm-4:nth-child(1) {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .page-template-showrooms .store-locator-row .store-locator-col-sm-4:nth-child(2) {
    display: none;
  }
  .page-template-showrooms .store-locator-row .store-locator-col-sm-4:nth-child(3) {
    flex: 0 0 30%;
    max-width: 30%;
    align-items: flex-end;
  }
  
}

@media screen and (min-width: 992px) {
  /*search box */
  .page-template-showrooms #store_locator_search_box {
    padding: 3rem 3rem 2rem 3rem;
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  /*search box */
  .page-template-showrooms #store_locator_search_box {
    margin-left: 0;
    margin-right: 0;
  }
}





/* -----------------------
 * POST SINGLE SHOWROOM
 * fixes 2021 06 14
 * -----------------------
 */

/* header */
.single-stores .delo-header-hero {
  background-position: center;
  margin-bottom: 2.5rem;
}

/* corpo */
.single-stores .store-content-wrapper {
  margin-left: 1rem;
  margin-right: 1rem;
  color: #1f5d8f;
  font-size: 1.2rem;
}

/* logo > margine alto per i loghi orizzontali */
.single-stores .delo-store-logo-imgwrap {
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* logo > altezza e larghezza max */
.single-stores .delo-store-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 7rem;
  margin-bottom: 2rem;
  /* object fit and position are a fix for safari iOS */
  object-fit: contain;
  object-position: bottom left;
}

.single-stores .delo-store-intro {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #649c9a;
}

.single-stores .delo-store-desc {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #1f5d8f;
}

.single-stores .delo-store-indirizzo {
  border-bottom: 1px solid #1f5d8f;
}
.single-stores .delo-store-indirizzo > p {
  margin-bottom: 0;
}
.single-stores .delo-store-indirizzo a,
.single-stores .delo-store-recapiti a {
  margin: 0.5rem 0 2rem 0;
  width: 200px;
}
.single-stores .delo-recapito-digital a{
  font-weight: 600;
  color: #00aeef;
  transition: 0.2s;
}
.single-stores .delo-recapito-digital a:hover{
  background: #d6f4ff;
  background: #d6f4ff;
  padding: 0.25rem 0.5rem;
  margin-left: -0.5rem;
}
.single-stores .delo-store-recapiti {
  margin-top: 2rem;
  border-bottom: 1px solid #1f5d8f;
}
.single-stores .delo-store-recapiti p {
  margin-bottom: 0;
}

/* gmap */
.single-stores #store_locator_single_map {
  margin-top: 2rem;
}
/* gmap: hide modes and pegman */
.single-stores #store_locator_single_map > div > div > div:nth-child(4) > div,
.single-stores #store_locator_single_map > div > div > div:nth-child(13) > div > div.gm-svpc {
  display: none;
}

.single-stores .fotogallery{
  margin-bottom: 4rem;
}



@media screen and (min-width: 414px) { 

  /* logo > margine alto per i loghi orizzontali */
  .single-stores .delo-store-logo-imgwrap {
    min-height: 6.5rem;
  }

}



@media screen and (min-width: 768px) { 

  /* corpo */
  .delo-store-logo{
    text-align: center;
    border-bottom: 1px solid #1f5d8f;
  }

  /* logo > fix margine alto per i loghi orizzontali */
  .single-stores .delo-store-logo-imgwrap {
    align-items: center;
    padding-left: 0;
  }

  /* logo > fix larghezza max per i loghi orizzontali */
  .single-stores .delo-store-logo img {
    max-width: 75%;
  }

  .single-stores .delo-store-colsx {
    border-right: 1px solid #1f5d8f;
  }

  .single-stores .delo-store-intro {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: 0 10%;
  }

  .single-stores .delo-store-desc {
    border-bottom: none;
  }

  .single-stores .delo-store-coldx {
    padding-left: 0;
    padding-right: 0;
  }

  .single-stores .delo-store-indirizzo,
  .single-stores .delo-store-recapiti {
    padding-left: 15%;
  }

  .single-stores .delo-store-indirizzo a.btn,
  .single-stores .delo-store-recapiti a.btn {
    font-size: 1rem;
  }

  /* gmap */
  .single-stores #store_locator_single_map {
    margin: 1rem 0 0 1rem;
  }
  
}


@media screen and (min-width: 1200px) {

    /* logo > fix larghezza max per i loghi orizzontali */
    .single-stores .delo-store-logo img {
      max-width: 60%;
    }

} 


/* --- end post single showroom ---*/




/* -----------------------
 * POST SINGLE PRODOTTO 
 * refactoring 2021 02 25
 * -----------------------
 */

 /* Post single prodotto > titoli e testo */

.delooprodotto-template-default .entry-header {
  padding: 0 15px;
}

.delooprodotto-template-default .entry-model{
	color:var(--light-blue-color);
	font-weight: 900;
	text-transform: uppercase;
}

.delooprodotto-template-default h1 {
  font-size: 2rem;
  line-height: 1.2;
}

.delooprodotto-template-default h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .delooprodotto-template-default h1 {
    font-size: 2.5rem;
  } 

  .delooprodotto-template-default h2 {
    font-size: 2rem;
  } 

}

  /* Post single prodotto > packshot */

  .single-prod-img-wrap{
    margin: 3rem 0;
  }

  .single-prod-img-wrap img{
    max-width: 100%;
    max-height: 80vh;
    padding: 1rem;
  }

  @media screen and (min-width: 576px) {
    .single-prod-img-wrap img{
      max-height: 100%;
    }
  }

  @media (min-width: 768px) {
    .single-prod-img-wrap img {
      height: 55vh;
      width: auto;
      max-width: unset;
      max-height: unset;
      display: inline-block;
    }
  
    .single-prod-img-wrap > img.delo-wideimage {
      height: auto;
      max-width: 90%;
      padding: 10% 0;
    }
  }


  /*  packshot wide: IE 10/11 fix */
  _:-ms-lang(x), .single-prod-img-wrap.delo-wideimage { 
    margin: 10px 20px;
  }
  _:-ms-lang(x), .single-prod-img-wrap > img.delo-wideimage { 
    width: 100%;
  }


  /* filetti prima e dopo la descrizione */
  .delooprodotto-template-default .prod-separator {
    margin: 4.5vh 0px;
  }
  

  /* -- descrizione: titolo blocco e testo --- */

  .delooprodotto-template-default .entry-content > h2 {
		margin-bottom: 1rem;
	}

  .delooprodotto-template-default .entry-content p,
  .delooprodotto-template-default .entry-content ul {
    line-height: 1.5;
  }

  .delooprodotto-template-default .entry-content .blockquote-footer {
    font-size: inherit;
    color: var(--dark-blue-color);
  }

  .delooprodotto-template-default .entry-content > ul {
		padding-left: 20px;
	} 

  .delooprodotto-template-default .entry-content li {
    margin-bottom: 0.5rem;
  }

  .delooprodotto-template-default .entry-content p a {
    color: var(--light-blue-color);
    text-decoration: underline;
  }

  @media screen and (min-width: 768px) {
    .delooprodotto-template-default .entry-content {
      border-right: 1px solid var(--dark-blue-color);
		  padding-right: 1.2rem;
    }

    .delooprodotto-template-default .entry-content > ul {
      padding-left: 40px;
    }

    .delooprodotto-template-default .entry-content p,
    .delooprodotto-template-default .entry-content ul {
      font-size: 1.5rem;
		  line-height: 1.5;
    }

  }


  /*-- Post single prodotto > packshot ambientato ---*/
  .delooprodotto-template-default .has-ambient-packshot .entry-header {
    margin-bottom: 1rem;
  }

  .delooprodotto-template-default .has-ambient-packshot .fotogallery {
    margin-top: 1rem;
  }



  /*-- Post single prodotto > slick carousels
      parte comune gallery e correlati--*/

  .slick-prev, 
  .slick-next {
    z-index: 9999;
  }

  .slick-prev:before, 
  .slick-next:before {
    color: #ffffff;
    font-family: 'FontAwesome';
    position: relative;
    background-color: #d2cccc;
    display: inline-block;
  }
  .slick-prev:before {
    content: "\f053";
  }
  .slick-next:before {
    content: "\f054";
  }


  /* Post single prodotto > Slick carousel > gallery */

  .fotogallery {
    margin-top: 2rem;
  }

  .fotogallery .slick-list {
    max-height: 150px;
    margin: 0 -5px;
  }

  .fotogallery .slick-slide {
    margin: 0 5px;
  }

  .delo-img-prod-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .fotogallery .slick-prev:before, 
  .fotogallery .slick-next:before {
    height: 40px;
    width: 25px;
    line-height: 40px;
    top: -10px;
  }
  .fotogallery .slick-prev:before {
    left: 40px;
  }
  .fotogallery .slick-next:before {
    right: 44px;
  }


    /* Post single prodotto > Slick carousel > gallery > meow lightbox  */

    #mwl-target .control-navigation-container svg {
      stroke: #1f5d8f;
      stroke-width: 7px;
    }


  /* Post single prodotto > CTA */

  .delooprodotto-template-default .delo-filetto {
    width: 100%; 
    border-bottom: 1px solid #1f5d8f; 
    padding: 1.2rem 0 30px 0px;
  }

  .delooprodotto-template-default .btn-wrap {
    margin-top: 0; 
    text-align: center;
  }

  .delooprodotto-template-default .download-btn-svg{
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
  }

  .delooprodotto-template-default .download-btn-svg svg {
    max-height: 10rem;
  }

  .delooprodotto-template-default .download-btn-svg a {
    color: var(--dark-blue-color);
  } 

  @media screen and (min-width: 768px) {
    .delooprodotto-template-default .download-btn-svg{
      margin-top: 0;
    }
  
    .delooprodotto-template-default .delo-filetto {
      padding: 1.5rem 0px;
    }

    .delooprodotto-template-default .btn-wrap {
      margin-top: 0.75rem; 
    }
  }


    /* Post single prodotto > CTA > form e pulsanti */


    /* post single > ask info */
    .delooprodotto-template-default .domanda-prodotto {
      background: rgb(240 248 255);
      color: var(--dark-blue-color);
      padding: 2.25rem 15px 1.25rem 15px;
      margin-bottom: 4rem;
      border-bottom: 1px solid var(--dark-blue-color);
    }

    .delooprodotto-template-default .domanda-prodotto h3 {
      text-align: left;
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
      line-height: 1;
    }

    .delooprodotto-template-default .domanda-prodotto .caption-askinfo-btn {
      margin-top: 0.5rem;
    }

    @media screen and (min-width: 768px) {
      .delooprodotto-template-default .domanda-prodotto {
        background: unset;
        margin-bottom: 3rem;
        padding-right: 0;
      }

      .delooprodotto-template-default .domanda-prodotto h3 {
        font-size: 1.12rem;
      }
    }

    @media screen and (min-width: 992px) {
      .delooprodotto-template-default .domanda-prodotto h3 {
        font-size: 1.35rem;
      }
    }


    /* post single > ask info > form */
    .delooprodotto-template-default .form-domanda {
      display: none;
    }

    .delooprodotto-template-default .wpcf7 {
      max-width: unset;
    }

    .delooprodotto-template-default .wpcf7 ::-webkit-input-placeholder { 
      color: rgba(31, 93, 143, 0.85)!important;
    }

    .delooprodotto-template-default #submit-domanda-rapida {
      margin-top: -1rem;
      width: 100%;
      min-width: 200px;
      max-width: unset!important;
    }

    @media screen and (min-width: 768px) {
      .delooprodotto-template-default .form-domanda{
        padding-left: 0;
        padding-right: 0;
        margin-left: 15px;
      }

      .delooprodotto-template-default .form-domanda .wpcf7-textarea {
        box-shadow: 1px 1px #c9e1f5; 
      }

      .delooprodotto-template-default .wpcf7 input[type="text"], 
      .delooprodotto-template-default .wpcf7 input[type="email"], 
      .delooprodotto-template-default .wpcf7 textarea {
        background-color: rgb(240 248 255);
      }
    }


    /* post single > ask info > pulsanti */
    .delooprodotto-template-default .dl-btn {
      max-width: unset;
      margin-bottom: 0;
      margin-top: 0.5rem;
      width: calc(100% - 15px);
    }

    @media screen and (min-width: 768px) {
      .delooprodotto-template-default .domanda-prodotto .dl-btn {
        margin-left: 0;
        width: 100%;
      }
  
      .delooprodotto-template-default .dl-btn {
        margin-left: 15px;
        max-width: unset!important;
      }
    }


  /* Post single prodotto > prodotti correlati */

  @media (max-width: 305px) {
    /* nascosti su device ultrasmall  */
    .delo-related-prod {
      display: none;
    }
  }
  /* e su IE10  */
  _:-ms-lang(x), .delo-related-prod { 
    display: none\9; 
  }


  /*-- Post single prodotto > prodotti correlati > slick carousel --*/

  .delo-relproducts-carousel {
    margin-top: 1rem;
  }

  .delo-relproducts-carousel .slick-track {
    display: flex;
    margin: 0;
  }

  .delo-relproducts-carousel .slick-list {
    margin: 0 -10px;
  }
  .delo-relproducts-carousel .slick-slide {
    display: flex;
    height: inherit;
    margin: 0 10px;
  }
  @media (max-width: 768px) {
    .delo-relproducts-carousel .slick-list {
      margin: 0 -5px;
    }
    .delo-relproducts-carousel .slick-slide {
      margin: 0 5px;
    }
  }

  .delo-relproducts-carousel .slick-slide a {
    display: flex;
    flex-basis: 100%; /* FG fix 24/2/20 */
  }

  .delo-relproducts-carousel .slick-prev:before, 
  .delo-relproducts-carousel .slick-next:before {
    top: -65px;
    height: 65px;
    width: 30px;
    line-height: 65px;
  }
  .delo-relproducts-carousel .slick-prev:before {
    left: 25px;
  }
  .delo-relproducts-carousel .slick-next:before {
    right: 33px;
  }

  .delooprodotto-template-default .prod-img-wrap {
    height: 280px;
  }

  .delooprodotto-template-default .prod-title-wrap {
    min-height: 150px;
  }

  .delooprodotto-template-default .delo-related-prod h3 {
    margin-bottom: 1.25rem;;
  }

  .slick-slide .delooprodotto {
    /* for IE compatibility */
    width: 100%!important;
  }

/* end post single prodotto  - refactoring 2021 02 25 */




/* ---------------------------------------------
 * TAXONOMY TERM ARCHIVE - CATALOGAZIONE
 * usa moduli box famiglia/serie e box prodotti
 * ---------------------------------------------
 */

 /* foto header background */
 .tax-catalogazione .delo-header-hero {
	background-position: center center;
}


/* testo intro */
.tax-catalogazione .subtitle {
  padding: 1rem 0;
}
@media (min-width: 992px) {
	.tax-catalogazione .subtitle {
		padding: 1rem 1rem 1.5rem;
	}
}

.tax-catalogazione .subtitle .vert-spacer {
  display: block;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .tax-catalogazione .subtitle .vert-spacer {
    margin-top: 0;
  }
}


/* box guida alla scelta (eventuale) */
.tax-catalogazione .catg-guide .col {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 768px) {
  .tax-catalogazione .catg-guide .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}


.tax-catalogazione .catg-guide-link-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  background-blend-mode: soft-light;
  background-color: #719ba9;
  padding-right: 1rem;
  margin-bottom: 2.5rem;
  margin-top: -1.25rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  text-align: right;
  font-size: 0.85rem;
}
.tax-catalogazione .catg-guide-link-wrap a {
  color: #fff;
  text-decoration: underline;
}


/* colonne per box serie o prodotto */
.tax-catalogazione .delo-col-maxipuls {
	display: flex;
	flex-direction: column;
  margin-bottom: 2rem;
  padding-left: 5px;
  padding-right: 5px;
}

.tax-catalogazione .delo-col-maxipuls > a {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
@media (min-width: 768px) {
  .tax-catalogazione .delo-col-maxipuls {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* filetto alla fine del modulo prodotti */
.tax-catalogazione .dwnl-cat-serie-separator > div {
	padding-left: 0;
  padding-right: 0;
}
.tax-catalogazione .dwnl-cat-serie-separator hr {
	margin-top: 0;
	border-top: 3px solid #1f5d8f;
}

/* pulsante indietro  */
.tax-catalogazione .torna-button-wrapper {
  text-align: center;
}
.tax-catalogazione .dl-btn-torna {
	margin-top: 30px;
	max-width: 300px;
}




/* -----------------------
 * PAGINA CONTATTI 
 * refactoring 2021 03 01
 * -----------------------
 */

.page-template-contacts h2.title {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.page-template-contacts #contact-intro{
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dark-blue-color);
}
@media screen and (min-width:768px) {
  .page-template-contacts #contact-intro{
    border-right: 1px solid var(--dark-blue-color);
    margin-right: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}

.page-template-contacts #contact-intro a {
  font-weight: 800;
}

.page-template-contacts #blue-addr{
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 576px){
  .page-template-contacts #blue-addr{
    margin-left: 0;
    margin-right: 0;
  }
}

.page-template-contacts #blue-addr a {
  color: #ffffff;
  text-decoration: underline;
}
.page-template-contacts #blue-addr a:hover {
  color: var(--dark-blue-color);
} 

.page-template-contacts #contact-intro > p {
  margin-bottom: 1.5rem;
 } 

.page-template-contacts > .row {
	padding: 0px  20px;
}

.page-template-contacts .prod-separator {
	display: none; 
	margin: 35px 0px;
}

.page-template-contacts .delo-form-contatti > div {
	margin-bottom: 40px;
}

.page-template-contacts .delo-form-contatti > div > p {
	float: left; 
	padding-right: 40px;
}



/* blocco indirizzo */

.page-template-contacts #blue-addr{
  background-color: #00aeef;
   color: #fff !important;
   padding: 16px;
   max-width: 768px;
   font-weight: 800;
}

/* form contatti */

.page-template-contacts .delo-form-contatti {
  margin-top: 1.5rem;
}

.page-template-contacts .delo-contacts-logo {
	width: 144px;
}

.wpcf7 input[type=text], 
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 textarea,
.wpcf7 select,
.form-group input[type=text],
.form-group input[type=email],
.form-group textarea {
	border: 3px solid rgba(0, 174, 239, .1);
	background-color: rgba(0, 174, 239, .1);
	border-radius: 0px !important;
	font-weight: 600;
	color: #1f5d8f !important;
}

.wpcf7 input[type=text]:focus, 
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus{
	outline-offset: 0px;
	border-color: transparent;
	box-shadow: 0 0 0 0.2rem rgba(31, 93, 143, .75);
}

.wpcf7-acceptance .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 1em 0;
    color: #1f5d8f;
    font-weight: 600;
}

.wpcf7-acceptance .wpcf7-list-item a {
	text-decoration: underline;
	color: var(--light-blue-color);
}


@media (min-width: 768px) {
  .page-template-contacts h2.title {
    margin-bottom: 0;
  }

  .page-template-contacts #contact-intro > p {
    font-size: 1.3rem;
  } 

  .page-template-contacts .prod-separator {
    display: block; 
  }

  .page-template-contacts .delo-form-contatti {
    margin-top: 0;
  }
  
}

/* --- fine pagina contatti --- */



/* -----------------------
 * PAGINA NEWSLETTER 
 * 2023 09
 * -----------------------
 */

 .newsletter-intro {
  font-size: 1.25rem;
  border-bottom: none;
  margin-top: 0.5rem;
 }

 .delo-form-newsletter {
  font-size: 1.2rem;
  color: var(--dark-blue-color);
 }

.newsletter-img {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
 }

 .delo-form-newsletter #mc_embed_signup form {
  margin: 0;
 }

.delo-form-newsletter #mc_embed_signup .mc-field-group.input-group input[type=checkbox] {
  height: 1rem;
  width: 1rem;
 }

 .delo-form-newsletter #mc_embed_signup .mc-field-group input {
  background-color: rgba(0, 174, 239, .1);
  border: none;
  border-radius: 0;
  color: --var(--dark-blue-color);
 }

 .delo-form-newsletter #mc_embed_signup {
  clear:left;
  }

 .delo-form-newsletter #mc_embed_signup .asterisk {
  color: var(--dark-blue-color);
 }

 .delo-form-newsletter label[for="mce-CITTA"] {
  margin-top: 0.75rem;
}

 .delo-form-newsletter #mc_embed_signup .button{
  margin-bottom: 0;
  }

 .delo-form-newsletter #mc-embedded-subscribe-form input[type=checkbox] {
  display: inline; 
  width: auto;
  margin-right: 10px;
}

 .delo-form-newsletter #mergeRow-gdpr {
  margin-top: 1.25rem;
}

 .delo-form-newsletter .newsletter-disclaimer {
  margin-top: 1.5rem;
 }

 .delo-form-newsletter .content__gdprLegal {
  font-size: 1rem;
 }

 .delo-form-newsletter #mc_embed_signup .button {
  width: 100%;
  height: 3rem;
  font-size: 1.1rem;
  font-weight: 700;
 }


 @media screen and (min-width: 768px) {
  .newsletter-intro {
    font-size: 1.5rem;
    border-right: 1px solid var(--dark-blue-color);
    margin-right: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
   }

 }

 @media screen and (min-width: 992px) {
  .delo-form-newsletter #mc_embed_signup .button {
    width: 50%;
   }
 }
 
 /* --- fine pagina newsletter --- */



/* --------------------------------
 * BLOG INDEX e BLOG CATEGORY INDEX
 * refactoring 2021 03 03
 * --------------------------------
 */

 /* indice > header */
 .delo-header-hero.blogindex {
  height: 22vh;
  margin-bottom: 1rem;
 }

 .delo-header-hero.blogindex .banner-heading h1 {
   font-size: 6vw;
 }
 @media (min-width: 414px) {
  .delo-header-hero.blogindex .banner-heading h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .delo-header-hero.blogindex .banner-heading h1 {
    font-size: 1.75rem;
  }
}

/* header > velatura scura */
.archive.category .delo-header-hero.blogindex {
  background-position: center;
}
.delo-header-hero.blogindex:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  position: absolute;
}
.delo-header-hero.blogindex h1 {
  position: relative;
  z-index: 9;
}


 .delo-header-hero.blogindex .banner-heading {
     letter-spacing: 0.5rem;
     margin-right: -0.5rem;
     font-weight: 600;
     text-shadow: none;
 }
 .delo-header-hero.blogindex .banner-heading span {
    /* sottititolo c/nome categoria */
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    margin-right: -0.1rem;
 }
 @media (min-width: 768px) {
   .delo-header-hero.blogindex .banner-heading {
       letter-spacing: 1rem;
       margin-right: -1rem;
   }
   .delo-header-hero.blogindex .banner-heading span {
    font-size: 1rem;
    letter-spacing: 0.5rem;
    margin-right: -0.5rem;
 }
 }
 @media (min-width: 1200px) {
  .delo-header-hero.blogindex {
    min-height: unset;
  }
}

/* indice > categorie */
.blog-index-container .delo-blog-categorie {
  margin-bottom: 1rem;
}

.page-template-blog_index .delo-blog-categorie .cat-item-all a {
  color: var(--medium-blue-color);
}


/* indice > blogpost copertina */
.blogpost-copertina {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  background-color: var(--medium-blue-color);
  background-size: cover;
  background-position: center;
  min-height: 28rem;
  transition: transform 0.2s;
}
.blogpost-copertina:hover {
  transform: scale(1.01);
}
.blogpost-copertina .velatura {
  display: flex;
  flex: 1;
  flex-direction: column;
  background-color: var(--transp-light-blue-velatura-foto);
  padding: 2rem;
}
.blogpost-copertina .readingtime {
  color: #ffffff;
  font-size: 0.85rem;
  margin-top: auto;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .blogpost-copertina a {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .blogpost-copertina .velatura {
    width: 48%;
    flex-grow: 1;
  }
}
@media (min-width: 992px) {
  .blogpost-copertina .velatura {
    width: 31%;
  }
}
@media (min-width: 1200px) {
  .blogpost-copertina .velatura {
    width: 31.5%;
  }
}

.blogpost-copertina > a {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blogpost-copertina h1,
.blogpost-copertina h2,
.blogpost-copertina .blog-cat {
  color: #ffffff;
}

.blogpost-copertina .blog-cat {
  text-transform: uppercase;
  font-size: 0.85rem;
}

.blogpost-copertina h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.blogpost-copertina h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


/* indice > blogpost card */
.blogpost-card-col {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.blogpost-index-card {
  border: none;
  transition: transform 0.2s;
}
.blogpost-index-card:hover {
  transform: scale(1.03);
}

.blogpost-index-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.blogpost-index-card img {
  object-fit: cover;
  height: 14rem;
}

.blogpost-meta {
  min-height: 14rem;
  padding: 1rem 1rem 2rem 1rem;
  background-color: var(--light-gray-color);
  background-size: cover; /* set in php */
}

.blogpost-meta .velatura-blogpost-meta {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blogpost-meta .blog-cat {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--dark-blue-color);
  margin-bottom: 0.5rem;
}

.blogpost-meta .card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--light-blue-color);
  margin-bottom: 1rem;
}

.blogpost-meta .card-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-blue-color);
  margin-bottom: 1rem;
}

.blogpost-meta .readingtime {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue-color);
  margin-top: auto;
  margin-bottom: 0;
}

.page-template-blog_index .pagination-nav {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .blogpost-meta {
    min-height: 14rem;
  }
}


/* link a fondo pagina > torna su */
.blogindex-torna {
	float: right;
	color: var(--dark-blue-color);
	font-weight: 700;
	text-decoration: underline;
	margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .page-template-blog_index .blogindex-torna {
    display:none;
  }
}




/* -----------------------------------
 * BLOG POST SINGLE LEGACY
 * refactoring 2021 03 03
 * usa i modules comment e related
 * -----------------------------------
 */

/* base settings */
.post-template-default .blogpost-content {
  padding-left: 0;
  padding-right: 0;
}

.post-template-default #blog-content {
	padding-right: 0;
	border-right: 0px solid black;	
}

.post-template-default #single-wrapper {
	padding-bottom: 0;
}

.post-template-default #single-wrapper a {
	text-decoration: underline;
}

.post-template-default #single-wrapper li {
	margin-bottom: 0.5rem;
}


/* foto testata */
.singlearticolo-ft-image {
	height: 300px; /* compatibility */
	height: 35vh;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
} 


/* barra social */
.post-template-default #social-wrap {
	display: block;
	text-align: center;
}

.post-template-default .delo-social-wa {
    display: none;
}

.post-template-default #social-wrap-mobile {
	display: none;
	margin-top: 0;
}

.post-template-default #social-wrap-mobile svg {
		width: 54px!important;
		height: 54px!important;
	}

@media (max-width: 768px) {

	.post-template-default #social-wrap-mobile {
		display: block;
	}

	.post-template-default #social-wrap {
		display: none;
	}

	.post-template-default .delo-social-wa {
	    display: inline;
	}

	.post-template-default #social-wrap {
		display: none;
	}
}


/* intestazione post */
.post-template-default  .delo-blog-categorie {
	text-transform: uppercase;
}

.post-template-default #blog-content .post-date {
	margin-bottom: 2rem;
}

.post-template-default #blog-content .prod-separator {
	 margin: 30px 0px 70px 0px;
}


/* Blogpost > composer, titolo immagini */
.post-template-default #single-wrapper .so-widget-sow-image .widget-title {
  font-size: 0.75rem;
  color: var(--medium-gray-color);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* recaptcha v3 > hide logo and style disclaimer */
.grecaptcha-badge { 
    visibility: hidden;
}
.grecaptcha-disclaimer {
	color: #1f5d8f;
}
.grecaptcha-disclaimer a {
	font-weight: bold;
}

@media (min-width: 768px) {
  #social-wrap-mobile{
		display: none;
	}
}


/* messaggi feedback/errore input commenti > vedere anche modulo comments*/
.post-template-default .row.justify-content-center {
	margin-left: 0;
	margin-right: 15px;
}
.post-template-default .row.justify-content-center br {
  display: none;
}
@media screen and (min-width: 768px) {
  .post-template-default .row.justify-content-center {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .post-template-default .row.justify-content-center br {
    display: block;
  }
}


/* filetti */
.post-template-default #single-wrapper hr {
	border: none;
  height: 1px;
  color: #1f5d8f; /* old IE */
  background-color: #1f5d8f; /* Modern Browsers */
}


/* typography */
.post-template-default #blog-content h1,
.post-template-default  #blog-content h3 {
	margin-bottom: 1rem;
}

.post-template-default .entry-content > h1 {
	color: var(--light-blue-color);
	font-weight: 600;
	line-height: 2.3rem;
}

.post-template-default  #blog-content h4 {
	color: var(--light-blue-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* h3 nell'editor WP */
.post-template-default #single-wrapper h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	margin-top: 2rem;
}
/* h3 nel visual composer */
.post-template-default .siteorigin-widget-tinymce h3 {
	margin-top: 0!important;
	margin-bottom: 0.5rem!important;
	line-height: 1!important;
}



/* -----------------------------------
 * BLOG POST SINGLE LEGACY
 * fix per nuovo template fullwidth
 * mag 2021
 * -----------------------------------
 */

/* spazio dopo la foto copertina */
 .post-template-blog-single-fullwidth .panel-layout {
  margin-top: 2rem;
}

/* reset spacing h3 */
.post-template-blog-single-fullwidth .entry-content .panel-layout h3 {
  margin-top: 1rem;
} 

/* reset margine basso blocchi del pagebuilder */
.post-template-blog-single-fullwidth .panel-grid {
  margin-bottom: 0!important;
}

/* reset margine basso blocchi foto */
.post-template-blog-single-fullwidth .panel-grid .panel-grid-cell:last-child .widget_sow-image {
  margin-bottom: 2rem!important;
}

/* didascalie foto */
.post-template-blog-single-fullwidth .entry-content .panel-layout .so-widget-sow-image .widget-title {
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 0.5rem;
  color: var(--medium-gray-color);
}




/* -----------------------------------
 * BLOG POST SINGLE GUTENBERG
 * mag 2021
 * -----------------------------------
 */

/* blogpost gutenberg typography */
.post-template-blog-single-fullwidth .entry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.post-template-blog-single-fullwidth .entry-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

.post-template-blog-single-fullwidth .entry-content p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.post-template-blog-single-fullwidth .entry-content ul {
  margin-top: -1.4rem;
  padding-left: 1.125rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.post-template-blog-single-fullwidth figcaption {
  font-size: 0.85rem;
  color: var(--medium-gray-color);
}

/* Più spazio dopo la foto apertura se non c'e titolo paragrafo */
.post-template-blog-single-fullwidth #blog-content > p:first-child {
    margin-top: 3rem;
}

/* meno spazio dopo le foto su 2-col se a seguire c'è un p */
.post-template-blog-single-fullwidth .delo-img-2cols + p {
  margin-top: -0.75rem;
}




 /* header */
 .post-template-blog-single-fullwidth header {
   color: var(--dark-blue-color);
 }

 .post-template-blog-single-fullwidth .blogpost-header-title {
   padding-top: 0;
   padding-bottom: 0;
   margin-left: -15px;
   margin-right: -15px;
 }
 @media screen and (min-width: 992px) {
  .post-template-blog-single-fullwidth .blogpost-header-title > .container {
    max-width: 800px;
  }
}
 .post-template-blog-single-fullwidth .blogpost-header-title .container,
 .post-template-blog-single-fullwidth .blogpost-header-title .row {
   height: 100%
 }
 .post-template-blog-single-fullwidth .blogpost-header-title .velatura-blogpost-title {
   background-color: var(--transp-light-blue-velatura-foto);
   height: 100%;
   padding: 2rem 1rem 1rem;
 }
 @media screen and (min-width: 768px) {
  .post-template-blog-single-fullwidth .blogpost-header-title-wrapper {
    height: 60px;
    margin-top: 54px;
  }
  .post-template-blog-single-fullwidth .blogpost-header-title {
    margin-left: unset;
    margin-right: unset;
  }
 }


 .post-template-blog-single-fullwidth .delo-blog-categorie {
  color: var(--medium-blue-color);
 }

 .post-template-blog-single-fullwidth .delo-blog-categorie ul {
  padding-left: 0;
  font-size: inherit
 }
 @media screen and (min-width: 375px) {
  .post-template-blog-single-fullwidth .delo-blog-categorie ul {
    padding-right: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .post-template-blog-single-fullwidth .blogpost-categorie-wrapper {
    max-width: 800px;
  }
}
 .post-template-blog-single-fullwidth #single-wrapper {
  padding: 0;
 }

 .blogpost-categorie-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
 }

 .blogpost-header-title-wrapper {
   height: 60px;
   background-position-y: 47.4rem;
 }

 .blogpost-header-title {
   height: 60vh;
   max-height: 700px;
   background-size: cover;
   background-position: center;
   padding-top: 1rem;
 }

 .blogpost-title,
 .blogpost-subtitle {
   color: #ffffff;
 }

 .blogpost-title {
   margin-bottom: 2.5rem;
 }

 .blogpost-subtitle {
  font-size: 1.5rem;
}

.post-template-blog-single-fullwidth .post-date {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.85rem;
}


/* blogpost article */
@media screen and (min-width: 992px) {
  .post-template-blog-single-fullwidth .blogpost-content {
    max-width: 800px;
  }
}

.post-template-blog-single-fullwidth .articlerow {
  border-bottom: 1px solid var(--dark-blue-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}


/* setup custom modulo CTA (styling base in moduli) */
.post-template-blog-single-fullwidth .wpcf7 input[type="text"], 
.post-template-blog-single-fullwidth .wpcf7 input[type="email"], 
.post-template-blog-single-fullwidth .wpcf7 textarea {
  background-color: #ffffff;
  border: none;
}

.post-template-blog-single-fullwidth .wrapper .form-domanda p {
 margin-bottom: 0.5rem;
}

.post-template-blog-single-fullwidth .wpcf7-acceptance .wpcf7-list-item {
  margin-bottom: 0;
}

.post-template-blog-single-fullwidth .wpcf7-acceptance label {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.post-template-blog-single-fullwidth .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-block;
  margin-left: 1.3rem;
  position: relative;
  top: -1.3rem;
}

.post-template-blog-single-fullwidth #submit-domanda-rapida,
.post-template-blog-single-fullwidth .dl-btn-grad {
  width: 100%;
  max-width: 100%;
}

.post-template-blog-single-fullwidth .form-domanda .ajax-loader {
  text-align: center;
  margin-left: calc((100% / 2) - 16px);
}

.post-template-blog-single-fullwidth .dl-btn-trova-rivenditore {
  margin-bottom: 3rem;
}


/* setup custom modulo related posts (styling base in moduli) */

.post-template-blog-single-fullwidth .container.blogpost-related {
  margin-top: 4rem;
  border-top: 1px solid var(--dark-blue-color);
}

.post-template-blog-single-fullwidth .blogpost-related h1 {
  color: var(--dark-blue-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.post-template-blog-single-fullwidth .blogpost-related .blogpost-meta {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.post-template-blog-single-fullwidth .blogpost-related .velatura-blogpost-meta {
  padding: 1rem;
  background-color: rgb(121 212 255 / 30%);
}

.post-template-blog-single-fullwidth .blogpost-related .slick-prev {
  left: 0;
}

.post-template-blog-single-fullwidth .blogpost-related .slick-next {
  right: 0;
}

/* torna a indice */
.post-template-blog-single-fullwidth .torna-indice-blog {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: right;
  padding-right: 26px;
}
.post-template-blog-single-fullwidth .torna-indice-blog a {
  color: var(--dark-blue-color);
  font-weight: 800;
}




/* -----------------------------
 * PAGINA DELO CLUB LOGIN
 * ----------------------------
 */

 .page-template-deloclub-login .content-wrapper p {
  color: var(--dark-blue-color);
 }


 /* immagine iniziale/laterale */
 .page-template-deloclub-login .foto-login-club {
  text-align: center;
  margin-bottom: 1rem;
 }

 .page-template-deloclub-login .foto-login-club img {
  height: 35vh;
  width: auto;
  transform: scaleX(-1);
 }


 /* testo intro */
 .page-template-deloclub-login .introtext-login-club {
  margin-bottom: 1rem;
  font-size: 1.25rem;
 }


 /* titoli colonne login e registrazione */
 .page-template-deloclub-login h3 {
  margin-bottom: 1rem;
 }


  /* form Login  */
  .page-template-deloclub-login .form-login-club {
    margin-bottom: 2rem;
  }

  .page-template-deloclub-login .form-login-club .colwrap {
    background: var(--transp-blue-color);
    padding: 1rem;
  }

  .page-template-deloclub-login .pc_login_row label {
    font-weight: 600;
  }

  /* pass dimenticata e errore login*/
  .page-template-deloclub-login .pc_lf_subfields {
    flex-direction: column!important;
  }
  .page-template-deloclub-login .pc_login_smalls {
    justify-content: start!important;
    margin: 0.5rem 0 0 0!important;
  }
  .page-template-deloclub-login .pc_login_smalls small {
    color: var(--dark-blue-color)!important;
    font-size: 0.85rem
  }
  .page-template-deloclub-login .pc_login_smalls small:first-letter {
    text-transform: capitalize;
  }
  .page-template-deloclub-login .pc_error_mess {
    margin: 8px 0 0 0!important;
  }

  /* Box iscrizione  */
  .page-template-deloclub-login .register-club {
    color: var(--dark-blue-color);
    margin: 0;
  }

  @media screen and (min-width: 576px) {
    .page-template-deloclub-login .foto-login-club img {
      height: unset;
      width: auto;
     }
     .page-template-deloclub-login .pc_auth_btn,
     .page-template-deloclub-login .btn-subscribe {
      min-width: unset;
      max-width: unset;
      width: 100%;
      margin-left: 0;
      margin-right: 0;
     }
     .page-template-deloclub-login .btn-subscribe {
      width: calc(100% - 2rem);
     }
  }


  @media screen and (min-width: 992px) {
  .page-template-deloclub-login .form-login-club {
    margin-bottom: 0;
  }

  /* Box iscrizione  */
  .page-template-deloclub-login .register-club {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    margin-left: unset;
  }
  .page-template-deloclub-login .register-club .dl-btn {
    margin-top: auto;
  }
}



/* -----------------------------
 * PAGINA DELO CLUB SUBSCRIBE
 * ----------------------------
 */

 .page-template-deloclub-subscribe .content-wrapper p {
  color: var(--dark-blue-color);
 }

/* intro text */
.page-template-deloclub-subscribe .intro-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

 /* img intro */
 .page-template-deloclub-subscribe .intro-img-col {
  margin-bottom: 2rem;
 }
 .page-template-deloclub-subscribe .subscribe-intro-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  min-height: 200px;
 }

 /* form iscrizione-subscribe  */
 .page-template-deloclub-subscribe .pc_registration_form {
  padding: 0;
 }

 .page-template-deloclub-subscribe .pc_disclaimer_f_sep {
  margin-top: 1rem!important;
  margin-bottom: 0.5rem!important;
  color: var(--dark-blue-color)!important;
  border-color: var(--dark-blue-color)!important;
 }

 .page-template-deloclub-subscribe section[data-fname="custom|||sep|||1696351902463"] {
  margin-top: 0!important;
 }

 /* switch privacy */
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] {
  flex-direction: column!important;
 }
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] label {
  max-width: unset!important;
 }
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] .lcs_compact {
  margin-bottom: 0.5rem!important;
 }
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] .lcs_switch.lcs_off {
  background: #cccccc!important;
 }
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] .lcs_switch.lcs_on {
  background: var(--light-blue-color)!important;
 }
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] .lcs_off .lcs_cursor {
  background: #717171!important;
 }
 .page-template-deloclub-subscribe section[data-fname="privacy-policy"] .lcs_on .lcs_cursor {
  background: var(--dark-blue-color)!important;
 }


 /* nasconde label privacy non necessarie */
 .page-template-deloclub-subscribe .pc_f_marketing-preferences .pc_cb_block_label {
  display: none!important;
 }

 @media screen and (min-width: 491px) {
   .page-template-deloclub-subscribe section[data-fname="privacy-policy"] {
    flex-direction: row!important;
   }
   .page-template-deloclub-subscribe section[data-fname="privacy-policy"] label {
    max-width: calc(100% - 56px)!important;
   }
   .page-template-deloclub-subscribe section[data-fname="privacy-policy"] .lcs_compact {
    margin-right: 0.5rem!important;
   }
}

@media screen and (min-width: 768px) {
  .page-template-deloclub-subscribe .intro-img-col {
    margin-bottom: 0;
   }
  .page-template-deloclub-subscribe .subscribe-intro-img {
    min-height: unset;
    background-position: center right;
   }
}

@media screen and (min-width: 768px) {
  .page-template-deloclub-subscribe .pc_check_label {
    margin-bottom: 0!important;
  }
  .page-template-deloclub-subscribe  .pc_checkbox {
    top:0!important;
  }
}




/* -----------------------------------
 * PAGINA DELO CLUB DOMANDA TRASMESSA
 * ----------------------------------
 */

 .page-template-deloclub-domanda-trasmessa .content-wrapper p {
  color: var(--dark-blue-color);
 }


 /* immagine iniziale/laterale */
 .page-template-deloclub-domanda-trasmessa .foto-submitted-club {
  text-align: center;
  margin-bottom: 1rem;
 }

 .page-template-deloclub-domanda-trasmessa .foto-submitted-club img {
  height: 35vh;
  width: auto;
  transform: scaleX(-1);
 }


 /* Titolo intro */
 .page-template-deloclub-domanda-trasmessa .introtext-submitted-club h2 {
  margin-bottom: 1.5rem;
 }

 /* testo intro */
 .page-template-deloclub-domanda-trasmessa .introtext-submitted-club {
  margin-bottom: 1rem;
  font-size: 1.25rem;
 }

 /* pulsante */
 .page-template-deloclub-domanda-trasmessa .dl-btn {
  font-size: 1rem;
  margin-top: 1rem;
 }



/* -----------------------------
 * PAGINA DELO CLUB INDICE
 * ----------------------------
 */

 /* typography */
 .page-template-deloclub-index .content-wrapper p,
 .page-template-deloclub-index .content-wrapper ul {
  color: var(--dark-blue-color);
 }

 .page-template-deloclub-index .club-argomento h2 {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
 }

 .page-template-deloclub-index .club-argomento h3 {
  font-size: 1.35rem;
 }


 /* img decorativa */
 .page-template-deloclub-index .img-decoration img {
  max-width: 6rem;
  height: auto;
  transform: scaleX(-1);
  margin-bottom: -2rem;
 }

/* pop-up menu utente */
 .page-template-deloclub-index .user-commands {
  text-align: right;
 }

 .page-template-deloclub-index #club-menu-utente,
 .page-template-deloclub-index .dropdown-item {
  font-size: 0.85rem;
  color: #fff;
 }

 /* righe sezione/argomento */
 .page-template-deloclub-index .club-argomento {
  margin-top: 3rem;
  padding-top: 3.5rem;
  border-top: 1px var(--dark-blue-color) solid;
 }

/* slider */
 .page-template-deloclub-index .slick-track {
  margin-left: 0;
  display: flex;
 }
 .page-template-deloclub-index .slick-prev:before,
 .page-template-deloclub-index .slick-next:before {
  height: 65px;
  width: 30px;
  line-height: 65px;
 }
 .page-template-deloclub-index .slick-prev:before {
  left: -6px;
 }
 .page-template-deloclub-index .slick-next:before {
  left: -12px;
 }


 /* cards argomenti */
 .page-template-deloclub-index .card {
  border: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: inherit;
  }
  .page-template-deloclub-index .card a {
    display: flex;
    flex-basis: 100%;
  }
 .page-template-deloclub-index .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border: none;
  margin-bottom: 2rem;
 }
 .page-template-deloclub-index .card-description {
  padding: 1rem 1rem 2rem 1rem;
  background-color: var(--cold-transp-light-blue-color);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
 }
 .page-template-deloclub-index .card-description .card-text {
  margin-top: auto;
 }

 @media screen and (min-width: 512px) {
   /* cards argomenti */
 .page-template-deloclub-index .card {
  width: 16.5rem;
  margin-right: 0.5rem;
 }
}

@media screen and (min-width: 768px) {
  /* cards argomenti */
  .page-template-deloclub-index .card-body {
  margin-bottom: 0;
  }
 /* righe sezione/argomento */
 .page-template-deloclub-index .club-argomento {
  padding-top: 2.5rem;
 }
}


/* -------------------------------------
 * PAGINA DELO CLUB MODIFICA DATI UTENTE
 * -------------------------------------
 */

 .page-template-deloclub-modifica-utente h3 {
  font-size: 1.5rem;
 }

 .page-template-deloclub-modifica-utente .datiutente {
  margin-top: 2rem;
 }

 .page-template-deloclub-modifica-utente .sottotitolo {
  border-bottom: 1px solid var(--dark-blue-color);
 }

 .page-template-deloclub-modifica-utente .btn-annulla {
  margin-top: 1.5rem;
  margin-bottom: 0;
 }


 /* dati non editabili */
 .page-template-deloclub-modifica-utente .datiutente.editabile {
  color: var(--dark-blue-color);
 
 }

 /* form dati non editabili */
 .page-template-deloclub-modifica-utente .noneditabile .field-container {
  margin-bottom: 0.75rem;
 }

 .page-template-deloclub-modifica-utente .noneditabile input {
  width: 100%;
  padding: 0.4rem;
  border: none;
  background: var(--light-gray-color);
  color: var(--dark-blue-color);
  font-size: 14px;
  font-weight: 600;
 }

 .page-template-deloclub-modifica-utente .noneditabile label {
  color: var(--dark-blue-color);
  margin-bottom: 0;
 }


 @media screen and ( min-width: 768px ) {
  .page-template-deloclub-modifica-utente .noneditabile {
    border-right: 1px solid var(--dark-blue-color);
  }
 }



 /* ----------------------------------
 * PAGINA DELO CLUB MODIFICA PASSWORD
 * -----------------------------------
 */


.page-template-deloclub-cambio-pass .pc_error_mess,
.page-template-deloclub-cambio-pass .pc_success_mess {
  margin-bottom: 2rem;
}

/* pulsanti */
.page-template-deloclub-cambio-pass .btn-annulla,
.page-template-deloclub-cambio-pass button.pc_custom_form_btn {
  min-width: unset!important;
  width: 160px!important;
}

/* pulsante annulla */
.page-template-deloclub-cambio-pass .btn-annulla {
  position: absolute;
  bottom: -1rem;
  right: 15px;
}
@media screen and ( min-width: 440px ) {
  .page-template-deloclub-cambio-pass .btn-annulla,
  .page-template-deloclub-cambio-pass button.pc_custom_form_btn {
    min-width: unset!important;
    width: 200px!important;
  }
 }



/* -------------------------------
 * PAGINA Delo club vantaggi Delò
 *   provvisoria
 * -------------------------------
 */

 .page-id-8601 .page-wrapper h2 {
  margin-bottom: 1rem;
 }

.page-id-8601 .page-wrapper p,
.page-id-8601 .page-wrapper ul {
  color: var(--dark-blue-color);
  font-size: 1.25rem;
  line-height: 1.5;
}

.page-id-8601 .page-wrapper li {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
.page-id-8601 .page-wrapper p,
.page-id-8601 .page-wrapper ul {
  font-size: 1.5rem;
  line-height: 1.5;
}
}



/* -------------------------------
 * PAGINA SEARCHWP SEARCH RESULTS
 * refactoring 2021 03 01
 * -------------------------------
 */

 .page-template-searchwp-results .delo-header-hero {
  height: 100px;
}

.page-template-searchwp-results .search-main {
  margin: 0 15px;
}

.page-template-searchwp-results .delo-search-terms {
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
  background-color: #f0f8ff;
}

.page-template-searchwp-results .delo-search-terms h2 {
  font-size: 1.2rem;
  color: #1f5d8f!important;
  line-height: 1.2;
}

.page-template-searchwp-results article {
  border-bottom: 1px solid #1f5d8f;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.page-template-searchwp-results .delo-col-img {
  padding-right: 0;
}

.page-template-searchwp-results .delo-col-img img {
  object-fit: contain;
  width: 100%;
  height: 120px;
}

 /* immagini 16:9 vengono allungate a fine colonna */
.page-template-searchwp-results .wide-image .post-img-wrap{
  height: 100%;
}
.page-template-searchwp-results .wide-image .delo-col-img img {
  object-fit: cover;
  height: 50%;
}
@media screen and (min-width: 512px) {
  .page-template-searchwp-results .wide-image .delo-col-img img {
    height: 100%;
  }
}
/* end immagini 16:9 */

.page-template-searchwp-results .delo-search-result-type {
  font-size: 0.75rem;
  color: #1f5d8f;
  background-color: #f0f8ff;
  font-weight: 700;
  padding: 0 5px;
  display: inline-block;
  margin-bottom: 8px;
}

.page-template-searchwp-results .delo-search-result-title {
  font-size: 1rem;
  line-height: 1.2;
}

.page-template-searchwp-results .delo-search-excerpt {
  font-size: 0.75rem;
  line-height: 1.25;
  color: #1f5d8f;
}

.page-template-searchwp-results .pagination-nav {
  text-align: center;
}

.page-template-searchwp-results ul.page-numbers {
  display: inline-block;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
}

.page-template-searchwp-results ul.page-numbers li {
  display: inline-block;
  list-style: none;
}

.page-template-searchwp-results li .page-numbers {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #1f5d8f;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-template-searchwp-results li .page-numbers.current {
  background-color: #1f5d8f;
  border-color: transparent;
  color: #fff;
}

.page-template-searchwp-results .searchwp-noresults {
  text-align: center;
  color: #1f5d8f;
}

.page-template-searchwp-results .searchwp-noresults-emoticon {
  font-size: 3rem;
}

@media screen and (min-width: 576px) {
  .page-template-searchwp-results .delo-header-hero {
    min-height: unset;
    height: 120px;
  }
}
@media screen and (min-width: 768px) {
  .page-template-searchwp-results .delo-header-hero {
    min-height: unset;
    height: 150px;
  }
  .page-template-searchwp-results .delo-search-result-title {
    font-size: 1.25rem;
  }
  .page-template-searchwp-results .delo-search-excerpt {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 992px) {
  .page-template-searchwp-results .delo-header-hero {
    min-height: unset;
    height: 175px;
  }
}
@media screen and (min-width: 1600px) {
  .page-template-searchwp-results .delo-header-hero {
    min-height: unset;
    height: 200px;
  }
}



/* -----------------------
 * PAGINE PRIVACY
 * refactoring 2021 03 01
 * -----------------------
 */

 .page-template-privacypage .entry-content p,
.page-template-privacypage .entry-content ul{
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.25rem; 
}

.page-template-privacypage .entry-content h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  margin-top: 1.5rem;
}

/* pagina privacy contatti */
.page-template-privacypage .privacy-contatti-torna {
  margin: 3rem auto 0 auto;
}
.page-id-1109 .site-main {
  margin-left: 15px;
  margin-right: 15px;
}

/* popup iubenda */
#iubenda-cs-banner #iubenda-cs-title,
#iubenda-cs-banner #iubenda-cs-paragraph,
#iubenda-cs-banner .iubenda-cs-accept-btn.iubenda-cs-btn-primary,
#iubenda-cs-banner .iubenda-cs-opt-group-custom button {
	font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"!important;
}

/* policy iubenda */
a.iubenda-embed.iub-body-embed {
	display: block;
	text-align: center;
	padding: 1rem;
	font-size: 1rem;
	text-decoration:underline;
	line-height: 1.5;
}

#privacy-page-wrapper .entry-content {
	border-right: none;
}

#privacy-page-wrapper header {
	display: none;
}

#iubenda_policy .iub_base_container,
#iubenda_policy .iub_base_container h2,
#iubenda_policy h4,
#iubenda_policy ul.unstyled > li h3 {
	color: #1f5d8f!important; 
}

/* titolo pagine privacy e cookie policies */
#iubenda_policy h1,
.page-id-2650 #iubenda_policy .iub_base_container h2 {
	color: #00aeef !important;
	font-size: 1.25rem!important;
	font-weight: 700!important;
	margin-bottom: 0.5rem!important;
}

/* cookie policy pulsanti finali */
#iubenda-btn-modifica-prefs .iubenda-cs-preferences-link {
  margin-bottom: 1rem;
  background: white;
  border: 1px solid rgb(31, 93, 143);
  border-radius: 0.4rem !important;
  padding: 10px 5px;
  width: 280px;
  color: rgb(31, 93, 143);
  font-weight: 700;
}

#btn-cookiepol-torna {
  width: 280px;
  max-width: unset;
}




/* -----------------------------
 * PAGINA BROWSER NOT SUPPORTED
 * refactoring 2021 03 01
 * ----------------------------
 */

 .delo-unsupp-browser-wrapper {
	margin-top: 40px;
	text-align: center;
}

.delo-browser-icons {
	margin: 40px auto;
    width: 640px;
}

.browser-icon {
	float:left;
	width: 120px;
	margin: 20px;
}




/* -----------------------
 * PAGINA 404
 * refactoring 2021 03 01
 * -----------------------
 */

 .error404 {
	color: var(--dark-blue-color);
  background-color: #d8e2dd;
  background-size: cover;
  background-position: center;
  /* background-image: impostata da PHP */
  color: #ffffff;
}

.error404 .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem;
}

.error404 h1 {
  text-align: left; 
  font-weight: 800;
  font-size: 1.5rem;
}

.error404 h2 {
  font-weight: 800; 
  font-size: 2.5rem;
}

.error404 p {
  font-size: 1.2rem;
}

.error404 .dl-btn {
  margin: 0;
}




/* -----------------------------
 * PAGINA GIORNATA DELO VITERBO 2021
 *  2021 11 12
 * ----------------------------
 */


.page-id-4421 .main {
  /* ragazza tocca il footer */
  margin-bottom: -4rem;
}
.page-id-4421 .col-wrap-testo-intro h1 {
  font-size: 2rem;
}
.page-id-4421 .col-wrap-testo-intro p {
  font-size: 1.25rem;
}
.page-id-4421 .col-wrap-chiusura p {
  font-size: 1.1rem;
}
.page-id-4421 .col-wrap-chiusura a {
  text-decoration: underline;
}


@media screen and (min-width: 768px) {
  .page-id-4421 .main {
    /* ragazza tocca il footer */
    margin-bottom: -6rem;
  }
  .page-id-4421 .col-wrap-testo-intro h1 {
    font-size: 2.5rem;
  }
  .page-id-4421 .col-wrap-testo-intro p {
    font-size: 1.5rem;
  }
  .page-id-4421 .col-wrap-chiusura p {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  .page-id-4421 .main {
    /* ragazza tocca il footer */
    margin-bottom: -8rem;
  }
}

@media screen and (min-width: 1600px) {
  .page-id-4421 .main {
    /* ragazza tocca il footer */
    margin-bottom: -10rem;
  }
}