/*
 Theme Name:   Riccardo Marsili
 Author:       the 2Digital Team
 Template:     asteroids
 Version:      1.0.0
 Text Domain:  asteroids-child
*/

/*-------------------------------------------------------------------------------------------*/
/* BASE */
/*-------------------------------------------------------------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

body {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 150%;
  color: #000;
  background: #ccc;
}

strong,
b {
  font-weight: 600;
}

.cloak {
  opacity: 0;
}

/*-------------------------------------------------------------------------------------------*/
/* STRUCTURE */
/*-------------------------------------------------------------------------------------------*/

.master-container {
  background: #fff;
}

.container {
  max-width: 1250px;
}
.header-content .container {
  max-width: 100%;
}

.main {
  width: 65%;
  min-height: auto;
  position: relative;
  float: left;
  padding: 28px 0 50px;
  margin: 0;
}

.sidebar {
  width: 30%;
  min-height: 400px;
  position: relative;
  float: right;
  overflow: hidden;
  margin: 0;
  padding: 25px 0 0;
}

.full-page .main {
}

/*-------------------------------------------------------------------------------------------*/
/* FLOATING STRUCTURE */
/*-------------------------------------------------------------------------------------------*/

.boxed-container {
  z-index: 1;
  background: #fff;
}

#m-float-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
  visibility: hidden;
}

#m-float-bg-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  min-width: 100%;
  min-height: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  background: #333;
  z-index: 99999;
  -webkit-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.4 cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

#m-float-wrap {
  width: 100%;
  position: relative;
  height: auto;
  max-width: 100%;
  min-width: 1000px;
  margin: 0 auto 0;
  padding: 0 0 0;
  right: auto;
  left: auto;
  z-index: 1;
  overflow: hidden;
}

#m-float-sidebar,
#m-float-sidebar2 {
  width: 400px;
  min-height: 100%;
  position: fixed;
  top: 0;
  right: -400px;
  background: #fff;
  display: block;
  z-index: 999999;
}

.m-scroll-sidebar {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  box-sizing: border-box;
  overflow: scroll;
}

.floating-module {
  padding: 100px 4%;
}

body.push-sidebar > * {
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}

.sidebar-open #m-float-wrap,
.sidebar2-open #m-float-wrap {
  height: 100%;
  -webkit-transform: translate(-400px, 0);
  -moz-transform: translate(-400px, 0);
  -ms-transform: translate(-400px, 0);
  -o-transform: translate(-400px, 0);
  transform: translate(-400px, 0);
  -webkit-transform: translate3d(-400px, 0, 0);
  -moz-transform: translate3d(-400px, 0, 0);
  -ms-transform: translate3d(-400px, 0, 0);
  -o-transform: translate3d(-400px, 0, 0);
  transform: translate3d(-400px, 0, 0);
}

.sidebar-close #m-float-wrap {
  height: auto;
  -webkit-transform: translate(400px, 0);
  -moz-transform: translate(400px, 0);
  -ms-transform: translate(400px, 0);
  -o-transform: translate(400px, 0);
  transform: translate(400px, 0);
  -webkit-transform: translate3d(400px, 0, 0);
  -moz-transform: translate3d(400px, 0, 0);
  -ms-transform: translate3d(400px, 0, 0);
  -o-transform: translate3d(400px, 0, 0);
  transform: translate3d(400px, 0, 0);
}

.sidebar-open #m-float-bg,
.sidebar2-open #m-float-bg {
  visibility: visible;
  /*
	-webkit-transform: translate(-400px, 0);
    -moz-transform: translate(-400px, 0);
    -ms-transform: translate(-400px, 0);
    -o-transform: translate(-400px, 0);
    transform: translate(-400px, 0);
    -webkit-transform: translate3d(-400px, 0, 0);
    -moz-transform: translate3d(-400px, 0, 0);
    -ms-transform: translate3d(-400px, 0, 0);
    -o-transform: translate3d(-400px, 0, 0);
    transform: translate3d(-400px, 0, 0);
	*/
}

.sidebar-open #m-float-bg-overlay,
.sidebar2-open #m-float-bg-overlay {
  opacity: 0.6;
}

.sidebar-open #m-float-sidebar,
.sidebar2-open #m-float-sidebar2 {
  right: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-trigger {
  width: 60px;
  height: 150px;
  display: block;
  position: fixed;
  top: 40%;
  right: 20px;
  z-index: 999;
  color: #fff;
}

.btn-trigger a.btn-t-open,
.btn-trigger a.btn-phone-open {
  display: block;
}

.btn-trigger a.btn-t-close,
.btn-trigger a.btn-phone-close {
  display: none;
}

.btn-trigger a.btn-t-sms,
.btn-trigger a.btn-phone-mobile {
  display: none;
}

.btn-trigger a.btn-t-open-mobile {
  display: none;
}

.sidebar-open .btn-trigger a.btn-t-open,
.sidebar-open .btn-trigger a.btn-phone-open,
.sidebar2-open .btn-trigger a.btn-t-open,
.sidebar2-open .btn-trigger a.btn-phone-open {
  display: none;
}

.sidebar-open .btn-trigger a.btn-t-close,
.sidebar2-open .btn-trigger a.btn-phone-close {
  display: block;
}
.btn-phone-close-mobile {
  display: none;
}
.btn-trigger a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  border-radius: 10px;
  display: block;
  background: #000;
  background: #134681;
  background: #61c8f4;
  background: #ccc;
  background: #f9b200;
  background: #d3a225;
}
a.btn-phone-close {
  margin-top: 35px;
}
.sidebar-open .btn-trigger,
.sidebar2-open .btn-trigger {
  display: block;
  -webkit-transform: translate(-400px, 0);
  -moz-transform: translate(-400px, 0);
  -ms-transform: translate(-400px, 0);
  -o-transform: translate(-400px, 0);
  transform: translate(-400px, 0);
  -webkit-transform: translate3d(-400px, 0, 0);
  -moz-transform: translate3d(-400px, 0, 0);
  -ms-transform: translate3d(-400px, 0, 0);
  -o-transform: translate3d(-400px, 0, 0);
  transform: translate3d(-400px, 0, 0);
}

/*-------------------------------------------------------------------------------------------*/
/* BASE */
/*-------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------*/
/* HEADER */
/*-------------------------------------------------------------------------------------------*/

#header {
  min-height: auto;
  padding: 10px 0;
  background: #fff;
}

#subheader {
  padding: 0;
  border-top: 2px solid #eeeeee;
  border-bottom: 1px solid #c2c2c2;
  background: #fff;
}

.subheader-content {
  padding: 0;
}

/*-------------------------------------------------------------------------------------------*/
/* LOGO */
/*-------------------------------------------------------------------------------------------*/

#logo {
  width: 380px;
  height: auto;
  float: none;
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}

#logo a {
  width: 380px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  text-indent: -999em;
  background: url(//www.riccardomarsili.com/wp-content/uploads/2017/02/mobile-header.png)
    no-repeat 50% 50%;
  background-size: 62px 84px;
  background: url(//www.riccardomarsili.com/wp-content/uploads/2017/02/logo_marsili_1.png)
    no-repeat 50% 50%;
  background-size: 69px 100px;
  background: #ccc;
}

.logo-vertical {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*-------------------------------------------------------------------------------------------*/
/* NAVIGATION */
/*-------------------------------------------------------------------------------------------*/

.navigation-module {
  width: 100%;
  float: none;
  margin: 0 0 0;
  z-index: 99;
}

.navigation-module ul.nav {
  /*font-family: "Oswald", Arial, Helvetica, sans-serif;*/
  width: 100%;
  position: relative;
  text-align: center;
  text-transform: none;
  font-size: 11px;
}

.navigation-module ul.nav li {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.navigation-module ul.nav li.mega-menu {
  position: static;
}
.navigation-module ul.nav > li {
  margin: 0 22px;
}
.navigation-module ul.nav > li:first-child {
  margin-left: 0;
}
.navigation-module ul.nav > li:last-child {
  margin-right: 0;
}
.navigation-module ul.nav > li.lien-search {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -18px;
}
.navigation-module ul.nav > li.lien-search a {
  background: url("images/loup.png") no-repeat center;
  width: 16px;
  height: 16px;
  display: block;
  text-indent: -999em;
}
/*.navigation-module ul.nav > li:last-child{
	position: absolute;
	right: 0;
}*/
.navigation-module ul.nav a {
  color: #000;
  padding: 10px 0;
  text-decoration: none;
}
.navigation-module ul.nav a i.fa {
  margin-left: 6px;
  font-size: 12px;
}
.navigation-module ul.nav a:hover,
.navigation-module ul.nav li:hover > a,
.navigation-module
  ul.nav
  li.mega-menu
  > ul.sub-menu
  > li
  > ul.sub-menu
  > li:hover
  > a {
  color: #bb9948;
}

/*-------------------------------------------------------------------------------------------*/
/* DROPDOWN NAVIGATION */
/*-------------------------------------------------------------------------------------------*/

.dropdown-nav,
.navigation-module > ul > li > .sub-menu {
  width: 225px;
  height: auto;
  top: 45px;
  left: 0;
  position: absolute;
  padding: 0;
  text-align: left;
  /**border: 1px solid #000;*/
  border-top: 2px solid #d0d0d0;
  z-index: 99;
  display: none;
  background: #fff;
  padding: 5px 20px;
  -webkit-animation: dropbounce 0.2s ease-in-out;
  animation: dropbounce 0.2s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.navigation-module ul li a i.fa {
  display: none !important;
}
.navigation-module > ul > li.menu-item-has-children > a i.fa {
  display: inline-block !important;
}

.dropdown-nav.drop-2-col {
  width: 450px;
}

.dropdown-nav.drop-3-col {
  width: 700px;
}

ul.nav li ul.dropnav li,
ul.nav li ul.sub-menu li {
  display: block;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #f3f3f3;
}
ul.nav li ul.dropnav li:last-child,
ul.nav li ul.sub-menu li:last-child {
  border-bottom: none;
}

ul.nav li ul.dropnav li a,
ul.nav li ul.sub-menu li a {
  color: #797979;
  padding: 13px 0;
  font-size: 11px;
  line-height: 11px;
}

ul.nav li:hover .dropdown-nav,
ul.nav li:hover .sub-menu {
  display: block;
}
.navigation-module ul.nav li.mega-menu > ul.sub-menu {
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation-module ul.nav li.mega-menu > ul.sub-menu li {
  border-bottom: none;
}
.navigation-module ul.nav li.mega-menu > ul.sub-menu > li {
  width: 20%;
  float: left;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation-module ul.nav li.mega-menu > ul.sub-menu > li > a {
  font-size: 13px;
  color: #020202;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px solid #000000;
}
.navigation-module ul.nav li.mega-menu > ul.sub-menu > li > ul.sub-menu {
  margin: 5px 0 0;
}
.navigation-module
  ul.nav
  li.mega-menu
  > ul.sub-menu
  > li
  > ul.sub-menu
  > li:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  color: #cba342;
  position: absolute;
  left: 0;
  top: 9px;
  display: none;
}
.navigation-module
  ul.nav
  li.mega-menu
  > ul.sub-menu
  > li
  > ul.sub-menu
  > li:hover:before {
  display: inline-block;
}
.navigation-module
  ul.nav
  li.mega-menu
  > ul.sub-menu
  > li
  > ul.sub-menu
  > li
  > a {
  font-size: 12px;
  color: #9c9c9b;
  font-weight: 600;
  text-transform: none;
  line-height: 16px;
  padding: 8px 0 8px 17px;
}
/*-------------------------------------------------------------------------------------------*/
/* SUBNAVIGATION */
/*-------------------------------------------------------------------------------------------*/

.sub2header {
  background: #fff;
  display: none;
}

.subnavigation-module {
  width: 100%;
  float: none;
  margin: 0 0 0;
  z-index: 99;
  background: #fff;
}

.subnavigation-module ul.subnav {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 14px;
}

.subnavigation-module ul.subnav li {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0 0;
}

.subnavigation-module ul.subnav a {
  display: inline-block;
  color: #333;
  padding: 20px 15px;
  text-decoration: none;
}

.subnavigation-module ul.subnav a:hover {
  color: inherit;
  background: #f9f9f9;
}

/*-------------------------------------------------------------------------------------------*/
/* SLIDE */
/*-------------------------------------------------------------------------------------------*/

#slider {
  z-index: 9;
  background: #000;
}

.cycle-slideshow a.slide-control {
  color: #fff;
  font-size: 16px;
}
.slide-control.left {
  left: 20px;
}
.slide-control.right {
  right: 20px;
}
#slider .slide .container .content {
  width: 90%;
  position: absolute;
  top: 40%;
  left: 0%;
  display: table-cell;
  vertical-align: middle;
  padding-top: 40px;
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;
}

.title-slide {
  width: 100%;
  position: relative;
  margin: 0 auto;
  /**font-family: "Montserrat", "Raleway", Arial, Helvetica, sans-serif;*/
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 110%;
  letter-spacing: 10px;
  text-align: left;
}
h1.title-slide {
  font-size: 42px;
  font-weight: 600;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin: 0;
  letter-spacing: 10px;
  text-align: left;
  line-height: 48px;
}
.title-slide span {
  display: inline-block;
  border-top: 1px solid #cba342;
  border-bottom: 1px solid #cba342;
  width: 100%;
  max-width: 415px;
  padding: 25px 0 30px;
}

.subtitle-slide {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  display: block;
  line-height: 160%;
  margin: 15px auto 0;
  color: #222;
  text-align: right;
}

.text-slide {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  display: block;
  max-width: 460px;
  margin-bottom: 35px;
}

.slide-pager {
  width: 88px;
  height: 20px;
  position: relative;
  margin: -30px auto 0;
  z-index: 999;
  background: #000;
  display: none;
}

.subtitle-slide {
  font-weight: normal;
}

.slide-box {
  width: 40%;
  float: left;
  padding: 60px 5%;
}

#slider .slide .container .content {
  top: 25%;
}

#slider,
#slider .slide,
#slider .slide .container {
  min-height: inherit;
  height: 100vh;
  /* min-height: 100vh; */
  max-height: 950px;
}

/*-------------------------------------------------------------------------------------------*/
/* SUBSLIDER */
/*-------------------------------------------------------------------------------------------*/

.sub-slider {
  padding: 20px 5%;
  color: #fff;
  text-align: center;
  background: #000;
}

.sub-slider p {
  margin: 0;
}

/*-------------------------------------------------------------------------------------------*/
/* STYLE */
/*-------------------------------------------------------------------------------------------*/

p,
ul {
  letter-spacing: 0.8px;
  /*text-align: justify;*/
}

.title-section,
.title-page,
.title-paragraph,
.title.column {
  font-family: "Montserrat", Georgia, "Times New Roman", Times, serif;
}

.title-section {
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}
.title-section.title-lowercase {
  text-transform: none;
}

.title-section a {
  color: inherit;
  text-decoration: none;
}

.subtitle-section {
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
  line-height: 150%;
  color: #444;
}

.title-section-b,
.title-section-l {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: normal;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: none;
  color: #333;
  text-align: center;
}

.title-section-l {
  font-size: 32px;
  text-align: left;
  margin-bottom: 10px;
}

.title-section-a {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: none;
  color: #000;
}

.title-page {
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
}

.masthead.std-masthead .main-title,
.masthead.std-masthead .main-title .container {
  width: 100%;
  height: 60px;
}

.masthead .main-title {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9;
}

.masthead .main-title .container {
  width: 100%;
  height: auto;
  padding: 70px 0 0;
}

.masthead.std-masthead .main-title .container {
  width: 90%;
  height: auto;
  padding: 30px 5% 0;
}

.masthead .container {
  display: table;
}

.masthead .title-page,
.masthead.std-masthead .title-page {
  display: block;
  /*
	padding: 20px 40px;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	display: inline-block;
	*/
  /*float: right;*/
}

.masthead .container .title-page,
.masthead.std-masthead .container .title-page {
  color: #fff;
  text-align: center;
  /*display: table-cell;*/
  display: block;
  vertical-align: middle;
}

.masthead .title-page:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 80px;
  height: 2px;
  margin: auto;
  background: #fff;
}

.masthead .title-page {
  /*position: absolute;
	right: 10%;
	bottom: 0;*/
}

.masthead.std-masthead .title-page {
  /*position: absolute;
	right: 10%;
	bottom: 0;*/
}

.masthead .title-page:after {
}

.subtitle-page {
  display: block;
  /*font-family: "Lora", Georgia, "Times New Roman", Times, serif;*/
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  color: #000;
  margin-bottom: 30px;
}

.masthead .subtitle-page {
  color: #fff;
  text-align: center;
  display: none;
}

.section-head.b-line .title-section,
.section-head.b-line .title-page {
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}

.title-paragraph {
  font-size: 18px;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px;
  padding: 0 0 0;
}

.title-paragraph.d-line {
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 40px 0 20px;
  padding: 16px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.title-paragraph.d-line {
  font-size: 18px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;

  margin: 20px 0 10px;
  padding: 22px 35px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.single .title-paragraph.d-line,
.slug-chirurgo-plastico-pisa .title-paragraph.d-line.accordion-term,
.slug-chirurgo-plastico-lucca .title-paragraph.d-line.accordion-term,
.slug-chirurgo-plastico-livorno .title-paragraph.d-line.accordion-term {
  color: #fff;
  background: #000;
}

.single .title-paragraph.d-line:hover {
  cursor: pointer;
}

.title-paragraph.d-line i {
  float: right;
}

.title-paragraph a {
  text-decoration: none;
  color: inherit;
}

.single article .title-paragraph {
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 40px 0 20px;
  padding: 12px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.top-line {
  display: block;
  border-top: 1px solid #000;
  padding-bottom: 20px;
}

.c-section .top-line,
.c-section .section-head.b-line .title-section {
  border-color: #fff;
}

.title-section.tb-title {
  height: 90px;
  display: table-cell;
  vertical-align: bottom;
  padding: 0 0 15px;
}

.title-column {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-post {
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 15px;
}

/*-------------------------------------------------------------------------------------------*/
/* LIST STYLE */
/*-------------------------------------------------------------------------------------------*/

ul.list-services {
  font-family: "Montserrat", Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  list-style: square inside;
  border-top: 1px solid #000;
}

ul.list-services li {
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #000;
}

ul.list-services li a {
  color: #000;
  text-decoration: none;
}

ul.list-services li .info {
  display: block;
  text-transform: none;
}

ul.list-services li ul.sub-menu {
  margin: 0 0 0 25px;
  text-transform: none;
}

ul.list-services li ul.sub-menu li {
  padding: 5px 0 5px 0;
  border-bottom: none;
}

ul.list-services li ul.sub-menu li a {
}

.single-2dig_servizi_v1 .widget.widget_nav_menu ul.sub-menu {
  display: none;
}

/*-------------------------------------------------------------------------------------------*/
/* SECTION */
/*-------------------------------------------------------------------------------------------*/

.section.c1-section {
  background: #000;
}

.section.c2-section {
  background: #57cfde;
}

.section.c3-section {
  background: #444;
}

.section.full-section.full-sec-1 {
  background: url(//www.riccardomarsili.com/wp-content/uploads/2017/02/bg_medicina_estetica_1.jpg)
    50% 0% no-repeat fixed;
  background-size: cover;
}

.column.justify-section p,
.justify-section p {
  text-align: justify;
}
/*-------------------------------------------------------------------------------------------*/
/* MASTHEAD */
/*-------------------------------------------------------------------------------------------*/

.masthead {
  height: 400px;
  margin: 0;
  background: #000;
}

.std-masthead {
  height: 250px;
  background: #000;
}

.masthead:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.masthead.masthead-opacity:before {
  opacity: 1;
}

.page-template-page-chirurgia .masthead:before {
  background-size: cover;
  background: url(images/masthead/chirurgia.jpg) no-repeat 50% 50%;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-chirurgia-seno .masthead:before {
  background: url(images/masthead/seno.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-chirurgia-viso .masthead:before {
  background: url(images/masthead/viso.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-chirurgia-corpo .masthead:before {
  background: url(images/masthead/corpo.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-chirurgia-intima .masthead:before {
  background: url(images/masthead/intima.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-chirurgia-uomo .masthead:before {
  background: url(images/masthead/uomo.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-medicina .masthead:before {
  background: url(images/masthead/medicina_estetica.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

.page-template-page-laserterapia .masthead:before {
  background: url(images/masthead/laser.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
}

/*-------------------------------------------------------------------------------------------*/
/* INDEX */
/*-------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------*/
/* FEATURES */
/*-------------------------------------------------------------------------------------------*/

.feature-box {
  padding: 30px 0;
  border-bottom: 1px solid #000;
}

.feature-box a {
  display: block;
  text-decoration: none;
}

.feature-box a p {
  color: #333;
}

.home .feature-box img {
  margin-bottom: 15px;
}

/*-------------------------------------------------------------------------------------------*/
/* TOP */
/*-------------------------------------------------------------------------------------------*/

.social-column {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 25px;
  padding: 0;
  /*border-left: 1px solid rgba(255,255,255,.4);*/
  display: block;
}

.language-column {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  right: 25px;
  padding: 0;
  /*border-left: 1px solid rgba(255,255,255,.4);*/
  display: block;
}

.calltoaction-column {
  width: 30%;
  height: 40px;
  float: right;
  padding: 10px 0;
  display: none;
}

.box-phone-column {
  display: none;
}

.phone-column-1,
.phone-column {
  width: 40%;
  height: 40px;
  position: absolute;
  top: 40px;
  left: 25px;
  padding: 0 0 10px;
}

.phone-column-1 p {
  color: #000;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 600;
}

.phone-column-1 p span {
  color: #7b7b7b;
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  display: block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.social-column a {
  width: 25px;
  height: 25px;
  display: block;
  float: right;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  color: #fff;
  margin: 0 7px 0 0;
  padding: 5px;
  border-radius: 50%;
  background: #000;
}

.language-column a {
  width: 25px;
  height: 25px;
  display: block;
  float: left;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 25px;
  color: #000;
  margin: 0 7px 0 0;
  padding: 5px 5px;
  border-radius: 50%;
  background: #fff;
  text-transform: uppercase;
  border: 1px solid #000;
  text-decoration: none;
}

.language-column a {
  background: url("images/lang-it.png") no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  border: none;
  position: relative;
  text-indent: -999em;
}
.language-column a.disabled {
  background: url("images/lang-fr.png") no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.language-column a.disabled:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.phone-column p {
  color: #ccc;
  text-align: center;
  line-height: 38px;
}

.calltoaction-column a.button {
  color: #fff;
  border-color: #fff;
}

/*-------------------------------------------------------------------------------------------*/
/* WIDGET / SIDEBAR */
/*-------------------------------------------------------------------------------------------*/

.sidebar .widget {
  margin: 0 auto 30px;
}

.sidebar .widget.widget_nav_menu,
.sidebar .widget.widget_recent_entries,
.sidebar .widget.widget_categories {
  padding: 15px 8%;
  box-sizing: border-box;
  border: 1px solid #000;
}

.sidebar .widget ul.menu li {
  text-align: center;
  text-transform: none;
  letter-spacing: 0.8px;
  font-size: 16px;
  font-weight: 600;
}

.sidebar .widget ul li {
  text-align: center;
  text-transform: none;
  letter-spacing: 0.8px;
  font-size: 16px;
  font-weight: 600;
}

.sidebar .widget ul li a {
  color: #000;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}

.sidebar .widget ul.menu li a,
.sidebar .widget.widget_recent_entries ul li a,
.sidebar .widget.widget_categories ul li a {
  color: #000;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
  border-top: 1px solid #000;
}

.sidebar .widget ul.menu li:first-child a,
.sidebar .widget ul li:first-child a {
  border-top: 0;
}

.sidebar .widget.widget_text,
.sidebar .widget.widget_rm_briefly_widget {
  padding: 25px 8%;
  box-sizing: border-box;
  border: 0;
  background: #eee;
}

.sidebar .widget.widget_text p {
  text-align: left;
  line-height: 160%;
}
.sidebar .widget.widget_text p.widget-title {
  text-align: center;
}
.sidebar .widget-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #555;
}

/*-------------------------------------------------------------------------------------------*/
/* NEWS */
/*-------------------------------------------------------------------------------------------*/

a.read-more {
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.date-box {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -35px;
  left: 50%;
  padding: 15px 5px;
  margin: 0 0 0 -20px;
  background: #000;
}

.date-day {
  display: block;
  text-align: center;
  color: #ccc;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 2px;
}

.date-month {
  display: block;
  text-align: center;
  color: #eee;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-post a {
  color: #000;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*/
/* SPECIAL BOX */
/*-------------------------------------------------------------------------------------------*/

.hl-box {
  padding: 30px 8%;
  background: #eee;
}

.special-box {
  padding: 40px 8%;
  box-sizing: border-box;
  background: #fff;
}

/*-------------------------------------------------------------------------------------------*/
/* LINKS */
/*-------------------------------------------------------------------------------------------*/

ul.links-list {
}

ul.links-list li {
  display: inline-block;
  font-weight: 600;
}

ul.links-list li a {
  text-decoration: none;
}

.search-form label .screen-reader-text {
  display: none;
}

.search-form .search-field {
  width: 100%;
  max-width: 700px;
  height: 50px;
  box-sizing: border-box;
  padding: 20px 10px;
  border: 1px solid #000;
  text-align: center;
  margin: 0 auto 20px;
  float: none;
  display: block;
}

.search-form input[type="submit"] {
  position: relative;
  float: none;
  margin: 10px auto;
  display: block;
  max-width: 200px;
}

input,
textarea,
keygen,
select,
button {
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.sidebar .search-form input[type="submit"] {
  display: none;
}

/*-------------------------------------------------------------------------------------------*/
/* BLOG  */
/*-------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------*/
/* GRID  */
/*-------------------------------------------------------------------------------------------*/

.grid-post {
}

.grid-post .article {
  width: 33%;
  position: relative;
  display: inline-block;
  margin: 15px 0 45px;
  box-sizing: border-box;
  padding: 0 1.5%;
  border-bottom: none;
  vertical-align: top;
}

.grid-post .article .title-paragraph {
  margin-top: 0;
}

.grid-post .article .article-content {
  width: 100%;
  background: #fff;
}

.grid-post .article .article-t-content {
  width: 90%;
  padding: 30px 5% 0;
  background: #fff;
}

.grid-post .article .post-image,
.grid-post .article .wp-post-image {
  margin: 0;
}

.grid-post .post-gallery,
.grid-post .post-video {
  margin: 0;
}

.grid-post .entry-info {
  border-top: 1px solid #000;
}

.grid-post .flexslider {
  border: none;
}

.grid-post .wp-post-image {
  border-radius: 0;
}

.entry-info .avatar {
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: none;
  margin: 15px 15px 0 0;
}

.entry-info .entry-meta {
  font-size: 13px;
}

.grid-post .post-video {
  overflow: hidden;
}

.grid-post .post-video iframe {
  width: 100%;
  max-height: 300px;
}

iframe.yt-responsive {
  width: 100%;
  max-width: inherit;
  height: 100%;
  min-height: inherit;
}

/*-------------------------------------------------------------------------------------------*/
/* SINGLE / BLOG  */
/*-------------------------------------------------------------------------------------------*/

.single .date-box {
  display: none;
}

.single .meta-data {
  font-weight: 600;
  color: #000;
  margin-top: 65px;
  padding: 15px;
  background: #eee;
}

.pagination-box {
  margin: 40px 0 0;
}

.pagination-box .page-numbers,
.pagination-box a.page-numbers {
  min-width: 20px;
  text-align: center;
  padding: 5px;
  border: 1px solid #000;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.pagination-box a.page-numbers:hover {
  background: #fff;
}

.pagination-box .page-numbers.current {
  background: #000;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------*/
/* FLEXSLIDER  */
/*-------------------------------------------------------------------------------------------*/

.grid-post .flexslider {
  margin-bottom: 20px;
}

.flex-control-paging li a {
  background: #ccc;
}

.flex-control-paging li a:hover {
  background: #bbb;
}
.flex-control-paging li a.flex-active {
  background: #000;
  border-color: #fff;
  cursor: default;
}

/*-------------------------------------------------------------------------------------------*/
/* FLOATING CTA */
/*-------------------------------------------------------------------------------------------*/

.floating-wrap {
  width: 100%;
  max-width: 700px;
  height: auto;
  box-sizing: border-box;
  position: absolute;
  top: 40%;
  right: -500px;
  /*right: -700px;*/
  padding: 50px 5%;
  z-index: 999;
  border: 2px solid #000;
  background: #fff;
  display: none;
}

.floating-module {
  position: relative;
  padding: 80px 8%;
}

.floating-module form {
  /*border: 1px solid #000;*/
  padding: 0;
}

.floating-module .input-textarea {
  height: 100px;
}

.floating-module .full-field,
.floating-module .half-field {
  margin-bottom: 5px;
}

input.input-file {
  font-weight: normal;
  font-size: 13px;
}

.floating-module form label {
  letter-spacing: 0.8px;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}

.side-cta {
  width: 220px;
  height: 44px;
  box-sizing: border-box;
  display: block;
  padding: 10px 25px;
  position: absolute;
  top: 58px;
  left: -329px;
  border: 2px solid #000;
  background: #fff;

  -webkit-transform: translateX(50%) translateY(-50%) rotate(90deg);
  -moz-transform: translateX(50%) translateY(-50%) rotate(90deg);
  -ms-transform: translateX(50%) translateY(-50%) rotate(90deg);
  -o-transform: translateX(50%) translateY(-50%) rotate(90deg);
  transform: translateX(50%) translateY(-50%) rotate(90deg);
}

a.side-close {
  position: absolute;
  top: 45px;
  right: 15px;
  color: #000;
  display: block;
  z-index: 1;
}

/*-------------------------------------------------------------------------------------------*/
/* FOOTER */
/*-------------------------------------------------------------------------------------------*/

#footer {
  display: block;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .widget-title {
  color: #b8b8b8;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

#footer .textwidget {
  color: #fff;
  margin-bottom: 10px;
}

#footer .subtitle-paragraph {
  font-weight: 600;
  display: block;
  letter-spacing: 0.8px;
  margin-bottom: 25px;
}
#footer .bloc-logo-footer p {
  margin-bottom: 0;
}
#footer .bloc-logo-footer p img {
  max-width: 100%;
  display: block;
}
#footer .bloc-logo-footer .subtitle-paragraph {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 6.7px;
  margin-bottom: 0;
}
#footer ul.menu {
  margin: 0 0 25px;
}

#footer ul.menu li {
  line-height: 16px;
  margin-bottom: 10px;
}

#footer ul.menu li a {
  color: #b8b8b8;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
}
#footer ul.menu li a:hover,
.widget_recent_entries ul li a:hover {
  color: #fff;
}
ul.social-list {
  float: right;
  font-size: 20px;
  margin-top: 24px;
}

ul.social-list li {
  display: inline-block;
  margin-right: 15px;
}
ul.social-list li:last-child {
  margin-right: 0;
}

ul.social-list li a {
  color: #fff;
}

#footer .separator {
  border-color: rgba(255, 255, 255, 0.2);
  margin-top: 0;
  margin-bottom: 40px;
}

.footer-bottom {
  background: #fff;
  padding: 4px 5px;
}

.footer-bottom p {
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  margin: 0;
}
.row-footer {
  margin: 0;
}
.bloc-left-menu-footer .widget_nav_menu {
  float: left;
  width: 25%;
}
.menu-link_esterni-container,
.menu-nav_info-container {
  padding-left: 15px;
}
#footer .menu-link_esterni-container ul.menu li,
#footer .menu-nav_info-container ul.menu li {
  margin-bottom: 6px;
}
#footer .menu-link_esterni-container ul.menu li a,
#footer .menu-nav_info-container ul.menu li a {
  text-transform: none;
}
.widget_recent_entries ul {
  margin-top: 8px;
}
.widget_recent_entries ul li {
  border-left: 1px solid #232323;
  padding-left: 10px;
  margin-bottom: 18px;
}
.widget_recent_entries ul li a {
  font-size: 11px;
  font-weight: 400;
  color: #b8b8b8;
  text-decoration: none;
  letter-spacing: 1px;
}
.widget_recent_entries ul li span.post-date {
  display: block;
  font-size: 8px;
  line-height: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b8b8b8;
}
/*-------------------------------------------------------------------------------------------*/
/* GALLERY */
/*-------------------------------------------------------------------------------------------*/

.gallery-columns-3 {
  margin: 0 auto 15px;
}

.gallery-columns-3 .gallery-item {
  width: 32%;
  display: inline-block;
  margin: 0 0.5% 20px;
}

.gallery-columns-3 .gallery-item img {
  width: 100%;
  height: auto;
}

/*-------------------------------------------------------------------------------------------*/
/* ACCORDION */
/*-------------------------------------------------------------------------------------------*/

.accordion-content {
  display: none;
  position: relative;
  margin: 0;
  padding: 0;
}

.accordion-content p {
  margin: 0;
  padding: 0 0 10.5px;
}

/*-------------------------------------------------------------------------------------------*/
/* SINGLE SERVIZI */
/*-------------------------------------------------------------------------------------------*/
ul.list-items-2 {
  margin: 0 0 15px;
}
ul.list-items-2 li {
  list-style: outside square;
}
.single .master-container {
  padding-top: 60px;
}

.single .post-image {
  margin: 0 0 30px;
}

.single ul.list-items {
}

.single ul.list-items,
ul.list-items,
ul.list-items-2 {
  margin-left: 35px;
}

ul.list-items li {
  list-style: outside square;
}

span.divisor {
  width: 50px;
  height: 2px;
  display: block;
  position: relative;
  margin: 15px auto 30px;
  background: #000;
}

.cta-phone {
  display: block;
  font-size: 26px;
  font-weight: 600;
  margin: 15px auto 30px;
}

.button,
a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  color: #000;
  border-color: #333;
  font-size: 13px;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  background-color: #d3a225;
  border-color: #d3a225;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  background-color: #d3a225;
  border-color: #d3a225;
}
a.button.btn-information {
  background-color: #cba342;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #cba342;
  height: 34px;
  line-height: 32px;
  padding: 0 10px;
  min-width: 210px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.button.btn-information:hover {
  background-color: #fff;
  color: #000;
}
/*-------------------------------------------------------------------------------------------*/
/* RELATED */
/*-------------------------------------------------------------------------------------------*/

#related-module .title-column {
  height: 55px;
}

#related-module .title-column a {
  color: #000;
  text-decoration: none;
}

#related-module .content-column {
  min-height: 280px;
}

#related-module .boxed-column {
  margin-bottom: 30px;
}

.quote-box {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-style: italic;
}

.breadcrumbs {
  font-size: 14px;
  text-align: left;
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: #000;
  text-decoration: none;
}

ul.links-list li a {
  color: inherit;
}

ul.links-list li a:hover {
  text-decoration: underline;
}

.search-module-wrap {
  max-width: 500px;
  position: relative;
  margin: 0 auto;
}

.search-module-wrap .input-text {
  border-color: #000;
}

.input-text,
.input-textarea {
  font-size: inherit;
  letter-spacing: 0;
}

/*-------------------------------------------------------------------------------------------*/
/* PRIMA / DOPO PLUGIN */
/*-------------------------------------------------------------------------------------------*/

.prima-dopo {
  width: 100%;
  height: 650px;
  position: relative;
  padding: 15px 0;
}

.ba-slider .handle:after {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  content: "\21d4";
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  line-height: 64px;
  background: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(0, 0, 0, 0.5),
    inset 0 60px 50px -30px #000 !important;
}

/*-------------------------------------------------------------------------------------------*/
/* CONTATTI MODULE */
/*-------------------------------------------------------------------------------------------*/

.form-module label {
  letter-spacing: 0.8px;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}
.form-module span.wpcf7-not-valid-tip {
  font-size: 13px;
  letter-spacing: 0.5px;
}
.form-module .input-text,
.form-module .input-textarea {
  margin-bottom: 0;
}
.form-module .full-field,
.form-module .half-field {
  margin-bottom: 20px;
}
.form-module input[type="submit"]:hover {
  background: #333;
  color: #fff;
}
.error-box {
  background-color: #f2dede;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

/*-------------------------------------------------------------------------------------------*/
/* SINGLE SERVIZI VANTAGGI */
/*-------------------------------------------------------------------------------------------*/

.single div.vantaggi .title-paragraph.d-line {
  background: none;
  color: #000;
  border: none;
  margin: 10px 0 10px;
  padding: 0;
}

.single div.vantaggi {
  padding: 20px 4%;
  border-radius: 5px;
  background: #eee;
}

.list-lang li {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px !important;
}
#responsive-menu-container #responsive-menu-title ul.list-lang li a {
  display: block;
  color: #a4a4a4 !important;
  font-size: 17px !important;
  font-weight: 400;
}
#responsive-menu-container #responsive-menu-title ul.list-lang li a:hover,
#responsive-menu-container #responsive-menu-title ul.list-lang li.active a {
  color: #fff !important;
  padding-bottom: 2px;
  border-bottom: 2px solid #fff;
}

/********* Système notation étoiles ********** */
#box-ratings {
  background-color: #fff;
  padding-bottom: 30px;
}
.notation_etoile span {
  line-height: 27px;
}
.notation_texte_fin {
  margin-top: 8px;
}
.notation_premier_texte {
  margin-bottom: 8px;
}
.notation_etoile .post-ratings img,
.notation_etoile .post-ratings-image img {
  height: 20px;
  padding-right: 10px;
}
span.notation_accroche {
  font-weight: 500;
}
.notation_etoile {
  padding-top: 23px;
}

.modal-cookie {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 999999;
}

.container-cookies-popup {
  background-color: #fff;
  padding: 20px;
  max-width: 420px;
  width: 75%;
  border-top: 4px solid #000;
  position: fixed;
  -moz-box-shadow: 0 0 3px #ccc;
  -webkit-box-shadow: 0 0 3px #ccc;
  box-shadow: 0 0 3px #ccc;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-overlay {
  background-color: rgba(255, 255, 255, 0.7);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 999999;
}

@media only screen and (max-width: 1050px) and (min-width: 768px) {
  #cookie-notice .container {
    width: 768px !important;
  }
}

@media only screen and (max-width: 920px) and (min-width: 767px) {
  #cookie-notice .container {
    width: 428px !important;
  }
}

@media (max-width: 920px) {
  #cookie-notice .container h2:last-child {
    letter-spacing: 0px !important;
  }
}

#cookie-notice {
  background-color: #333232;
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
  text-align: left !important;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9999999;
}

.cookie-notice-h2 {
  font-family: Open Sans, sans-serif;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold !important;
  color: #fff !important;
}

.cookie-notice-divider {
  display: block;
  background-color: #c9c9c9;
  width: 53px;
  height: 1px;
}

.cookie-notice-paragraph {
  font-family: Open Sans, sans-serif;
  color: #fff !important;
  font-size: 12px !important;
}

.cookie-notice-close {
  position: absolute;
  top: 35px;
  right: 35px;
}

.cookie-notice-close i {
  color: #fff;
  font-size: 18px;
}

.cookie-notice-h2-regular {
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300 !important;
  color: #fff !important;
}

.cookie-notice-h2-regular a {
  font-weight: bold !important;
  color: #fff !important;
  letter-spacing: 1px !important;
  font-family: Open Sans, sans-serif;
  font-size: 12px !important;
}
.container-cookies-popup p {
  text-align: left;
  line-height: 17px;
}
.modal-cookie-paragraph {
  font-family: "Open sans", sans-serif;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

.modal-cookie-paragraph-bold {
  font-family: "Open sans", sans-serif;
  color: #646464;
  font-size: 12px;
  font-weight: 300 !important;
}

.modal-cookie-paragraph-label {
  font-family: "Open sans", sans-serif;
  color: #646464;
  font-size: 12px;
  font-weight: bold;
}

.modal-cookie-button-div {
  text-align: right;
  margin-top: 20px;
}

.modal-cookie-button {
  text-transform: uppercase;
  padding: 10px 15px;
  font-family: "Open sans", sans-serif;
  color: #fff !important;
  font-size: 12px;
  text-decoration: none !important;
  border-radius: 0;
  background-color: #000;
  border: 1px solid #000;
}
.modal-cookie-button:hover {
  background-color: #fff;
  color: #000 !important;
}
.cookies-popup--radiogroup {
  padding: 16px 0 25px;
}
.cookies-popup--content label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0.5px;
}
.cookies-popup--content label span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 4px;
  background-color: white;
  border: 1px solid #bbbdbe;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.cookies-popup--content input[type="radio"]:checked + label span:before {
  content: "";
  background-color: #000;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.cookies-popup--content input {
  margin: 0;
}
.cookies-popup--radiogroup > div {
  display: block;
  vertical-align: middle;
  margin-bottom: 5px;
}
.cookies-popup--radiogroup input[type="radio"] {
  display: none;
}
@media (max-width: 767px) {
  #cookie-notice p {
    text-align: left;
    line-height: 17px;
  }
  .cookie-notice-close {
    top: 15px;
    right: 15px;
  }
}

/*HEADER*/

#m-float-wrap {
  overflow: initial;
}
:root {
  --headerTopHeight: 40px;
}
#header {
  padding-top: 0;
  position: sticky;
  z-index: 99999999;
  top: 0;
  padding-bottom: 0;
}
.header__top {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  height: var(--headerTopHeight, 40px);
  line-height: var(--headerTopHeight, 40px);
}

/*LEFT*/

.header__top__left {
  display: flex;
  align-items: center;
}
.header__top__left > * + * {
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}
.header__top__left > * + *::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  width: 1px;
  height: 15px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/*SOCIALS*/

.header__top__socials {
  position: relative;
  top: 2px;
}
.header__top__socials a {
  text-decoration: none;
  color: inherit;
}
.header__top__socials i {
  font-size: 20px;
  color: #fff;
}
.header__top__socials > * + * {
  margin-left: 7px;
}

/*LANGUAGES*/

.header__top__languages > a {
  border: none;
  position: relative;
  text-indent: -999em;
  width: 25px;
  height: 25px;
  display: block;
  float: left;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 25px;
  color: #000;
  border-radius: 50%;
  text-transform: uppercase;
  text-decoration: none;
}
.header__top__languages > a + a {
  margin-left: 10px;
}
.header__top__languages > a.disabled {
  opacity: 0.5;
}
.header__top__languages > a.italianFlag {
  background: url(images/lang-it.png) no-repeat;
  background-size: cover;
}
.header__top__languages > a.frenchFlag {
  background: url(images/lang-fr.png) no-repeat;
  background-size: cover;
}

/*RIGHT*/

.header__top__right__contact > a {
  height: var(--headerTopHeight, 40px);
  line-height: var(--headerTopHeight, 40px);
  display: block;
  background-color: #d3a22c;
  font-weight: 600;
  font-size: 12px;
  padding-left: 35px;
  padding-right: 35px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}
.header__top__right__contact span {
  position: relative;
}
.header__top__right__contact span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
@media (hover: hover) {
  .header__top__right__contact span:hover::before {
    width: 0;
    left: inherit;
    right: 0;
  }
}

@media only screen and (max-width: 992px) {
  .header__bottom #logo {
    padding: 0;
    position: absolute;
    top: 70px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .header__bottom {
    position: relative;
    min-height: 150px;
  }
  body button#responsive-menu-button {
    position: fixed !important;
    top: 148px !important;
  }
}

@media only screen and (max-width: 350px) {
  .header__top__left > * + * {
    padding-left: 10px;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 768px) {
  #logo,
  #logo a {
    max-width: 380px !important;
    width: 100% !important;
  }
}

/* QUESTIONS BOX */

.questionsBox {
  background: linear-gradient(180deg, #d3a22c 0%, #e9c673 100%);
  text-align: center;
  color: #fff;
  padding: calc(1.3125rem + 0.75vw) 1.25rem;
}
@media (min-width: 1200px) {
  .questionsBox {
    padding: 1.875rem 1.25rem;
  }
}

.questionsBox__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: calc(1.3125rem + 0.75vw);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .questionsBox__title {
    font-size: 1.875rem;
  }
}

.questionsBox__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.questionsBox__content {
  margin-top: 15px;
}

.questionsBox__text {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
}

.questionsBox__text + .questionsBox__text {
  margin-top: 5px;
}

.questionsBox__text strong {
  font-size: 1.125rem;
  font-weight: 800;
}

.questionsBox__button {
  margin-top: 20px;
}

.questionsBox__button > a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: #fff;
  padding-bottom: 2px;
  background: linear-gradient(to top, #fff 0%, #fff 10%, transparent 10.01%)
    no-repeat left bottom/100% 100%;
  transition: background-size 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.questionsBox__button > a:hover {
  background-size: 0% 100%;
  background-position: right bottom;
}

.section--questionsBox {
  margin-bottom: 35px;
}

@media only screen and (max-width: 1024px) {
  .section--questionsBox {
    background: linear-gradient(180deg, #d3a22c 0%, #e9c673 100%);
  }

  .questionsBox {
    background: none;
    padding-left: 0;
    padding-right: 0;
  }
}

body.single-post .hentry__content li ul,
body.single-post .hentry__content li ol {
  margin: 0 1.5em;
}
body.single-post .hentry__content ul,
body.single-post .hentry__content ol {
  margin: 0 1.5em 1.5em 1.5em;
}
body.single-post .hentry__content ul {
  list-style-type: disc;
}
body.single-post .hentry__content ol {
  list-style-type: decimal;
}
body.single-post .hentry__content ol ol {
  list-style: upper-alpha;
}
body.single-post .hentry__content ol ol ol {
  list-style: lower-roman;
}
body.single-post .hentry__content ol ol ol ol {
  list-style: lower-alpha;
}
