/* STYLESHEET ESCORT LOBBY */

/* Variabili Globali */

:root{
    --mag: #E5007A;
    --blu: #08255F;
    --gri: #4a4a4d;
    --bia: #fafafa;
    --mas: #c8006b;
}

/* Fonts  */

@font-face {
    font-family: OpenSans;
    src: url(../assets/fonts/OpenSans-VariableFont_wdth,wght.ttf);
  }

  @font-face {
    font-family: Roboto;
    src: url(../assets/fonts/Roboto-Bold.ttf);
    font-weight: 700;
  }

  @font-face {
    font-family: Roboto;
    src: url(../assets/fonts/Roboto-Regular.ttf);
    font-weight: 400;
  }

/* Generale */

body{
    font-family: OpenSans;
}

h1, h2, h3, h5{
    font-family: Roboto;
/*     background: -webkit-linear-gradient(var(--mag), var(--blu));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--mag);
}

.magic{
    background: -webkit-linear-gradient(var(--mag), var(--blu));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.boxy{
  border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 16px #ddd;
}

.verdino{
  color: #334155;
}

.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.clamp2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.clamp1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.--m{
  display:none !important;
}

.--d{
  display: block !important;
}

.guest{
  display: block !important;
}

.logged-in .guest{
  display: none !important;
}

.clamp4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.magenta{
  color: var(--mag);
}

.text{
  color: #4a4a4d;
  font-size: 18px;
  font-weight: 400;
}

.h2{
  font-weight: 600;
  font-weight: 22px;
  font-family: 'Roboto';
}

@media (max-width: 992px){
  .clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
  }

  .--m{
    display:block !important;
  }
  
  .--d{
    display: none !important;
  }
}

.slick-slide {
  margin: 0 15px;
}

.slick-list {
  margin: 0 -15px;
}

/* .hideme{
  display: none;
} */

/* BUTTONS */

.btn{
  cursor: pointer;
  padding: 2px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 20px;
}

.btn-1{
  background: var(--mag);
  color: var(--bia) !important;
}

.btn-1 a{
  color: var(--bia) !important;
}

.btn-1:hover{
  background: var(--mas);
  color: var(--bia) !important;
}

.btn-2{
  background: var(--bia);
  border: 2px solid var(--mag);
  color: var(--mag);
}

.btn-2:hover{
  background: var(--mag);
  color: var(--bia) !important;
}

.btn-2:hover a i{
  color: var(--bia);
}

.btn-2:hover a{
  color: var(--bia) !important;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type=reset], input[type=tel], input[type=date], select {
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  letter-spacing: 1px;
}

/* POPUPS */

#popup-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #e5007aaa;
  z-index: 10000000000;
  display: none;
  backdrop-filter: blur(4px);
}

#popup-box{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 460px;
  background: #fff;
  z-index: 100000000001;
  border-radius: 8px;
  border: 2px solid var(--mag);
  box-shadow: 0 4px 16px #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  display: none;
  padding: 0 70px;
}

#popup-box-welcome{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 560px;
  background: #fff;
  z-index: 100000000001;
  border-radius: 8px;
  border: 2px solid var(--mag);
  box-shadow: 0 4px 16px #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  display: none;
  padding: 0 70px;
}

#popup-box .popup-text{
  text-align: center;
  font-weight: 400;
  font-size: 0.8rem;
}

#popup-box .popup-logo img,
#popup-box-welcome .popup-logo img{
  max-width: 250px;
}

.popup-buttons-container{
  display: flex;
  gap: 20px;
}

#accedi-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #e5007aaa;
  z-index: 10000000000;
  display: none;
  backdrop-filter: blur(4px);
}

#accedi-box{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 640px;
  background: #fff;
  z-index: 100000000001;
  border-radius: 8px;
  border: 2px solid var(--mag);
  box-shadow: 0 4px 16px #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  display: none;
  padding: 0 20px;
}

#accedi-box .accedi-close{
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

#accedi-box .accedi-text{
  text-align: center;
  font-weight: 400;
}

#accedi-box #eye{
  position: relative;
  width: 100%;
  font-size: 1.4rem;
}

#accedi-box #eye i{
  position: absolute;
  right: 70px;
  top: 145px;
  display: none;
}

#accedi-box #eye i.show{
  display: block;
}

.bullet-title{
  position: relative;
}

.bullet-title::before{
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--mag);
  top: 10px;
  left: -15px;
  border-radius: 50%;
  position: absolute;
}

.bullet-body{
  font-size: 12px;
  line-height: 1;
}

.welcome-bullets {
  width: 100%;
}

/*  */
#accedi-box{
  width: 100vw;
  border-radius: 0;
  border: none;
  top: 84px;
  transform: translate(-50%, 0);
  height: 100vh;
  justify-content: flex-start;
  padding: 40px 0;
}
#accedi-box > div{
  width: 100%;
  max-width: 500px;
}
#accedi-overlay{
  display: none !important;
}
.accedi-text p{
  font-size: 16pzx;
  font-weight: 500;
  color: #334155;
  padding: 0 10px;
  padding: 0 40px;
}
.ab-accedi{
  font-size: 16px;
  font-weight: 400;
  padding: 0 70px 20px;
}
.aba-title{
  text-align: center;
  margin-bottom: 10px;
}
.aba-cta{
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.ab-registrati{
  padding: 20px 70px;
  border-top: 1px solid #ddd;
}
.abr-title{
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.abr-cta{
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.abr-bottom-text{
  font-size: 12px;
  text-align: center;
  font-size: 600;
  margin-top: 4px;
}
/*  */

@media (max-width: 920px){

  html{
    overflow-x: hidden;
  }

  #accedi-box #eye i{
    top: 139px;
    right: 7px;
  }

  #popup-box {
    width: 90%;
    height: unset;
    padding: 20px;
    max-width: 80vw;
}
#popup-box-welcome{
  width: 96%;
  padding: 0 10px;
  height: 520px;
}
#accedi-box{
  width: 100vw;
  border-radius: 0;
  border: none;
  top: 60px;
  transform: translate(-50%, 0);
  height: 100vh;
  justify-content: flex-start;
  padding: 40px 0;
}
#accedi-box > div{
  width: 100%;
}
#accedi-overlay{
  display: none !important;
}
.accedi-text p{
  font-size: 16pzx;
  font-weight: 500;
  color: #334155;
  padding: 0 10px;
  padding: 0 40px;
}
.ab-accedi{
  font-size: 16px;
  font-weight: 400;
  padding: 0 70px 20px;
}
.aba-title{
  text-align: center;
  margin-bottom: 10px;
}
.aba-cta{
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.ab-registrati{
  padding: 20px 70px;
  border-top: 1px solid #ddd;
}
.abr-title{
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.abr-cta{
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.abr-bottom-text{
  font-size: 12px;
  text-align: center;
  font-size: 600;
  margin-top: 4px;
}
}

#accedi-box .accedi-logo img{
  max-width: 250px;
}

#accedi-login-form{
  width: 340px;
}

#wp-submit{
  background: var(--mag);
  width: 100%;
}

.lost-password{
  margin-top: -30px;
  font-weight: 500;
}

.accedi-signup .no-account::before{
  content: '';
  height: 1px;
  width: 90px;
  background: #aaa;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 10000;
}

.accedi-signup .no-account::after{
  content: '';
  height: 1px;
  width: 90px;
  background: #aaa;
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 10000;
}

@media (max-width: 390px){
  .accedi-signup .no-account::after,
  .accedi-signup .no-account::before{
    width: 70px;
  }
}

.accedi-signup .no-account{
  margin-bottom: 1rem;
}

.accedi-signup.register{
  width: 100%;
  text-align: center;
  position: relative;
  max-width: 360px;
  margin-top: -15px;
}

.accedi-signup .register-free{
  color: #fff;
  background: var(--mag);
  width: 100%;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 4px;
  margin-top: -10px;
}

#accedi-box #accedi-login-form .login-submit input{
  background: var(--blu);
}

@media (max-width: 992px){
  .accedi-signup.register{
    margin-top: 0;
  }
  
  .accedi-signup .register-free{
    margin-top: 0;
  }
}

#wp-submit:hover{
  background: var(--mas);
}

.login-submit{
  text-align: center;
}

.accedi-signup a{
  color: var(--blu);
}

.popup-accetto:hover{
  background-color: var(--mas);
}

.popup-rifiuto:hover{
  color: var(--blu);
  border: 2px solid var(--blu);
  background-color: var(--blu);
}

@media (max-width: 390px){
  #accedi-login-form{
    width: 290px;
  }
}

/* HEADER */


.header-escort-link{
  width: 215px;
}

.header-escort-link a{
  background: var(--mag) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 30px;
  height: 45px !important;
  display: flex;
  justify-content: center;
}

.header-escort-link a:hover{
  border: none !important;
  font-size: 17px;
}

#masthead{
  position: fixed;
  width: 100%;
  z-index: 10000000;
  min-height: 84px;
  height: 0;
  max-width: 100vw !important;
}

#masthead.show{
  height: unset;
}

#ast-mobile-header{
  height: 0;
}

#ast-mobile-header.show{
  height: unset;
}

.site-primary-header-wrap.ast-builder-grid-row-container.site-header-focus-item.ast-container{
  min-height: 84px;
}

.main-navigation li a:hover{
  border-top: 3px solid var(--mag);
  font-weight: 700 !important;
  color: var(--mag);
}

.normal-link a:hover{
  color: var(--mag) !important;
}

.header-escort-link:hover a{
  background: var(--mas);
  color: #fff !important;
}

.omino:hover a{
  color: var(--mag) !important;
}

.sponsor-btn{
  color: var(--mag);
}

.ast-builder-menu-1 .menu-item > .menu-link {
  white-space: nowrap;
}

.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu, 
.ast-builder-menu-1 .main-header-menu > .menu-item > .astra-full-megamenu-wrapper {
  max-width: fit-content;
}

.omino{
  font-size: 1.2rem;
}

.logout{
  margin: 0 20px;
}

.logout a{
  color: #4a4a4d;
}

#ast-mobile-header{
  max-width: 100vw;
}

.ast-mobile-header-content.content-align-flex-start {
  width: 80vw;
  height: 100vh;
  transition: left .3s;
  left: -400px;
  position: relative;
  display: block;
  max-width: 350px;
}

.ast-mobile-header-content.content-align-flex-start.show {
  left: 0px;
}

.mobile-header-overlay{
  background: #000;
  opacity: .7;
  width: 100vw;
  height: 108vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1004;
  display: none;
}

.mobile-header-overlay.show{
  display: block;
}

.close-menu{
  width: 30px !important;
  position: absolute !important;
  right: 10px;
  top: -40px;
}

.close-menu a{
  color: #fff !important;
  font-size: 50px !important;
  padding: 0 0px 0 40px !important;
}

.menu-toggle.main-header-menu-toggle.ast-mobile-menu-trigger-minimal.hide{
  visibility: hidden;
}

.mml{
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.omino{
  position: relative;
}

.logged-in .omino::before{
  content: '';
  width: 10px;
  height: 10px;
  background: #00d40e;
  border-radius: 50%;
  position: absolute;
  top: 60px;
  left: -15px;
}

.omino::before{
  display: none;
}

.logged-in .omino::before{
  content: '';
  width: 10px;
  height: 10px;
  background: #00d40e;
  border-radius: 50%;
  position: absolute;
  top: 53px;
  left: -1px;
  display: block;
}

.omino::after{
  content: 'Entra';
  color: var(--mag);
  position: absolute;
  top: 18px;
  left: 150px;
  z-index: 1;
  font-size: 12px;
  white-space: nowrap;
}

.logged-in .omino::after{
  content: 'Sei dentro!';
  color: var(--mag);
  position: absolute;
  top: 18px;
  left: 11px;
  z-index: 1;
  font-size: 8px;
  white-space: nowrap;
}

@media (max-width: 992px){
  .header-escort-link a{
    width: fit-content !important;
    padding: 0px 60px !important;
    margin: 10px auto;
  }

  body.noscroll{
    overflow: hidden;
  }

  .omino-mobile{
    position: relative;
  }

  .logged-in .omino-mobile::before{
    content: '';
    width: 10px;
    height: 10px;
    background: #00d40e;
    border-radius: 50%;
    position: absolute;
    top: 60px;
    left: -15px;
  }

  .omino-mobile::before{
    display: none;
  }

  .logged-in .omino-mobile::before{
    content: '';
    width: 10px;
    height: 10px;
    background: #00d40e;
    border-radius: 50%;
    position: absolute;
    top: 53px;
    left: -34px;
    display: block;
  }

  .omino-mobile::after{
    content: 'Entra';
    color: var(--mag);
    position: absolute;
    top: 40px;
    left: -4px;
    z-index: 1;
    font-size: 12px;
    white-space: nowrap;
  }

  .logged-in .omino-mobile::after{
    content: 'Sei dentro!';
    color: var(--mag);
    position: absolute;
    top: 39.7px;
    left: -21px;
    z-index: 1;
    font-size: 12px;
    white-space: nowrap;
  }
  .menu-item.omino{
    display: none;
  }
}

/* FOOTER */

#footer-socials{
  gap: 30px;
  display: flex;
  justify-content: center;
  color: var(--bia);
  padding-top: 15px;
  margin-top: -5px;
}

#footer-socials a{
  color: #fff;
}

#colophon h4 {
  color: var(--bia) !important;
  white-space: nowrap;
  margin-right: -35px;
}

.torna-su{
  background: var(--mag);
  color: white;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 2rem;
  position: absolute;
  bottom: 250px;
  right: 60px;
}

.legal-notice-footer::before{
  content: 'Copyright © 2024 | Sireli srls | P.IVA: IT03808040830 | Codice REA: ME-261820';
  color: #4a4a4d;
  font-weight: 600;
  font-size: 18px;
}

@media (min-width: 992px){
  #footer-categorie{
    padding-left: 240px;
  }
}

.footer-list{
  font-size: 16px;
  padding-left:240px;
}

.footer-list1{
  padding-left:0;
}

@media (max-width: 992px){
  .torna-su{
    bottom: 150px;
    right: 20px;
  }

  .footer-list{
    padding-left: 140px;
    font-size: 14px;
  }

  .footer-list1{
    padding-left: 0;
  }

.site-footer-above-section-1.site-footer-section.site-footer-section-1{
  order: 1;
}

.categorie-principali-footer{
  margin-left: -10px;
}
}

.footer-list div, .footer-list1 div{
  margin: 5px 0;
}

.footer-list a, .footer-list1 a{
  color: var(--bia);
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-list a:hover, .footer-list1 a:hover{
  color: var(--mag);
}

.footer-list div, .footer-list1 div{
  color: var(--bia);
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.footer-list i, .footer-list1 i{
  margin: 0 5px;
  color: var(--blu);
  background: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid var(--bia);
  box-shadow: 0 1px 4px var(--mag);
  min-width: 30px;
}

.footer-list a:hover i, .footer-list1 a:hover i{
  color: var(--mag);
}

.footer-links{
  color: var(--bia);
  display: flex;
  justify-content: space-evenly;
  padding: 0 100px;
}

.footer-links a{
  color: var(--bia);
}

.footer-links a:hover{
  color: var(--bia);
  text-decoration: none;
}

/* HOMEPAGE */

.page-template-homepage .ast-container{
  flex-direction: column;
}

.hp-hero-section{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-bottom: 20px;
}

.hhs-image-container{
  position: relative;
}

.hhs-title-container{
  position: absolute;
  left: 50%;
  bottom: 35%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}
.hhs-title-container h1{
  font-size: 34px;
  color: #fff;
  width: fit-content;
  margin: 0 auto 10px;
}
.hhs-title-container h1::after{
  content: '';
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, green, white, red);
  display: block;
  margin: 0 auto;
  border-radius: 4px;

}
.hhs-title-container .hhs-subtitle{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.hhs-search{
  position: absolute;
  left: 50%;
  bottom: 26%;
  transform: translate(-50%, 0%);
  display: flex;
  align-items: center;
  border: 1px solid var(--mag);
  border-radius: 30px;
  background: #fff;
}

.hhs-search .hp-s-button{
  background-color: var(--mag);
  width: 60px;
  height: 42px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hhs-search .hp-s-button i{
  font-size: 1.5rem;
}
.hhs-search .hp-s-button a{
  color: #fff;
}
.hhs-search .hp-s-city input{
  border: none;
  padding-right: 0;
  border-right: 1px solid var(--mag);
  border-radius: 30px 0 0 30px;
  width: unset;
  font-size: 18px;
}
.hhs-search .hp-s-cat #cats-trigger{
  border: none;
  padding: 0 15px 0 25px;
  font-size: 18px;
}

.hp-hero-content{
  width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  color: #fff;
  font-weight: 600;
  margin-bottom: 180px;
  justify-content: center;
}

@media (min-width: 992px){
  .hhs-container{
    height: 100%;
    width: 100%;
  }
  #content .hp-hero-section{
    height: 100%;
  }
  .hhs-image-container img{
    width: 100%;
  }
}

@media (max-width: 992px){
  .hp-hero-content{
    background-color: white;
    /* background-image: url(https://escortlobby.it/wp-content/uploads/2024/10/foto-hero-attuale.jpg); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: top;
  }
  .hhs-search{
        bottom: 5%;
        transform: translate(-50%, 0%);
}
  .page-template-homepage #content{
    padding-top: 80px;
  }
  .page-template-homepage .hp-hero-section {
        height: unset;
        max-height: unset;
    }
    .hhs-search .hp-s-city input {
      max-width: 100%;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0px;
}
    .hhs-search .hp-s-city input::placeholder {
      color: #00000060;
}
.hhs-search .hp-s-button i{
  font-size: 1.8rem;
}
.hhs-search{
  min-width: 94vw;
}
.hhs-search .hp-s-city{
  width: 42%;
}
.hhs-search .hp-s-cat #cats-trigger {
    border: none;
    padding: 0 5px 0 9px;
    font-size: 14px;
}
.hhs-search .hp-s-button {
    width: 70px;
    height: 55px;
    border-radius: 24px;
}
.hhs-title-container{
  bottom: 48%;
}
.hhs-title-container h1{
  font-size: 18px;
  font-weight: 500;
}
.hhs-title-container .hhs-subtitle{
font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-top: -8px;
    padding: 0 20px;
}
}

.hero-overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000080;
}

#content{
  padding-top: 84px;
}

.hp-search-box{
  border: 3px solid var(--mag);
  border-radius: 90px;
  height: 155px;
  padding: 9px;
  background-color: var(--bia);
}

.hp-search-box .second-line{
  display: grid;
  grid-template-columns: 3fr 3fr 2fr;
  gap: 10px;
  border-radius: 40px;
  padding: 10px 12px;

}

.hp-search-box .second-line .hp-s-button{
  background-color: var(--mag);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.hp-search-box .second-line .hp-s-button:hover{
  background-color: var(--mas);
}

.hp-search-box .second-line .hp-s-button a{
  color: var(--bia);
  font-size: 16px;
}

.hp-search-box .first-line h1{
  font-size: 28px;
  text-align: center;
}

.hp-search-box .first-line p{
  color: var(--blu) !important;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px;
}

.hp-s-city input, .hp-s-cat input{
  border-radius: 20px;
  text-align: center;
  border: 2px solid var(--blu);
  font-family: OpenSans;
  letter-spacing: 0.3px;
  font-weight: 400;
  font-size: 14px;
}

.hp-s-city input{
  width: 245px;
}

.hero-cat{
  background: #fafafa;
  padding: 6px 12px;
  border-radius: 29px;
  border: 1px solid var(--mag);
}

.hero-comuni-submenu{
  background: var(--bia);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--mag);
  border-top: none;
  position: absolute;
  left: 21px;
  width: 161px;
  opacity: 0;
  transition: opacity .5s;
  max-height: 300px;
  overflow: auto;
  font-size: 16px;
}

@media (min-width: 992px){
  .hero-comuni-submenu{
    font-size: 16px;
  }
}

.hero-comuni-submenu .risultato{
  color: #4a4a4a;
  padding: 1px 4px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  border-radius: 2px;
  margin: 1px 0;
}

.hero-comuni-submenu .risultato:hover{
  background: #d5d5d5;

}

.hero-cats-submenu{
  background: var(--bia);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--mag);
  border-top: none;
  position: absolute;
  width: 210px;
  opacity: 0;
  transition: opacity .5s;
}

.hero-cats-submenu.appari{
  opacity: 1;
}

.hero-cats-submenu-item{
  display: flex;
  gap: 5px;
  padding: 4px 0;
  align-items: center;
}

@media (min-width: 992px){
  .hero-cats-submenu-item label{
    font-size: 16px;
  }
}

.hero-cats-submenu-item input{
  width: 19px;
  height: 19px;
  min-width: 19px;
}

.oppure{
  display: none;
}

#cats-trigger{
  border: 2px solid var(--blu);
  border-radius: 20px;
  height: 40px;
  color: #00000060;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  font-family: OpenSans;
}

.icone-container{
  padding: 100px 180px;
  display: flex;
  gap: 80px;
  text-align: center;
}

.icone-slide{
  padding: 20px 40px;
}

.icone-slide-image{
  font-size: 3.5rem;
  color: var(--blu);
}

.icone-slide-text{
  font-size: 0.8rem;
}

.banner-1-container,
.banner-2-container{
  height: 380px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 120px;
}

.banner-title{
  font-size: 60px;
  color: var(--bia);
  z-index: 10000;
  position: relative;
  font-weight: 600;
}

.banner-subtitle{
  font-size: 44px;
  color: var(--bia);
  z-index: 1000;
  position: relative;
  font-weight: 600;
}

.banner-1-container a,
.banner-2-container a{
  color: var(--bia);
  padding: 4px 50px;
  border-radius: 30px;
  border: 2px solid var(--mag);
  font-size: 22px;
  font-weight: 600;
  z-index: 1000;
  position: relative;
  margin-top: 40px;
  background-color: var(--mag);
}

.banner-1-container a:hover,
.banner-2-container a:hover{
  color: var(--mag);
  background-color: var(--bia);
}
.hp-map__toggler-title{
  text-align: center;
}
.hp-map__left{
  display: flex;
  gap: 8px;
}
.hp-map__toggler{
  transition: all .3s ease;
  background: #f2f2f2;
  transition: all .3s ease;
  background: #f2f2f2;
  padding: 30px 40px 69px;
  margin: -20px auto 0;
  border-radius: 0;
  width: 100%;
}
.hp-map__toggler.collapsed{
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hp-map__toggler-container{
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
@media (min-width: 992px){
  .hp-map__toggler-container{
    gap: 100px;
    max-width: 800px;
    padding: 40px 0 0 140px;
  }
  .hp-map__toggler-btn{
    justify-content: center;
    width: 180px;
  }
  .hp-map__toggler-subtitle {
    font-size: 18px !important;
}
.hp-map__toggler-btn {
  font-size: 18px !important;
}
.hp-map__toggler-title h4 {
  font-size: 30px !important;
}
}
.hp-map__left{
    flex: 1;
    white-space: nowrap;
}
.hp-map__toggler-title h4{
  color: var(--mag);
}
.hp-map__toggler-subtitle{
  font-size: 14px;
}
.hp-map__toggler-btn{
    color: var(--mag);
    border: 1px solid;
    border-radius: 20px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.hp-map{
  text-align: center;
  padding: 60px 0;
  transition: all 0.3s ease;
  max-height: 700px;
  position: relative;
}
.hp-map.collapsed{
  max-height: 0;
  overflow: hidden;
  padding: 0;
}
.map-closer{
  color: var(--mag);
  border: 1px solid;
  width: fit-content;
  border-radius: 30px;
  padding: 2px 12px;
  position: absolute;
  right: 20px;
  top: 70px;
  cursor: pointer;
}
.map-closer:hover{
  color: #fff;
  background-color: var(--mag);
}

@media (max-width: 992px){
  .map-closer span{
    display: none;
  }
  .map-closer{
    top: 30px;
    padding: 2px 8px;
  }
  .hp-map__toggler {
    padding: 20px 15px 30px;
    margin: 30px auto 0;
    border-radius: 16px;
}
.hp-map__toggler-title {
    text-align: left;
    margin-bottom: -10px;
}
}

.hp-map-subtitle{
  margin-bottom: 30px;
}
#map{
  height: 440px;
  width: 100%;
}
.map-cats-above{
  font-size: 20px;
  font-weight: 600;
  margin-top: -25px;
}
.map-cats-submenu{
  display: flex;
  justify-content: center;
  padding: 5px 0px 0;
  flex-wrap: nowrap;
  gap: 10px 20px;
}
.leaflet-popup-content {
  margin: 13px 24px 13px 13px !important;
}

@media (max-width: 992px){
  .map-cats-above{
    font-size: 12px;
    font-weight: 500;
    padding: 0 10px;
  }
}

@media (min-width: 992px){

  .map-cats-item-container:hover,
  .map-cats-item-container:hover i{
    color: var(--bia);
    background-color: var(--mag);
  }
}

.map-cats-item-container.selecta,
.map-cats-item-container.selecta i{
  color: var(--bia);
  background-color: var(--mag);
}

.titolino{
  max-height: 36px;
  overflow: hidden;
  color: var(--mag);
}

.map-cats-item-container{
  position: relative;
  border: 2px solid var(--mag);
  border-radius: 12px;
  padding: 1px 9px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.map-cats-submenu-icon{
  font-size: 1.5rem;
  color: #E5007A;
  margin-bottom: -10px;
}

.map-ppp{
  display: flex;
  gap: 10px;
}

.leaflet-popup-content{
  min-width: 250px !important;
}

.map-ppp .left img{
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
  max-width: unset;
}

.map-ppp .right{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
}

.leaflet-marker-icon{
  filter: drop-shadow(black 2px 4px 6px);
}

.hp-above-partners{
  padding: 0 15px;
  margin: 30px 0 0;
}
.hap-title h2{
  color: var(--blu);
  font-size: 20px;
}
.hap-content{
  font-size: 16px;
}

@media (min-width: 992px){
  .hap-container {
    text-align: center;
    margin: 20px auto 0;
    padding: 50px;
    border-radius: 24px;
  }
  .hap-title h2{
    font-size: 30px;
  }
  .hap-content{
    font-size: 18px;
  }
}

.classifiche-container{
  padding: 90px 120px 50px;
}
.classifiche-container .classifiche-title{
  text-align: center;
}
.classifiche-container .classifiche-inner{
  display: flex;
  padding: 30px 0;
  gap: 20px;
}
.classifiche-container .classy-item{
  flex: 1 1 0;
}
.classifiche-container .classy-item img{
  border-radius: 20px;
  margin-bottom: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}
.classifiche-container .classy-title{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  background: #4a4a4ddd;
  border-radius: 24px;
  top: -58px;
  height: 50px;
  position: relative;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.classifiche-container .classy-title:hover{
  background: var(--mag);
}

.psn-container{
  padding: 40px 0px;
}
.psn-title{
  text-align: center;
}
.psn-inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 30px 0;
  gap: 70px;
  padding: 50px 120px;
  margin: 30px 0 0;
  border-radius: 12px;
}
.psn-item{
  position: relative;
}
.psn-i-icon{
  position: absolute;
  top: 2px;
  left: -34px;
  color: var(--mag);
  font-size: 1.3rem;
}
.psn-i-icon i{
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.psn-i-title{
  font-size: 1.3rem;
  font-weight: 600;
}
.hp-sponsor-carousel{
  position: relative;
}

.hp-sponsor-container{
  padding: 10px 0 50px;
}

.hp-sponsor-title{
  text-align: center;
  padding: 20px 0;
}

.carousel-annuncio-box{
  width: 300px;
  padding: 20px;
}
.carousel-partner-box{
  padding: 0;
  width: 340px;
}
.carousel-partner-box a{
  color: var(--blu);
}

.car-ann-img img{
  border-radius: 8px;
}
.car-par-img img{
  border-radius: 8px 8px 0 0;
  height: 140px;
  object-fit: contain;
  margin: 0 auto;
}
.car-par__info{
  padding: 0 15px 20px;
}

.car-par-tit{
  background: #fcf5eb;
  border-radius: 30px;
  margin: 0;
  top: -15px;
  position: relative;
  padding: 4px 0;
  height: unset;
  text-align: center;
}
.car-par-tit h3{
  font-weight: 400;
  font-size: 18px;
}
.car-par-subtitle{
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0 2px;
}

.car-ann-img{
  align-items: center;
  overflow: hidden;
  height: 300px;
  border-radius: 8px;
}

.car-ann-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-ann-tit{
  text-align: center;
  margin: 8px auto 12px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.car-par-descrizione{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  min-height: 45px;
  line-height: 1;
}
.car-par__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.cart-container{
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-par-cta a{
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 992px){
  .car-ann-tit{
    height: 56px;
  }
  .car-ann-tex {
    min-height: 60px;
    max-height: 60px;
  }
  .cart-container{
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.car-ann-tex{
  font-size: 0.8rem;
  text-align: left;
  margin: 12px 0;
  min-height: 63px;
}

.car-ann-tax{
  display: flex;
  gap: 15px;
  justify-content: center;
}

.car-ann-tax-cat{
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px #ddd;
  gap: 5px;
  color: #334155;
}

.car-ann-cta{
  text-align: center;
}

.car-ann-cta a{
  border: 2px solid var(--mag);
  border-radius: 30px;
  padding: 2px 10px;
}

.page-template-homepage #content .sponsor-btn {
  position: absolute;
  top: 55%;
  font-size: 60px;
}

.page-template-homepage #content .sponsor-btn.next {
  right: 60px;
}

.page-template-homepage #content .sponsor-btn.prev {
  left: 60px;
}

.link-veloci{
  max-width: 1380px;
  margin: 0 auto;
}

.link-veloci-inner{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: space-evenly;
  line-height: 120%;
  margin: 20px 0 50px;
}

.link-veloci-subtitle{
  text-align: center;
  margin-top: -10px;
}

.link-veloci-title h2{
  margin-bottom: 15px;
  text-align: center;
}

.link-veloce{
  font-size: 12px;
  position: relative;
}
.link-veloce::before{
  content: '';
  background-color: var(--blu);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.link-veloce a{
  color: var(--blu);
}

.link-veloce a:hover{
  color: var(--mag);
}

.link-veloci-comune-titolo a{
  color: var(--blu);
}

.link-veloci-comune-titolo a:hover{
  color: var(--mag);
}

@media (max-width: 992px){
  .link-veloci-container {
    padding: 0 20px;
}

.link-veloci-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-evenly;
  min-width: unset;
  line-height: 120%;
  margin: 20px -15px 50px 0;
  gap: 0 20px;
  /* max-height: 300px; */
  /* overflow: auto; */
  /* border: 1px solid #ddd; */
  /* padding: 0 20px; */
  /* grid-template-columns: repeat(1, 1fr); */
}

.link-veloce{
  font-size: 10px;
}

.hp-search-box .first-line h1{
  font-size: 20px;
}

.hp-search-box .first-line p{
  font-size: 14px;
}

}

/* BACHECA */

.bacheca{
  max-width: 1200px;
  margin: 50px auto;
}

.bacheca-container{
  padding: 0;
}

.bacheca-title{
  text-align: center;
}

.bacheca-container .second-line{
  display: grid;
  grid-template-columns: 3fr 3fr 2fr;
  gap: 10px;
  border-radius: 40px;
  padding: 10px 12px;

}

.bacheca-container .second-line .hp-s-button{
  background-color: var(--mag);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  margin-left: 10px;
}

.bacheca-container .second-line .hp-s-button:hover{
  background-color: var(--mas);
}

.bacheca-container .hp-s-city{
  width: 285px;
}

.bacheca-container .hp-s-city input{
  width: 285px;
}

.bacheca-container .second-line .hp-s-button a{
  color: var(--bia);
}

.bacheca-container .search-module .second-line{
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.bacheca-container .hero-comuni-submenu {
  top: 50px;
  left: 28px;
}

.bacheca-container #cats-trigger{
  width: 285px;
}

.torna-a-bacheca{
  color: var(--mag);
  width: fit-content;
  margin-bottom: 20px;
}

.bacheca-container .hero-cats-submenu {
  background: var(--bia);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  border: 2px solid var(--blu);
  border-top: none;
  position: absolute;
  top: 50px;
  left: 325px;
  width: 254px;
  opacity: 0;
  transition: opacity .5s;
}

.bacheca-container .hero-comuni-submenu {
  border: 2px solid var(--blu);
  width: 253px;
  z-index: 1;
}

.bacheca-container .hero-cats-submenu.appari {
  opacity: 1;
  z-index: 1;
}

.bacheca-above-results{
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 60px;
}

.search-module{
  padding: 30px 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bacheca-pagination{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--blu);
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.bacheca-pagination a,
.bacheca-pagination span{
    color: var(--blu);
    text-decoration: none;
    padding: 0px 15px;
    border-radius: 8px;
    border: 1px solid var(--blu);
    box-shadow: 0 4px 16px #ddd;
    transition: all .3s;
}

.bacheca-pagination a{
  color: var(--blu);
  
}
.bacheca-pagination a:hover{
  color: var(--mag);
  border: 1px solid var(--mag);
  box-shadow: 0 4px 16px #ddd;
}
.bacheca-pagination .dots{
  display: none;
}
.bacheca-pagination a.page-numbers{
  display: none;
}
.bacheca-pagination a.next,
.bacheca-pagination a.prev{
  display: block;
}

@media (min-width: 992px){

    .search-module{
      border: 1px solid #ddd;
      border-radius: 20px;
      box-shadow: 0 4px 16px #ddd;
    }
}

@media (max-width: 992px){

  .bacheca-pagination{
      gap: 5px;
      font-size: 14px;
  }
}

.bacheca-results-container{
  display: grid;
  grid-template-columns: 1fr 4fr;
}

.bacheca-results{
  padding: 0 0 0 50px;
}

.filter-subitem{
  display: flex;
  gap: 5px;
  align-content: center;
  padding: 2px 0;
}

.filter-subitem input{
  width: 16px;
  height: 16px;
}

.bacheca-container .annuncio-cta-mobile{
  display: none;
}

.pulsante-filtri{
  display: none;
}

@media (max-width: 992px){
  .bacheca{
    margin: 0;
    padding: 5px 10px 30px;
  }
  
  .bacheca-container{
    display: flex;
    flex-direction: column;
  }
  
  .bacheca-title{
    order: 2;
  }

  .bacheca-title h2{
    font-size: 22px;
  }

  .bacheca-container .breadcrumb{
    order: 3;
  }

  #content .breadcrumb{
    padding-bottom: 0;
  }

  .bacheca-container .hero-comuni-submenu {
    top: 33px;
    left: 31px;
  }
  
  .bacheca-container .hero-cats-submenu {
    top: 38px;
    left: 75px;
  }

  .bacheca-container .hp-s-city input {
    width: 100%;
  }

  .pulsante-filtri{
    display: block;
    position: absolute;
    top: 224px;
    left: 20px;
    font-weight: 600;
    font-size: 18px;
    color: var(--blu);
    z-index: 0;
  }
  .logged-in .pulsante-filtri{
    top: 139px;
  }
  
  .bacheca-container .hp-s-city{
    width: 50%;
  }

  .bacheca-container .hp-s-city input{
    border: 2px solid var(--blu);
    height: 35px;
  }
  
  .bacheca-container .search-module .second-line{
    gap: 0;
    padding: 0;
  }
  
  .bacheca-container .hero-comuni-submenu {
    top: 33px;
    padding: 10px 6px;
    border: 2px solid var(--blu);
    border-top: none;
    right: 0;
    left: unset;
    width: 91%;
  }
  
  .bacheca-container .hp-s-cat{
    width: 50%;
  }

  .bacheca-container #cats-trigger {
    width: unset;
    border: 2px solid var(--blu);
    border-left: 0;
    height: 34.4px;
    margin-top: 0.5px;
}
  
  .bacheca-container .hero-cats-submenu.appari {
    padding-right: 2px;
    padding-left: 10px;
    top: 33px;
    border: 2px solid var(--blu);
    border-top: none;
    left: 0;
    width: 91%;
  }
  
  .bacheca-container .search-module{
    order: 1;
    padding: 0 0 50px 0;
  }
  
  .bacheca-results-container{
    order: 4;
    display: block;
  }

  .bacheca-above-results {
    display: block;
}
  
  .bacheca-filters{
    position: absolute;
    left: -300px;
    background: #fff;
    border: 2px solid var(--mag);
    border-left: none;
    border-radius: 0 8px 8px 0;
    transition: left .3s;
    width: 280px;
    padding: 20px 10px !important;
    top: 270px;
    z-index: 1;
  }

  .bacheca-filters.active{
    left: 0px;
  }
  
  .bacheca-container .bacheca-results{
    padding: 0;
  }

  .bacheca-container .annuncio-card{
    grid-template-columns: 1fr 1fr;
    height: unset;
  }

  .bacheca-container .is-sponsoring.annuncio-card{
    grid-template-columns: 4fr 5fr;
  }
  
  .bacheca-container .annuncio-foto img{
    max-height: 240px;
    min-width: 164px;
  }

  .bacheca-container .annuncio-foto .slick-slide img{
    border-radius: 16px;
  }
  
  .bacheca-container .annuncio-info{
    max-width: unset;
  }

  .bacheca-container .is-sponsoring .annuncio-info{
    max-width: calc(100vw - 200px);
  }
  
  .bacheca-container .annuncio-title p{
    font-size: 16px;
  }
  
  .bacheca-container .annuncio-body{
    font-size: 14px;
    min-height: 70px;
  }
  
  .bacheca-container .annuncio-foto{
    min-width: 164px;
  }
  
  .bacheca-container .annuncio-si{
    margin: 6px 0;
    padding: 1px 8px;
    font-size: 12px;
  }
  
  .bacheca-container .annuncio-cta{
    display: none;
  }

  .bacheca-container .annuncio-cta-mobile{
    display: none;
  }
  .bacheca-container .is-sponsoring .annuncio-cta-mobile{
    display: flex;
    gap: 8px;
    padding: 8px 0 11px;
  }

  .close-filters{
    position: absolute;
    right: 24px;
    font-size: 2rem;
    top: 6px;
  }

  .annuncio-title{
    min-height: 41px;
  }
}

.make-it-green{
  background-color: #25d366;
  border: 2px solid #25d366;
}

.make-it-green a{
  color: #fff !important;
}

.make-it-green i{
  color: #fff !important;
  font-size: 18px;
}

.make-it-green:hover{
  background-color: #20b356;
  border: 2px solid #20b356;
}

.annuncio-card{
  display: grid;
  grid-template-columns: 1fr;
  padding: 10px;
  margin: 40px 0;
  border-radius: 20px;
  height: 370px;
  cursor: pointer;
  position: relative;
}
.annuncio-card.is-sponsoring{
  grid-template-columns: 2fr 3fr 1fr;
}

@media (min-width: 992px){
  .archive .annuncio-card{
    min-width: 910px;
  }
}

@media (max-width: 992px){
  .archive .annuncio-card{
    margin: 20px 10px;
    min-height: 290px;
  }
  .archive .annuncio-card .annuncio-title h3{
    font-size: 16px;
  }
}

.badge.chiamami{
  position: absolute;
  left: 90%;
  top: -24px;
  translate: -41%;
  border: 1px solid #0040a0;
  border-radius: 16px;
  background: #0040a0;
  color: #fff;
  padding: 0px 5px;
  font-size: 26px;
  box-shadow: 0 4px 8px #00000018;
  font-weight: 600;
}

.badge.risalita{
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: -24px;
  translate: -50%;
  border: 2px solid #0040a0;
  border-radius: 16px;
  background: #fff;
  color: #0040a0;
  padding: 0px 5px;
  font-size: 26px;
  box-shadow: 0 4px 8px #00000018;
  font-weight: 600;
}

.badge.risalita svg, .badge.combo svg{
  margin-left: -8px;
}

@media (max-width: 992px){
  .badge.risalita svg, .badge.combo svg{
    margin-left: -5px;
  }
}

.badge.combo{
  position: absolute;
  display: flex;
  top: -24px;
  left: 50%;
  translate: -50%;
  border: 2px solid #0040a0;
  border-radius: 16px;
  font-size: 26px;
  box-shadow: 0 4px 8px #00000018;
  font-weight: 600;
  gap: 4px;
  background: #fff;
}

.badge.combo-chiamami{
  background: #0040a0;
  color: white;
  padding: 0px 10px 0;
  border-radius: 12px 0 0 12px;
  font-weight: 600;
}

.badge.combo-up{
  display: flex;
  align-items: center;
  padding-right: 4px;
  color: #0040a0;
  font-weight: 600;
  padding-left: 2px;
}

.magenta-glow{
  box-shadow: 0 4px 16px var(--mag);
  border: 2px solid var(--mag);
}

.annuncio-cta.extra-padding-cta{
  padding-top: 100px;
}

@media (max-width: 992px){
  .badge.chiamami{
    font-size: 14px;
    left: 82%;
    top: -13px;
    border-radius: 11px;
  }

  .annuncio-cta.extra-padding-cta{
    padding-top: unset;
  }

  .badge.combo{
    top: -14px;
    border-radius: 11px;
    font-size: 14px;
  }

  .badge.combo-chiamami{
    border-radius: 6px 0 0 6px;
  }

  .badge.combo-up svg, .badge.risalita svg{
    max-width: 18px;
    margin-left: -3px;
    max-height: 18px;
  }

  .badge.risalita{
    left: 50%;
    top: -13px;
    border-radius: 11px;
    font-size: 14px;
  }
}

.annuncio-foto a{
  height: 100%;
}

.annuncio-foto img{
  border-radius: 8px;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}

.annuncio-info{
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.annuncio-foto.multiple-images .slick-slide > div{
  height: 100% !important;
}

.annuncio-foto.multiple-images .slick-slide{
  margin: 0 !important;
}

.annuncio-title{
  font-size: 20px;
  font-weight: 600;
  font-family: 'Roboto';
}

.annuncio-body{
  text-align: left;
}

@media (max-width: 992px){
  .annuncio-body {
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.annuncio-card{
  padding: 6px;
}

.annuncio-card.extra-padding{
  padding-top: 18px;
}

.annuncio-info{
  padding: 6px 0 6px 6px;
}

.annuncio-eta{
  display: none;
}

.annuncio-foto img{
  height: unset;
}
}
.annuncio-foto{
  display: none;
}
.is-sponsoring .annuncio-foto{
  max-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
}

.bacheca-arrow{
  position: absolute;
  top: 45%;
  border-radius: 50%;
  background: #ffffff90;
  font-size: 1.6rem;
  color: var(--mag);
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bacheca-arrow-prev{
  left: 15px;
}

.bacheca-arrow-next{
  left: 265px;
}

.page-template-bacheca .slick-initialized .slick-slide{
  height: 345px;
  display: flex;
  align-items: center;
}

@media (max-width: 992px){
  .bacheca-arrow{
    font-size: 1rem;
    width: 22px;
    height: 22px;
  }
  
  .bacheca-arrow-prev{
    left: 10px;
  }
  
  .bacheca-arrow-next{
    left: 38%;
  }

  .page-template-bacheca .slick-initialized .slick-slide{
    height: 240px;
    display: flex;
    align-items: center;
  }
}

.annuncio-cat{
  background: linear-gradient(180deg, var(--mag), var(--blu));
  color: var(--bia);
  border-radius: 4px;
  margin-bottom: 5px;
  padding: 4px 8px;
  font-size: 14px;
}

.annuncio-si{
  width: fit-content;
  margin: 8px 0;
  font-size: 14px;
  user-select: none;
  cursor: default;
}

.annuncio-si i{
  color: var(--blu);
}

.annuncio-cta{
  display: none;
}
@media (min-width: 992px){
  .is-sponsoring .annuncio-cta{
    border-left: 1px solid #ddd;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.annuncio-cta .cta-profilo{
  border-radius: 20px;
  padding: 6px 8px;
  text-align: center;
}

.annuncio-cta .cta-profilo a{
  color: #fff;
}

.annuncio-cta .cta-wa,
.annuncio-cta-mobile .cta-wa{
  border-radius: 20px;
  padding: 6px 8px;
  text-align: center;
}

.annuncio-cta-mobile .cta-wa{
  width: 50%;
}

.annuncio-cta .cta-wa a{
  color: var(--mag);
}

.contattami .cta-wa{
  color: #fff;
  display: flex;
  gap: 5px;
  align-items: center;
  width: 150px;
  justify-content: center;
}

.annuncio-cta .cta-chiama{
  border-radius: 20px;
  padding: 6px 8px;
  color: var(--bia);
  text-align: center;
  height: 41.6px;
}

.annuncio-cta-mobile .cta-chiama{
  border-radius: 20px;
  padding: 6px 8px;
  color: var(--mag);
  text-align: center;
  width: 50%;
}

.annuncio-cta .cta-chiama a,
.annuncio-cta-mobile .cta-chiama a{
  color: var(--bia);
}

.description-title{
  margin-bottom: 15px;
  font-size: 20px;
}

.single-annunci h5{
  font-size: 20px;
}

.bacheca-filters .filter-item{
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.bacheca-filters .filter-item h5{
  margin-bottom: 10px;
}

.bacheca-filters{
  padding: 0px 10px;
}

/* AREA PERSONALE */

.page-template-area-personale #content {
  background-image: url(/wp-content/themes/astra-child/assets/login-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
overflow:hidden;
  background-attachment: fixed;
}

.page-template-area-personale #content .ast-container {
  padding: 0;
  background-color: #f2f2f2;
}

.page-template-area-personale #content .ast-container .pa{
  width: 100%;
}

.page-template-area-personale #content .ast-container .pa .pa-rinnova.pa-box{
  position: relative;
}

.page-template-area-personale #content .ast-container .pa .pa-rinnova-container{
  display: flex;
  align-items: center;
  gap: 80px;
}

.page-template-area-personale #content .ast-container .pa .pa-container-above{
  background-color: #fff;
  padding: 0 40px 80px;
  border-radius: 0 0 20px 20px;
}

.page-template-area-personale #content .ast-container .pa .pa-container-below{
  padding: 0 40px;
}

@media (min-width: 992px){
  .page-template-area-personale #content .ast-container .pa .pa-container-above{
    padding: 0 240px 20px;
  }
  
  .page-template-area-personale #content .ast-container .pa .pa-container-below{
    padding: 0 240px;
  }

  .pa .pa-impostazioni {
    padding: 20px 240px;
  }

  .pa .pa-i-saldo {
    padding: 20px 90px 30px;
  }
}

.page-template-area-personale #content .ast-container .pa .pa-rinnova-explanation{
  max-width: 650px;
  text-align: justify;
}

.page-template-area-personale #content .ast-container .pa .pa-header{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-template-area-personale #content .ast-container .pa .pa-header-settings{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.page-template-area-personale #content .ast-container .pa .pa-title{
  font-size: 20px;
  color: var(--blu);
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin: -40px 0 10px;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.page-template-area-personale #content .ast-container .pa .pa-header .impostazioni-account{
  font-size: 2.6rem;
  cursor: pointer;
}

.page-template-area-personale #content .ast-container .pa .pa-avatar-img-container{
  margin: 0 auto 0px;
  display: block;
  max-width: 90px;
}

.page-template-area-personale #content .ast-container .pa .pa-avatar img{
  width: 400px;
}

.page-template-area-personale #content .ast-container .pa .pa-benvenuto{
  text-align: center;
  color: var(--gri);
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
  justify-content: center;
}

@media (max-width: 992px){
  .page-template-area-personale #content .ast-container .pa .pa-benvenuto{
    flex-direction: column;
    margin-bottom: 5px;
    gap: 0;
  }
  .page-template-area-personale #content .ast-container .pa .pa-title {
    margin: -50px 0 0px;
    display: block;
    position: absolute;
    left: 15px;
    text-align: left;
    width: 115px;
    font-size: 14px;
}

.page-template-area-personale #content .ast-container .pa .pa-avatar {
  margin-top: -50px;
}
}

.page-template-area-personale #content .ast-container .pa .pa-saldo{
  text-align: center;
  color: var(--mag);
  font-size: 20px;
}

.page-template-area-personale #content .ast-container .pa .pa-tabs{
  display: flex;
  color: var(--mag);
  justify-content: space-around;
  font-size: 20px;
  font-weight: 600;
}

.page-template-area-personale #content .ast-container .pa .pa-tab{
  border-top: 3px solid transparent;
  padding-top: 10px;
  min-width: 180px;
  text-align: center;
  cursor: pointer;
}

.page-template-area-personale #content .ast-container .pa .pa-tab:hover,
.page-template-area-personale #content .ast-container .pa .pa-tab.active{
  border-top: 3px solid var(--mag);
}

.page-template-area-personale #content .ast-container .pa .main-area-container{
  position: relative;
  min-height: 500px;
}

.page-template-area-personale #content .ast-container .pa .main-area-item{
  position: relative;
  text-align: center;
  display: none;
}

.page-template-area-personale #content .ast-container .pa .main-area-item.active{
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.page-template-area-personale #content .ast-container .pa .pa-annuncio{
  display: flex;
  flex-direction: column;
  padding: 30px 50px;
  margin: 40px 100px 0;
  background: var(--bia);
}
.page-template-area-personale #content .ast-container .pa .pa-a-top{
  display: flex;
  justify-content: space-between;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-left-heading{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-left-heading-left{
  color: var(--mag);
  font-size: 20px;
  font-weight: 600;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-left-img img{
  height: 150px;
  width: 150px;
  border-radius: 8px;
  margin: 15px 0;
  object-fit: cover;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-right{
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-right-cima{
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-right-button{
  border-radius: 30px;
  padding: 6px 30px;
  min-width: 200px;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-right-vetrina{
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-right-tooltip{
  display: none;
}
.page-template-area-personale #content .ast-container .pa .pa-a-middle{
  margin: 25px 0;
  position: relative;
}
.pa-a-top-right-text{
  background-color: #0357f910;
  border-radius: 8px;
  font-size: 14px;
}

.page-template-area-personale #content .ast-container .pa .pa-a-bottom{
  display: flex;
  justify-content: space-around;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.page-template-area-personale #content .ast-container .pa .pa-a-bottom::after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  top: -7px;
  left: 0;
}

.page-template-area-personale #content .ast-container .pa .ricarica-input{
  height: 60px;
  width: 250px;
  border: 2px solid var(--blu);
  background: #f2f2f2;
  text-align: center;
}

.page-template-area-personale #content .ast-container .pa .pa-a-bottom a{
  color: var(--gri);
}

.page-template-area-personale #content .ast-container .pa .pa-a-bottom #url-share{
  cursor: pointer;
}

.page-template-area-personale #content .ast-container .pa .pa-pdata-title{
  text-align: center;
}

.page-template-area-personale #content .ast-container .pa .pa-pdata .pa-pdata-content .line{
  display: grid;
  grid-template-columns: 20fr 10fr 20fr 20fr;
  gap: 40px;
}

.page-template-area-personale #content .ast-container .pa .pa-pdata .pa-pdata-content .line .greyed-out input{
  background: #eeeeee;
}

.page-template-area-personale #content .ast-container .pa .pa-pdata .pa-pdata-content p.form-submit{
  margin-top: 20px;
  text-align: center;
}

.pa-i-saldo{
  background-color: var(--bia);
  padding: 20px 10px 10px;
  margin: 25px 0;
}
.pa-i-s-title{
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}
.pa-i-s-saldo{
  font-size: 18px;
  color: var(--mag);
  font-weight: 600;
  text-align: center;
}
.pa-i-s-ricarica{
  width: fit-content;
  padding-left: 30px;
  padding-right: 30px;
  margin: 16px auto;
  font-size: 20px;
}
.pa-i-s-riepilogo{
  font-size: 11px;
}

.pa-i-s-text{
  font-size: 16px;
  margin: 20px 0;
  text-align: center;
}

.pa-i-s-text a{
  color: var(--mag);
  text-decoration: underline;
}
.pa-i-s-go-to-ricarica, .pa-i-s-scroll-to-ricarica{
  width: 188px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
.form-password label{
  font-size: 16px;
}
.pa-i-saldo .form-submit .modifica-pass{
  margin: 0 auto;
  display: block;
  border-radius: 30px;
  font-size: 14px;
  border: 2px solid var(--mag);
  color: var(--mag);
  background: #fff;
}

.pa-logout{
  margin: 70px auto 40px;
  display: block;
  border-radius: 30px;
  font-size: 14px;
  border: 2px solid var(--mag);
  color: var(--mag);
  background: #fff;
  width: fit-content;
  padding: 8px 70px;
}

.page-template-area-personale #content .ast-container .pa .acquista-crediti{
  margin: 25px;
  max-height: 40px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  justify-content: center;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.header{
  font-weight: 600;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row{
  display: grid;
  grid-template-columns: 1fr 1fr 10fr 5fr 5fr 3fr 3fr;
  padding: 14px 0;
  border-bottom: 1px solid #dddddd;
  align-items: center;
  gap: 10px;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .number{
  color: var(--mag);
  font-size: 1.4rem;
  font-weight: 700;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .tipo i{
  background: var(--mag);
  color: white;
  text-align: center;
  border-radius: 50%;
  padding: 12px;
  width: 40px;
  height: 40px;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .nome{
  font-weight: 600;
  font-size: 1.1rem;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .interruttore{
  background: #ddd;
  height: 25px;
  width: 50px;
  margin-left: 30px;
  border-radius: 20px;
  position: relative;
  transition: left .5s;
  cursor: pointer;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .interruttore.on{
  background: var(--mag);

}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .interruttore::before{
  content: '';
  height: 25px;
  width: 25px;
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--mag);
  position: absolute;
  left: 0;
  transition: left .5s;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .interruttore.on::before{
  content: '';
  left: 25px;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .aggiorna-dati{
  background: var(--mag);
  color: white;
  border-radius: 4px;
  padding: 8px 14px;
  text-align: center;
}

.page-template-area-personale #content .ast-container .pa .pa-passets-content .res-row.normal .elimina-annuncio{
  color: red;
  border-radius: 4px;
  padding: 8px 14px;
  text-align: center;
  border: 1px solid red;
}

.page-template-area-personale #content .ast-container .pa .crea-annuncio{
  text-align: center;
  margin: 20px auto;
  color: var(--mag);
  font-size: 1.5rem;
  border: 2px solid;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 8px;
}

.page-template-area-personale .get-premium{
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-template-area-personale .get-premium a,
.page-template-area-personale .no-res a{
  background: #143355;
  color: #fff;
  border-radius: 4px;
  padding: 10px 25px;
  font-weight: 600;
}

.page-template-area-personale .no-res{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 50px 0;
}

.page-template-area-personale .delete-user{
  text-align: center;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  margin: 0 auto;
  display: block;
}

.page-template-area-personale .delete-user:hover{
  background: red;
  border-radius: 4px;
  color: #fff;
}

.page-template-area-personale #du-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #00000060;
  z-index: 10000;
  display: none;
}

.page-template-area-personale #du-box,
.page-template-area-personale #da-box{
  position: fixed;
  left: 50%;
  top: 180px;
  transform: translate(-50%, 0);
  width: 600px;
  background: #fff;
  z-index: 100000;
  border-radius: 8px;
  border: 2px solid #dddddd;
  box-shadow: 0 4px 16px #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  display: none;
  padding: 30px;
}

@media (max-width: 992px){
  .page-template-area-personale #du-box,
  .page-template-area-personale #da-box{
    width: 90vw;
  }
}

.page-template-area-personale #du-box .du-titolo, 
.page-template-area-personale #da-box .da-titolo{
  text-align: center;
  margin-bottom: 15px;
}

.page-template-area-personale #du-box .du-testo,
.page-template-area-personale #da-box .da-testo{
  text-align: center;
}

.page-template-area-personale #du-box .du-buttons,
.page-template-area-personale #da-box .da-buttons{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.page-template-area-personale #du-box .du-buttons .du-btn-confirm,
.page-template-area-personale #da-box .da-buttons .da-btn-confirm{
  cursor: pointer;
  background-color: red;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
}

.page-template-area-personale #du-box .du-buttons .du-btn-cancel,
.page-template-area-personale #da-box .da-buttons .da-btn-cancel{
  cursor: pointer;
  background-color: grey;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
}

.pa-impostazioni{
  padding: 20px 10px;
}

.pa-section{
  display: none;
}

.pa-section.active{
  display: block;
}

.page-template-area-personale #content .ast-container .pa .pa-a-top-right-button {
  cursor: pointer;
}

.page-template-area-personale #content .ast-container .pa .pa-a-top-right #sponsorizza {
  background: var(--mag);
  border-radius: 30px;
  min-width: 260px;
  height: 38px;
  padding: 0;
  font-weight: 700;
}

.page-template-area-personale #content .ast-container .pa .pa-a-top-right #sponsorizza:hover {
  background: var(--mas);
}

.page-template-area-personale .promozioni-attive{
  border: 2px solid var(--mag);
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--mag);
  font-size: 12px;
  padding: 5px 0;
  margin-top: 10px;
}

@media (min-width: 992px){
  .page-template-area-personale .promozioni-attive{
    padding: 5px 10px;
  }
}

.page-template-area-personale .promozioni-attive .promozioni-attive-title{
  font-weight: 700;
  font-size: 16px;
  color: var(--mag);
}

.page-template-area-personale .promozioni-attive .label{
  font-weight: 600;
}
  .page-template-area-personale #content .ast-container .pa .pa-a-top-right .pubblicita-notice{
    font-weight: 600;
  }

@media (max-width: 992px){

  .page-template-area-personale .promozioni-attive .promozioni-attive-title {
    text-align: center;
}

  .page-template-area-personale .promozioni-attive {
    font-size: 10px;
    text-align: left;
    padding-left: 6px;
    padding-right: 6px;
    min-width: 140px;
}

  .page-template-area-personale .promozioni-attive .promozioni-attive-title {
    font-weight: 700;
    font-size: 13px;
}

  .page-template-area-personale #content .ast-container .pa .pa-container-below {
    padding: 0 10px;
  }

  .page-template-area-personale #content .ast-container .pa .pa-tab {
    min-width: unset;
  }

  .page-template-area-personale #content .ast-container .pa .pa-annuncio {
    padding: 10px 10px 20px;
    margin: 20px 0px 0;
  }

  .page-template-area-personale #content .ast-container .pa .pa-a-top-right-button {
    min-width: 160px;
  }

  .page-template-area-personale #content .ast-container .pa .pa-a-top-left-img img {
    margin: 8px 0 0;
  }

  .page-template-area-personale #content .ast-container .pa .pa-a-top-right-cima {
    gap: 5px;
  }

  .page-template-area-personale #content .ast-container .pa .pa-a-top-left-heading-left {
    font-size: 16px;
    white-space: nowrap;
  }

  .page-template-area-personale #content .ast-container .pa .pa-a-top-right {
    margin-top: 10px;
  }
  .page-template-area-personale #content .ast-container .pa .pa-a-top-right .pubblicita-notice{
    font-size: 12px;
  }
  
  .page-template-area-personale #content .ast-container .pa .pa-a-top-left-img img {
    height: 160px;
    object-fit: cover;
    width: 140px;

  }

  .page-template-area-personale #content .ast-container .pa .pa-a-middle h3{
    font-size: 16px;
  }
  .page-template-area-personale #content .ast-container .pa .pa-container-above {
    padding: 10px 40px 10px;
}
.pa-a-top-right-tooltip{
  display: none;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top-right #sponsorizza {
  min-width: 145px;
  font-weight: 400;
}
.page-template-area-personale #content .ast-container .pa .pa-a-top {
  gap: 0px !important;
}
}

/* CREA ANNUNCIO */

.mandatory-field-notice{
  font-size: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.char-counter{
  position: relative;
}

.char-count-container{
  width: fit-content;
  position: absolute;
  top: -4px;
  right: 5px;
  font-weight: 600;
}

.page-template-crea-annuncio #content .ast-container,
.page-template-modifica-annuncio #content .ast-container{
  padding: 60px 100px;
  flex-direction: column;
}
.ca-container{
  margin-top: 8px;
}
.ca-title{
  text-align: center;
}
.ca-subtitle{
  text-align: center;
  margin-bottom: 30px;
}
.ca-back a{
  color: var(--mag);
}
.ca-form-container{
  padding: 50px 80px;
}
.ca-form-container .riga .boxy{
  padding: 30px;
}

.carica-video{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}

@media (max-width: 992px){
  .carica-video{
    flex-direction: column;
  }
}

.ca-ad-imgs .riga, .ca-ad-video .riga {
  border: 1px dotted var(--blu);
  padding: 6px;
  width: 80px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  border-radius: 4px;
  position: relative;
}

.riga .remove-img{
  position: absolute;
  top: 4px;
  right: 4px;
  color: #fff;
  cursor: pointer;
  z-index: 1000002;
}

.riga .remove-vid{
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
}

.riga .remove-img i{
  opacity: 0;
  z-index: 11;
  position: relative;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
  background: #fff;
  color: var(--mag);
}

.riga .remove-img i.show,
.riga .remove-vid i.show{
  opacity: 1;
}

.riga .remove-vid i{
  opacity: 0;
  z-index: 1;
  position: relative;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
}

.camera-wrapper, .video-wrapper{
  cursor: pointer;
  position: absolute;
  top: 50%;
  display: flex;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  line-height: 1.5;
  gap: 4px;
  width: 56px;
  z-index: 10000002;
  opacity: .3;
}

.camera-wrapper i, .video-wrapper i{
  font-size: 2rem;
  filter: drop-shadow(2px 2px 10px white);
}

.upload-images, .sub-vid{
  width: fit-content;
  margin: 40px auto 0;
  min-width: 188px;
  text-align: center;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ca-container input#comune{
  outline: none;
  border-radius: 4px;
  border: 1px solid #ddd;
  min-height: 48px;
}
.ca-container .riga{
  display: flex;
  gap: 200px;
  padding: 0 0 60px;
  align-items: center;
}

.ca-container .ca-ad-imgs .riga,
.ca-container .ca-ad-video .riga{
  padding: 0;
}

.ca-container .ca-ad-imgs .riga:hover,
.ca-container .ca-ad-video .riga:hover{
  background: #e5007a25;
}

.ca-descrizione, .ma-descrizione{
  margin: 40px 0 60px;
}

.caratteristiche-title{
  text-align: center;
  margin: 30px 0 50px;
}

.ca-container .riga.riga4{
  align-items: flex-start;
  margin: 40px 0 60px;
  gap: 0;
  justify-content: space-between;
}

.ca-submenu-item{
  display: flex;
  gap: 5px;
  padding: 4px 0;
  align-items: center;
}

.ca-submenu-item input{
  width: 16px;
  height: 16px;
  min-height: 16px;
}

.make-it-red{
  border: 3px solid red !important;
}

.is-mandatory-notice{
  color: red;
  font-size: 14px;
  display: none;
}

.is-mandatory-notice.show{
  display: block;
}

.ca-container .form-submit{
  border-top: 1px solid #ddd;
  margin: 20px 0 20px;
  padding: 60px 0 10px;
  text-align: center;
}

.ca-chat{
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  margin-top: 5px;
}

.ca-chat input{
  width: 30px;
  height: 30px;
}

.ca-container .form-submit a{
  padding: 12px 20px;
  width: 200px;
  display: inline-block;
}

.indirizzo-wrapper{
  display: flex;
  align-items: center;
  gap: 8px;
}

.ca-container .riga.riga2{
  gap: 20px;
  justify-content: space-between
}

.show-submit-popup{
  margin-top: 55px;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

@media (min-width: 992px){
  #indirizzo{
    min-width: 400px;
  }
  
  #comune{
    min-width: 250px;
  }

  #zona{
    min-width: 300px;
  }
}

.ca-container .comune-submenu{
  padding: 0px 8px;
  background: #fff;
  border-bottom: 1px solid var(--mag);
  border-left: 1px solid var(--mag);
  border-radius: 0 0 8px 8px;
  border-right: 1px solid var(--mag);
  cursor: pointer;
  max-height: 300px;
  overflow: auto;
  font-size: 13px;
}

.ca-container .comune-submenu .risultato {
  color: #4a4a4a;
  padding: 1px 4px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  border-radius: 2px;
  margin: 1px 0;
}

@media (max-width: 992px){
  .ca-container .comune-submenu .risultato {
    font-size: 24px;
  }
}

.ca-container .comune-submenu .risultato:hover {
  background: #d5d5d5;
}

.pubblica-annuncio{
  display: none;
}

.telefono-container{
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.prefix{
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f2f2f2;
}

.prefix-flag{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 50px;
  border-radius: 4px;
}

.prefix-flag img{
  max-width: 24px;
}

.telefono-notice{
  font-size: 14px;
  color: #000000;
}
.telefono-notice.verified{
  color: #0da500;
}
#manda-sms,
#manda-sms-modifica{
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--mag);
  border: 1px solid var(--mag);
  border-radius: 4px;
  padding: 5px 10px;
  box-shadow: 0 4px 16px #ddd;
  cursor: pointer;
}

#manda-sms:hover,
#manda-sms-modifica:hover{
  color: var(--bia);
  background-color: var(--mag);
}

.otp-container{
  display: flex;
  gap: 5px;
  align-items: flex-start;
  padding-top: 20px;
  display: none;
}
.otp-inner-container{
  max-width: 170px;
}
.otp-notice{
  font-size: 14px;
  color: #000000;
}

.otp-retry{
  font-size: 14px;
  color: #000000;
  border-top: 1px solid #ddd;
  margin-top: 5px;
  padding-top: 5px;
}
#conferma-otp{
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--mag);
  border: 1px solid var(--mag);
  border-radius: 4px;
  padding: 5px 10px;
  box-shadow: 0 4px 16px #ddd;
  cursor: pointer;
}

#conferma-otp:hover{
  color: var(--bia);
  background-color: var(--mag);
}

/* CREA ANNUNCIO POPUP */

.ca-overlay{
  background: var(--mag);
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000000000;
  filter: opacity(0.8);
  backdrop-filter: blur(8px);
  display: none;
}
.ca-admission-popup, 
.ca-success-popup,
.ca-loading-popup,
.ca-loading-foto-popup{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bia);
  width: 650px;
  border: 3px solid var(--blu);
  box-shadow: 0 4px 16px #ddd;
  border-radius: 8px;
  padding: 30px;
  z-index: 10000000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.caap-logo{
  width: 250px;
}
.caap-text-container{
  text-align: center;
}
.caap-checkbox-container{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.caap-prosegui{
  padding: 12px 20px;
}

.disabled{
  opacity: 0.5;
  user-select: none;
}

.disabled a{
  pointer-events: none;
}

.btn-disabled,
.btn-disabled:hover{
  background-color: #ddd;
  cursor: default;
  user-select: none;
}

@media (max-width: 992px){
  .btn-disabled,
  .btn-disabled:hover{
    font-size: 17px;
  }
}

.ca-ad-imgs, .ca-ad-video{
  display: none;
}

.sub-img{
  width: fit-content;
  margin-top: 15px;
}

.avatar-preview-wrapper.main-img{
  border: 3px solid var(--mag);
  border-radius: 10px;
  padding: 6px;
  min-width: 100px;
  min-height: 120px;
}

.avatar-preview-wrapper.main-img::before{
  content: 'Copertina';
  color: var(--mag);
  font-size: 14px;
  position: absolute;
  top: -32px;
  left: 50%;
  translate: -50%;
}

.avatar-preview{
  max-width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  z-index: 1;
  position: relative;
  z-index: 1000001;
}

.form-inner, .video-form-inner{
  display: flex;
  border: 1px solid var(--mag);
  padding: 40px 30px 30px;
  border-radius: 20px;
  margin: 20px auto;
  justify-content: space-around;
}

.ca-success-popup, .ca-loading-popup, .ca-loading-foto-popup{
  display: none;
}

.ca-loading-popup .loader,
.ca-loading-foto-popup .loader{
  width: 48px;
  height: 48px;
  border: 5px solid var(--mag);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  } 

@media (max-width: 992px){
  .page-template-crea-annuncio #content .ast-container, .page-template-modifica-annuncio #content .ast-container {
    padding: 20px 5px;
}

.ca-form-container {
  padding: 20px 15px;
}

.ca-container .riga {
  gap: 20px;
  padding: 0 0 40px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 10px;
}

.ca-capelli, .ca-seno, .ca-nazionalita, .ca-eta, .ca-cat, .ca-comune, .ca-zona, .ca-indirizzo, .ca-comune input, .indirizzo-wrapper{
  width: 100%;
}

.ca-container .riga.riga4 {
  margin: 20px 0;
  gap: 30px 0;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ca-form-container .riga.riga4 .boxy {
  padding: 20px;
  min-width: 150px;
}

.form-inner{
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 0px;
}

.form-inner, .video-form-inner {
/*   display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  justify-content: flex-start; */
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 0px;
}

.ca-container .ca-ad-imgs .riga, .ca-container .ca-ad-video .riga {
  width: 80px;
  min-width: 80px;
}

#avatar-upload-form{
  margin-bottom: 50px;
}

.ca-admission-popup, .ca-success-popup, .ca-loading-popup, .ca-loading-foto-popup {
  width: unset;
}

}

/* ANNUNCI */


.single-page{
  padding: 30px 50px 10px;
  max-width: 1300px;
  margin: auto;
}
.single-container{
  padding: 0;
}
.s-heading{
  margin: 20px 0 5px;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.s-heading h2{
  font-size: 24px;
}
.s-subheading{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-subheading .s-last-update{
  color: #f29d38;
  display: flex;
  gap: 4px;
  align-items: center;
}
.s-subheading .s-last-update.updated-today,
.s-subheading .s-last-update.updated-recently{
  color: #0040a0;
}
.last-update__icon--recent{
  display: none;
}
.last-update__icon--not-recent{
  display: block;
}
.s-last-update__text--not-recent{
  display: block;
}
.s-last-update__text--recent{
  display: none;
}

.updated-today .last-update__icon--recent{
  display: block;
}
.updated-today .last-update__icon--not-recent,
.updated-recently .last-update__icon--not-recent{
  display: none;
}
.updated-today .s-last-update__text--not-recent{
  display: none;
}
.updated-today .s-last-update__text--recent{
  display: block;
}
.s-subheading .s-location{
  display: flex;
  gap: 4px;
  align-items: center;
}

.s-body{
  display: grid;
  grid-template-columns: 1fr 2fr 5fr;
  gap: 0px;
  overflow: hidden;
  min-height: 500px;
}
@media (min-width: 992px){
  .s-body.is-not-sponsoring{
  grid-template-columns: 3fr 5fr;
}
}
.single-partner .s-body{
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 992px){
  .annuncio-cta-mobile a{
    width: 100%;
    display: block;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .annuncio-cta-mobile > div{
    padding: 0 !important;
  }
}

.s-left{
  height: 400px;
}
.s-main-img-container{
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.s-main-img-container a{
  position: absolute;
}
.s-main-img-container img{
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-gallery-container{
  margin-top: 20px;
}
.s-gallery1{
  position: relative;
  max-height: 80%;
}
.s-gallery-item{
  height: 100px;
  margin: 16px;

}
.s-gallery-item img{
  border-radius: 4px;
}
.s-info{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}

.s-info-item{
  display: flex;
  gap: 5px;
  user-select: none;
  border-radius: 12px;
  align-items: center;
}

.mfp-content {
  top: 50%;
  transform: translateY(-50%);
}

.mfp-wrap{
  z-index: 10000043 !important
}

.mfp-bg{
  z-index: 10000042 !important
}

.mfp-counter{
  display: none;
}

img.mfp-img{
  padding: 40px 0 10px 0 !important;
}

.mfp-image-holder .mfp-close{
  position: absolute;
  right: -55px !important;
  text-align: right;
  padding-right: 6px;
  width: fit-content !important;
  top: 50px !important;
  opacity: 1;
  font-size: 3rem;
  cursor: pointer !important;
  background: rgba(255, 255, 255, .6);
  color: #4a4a4a !important;
  border-radius: 50%;
  width: 44px !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .mfp-img {
  height: 80vh !important;
} */

.single-annunci .ast-container,
.single-partner .ast-container,
.single-eventi .ast-container{
  flex-direction: column;
}

.s-above{
  display: flex;
  padding: 0 0px 30px 0;
  justify-content: space-between;
}

.s-above-cats{
  display: flex;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
}
.single-partner .s-above-cats{
  opacity: 1;
}

.s-above-cta{
  display: flex !important;
  gap: 20px;
}

.s-above-cta div{
  border-radius: 30px;
  padding: 0;
  width: 150px;
  justify-content: center;
  display: flex;
  height: 33px;
  align-items: center;
}

.s-above .cta-chiama.btn-1{
  display: flex;
  align-items: center;
}

.s-above .cta-wa i{
  color:#25d366;
}

.s-above .cta-chiama.btn-1 a{
  color: #fff !important;
}

.s-above .cta-chiama.btn-1:hover a{
  color: #fff !important;
}

.s-above-cta div a{
  color: var(--mag);
  width: 100%;
  text-align: center;
}

.carat{
  padding: 30px 0 0;
  border-top: 1px solid #ddd;
  max-width: 1200px;
  margin: auto;
}

.show-address{
  font-size: 22px;
  padding-top: 5px;
}

.single-annunci .share-title h5,
.single-annunci .contact-title h5{
  font-size: 24px;
}

.carat .title-line,
.center .title-line{
  text-align: center;
}

.carat .title-line h5,
.center .title-line h5{
  font-size: 24px;
}

.carat .carat-line{
  display: flex;
  justify-content: space-evenly;
  padding: 30px 0;
}

.crt-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
}

.crt-container .crt-title{
  font-weight: 600;
}

.crt-container .crt-value{
  font-size: 16px;
}

.breadcrumb{
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a{
  color: var(--mag);
}

.s-description p{
  font-size: 18px;
}

.s-gallery-container{
  position: relative;
  margin-top: 32px;
  max-height: 97%;
}

.single-annunci .hp-map-title h2{
  font-size: 24px;
}

.gallery-btn{
  font-size: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-btn.next{
  cursor: pointer;
}

.gallery-btn.prev{
  top: -15px;
  cursor: pointer;
}

.s-gallery{
  max-height: 380px;
  overflow: hidden;
  max-height: 80% !important;
  padding-bottom: 30px;
}

.center{
  padding: 20px 0px 30px 30px;
}

.share{
  display: flex;
  justify-content: center;
  gap: 120px;
}

.wa-share{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 150px;
}

.wa-share i{
  font-size: 2rem;
}

.video-container{
  display: flex;
  padding: 0;
  gap: 20px;
  margin-top: 10px;
  justify-content: flex-start;
}

@media (max-width: 992px){
  .video-container {
    margin-top: -50px;
    padding: 20px 15px 0;
  }
}

.video-previewer{
  border: 2px solid var(--mag);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 12px;
  font-size: 2rem;
  cursor: pointer;
}

.video-previewer:hover{
  background: #e9007aaa;
}

.video-player{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000001;
}

.video-close{
  font-size: 1.8rem;
  color: var(--mag);
  background: rgba(255, 255, 255, .8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  cursor: pointer;
}

@media (max-width: 992px){
  .video-player video{
    max-width: 96vw;
    height: auto;
  }
}

.annuncio-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #e5007aaa;
  z-index: 10000000;
  display: none;
  backdrop-filter: blur(4px);
}

.main-img-btn{
  display: none;
}

.scroll-up{
  position: fixed;
  bottom: -110px;
  width: 100%;
  z-index: 1000;
  transition: bottom .5s;
}

.scroll-up.show{
  bottom: 0;
}

.scroll-up-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
  border-top: 3px solid var(--mag);
  background: #ffffffbb;
  border-radius: 20px 20px 0 0;
}

.scroll-up-btn {
  border-radius: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-up .cta-text{
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 992px){
  .single-page {
    padding: 5px 10px 35px;
}

.s-left{
  position:relative;
}

.s-description{
  font-size: 16px;
}

.crt-container .crt-title {
  font-size: 16px;
}

.main-img-btn{
  display: block;
  position: absolute;
  top: 37%;
  font-size: 3rem;
  color: var(--mag);
}

.annuncio-btn-prev{
  left: 2px;
}
.annuncio-btn-next{
  right: 2px;
}
}

/* REGISTRATI PAGE */

#menu-item-9999{
  display: none !important;
}

#page #primary .ur-button-container{
  margin: 32px auto 0 !important;
  width: 100%;
}

#page #primary .ur-button-container .btn.button.ur-submit-button.registrati-btn{
  margin: auto !important;
  padding: 10px 35px !important;
  background: var(--mag) !important;
  font-size: 18px;
  border: none;
  border-radius: 30px !important;
  min-width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registrati-form{
  width: 50%;
  margin-bottom: -20px !important;
  padding: 30px 50px 60px !important;
  border-radius: 20px;
  box-shadow: 0 4px 16px #ddd;
}

.page-id-412{
  background: #fff;
}

.registrati-form .field-checkbox div label abbr{
  display: none !important;
}

.s-i-value h1{
  font-size: 16px;
  font-weight: 400;
  color: #334155;
}

@media (max-width: 920px){

  .registrati-form {
    width: 94%;
    padding: 30px 15px 60px !important;
}

  #content{
    padding-top: 100px;
  }

  .second-header{
    background: #fff;
    width: 100%;
    height: 80px;
    top: 62px;
    position: relative;
    margin-bottom: 10px;
  }

  .sh-heading{
    font-size: 14px;
    padding: 0 20px;
    text-align: center;
    margin: 0;
    color: var(--blu);
    padding: 8px 0;
    font-weight: 600;
  }
  .sh-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
  }
  .sh-buttons a{
    width: 130px;
    display: block;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background-color: var(--mag);
    border-radius: 30px;
    font-weight: 600;
  }

  .s-i-value h1{
    font-size: 12px;
  }

  /* HEADER */
  [data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
    width: 40px;
    height: 40px;
    fill: var(--mag);
}

.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-primary-header-bar{
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.ast-primary-header .ast-builder-grid-row.ast-builder-grid-row-has-sides.ast-builder-grid-row-no-center{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 20px 0 0;
}

.site-header-primary-section-left.site-header-section.ast-flex.site-header-section-left{
  flex-grow: 1;
  justify-content: center;
  display: flex;
  flex-wrap: nowrap;
}

header .custom-logo-link img {
  max-width: 200px;
  width: 100% !important;
}

  /* HOMEPAGE  */
  .psn-inner {
    flex-direction: column;
    display: flex;
    gap: 20px;
    padding: 0 50px 30px 70px;
}
.psn-title {
  text-align: left;
  padding-left: 45px;
}
.psn-title h2{
    font-size: 32px;
    font-weight: 400;
    max-width: 240px;
}
  .sponsor-btn{
    display: none;
  }

  .classifiche-container {
    padding: 20px;
}

.banner-1-container {
  height: 300px;
}

.banner-subtitle {
  font-size: 21px;
  padding: 0 20px;
}

.classifiche-container .classifiche-inner {
  gap: 0px;
  flex-direction: column;
}

.map-cats{
  overflow-x: auto;
  /* margin-right: 10px; */
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.map-cats-submenu {
  padding: 5px 20px 20px;
  gap: 20px 10px;
  justify-content: space-around;
  display: flex;
  flex-wrap: nowrap;
  width: 700px;
}

.map-cats::-webkit-scrollbar {
  -webkit-appearance: none;
}

.map-cats::-webkit-scrollbar:horizontal {
  height: 12px;
}

.map-cats::-webkit-scrollbar-thumb {
  background-color: var(--mag);
  border-radius: 10px;
}

.map-cats::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #f2f2f2;
}

.hp-map {
  padding: 40px 0 20px;
}

.hp-hero-content {
  width: 100%;
  padding: 0px;
  justify-content: flex-end;
  height: 100%;
  margin: 0;
}

.hp-hero-section {
  height: 74vh;
  max-height: 470px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: top;
}

.hp-search-box .first-line h3 {
  font-size: 14px;
}

.hp-search-box .first-line {
  padding-top: 15px;
}

.hp-search-box .second-line {
  display: flex;
  padding-top: 15px;
  gap: 0;
  flex-wrap: wrap;
}

.hp-search-box {
  padding-top: 0;
}

.hp-search-box {
  height: unset;
  border: none;
  border-radius: 0;
}

.hp-s-city {
  width: 50%;
  position: relative;
}

.hp-s-city input {
  width: 100%;
  border-radius: 30px 0 0 30px;
  text-align: center;
  border: 3.5px solid var(--mag);
  font-family: OpenSans;
  letter-spacing: 0.3px;
  font-weight: 400;
  font-size: 16px;
  height: 53px;
  top: 0.5px;
  position: relative;
}

.hp-search-box .second-line .hp-s-button {
  width: 100%;
  height: 53px;
  border-radius: 40px;
  margin-top: 20px;
}

.hp-search-box .second-line .hp-s-button a {
  font-size: 20px;
}

.hp-s-cat {
  width: 50%;
  position: relative;
  padding: 0.3px 0;
}

.hero-cats-submenu {
  position: absolute;
  top: 51px;
  max-height: 0;
  transition: max-height .3s, opacity .3s;
  z-index: 10000;
  width: 91%;
  left: -0.5%;
  transform: translateX(-0.5%);
}

@media (max-width: 992px){
  .hhs-search .hero-cats-submenu {
        top: 54px;
        width: 100%;
        border: 1px solid var(--mag);
        border-top: none;
    }
  .hhs-search .hero-comuni-submenu {
    border: 1px solid var(--mag);
    border-top: none;
}
}

#cats-trigger {
  border: 3.2px solid var(--mag);
  border-radius: 0 30px 30px 0;
  height: 53.6px;
  color: #00000060;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  font-family: OpenSans;
  border-left: none;
  background: #fff;
}

.hero-cats-submenu.appari {
  max-height: fit-content;
  opacity: 1;
  padding-left: 9px;
  padding-right: 0;
}

.hero-comuni-submenu {
  top: 51px;
  position: absolute;
  z-index: 100;
  padding-left: 6px;
  width: 91%;
  right: 0%;
  left: unset;
}

.car-ann-img {
  width: 100%;
}

.oppure{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto 0;
  text-transform: capitalize;
  width: 94%;
  align-items: center;
}

.oppure-text{
  color: var(--blu);
  font-weight: 700;
}

.oppure-btn{
  padding: 10px 20px;
  width: 100%;
}

#map{
  height: 250px;
}

  /* FOOTER */
  .footer-links {
    padding: 0 20px;
    flex-direction: column;
}

.site-above-footer-wrap[data-section="section-above-footer-builder"] {
  padding: 40px 0 !important;
}

.ast-header-break-point .footer-widget-area[data-section="sidebar-widgets-footer-widget-3"] {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.ast-header-break-point .footer-widget-area[data-section="sidebar-widgets-footer-widget-2"] {
  padding-bottom: 40px;
}

.ast-builder-footer-grid-columns.site-above-footer-inner-wrap.ast-builder-grid-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0 10vw;
}

.site-footer-above-section-1.site-footer-section.site-footer-section-1{
  flex-shrink: 1;
  max-width: 163px;
  margin-top: 30px;
}

.footer-list{
  padding-left: 0 !important;
}

.site-footer-above-section-2.site-footer-section.site-footer-section-2{
  flex-grow: 1;
  width: 100vw;
}

.site-footer-above-section-3.site-footer-section.site-footer-section-3{
  flex-shrink: 1;
  min-width: 170px;
}

#colophon h4 {
  text-align: left;
  font-size: 1rem;
}

/* ANNUNCIO SINGLE */

.s-heading h2{
  font-size: 16px;
  text-align: left;
}

.s-above {
  margin-top: 20px;
  padding-right: 15px;
  padding-bottom: 0;
  display: none;
}

.luogo{
  order: 2;
}

.s-above-cats {
  justify-content: flex-start;
  gap: 10px;
}

.s-info-item {
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
}

.s-above-cta {
  justify-content: center;
  display: flex;
  height: fit-content;
  gap: 10px;
  padding-top: 15px;
}

.s-above-cta.--d {
  display: none !important;
}

.s-above-cats {
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* .s-info-item.boxy.luogo{
  margin: 0 200px 0 0;
} */

.carat .carat-line {
  flex-direction: column;
  gap: 40px 14px;
  padding: 16px 10px;
}

.s-main-img-container a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  max-width: 87vw;
}

.s-main-img-container img {
  border-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  max-width: 100vw;
}

.s-main-img-container div{
  min-height: 430px;
}

.carat {
  margin: 0 10px;
}

.hp-map-title h2{
  font-size: 16px;
}

.page-template-homepage .hp-map-title h2{
  font-size: 20px;
}

.single-annunci h5 {
  font-size: 16px;
}

.s-i-value{
  font-size: 12px;
}

.s-main-img-container {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 470px;
  position: relative;
  border-radius: 4px;
}

.carat .carat-line {
  display: flex;
  justify-content: space-evenly;
  padding: 30px 10px;
  flex-wrap: wrap;
  flex-direction: row;
}

.show-address {
  font-size: 16px;
  padding-top: 3px;
}

.carat .title-line h5,
.center .title-line h5 {
  font-size: 18px;
}

.crt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  width: 30%;
  text-align: center;
}

.s-gallery{
  display: flex;
  gap: 0px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0;
  margin-bottom: 35px;
}

.s-gallery-container {
  margin-top: 0px;
}

.s-gallery1{
  margin-top: 30px;
}

.s-gallery-item img {
  border-radius: 0px;
  height: 80px;
  min-width: 80px;
  object-fit: cover;
}

.s-body {
  height: unset;
  display: flex;
  flex-direction: column;
}

.gallery-btn{
  display: none;
}

.ast-container{
  margin-top: -20px;
}

.ast-primary-header-bar.ast-primary-header.main-header-bar.site-primary-header-wrap.site-header-focus-item.ast-builder-grid-row-layout-default.ast-builder-grid-row-tablet-layout-default.ast-builder-grid-row-mobile-layout-default{
  height: 62px;
  min-height: 60px;
}

.ast-builder-grid-row.ast-builder-grid-row-has-sides.ast-builder-grid-row-no-center{
  height: 60px;
}

.banner-1-container,
.banner-2-container{
  padding: 0;
}

.description-title h5{
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.center {
  padding: 30px 10px 20px;
}
}

/* PIANI */

.piani{
  flex-grow: 1;
}
.piani-wrapper{
  padding: 80px 120px;
}
.piani-titolo{
  text-align: center;
  font-weight: 500;
}
@media (max-width: 992px){
  .piani-titolo h2{
    font-size: 18px;
  }
}
.piani-container{
  padding: 50px 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.piani-titolo h4{
  font-size: 1.2em;
  font-weight: 400;
}
.piano{
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--blu);
  align-items: center;
  border-radius: 20px;
  padding: 20px 6px;
  gap: 20px;
  background-color: #fff;
  max-width: 413px;
}

.piano-above{
  position:relative;
}

.piano-above::after{
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  translate: -50%;
  width: 413px;
  height: 3px;
  border-radius: 20px;
  z-index: 1;
  background-color: var(--mag);
}

.piano{
  margin-top: 40px;
}
.piano-title{
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.choice-title{
  color: #4a4a4d;
  font-weight: 700;
  margin: 0 0 15px 10px;
}
.piano-img img{
  border-radius: 10px;

}
.choices{
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.price{
  float: right;
  margin-top: 4px;
  font-weight: 700;
}
.fascia-oraria-container{
  margin-top: auto;
  width: 100%;
}
.fascia-oraria-container input{
  margin: 10px 0;
}
.fascia-oraria-title{
  text-align: center;
  margin: 0 0 5px;
}
#fascia-oraria-1, #fascia-oraria-2{
  opacity: 0;
  transition: opacity .5s;
  width: fit-content;
  margin-left: 20px;
  pointer-events: none;
}
#fascia-oraria-1.show, #fascia-oraria-2.show{
  opacity: 1;
  pointer-events: all;
}
.continua-senza-promo-button{
  width: fit-content;
  margin: 50px auto 0;
}
.piani-summary{
  padding: 30px 0 0;
}
.p-s-importo{
  display: flex;
  justify-content: center;
  padding: 0 0 6px;
  font-weight: 600;
  gap: 10px;
  font-size: 1.8rem;
}
.p-s-button{
  width: fit-content;
  padding: 10px 100px;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 50px;
}
.p-s-button-reset{
  color: red;
  cursor: pointer;
  margin: 10px auto 0;
  width: fit-content;
}
.p-s-button-payment-mode{
  font-weight: 300;
  font-size: 13px;
  opacity: .7;
  margin: -5px 0;
}

@media (min-width: 992px){
  .piani-summary{
    opacity: 0;
    pointer-events: none;
  }
}

.no-credit{
  border: 3px solid var(--mag);
  width: fit-content;
  border-radius: 8px;
  padding: 20px;
  font-weight: 600;
  margin: 20px auto;
  background: #e5007a20;
  display: none;
}

.no-credit a{
  text-decoration: underline;
}

.spiegazione {
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  min-height: 100px;
}

.badge.chiamami.both{
  left: 78%;
}

.form-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.form-row label{
  width: 100%;
  max-width: 365px;
  margin-right: auto;
}

.form-row .piano-label-text{
  display: inline-block;
  width: 210px;
  margin-bottom: 5px;
}

@media (max-width: 992px){
  .form-row label{
    max-width: 75vw;
  }

  .piani-wrapper{
    padding: 10px 20px 80px;
  }
  .piani-container{
    flex-direction: column;
    padding: 0 0 20px;
  }
  .piano-above::after{
    width: calc(100vw - 40px);
  }
  .piano{
    margin-top: 10px !important;
  }
  .badge.chiamami.both{
    left: 66%;
    top: -13px;
  }
  .piani-summary{
    background: white;
    width: 100%;
    min-width: 100%;
    left: 0;
    margin: auto;
    position: fixed;
    bottom: -160px;
    padding: 0px 0 20px;
    border-radius: 20px 20px 0 0;
    transition: bottom .3s;
    border-top: 3px solid var(--mag);
    z-index: 1;
  }
  .p-s-importo {
    font-size: 1.5rem;
}
.p-s-button {
  font-size: 1.2rem;
}
}

/* SEGNALA ABUSO */

.segnala-abuso{
  padding-bottom: 40px;
  max-width: 80vw;
  margin: 0 auto;
}
.segnala-inner{
  background: rgba(190, 190, 255, .7);
  border-radius: 8px;
  padding: 20px;
  font-size: 12px;
  color: var(--blu);
  box-shadow: 0 4px 16px #ddd;
}
.segnala-title{
  font-weight: 700;
}

.notice{
  background: #0357f910;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  color: var(--blu);
  margin: 20px 100px -20px;
}

@media (max-width: 992px){
  .segnala-abuso{
    margin: 0 20px;
  }
  .notice{
    margin: 20px 10px 0px;
  }
}

/* MAPPA INDICAZIONI STRADALI ETC */

.indicazioni-stradali{
  display: flex;
  justify-content: space-between;
}

.indicazione{
  border: 1px solid lightblue;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px lightblue;
}

.you-are-here{
  position: relative;
  bottom: 85px;
  z-index: 1000;
  right: -95%;
  font-size: 1.5rem;
  background: #ffffffcc;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px var(--blu);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 992px){
  .you-are-here{
    bottom: 70px;
    right: -86%;
  }
}

.below-map{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.indicazioni-stradali-annuncio{
  text-align: right;
  padding-right: 40px;
}

.indicazioni-stradali-annuncio a{
  color: #0072ff;
  font-size: 1.2rem;
  text-align: right;
}

@media (max-width: 992px){
  .below-map{
    display: block;
  }
  .indicazioni-stradali-annuncio{
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 390px) {
  .ast-builder-footer-grid-columns.site-above-footer-inner-wrap.ast-builder-grid-row {
      gap: 0 5vw;
  }

  .login p#nav {
    padding-left: 10px;
    padding-right: 0;
  }
  .ca-form-container .riga.riga4 .boxy {
    width: 100%;
  }

  .ca-cats-submenu{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 8px;
  }
}

@media (max-width: 380px) {
  .hhs-search .hp-s-city input,
  .bacheca-container .hp-s-city input {
    font-size: 12px;
}

.hhs-search #cats-trigger,
.bacheca-container #cats-trigger {
  font-size: 12px;
}
}

@media (max-width: 340px) {
  .hhs-search .hp-s-city input,
  .bacheca-container .hp-s-city input {
    font-size: 11px;
}

.hhs-search #cats-trigger,
.bacheca-container #cats-trigger {
  font-size: 11px;
}
}

@media (max-width: 320px) {
  .hhs-search .hp-s-city input,
  .bacheca-container .hp-s-city input {
    font-size: 10px;
}

.hhs-search #cats-trigger,
.bacheca-container #cats-trigger {
  font-size: 10px;
}
}
@media (max-width: 298px) {
  .hhs-search .hp-s-city input,
  .bacheca-container .hp-s-city input {
    font-size: 8px;
}

.hhs-search #cats-trigger,
.bacheca-container #cats-trigger {
  font-size: 8px;
}
}

.company-name::after{
  content: 'Sireli Srls';
}

.company-details::after{
  content: 'Sireli Srls (P.IVA 03808040830) con sede in via Nazario Sauro 40(98063) Gioiosa Marea (ME), contattabile tramite PEC: e-lobby@pec.it o email:';
}

.contact-block{
  text-align: right;
}

.contact-block .company-name{
  font-weight: 700;
  color: var(--mag);
  font-size: 24px;
}
.contact-block .company-email{
  font-weight: 600;
}
.contact-block .company-phone{
  font-weight: 600;
}

/* SPONSORIZZA ANNUNCIO */

.page-template-sponsorizza-annuncio #content .ast-container {
  flex-direction: column;
}

.sa-hero{
  background: linear-gradient(0deg, #f5f5f5, #fff);
  padding: 60px 0;
}
.sah-container{
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.sah-title{
  text-transform: uppercase;
  font-size: 36px;
  color: var(--blu);
  text-align: center;
  letter-spacing: -1px;
  line-height: 1px;
  line-height: 50px;
}
.sah-title .magenta{
  font-weight: 700;
}
.sah-text{
  font-size: 28px;
  color: var(--blu);
  text-align: center;
  margin-top: 40px;
  line-height: 35px;
}
.sah-cta, .sabp-cta, .sab-cta, .sap-cta, .sac-cta{
  text-align: center;
  margin: 50px auto 0;
  color: #fff;
  background: var(--mag);
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50px;
  padding: 3px 23px;
  cursor: pointer;
}

.sah-image{
  width: 350px;
}

.sa-triangle {
  clip-path: polygon(-3% -1%, 102% 0, 50% 40%);
  background: var(--mag);
  width: 100%;
  position: absolute;
  height: 8%;
  z-index: 100;
}

.sa-triangle-b {
  clip-path: polygon(-2% -1%, 102% -1%, 50% 39%);
  background: #f5f5f5;
  width: 100%;
  position: absolute;
  height: 8%;
  z-index: 1000;
}

.sa-blu{
  position: relative;
}
.sab-container{
  padding: 130px 0 180px;
  background: var(--blu);
  color: #fff;
}



.sab-title{
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -3%;
  text-align: center;
  margin: 0px 0 50px;
}
.sab-icons{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto 120px;
}
.sab-icon-container{
  text-align: center;
  flex: 1 0 0;
}

@media (min-width: 991px){
  .sab-icon-container {
    text-align: center;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    align-items: center;
}
}

.sab-icon-title{
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -3%;
}

.sab-subtitle{
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -3%;
  margin: -40px 0 40px;
}
.sab-promo-wrapper{
  margin-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sab-promo-container{
  width: 835px;
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 30px;
  margin: 0 auto;
}
.sabp-body{
  display: flex;
  gap: 40px;
}
.sabp-left{
  flex-grow: 1;
}
.sabp-header{
  display: flex;
  align-items: center;
  gap: 8px;
}
.sabp-header-title{
  font-size: 28px;
  font-weight: 700;
  color: var(--mag);
  text-transform: uppercase;
}
               
.sabp-subheader{
  font-size: 24px;
  font-weight: 700;
  color: var(--blu);
  text-align: center;
  max-width: 300px;
}
.sabp-lottie{
  width: 280px;
}
.sabp-right{
  font-size: 20px;
}
.sabp-text{
  color: #000;
}
.sabp-bullets{
  list-style: none;
  margin: 10px 0 10px 10px;
}
.sabp-bullet{
  color: #4a4a4d;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sabp-bullet i{
  color: var(--mag);
}

.sabp-cta{
  margin-top: 50px;
  margin-bottom: -40px;
}

.sa-triangle-2 {
  clip-path: polygon(-2% 102%, 102% 102%, 50% 10%);
  background: #fff;
  width: 100%;
  position: absolute;
  height: 4%;
  z-index: 101;
  bottom: 0;
}

.sa-triangle-2-b {
  clip-path: polygon(-2% 100%, 102% 100%, 50% 8%);
  background: var(--mag);
  width: 100%;
  position: absolute;
  height: 4%;
  bottom: 0;
  z-index: 100;
}
.sap-container{
  padding-bottom: 60px;
  background: linear-gradient(0deg, #f2f2f2, #fff);
}
.sap-title{
  font-size: 36px;
  font-weight: 600;
  color: (--blu);
  text-align: center;
}
.sap-text{
  font-size: 28px;
  color: var(--blu);
  text-align: center;
  padding: 20px 30px;
  line-height: 150%;
}
.sap-icons-container{
  padding: 30px;
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}
.sac-text{
  font-size: 28px;
  color: var(--blu);
  text-align: center;
  margin-top: 80px;
}
.sac-cta{
  margin-top: 40px;
  margin-bottom: 120px;
}
.saf-title{
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: var(--blu);
}
.saf-container{
  max-width: 1200px;
  margin: 20px auto 120px;
}

.accordion {
  color: var(--blu);
  cursor: pointer;
  padding: 18px 30px 18px 10px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.accordion i{
  transition: all 0.3s ease-in-out;
}

.accordion:first-child {
  border-top: 1px solid #ddd;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: var(--blu);
}

.panel p{
  margin: 1.75rem 0;
}

.rotate-arrow{
  transform: rotate(180deg);
}

@media (min-width: 992px){
  .sab-icons.--d{
    display: flex !important;
  }
}

@media (max-width: 992px){
  .sa-hero {
    margin: 0px auto;
    padding: 0;
}

  .sah-container{
    flex-direction: column;
    padding-bottom: 30px;
  }
  .sah-left {
    order: 2;
}
.sah-image {
  width: unset;
}

.sah-image img {
  width: 100vw;
}
.sah-title {
  font-size: 22px;
  padding: 20px;
  line-height: 150%;
  margin-top: -40px;
}
.sah-text {
  font-size: 16px;
  margin-top: 0px;
  padding: 0 20px;
  line-height: 140%;
}

.sah-cta, .sabp-cta, .sab-cta, .sap-cta, .sac-cta {
  margin: 20px auto 0;
  font-size: 16px;
  height: 38px;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 348px;
}

.sa-triangle {
  clip-path: polygon(-3% -1%, 102% 0, 50% 25%);
  background: var(--mag);
  width: 100%;
  position: absolute;
  height: 8%;
  top: 0px;
  z-index: 100;
}

.sa-triangle-b {
  clip-path: polygon(-2% -1%, 102% -1%, 50% 24%);
  background: #f5f5f5;
  width: 100%;
  position: absolute;
  height: 8%;
  top: -1px;
  z-index: 1000;
}

.sa-triangle-2 {
  clip-path: polygon(-2% 102%, 102% 102%, 50% 12%);
  background: var(--bia);
  width: 100%;
  position: absolute;
  height: 4%;
  z-index: 101;
  bottom: -2px;
}

.sabp-cta{
  margin: 50px auto 0;
}

.sab-promo-container {
  width: 92vw;
  display: flex;
  flex-direction: column;
}

.sabp-subheader {
  order: 4;
  font-size: 20px;
}

.sabp-text.--m{
  order: 3;
  font-size: 16px;
  text-align: center;
}
.sabp-header {
  order: 2;
  justify-content: center;
}

.sabp-header-title {
  font-size: 20px;
  text-transform: none;
}

.sabp-header-icon {
  margin-bottom: -12px;
}

.sabp-lottie {
  width: 58vw;
  margin: 0 auto 20px;
}

.sab-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bia);
  margin-top: 30px;
}

.icons-mobile .sab-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blu);
  margin-top: 0px;
  margin-bottom: -60px;
  padding: 30px 0;
  background: var(--bia);
}

.icons-mobile .sab-icons{
  flex-direction: column;
  gap: 30px;
  margin-bottom: 0;
  padding-bottom: 40px;
  background-color: var(--bia);
}

.sab-subtitle {
  font-size: 16px;
  font-weight: 400;
  padding: 0 30px;
}

.sab-container {
  padding: 70px 0 100px;
}

.sap-title {
  font-size: 20px;
  font-weight: 600;
}

.icons-mobile .sab-icon-title {
  font-size: 20px;
  color: var(--blu);
}

.icons-mobile .sab-icons:last-child {
  background-color: var(--blu);
  color: #fff;
  position: relative;
  top: -2px;
  padding-top: 15px;
}

.icons-mobile .sab-title.blue-bg {
  background-color: var(--blu);
  color: #fff;
}

.sab-icons.blue-bg .sab-icon-title,
.sab-icons.blue-bg .sab-icon-subtitle {
  color: #fff;
  font-size: 16px;
  padding: 0;
  text-align: left;
}

.sab-icons.blue-bg .sab-icon-container {
  display: flex;
  gap: 15px;
  padding: 5px 30px;
}

.sab-icon-subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--blu);
  padding: 0px 28px;
}

.sap-icons-container {
  justify-content: center;
  gap: 40px;
}

.sap-text {
  font-size: 16px;
}

.sap-icon svg{
  width: 72px;
  height: 48px;
}

.sap-container {
  padding-bottom: 0px;
  background: #fff;
  padding-top: 20px;
}

.sac-text {
  font-size: 16px;
  margin-top: 20px;
}

.saf-title {
  font-size: 20px;
  margin-top: 80px;
}

.saf-container {
  padding: 0 20px;
  margin-bottom: 20px;
}

.accordion {
  font-size: 16px;
}

}

.page-template-sponsorizza-annuncio .ast-primary-header-bar {
  background: #fff;
}

.ast-primary-header-bar {
    background-color: #ffcccc60;
    backdrop-filter: blur(4px);
}

/* AGE CHECK */

.page-template-age-check .ast-container{
  flex-direction: column;
}

@media (max-width: 992px){
  .vec select {
    font-size: 14px !important;
}
.vec-text {
  font-size: 18px !important;
}

.vec-title h2 {
  font-size: 32px !important;
}
.vefc {
  flex-direction: column !important;
  padding: 0 40px !important;
}
.checkmark {
  top: 54px !important;
  right: -30px !important;
}
}

.checkmark {
  top: 54px !important;
}

/* USER REGISTRATION FORM */

.user-registration-password-hint{
  display: none !important;
}

.user-registration-password-strength{
  display: none !important;
}

.evaluator{
  background: #efefef;
  padding: 10px 25px;
  margin: 15px 0 0 0;
  font-size: 12px;
}

.ev-row{
  position: relative;
}
.ev-row.title{
  font-weight: 700;
  margin-bottom: 4px;
  padding: 0;
}

.ev-row-container.green{
  color: green;
}
.ev-row-container.red{
  color: red;
}
.ev-row-container{
  display: flex;
  gap: 5px;
  align-items: center;
}

.ur-frontend-form #user_pass{
  margin-bottom: 0 !important;
}

.ur-front-spinner{
  display: none !important;
}

.password-input-group.input-form-field-icons #eye{
  position: relative;
  right: 15px;
  text-align: right;
  top: 2px;
  margin-top: 5px;
  cursor: pointer;
  font-size: 12px;
  color: var(--blu);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
}

.password-input-group.input-form-field-icons #eye i{
  display: none;
}

.password-input-group.input-form-field-icons #eye i.show{
  display: block;
}

.password-input-group.input-form-field-icons .password_preview{
  display: none !important;
}

.more-results h2{
  text-align: center;
}

.more-results-text{
  text-align: center;
}

.archive-search-bar{
  margin: -20px 0 40px 0;
}

.archive-search-bar .search-module{
  padding: 10px 0;
}

.other-cats{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 0 15px;
}
.other-cats-title{
    display: flex;
    gap: 6px;
    align-items: center;
}
.other-cats-container{
    display: flex;
    gap: 10px;
    padding: 20px 0;
}
.other-cats-item{
  min-width: 120px;
  padding: 10px 10px 4px;
  border: 2px solid var(--mag);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-cats-item:hover{
  background-color: var(--mag);
}
.other-cats-item:hover .oci-name{
  color: #fff;
}
.other-cats-item:hover .oci-image img{
  color: #fff;
}
.oci-image{
  width: 36px;
}
.oci-image img {
  width: 100%;
}
.oci-name{
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 992px){
  .other-cats-container {
    overflow: auto;
    width: 100%;
}
  .archive-search-bar{
    margin: -30px 0 20px 0;
  }
  .archive-search-bar .hp-s-city {
    width: 42%;
  }
  .archive-search-bar .hp-s-cat {
    width: 42%;
  }
  .archive-search-bar .second-line .hp-s-button {
    position: unset;
    right: 0;
    top: 47px;
    width: unset;
    margin-left: 5px;
  }
  .archive-search-bar .search-module{
    padding: 10px 10px;
  }
  .archive-search-bar .hp-s-city input {
    font-size: 14px;
}
}

@media (max-width: 390px){
  .archive-search-bar  #cats-trigger,
  .archive-search-bar .hp-s-city input {
    font-size: 12px;
}
}

/* CONFIRM PAYMENT */

.confirm-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  padding: 0 30px;
}

.confirm-check{
  width: 150px;
  height: 150px;
}

.confirm-subtitle h2{
  font-size: 24px;
  font-weight: 700;
  margin: -10px auto 20px;
  color: #00c147;
}

.confirm-text-1{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -1px;
}

.confirm-text-2{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -1px;
}

.confirm-button{
  margin: 20px 0 50px;
  font-size: 14px;
  letter-spacing: -1px;
  padding: 10px 18px;
}

.confirm-button a{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1px;
  padding: 10px 18px;
}

.show-promo{
  display: flex;
  gap: 3px;
  padding: 8px 4px;
}

.s-main-img-container--not-sponsoring img{
  max-height: 250px;
  margin: 0 auto;
  display: block;
}

.s-main-img-sponsor-notice{
  background: #eaeffa;
  padding: 15px 15px 25px;
}
.s-main-sponsor-notice-text{
  font-size: 16px;
  color: #000;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0px 0 12px;
}
.s-main-sponsor-notice-button{
  width: fit-content;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 4px 30px;
}

.carica-foto-notice{
  background: #BEBEFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px;
  margin: 6px 0 0 0;
}

@media (max-width: 992px){
  .carica-foto-notice-text{
    font-size: 12px;
  }
}

/* PAGINA ACCEDI */

.accedi-wrapper{
  padding: 20px 0;
}
.accedi-heading{
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 40px;
  padding: 0 20px;
  text-align: center;
}
.accedi-title{

}
.accedi-form{
  padding: 0 15px;
  position: relative;
}
.accedi-form .form-row{
  margin-bottom: 20px;
  flex-direction: column;
}
.accedi-form .form-row:last-child{
  margin-bottom: 0;
}
.accedi-form .input-wrapper{
  width: 100%;
}
.ur-form-grid{
  width: 100%;;
}
.accedi-form .user-registration-Button{
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 !important;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--mag) !important;
  border-radius: 50px !important;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px){
  .page-template-accedi .site-content .ast-container {
        justify-content: center;
    }
}
.accedi-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 30px;
    font-size: 12px;
}
.af-lost-password a{

}
.af-no-account{

}
.af-no-account span {

}
.af-no-account a{

}
.user-registration-before-login-btn{
  margin-top: -15px;
}
.accedi-form #eye{
  position: absolute;
  right: 35px;
  top: 155px;
  z-index: 10;
  font-size: 1.2rem;
}
.accedi-form #eye i{
  display: none;
}

.accedi-form #eye i.show{
  display: block;
}

body.user-registration-page #user-registration:not(.user-registration-MyAccount), body.user-registration-page .user-registration:not(.user-registration-MyAccount){
  padding: 20px 0!important;
  box-shadow: none!important;
}
.page-template-accedi footer{
  display: none;
}
.page-template-accedi #content #user-registration{
  padding: 0 !important;
  box-shadow: none !important;
}
body.page-template-accedi #content .user-registration-error{
  position: fixed;
  top: 155px;
  left: 35px;
  width: 85vw;
}
body.page-template-accedi #content #ur-frontend-form{
  box-shadow: none !important;
  padding: 0 !important;
}
body.page-template-accedi #content .user-registration-error li span strong{
  display: none;
}

/* PAGE TEMPLATE LOST PASSWORD */

.page-template-lost-password .ast-container {
  flex-direction: column;
}
.page-template-lost-password .lost-password-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}
.page-template-lost-password .lp-heading {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}
#custom-lost-password-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  gap: 30px;
}
#custom-lost-password-form button{
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lostpass-message{
  background: rgb(190 190 255 / .7);
    border-radius: 8px;
}

/* BLOG POSTS */

.blog-date{
    color: #4a4a4a;
    padding: 0 10px;
    font-weight: 600;
    text-align: right;
}

.post-template-default .ast-container{
    min-width: 1280px;
}

.post-template-default .blog-article-container{
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 60px;
    box-shadow: 0 4px 16px #ddd;
}

.post-template-default .blog-article-title{
    margin-bottom: 10px;
    text-align: center;
}

.post-template-default .blog-article-body{
    margin-top: 30px;
}

.post-template-default .blog-article-image img{
    border-radius: 8px;
}

.post-template-default .post-category{
    margin: 10px auto;
    width: fit-content;
}

.post-template-default .post-cat{
    border-radius: 4px;
    border: 1px solid;
    background: var(--mag);
    color: #fff;
    padding: 4px 8px;
    margin: 5px auto;
}

.post-template-default .post-tags{
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-grow: 1;
    justify-content: center;
    margin-bottom: 30px;
}

.post-template-default .post-tag{
    border-radius: 4px;
    border: 1px solid;
    padding: 4px 8px;
    color: #4a4a4a;
}
.back-to-blog{
    color: var(--mag);
    font-weight: 600;
}

@media (max-width: 992px){
    .post-template-default .ast-container {
        min-width: unset;
    }
    .post-template-default .blog-article-container{
      padding: 30px 10px;
}
}

/* BLOG PAGE */

.blog .blog-above-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog .blog-above-title .blog-date{
    color: #4a4a4a;
    padding: 0 10px;
    margin-right: 15px;
    font-weight: 600;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
}

.blog .blog-container{
    margin: 80px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 16px #ddd;
}

.blog .blog-title{
    margin-bottom: 5px;
    text-align: center;
}

.blog .blog-subtitle{
    margin-bottom: 50px;
    text-align: center;
}

.blog .blog-posts-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog .post-container-left{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-article-image img{
    width: 100%;
    border-radius: 20px;
    height: 500px;
    object-fit: cover;
}

.blog .post-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 0 50px;
    border-bottom: 1px solid #ddd;    
}

.blog .post-title{
    margin: 5px 0 10px;
}

.blog .post-content{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #4a4a4a;
}

.blog .post-cat{
    border-radius: 4px;
    border: 1px solid;
    background: var(--mag);
    color: #fff;
    padding: 4px 8px;
}

.blog .post-tags{
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-grow: 1;
    flex-wrap: wrap;
}

.blog .post-tag{
    border-radius: 4px;
    border: 1px solid;
    padding: 4px 8px;
    color: #4a4a4a;
}

.blog .post-image img{
    border-radius: 8px;
}

.blog .post-image{
    max-height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.blog .blog-container {
    margin: 20px auto;
    max-width: 1260px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 16px #ddd;
}

@media (max-width: 992px){
    .blog .post-container {
        display: flex;
        flex-direction: column-reverse;
    }
    .blog .blog-container {
      padding: 40px 20px;
  }
}