* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* COLORS */
  --pink-dark: rgba(129, 18, 77, 1) 0%;
  --pink-normal: rgba(215, 41, 124, 1) 34.55%;
  --pink-light: rgba(243, 111, 175, 1) 70.61%;
  --pink-lighter: rgba(249, 137, 189, 1) 100%;
  --color-white: #fff;
  --color-black: #000;
  --blue-dark: rgba(8, 33, 134, 1) 70%;
  --blue-normal: #082186;
  --blue-light: #5461ad;
  --blue-translucent: #0821861e;
  --color-pink: #81124d;

  /* FONTS */
  --font-regular: "avenir_next_lt_proregular";
  --font-bold: "avenir_next_lt_probold";
}

html,
body {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  background: linear-gradient(
    45deg,
    var(--pink-dark),
    var(--pink-normal),
    var(--pink-light),
    var(--pink-lighter)
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

.container {
  display: flex;
}

/* COLUMNS */
.col-3 {
  width: 20%;
}

.col-9 {
  position: relative;
  width: calc(80% - 2px);
}

.bar {
  border: none;
  padding: 1.8px;
  margin: 17px 0 5px 0;
  background: var(--color-white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgb(224 224 224 / 70%) 64%,
    rgba(255, 255, 255, 0.7) 100%
  );
}

/* SIDEBAR */

.sidebar {
  position: relative;
  height: 100%;
  z-index: 999;
  box-shadow: 12px 0 10px -1px rgba(0, 0, 0, 0.1);
  bottom: 0;
}

.sidebar-content {
  min-height: 100vh;
  will-change: position;
  position: relative;
  background: linear-gradient(0deg, var(--blue-light), var(--blue-dark));
  transition: translateY 0.1s ease;
}

.sidebar-header {
  width: 90%;
  margin: 0 auto;
}

.logo {
  padding-top: 24px;
  height: auto;
  max-width: 100%;
}

.logo > img {
  cursor: pointer;
}

.sidebar-body {
  font-family: var(--font-regular);
  height: auto;
  background: rgba(8, 33, 134, 0.12);
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.8;
  border-radius: 6px;
  width: 90%;
  margin: 0 auto;
}

.content-header {
  font-family: var(--font-bold);
  padding: 16px;
  font-weight: bold;
}

.accordion-item {
  padding: 16px;
  cursor: pointer;
}

.accordion-button {
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px;
  background-color: #f5f5f5;
}

.accordion.btn {
  display: flex;
  justify-content: space-between;
  font-size: 14.4px;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  transition: all 2s ease;
}

.accordion-item.active .arrow svg {
  transform: rotate(-90deg) !important;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background-color: #fdfdfd;
  transition: max-height 0.5s ease-out;
  background-color: transparent;
}

.accordion.btn > .arrow svg {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.accordion-content {
  margin-top: 8px;
  font-size: 14.4px;
  list-style: none;
  background-color: var(--blue-translucent);
  border-radius: 7px;
  overflow: hidden;
}

.accordion-content > li:hover {
  background-color: var(--blue-normal);
  color: var(--color-white);
}

li.accordion-link.active {
  background-color: var(--blue-normal);
  color: var(--color-white);
}

li.accordion-link a {
  display: block;
  width: 100%;
  padding: 6.4px;
}

.sidebar-footer {
  overflow-wrap: break-word;
  color: var(--color-white);
  padding: 15px 25px;
  font-family: var(--font-regular);
  text-align: center;
}
.sidebar-footer a:hover {
  text-decoration: underline;
}
.sidebar-footer h3 {
  font-family: var(--font-bold);
  font-size: 13px;
  margin-bottom: 10px;
}

.sidebar-footer p,
.sidebar-footer span {
  font-size: 12px;
  margin-bottom: 5px;
}

.sidebar-footer span {
  display: block;
  padding-inline: 10px;
  font-size: 12px;
}

.sidebar-footer > ul {
  padding: 8px 16px;
  list-style-type: square;
}

.sidebar-footer > ul > li > a {
  color: var(--color-white);
}

.copyright {
  padding-top: 24px;
}

.divider {
  border: none;
  padding: 1.8px;
  background: var(--color-white);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(147, 147, 147, 0.98) 71%,
    rgba(255, 255, 255, 0.7) 100%
  );
  margin-top: 32px;
}

.line {
  border: none;
  background: linear-gradient(0deg, var(--blue-light), var(--blue-dark));
  opacity: 20%;
  padding: 1px;
}

/* SIDEBAR END */

/* MAIN */

.pagecontent {
  margin-top: 3px;
}

.content-page {
  display: flex;
  width: 100%;
  height: 100%;
}

.contentlist {
  display: flex;
  flex-direction: column;
  padding-right: 8px;
  width: 80%;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  padding: 0 32px;
}

/* .filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12.8px;
  padding: 0 32px;
}

.filter-button {
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--color-white)
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(147, 147, 147, 0.2) 100%
  );
  border-radius: 6px;
  border: 2px solid var(--color-white);
  color: var(--color-pink);
  opacity: 70%;
  transition: transform 0.6s ease;
}

.filter-button.fw-bold {
  font-size: 12px;
  text-transform: uppercase;
}

.filter-button.active {
  opacity: 100%;
}

.filter-button:hover:not(.active) {
  opacity: 90%;
  transform: translateY(-5px);
} */

.nav-content {
  height: 50px;
  display: flex;
  background: var(--color-white);
}

.nav-tabs {
  margin: 0 auto;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
}

.tab-item {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.4px;
  border-right: 1px solid var(--color-white);
  border-left: 1px solid var(--color-white);
  opacity: 60%;
  border-bottom: 5px solid var(--blue-normal);
  background: var(--color-white);
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(147, 147, 147, 0.3) 100%
  );
  font-family: var(--font-regular);
}

.tab-item span {
  display: flex;
}

.tab-item.active {
  opacity: 100%;
}

.focus-map {
  height: calc(100% - 50px);
  background-color: #f5cee1;
}

.content.active {
  flex: 1;
}

/* CARDS */

.cards-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card {
  max-width: 100%;
  min-height: 400px;
  padding: 32px;
  display: flex;
  gap: 32px;
  background: var(--color-white);
}

.card-img > img {
  border-radius: 10px;
  height: 340px;
  width: 300px;
  /* object-fit: cover; */
  border: 2px solid var(--color-white);
  outline: 5px solid #ffffff78;
  outline-offset: -5px;
}

.card-body {
  max-width: 570px;
  /* margin: auto 0; */
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
  /* justify-content: space-between; */
}

.ins-origin {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
}

.ins-origin div {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}

.ins-bottom {
  margin-top: auto;
}

.card-subtitle {
  font-size: 12px;
  margin-top: 10px;
}

.card-subtitle .logo-link {
  padding: 8px;
  background-color: #cccccc;
  border-radius: 8px;
  max-width: 250px;
  text-align: center;
}

.card-subtitle .logo-link > img {
  width: 100%;
  height: auto;
}

.ratings {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars > svg {
  fill: var(--color-pink);
}

.reviews-count {
  font-size: 14px;
}

.card-content {
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.find-btn {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: none;
  margin: auto 0 8px 0;
  border-radius: 8px;
  background-color: #f5cee1;
  color: #81124d;
  transition: 0.3s ease;
  text-decoration: none;
}

.find-btn:hover {
  background-color: #f578b4;
  color: var(--color-white);
}

/* 
.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.desc .card-title {
  /* margin-top: 32px; */
  font-size: 22px;
  margin-block: 1px 10px;
}

/* CARDS END */

/* GRID */
.tile-grid {
  padding: 32px;
}

.tile-card {
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  display: inline-block;
  width: calc(33.3% - 4px);
  margin: 2px;
  border-radius: 8px;
  overflow: hidden;
  transition: filter 0.3s ease;
  border: 0.1px solid transparent;
  outline: 0.1px solid #ffffff78;
  outline-offset: -0.1px;
}
/*BEGIN CAMBIATO DA ALBE */
/*.tile-card .favorites_toggle {
  position: absolute;
  top: 10px;
  right: 10px;
}

.tile-card .favorites_toggle .heartEmpty {
  cursor: pointer;
  height: 20px;
  width: 20px;
}*/
.annuncio_cliccabile {
  cursor: pointer;
}
.tile-card .favorites-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.tile-card .favorites-btn .heartEmpty {
  cursor: pointer;
  height: 30px;
  width: 30px;
}
.tile-card .favorites-btn .heartFilled {
  cursor: pointer;
  height: 30px;
  width: 30px;
}
.tile-card .favorites-btn {
  background-color: transparent;
  border: none;
}
.tile-card .favorites-btn.active {
  background-color: transparent;
  border: none;
}

/*END CAMBIATO DA ALBE  */
.tile-card .favorites_toggle .heartEmpty path {
  fill: var(--color-white);
}

.tile-card:hover {
  filter: brightness(0.8);
}

.tile-card:active {
  filter: brightness(0.6);
  transform: translateY(1px);
}

.tile-inserzione-img {
  display: block;
  width: 100%;
}

.tile-title {
  font-weight: bold;
  font-family: var(--font-regular);
}

.tile-age,
.tile-city {
  font-size: 13px;
  font-family: var(--font-regular);
}

.info-tile-inserzione {
  position: absolute;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: 0;
  padding: 10px;
  text-shadow: 1px 0 #525252;
  color: var(--color-white);
}

.container_desktop {
  max-width: 1920px;
  margin: 0 auto;
}

.navigation {
  margin-top: 32px;
  padding: 20px 0;
  font-family: var(--font-regular);
  background-color: var(--color-white);
}

.pagination {
  margin: 0 auto;
  border-radius: 10px;
  width: max-content;
}

.page-btn {
  color: #b45b86;
  display: inline-block;
  margin-right: -1px;
  border: 1px solid #f5cee1;
  border-left: none;
}

.page-btn:not(.active):hover {
  background-color: #eee;
}

.page-btn a,
.page-btn span {
  display: block;
  padding: 15px 17px;
}

.page-btn.next-page {
  margin: 0;
}

.page-btn:first-child {
  border-radius: 20px 0 0 20px;
  border-left: 1px solid #f5cee1;
}

.page-btn:last-child {
  border-radius: 0 20px 20px 0;
}

.page-btn.active {
  position: relative;
  z-index: 3;
  background-color: #e84792;
  border-color: #e84792;
  color: var(--color-white);
}

.page-btn.prev-page span,
.page-btn.next-page span {
  display: block;
  padding: 15px 17px;
  color: #81124d;
}

.page-btn.prev-page.disabled span,
.page-btn.next-page.disabled span {
  color: gray;
  cursor: not-allowed;
}

@media screen and (max-width: 1000px) {
  .tile-card {
    width: calc(50% - 7px);
  }
}

@media screen and (min-width: 1550px) {
  .tile-card {
    width: calc(25% - 8px);
  }
}

/* GRID END */

/* BANNER */

.banner {
  width: 20%;
}

.banner-list {
  min-height: 100vh;
  will-change: position;
  position: relative;
}

.banner-item {
  margin-bottom: 2px;
}

.banner-item > img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

/* BANNER END */

.hl {
  background-color: #f4f4f4;
}

.btn {
  cursor: pointer;
}

.fw-bold {
  font-weight: bold;
}

.fw-lighter {
  font-weight: lighter;
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border: 2px solid #f576b3;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f576b3;
}

/* SCROLLBAR END */

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #e667a4;
}

.filters-group {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  padding: 20px 32px;
}

/* .button-card .favorites-btn {
  width: 100%;
  height: 38px;
  border: 1px solid #f5cee1;
  margin: auto 0 8px 0;
  border-radius: 8px;
  background-color: #ffff;
  color: #b45b86;
  transition: 0.3s ease;
  cursor: pointer;
} */

.favorites-btn .heartFilled,
.favorites-btn .text-active {
  display: none;
}

.favorites-btn .heartEmpty,
.favorites-btn .text-inactive {
  display: block;
}

.favorites-btn.active {
  background-color: #f5cee1;
  color: #81124d;
}

.favorites-btn.active .heartEmpty,
.favorites-btn.active .text-inactive {
  display: none;
}

.favorites-btn.active .heartFilled,
.favorites-btn.active .text-active {
  display: block;
}

.tel-btn .text-active {
  font-weight: bold;
  font-size: clamp(20px, 2vw, 40px);
  display: block;
  color: #f58dbe;
}

.tel-btn {
  background: transparent;
  font-family: var(--font-bold);
}

/* FILTER DROPDOWN END */

/* SCROLL TO TOP BTN START */
.top {
  display: none;
  font-size: 12px;
  opacity: 0.8;
  position: fixed;
  width: 60px;
  height: 120px;
  border-radius: 16px 16px 0 0;
  bottom: 0;
  right: 17%;
  z-index: 3;
  background-color: #ef64a7;
  color: var(--color-white);
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.top-arrow {
  transition: transform 0.8s ease;
}

.top:hover {
  opacity: 1;
}

.top:hover .top-arrow {
  transform: translateY(-10px);
}

/*SCROLL TO  TOP BTN END */

/*--------- comparativa-------------*/
.container-content {
  background-color: #f5cee1;
}

.mask_display.active {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  top: 0;
  left: 0;
}

.filter-dropdown,
.category-dropdown {
  position: relative;
  display: inline-block;
  user-select: none;
  width: 200px;
}

.filter-dropdown-label,
.category-dropdown-label,
.btn_favorite {
  font-family: var(--font-bold);
  text-transform: uppercase;
  height: 46px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: var(--color-white);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(147, 147, 147, 0.2) 100%
  );
  border-radius: 6px;
  border: 2px solid var(--color-white);
  color: #81124d;
  opacity: 70%;
  font-weight: bold;
  font-size: 14px;
}

.btn_favorite {
  margin-left: auto;
}

.active_path {
  color: var(--color-white);
  text-transform: uppercase;
}

.filter-dropdown-options {
  font-family: var(--font-regular);
  max-height: 215px;
  display: none;
  background-color: var(--color-white);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
}

.filter-dropdown-options.active {
  display: block;
}

.filter-dropdown-option {
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-dropdown-option a {
  display: block;
  width: 100%;
  padding: 10px;
}

.category-dropdown-option {
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.category-dropdown-option img {
  display: block;
  left: 0;
  top: 0;
  position: relative;
  width: 100%;
  padding: 12px;
  height: 45px;
}

.category-dropdown-option label {
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  padding: 10px;
}

.filter-dropdown-option:hover {
  background-color: #f4f4f4;
}

.filter-dropdown-option.active {
  background-color: #f989bd;
  color: var(--color-white);
}

.op,
.active {
  opacity: 100%;
}
div.all_site {
  padding: 12px;
  font-family: "avenir_next_lt_probold";
  text-align: center;
  width: 100%;
  color: white;
}

.category-dropdown-options {
  background-color: var(--color-white);
  display: none;
  font-family: var(--font-regular);
  background: linear-gradient(-200deg, #5461ad, rgba(8, 33, 134, 1) 70%);
  padding: 12px 0;
}
.category-dropdown-option {
  transition: 0.5s all;
}

.category-dropdown-option:hover {
  background: rgba(255, 255, 255, 0.2);
}
.category-dropdown-options.active {
  display: block;
}

.hide {
  display: none;
}

.outer {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 0;
}

.tile-list .favorites-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 38px;
  margin-left: auto;
  width: 100%;
  border: 1px solid #f5cee1;
  font-family: var(--font-regular);
  margin: auto 0 8px 0;
  border-radius: 8px;
  background-color: #ffff;
  color: #b45b86;
  transition: 0.3s ease;
  cursor: pointer;
}

.favorites-btn .heartFilled,
.favorites-btn .text-active {
  display: none;
}

.favorites-btn .heartEmpty,
.favorites-btn .text-inactive {
  display: block;
}

.favorites-btn.active {
  background-color: #f5cee1;
  color: #81124d;
}

.favorites-btn.active .heartEmpty,
.favorites-btn.active .text-inactive {
  display: none;
}

.favorites-btn.active .heartFilled,
.favorites-btn.active .text-active {
  display: block;
}

.grid-buttons {
  display: flex;
  gap: 10px;
}

.grid-buttons span .heartEmpty,
.grid-buttons span .heartFilled {
  height: 100%;
}

.grid-buttons .favorites-btn {
  border: none;
  background-color: transparent;
  width: auto;
  margin: 0;
}

/*MOBILE*/
.mobile_layout {
  display: none;
}

.logo img {
  width: 60px;
  position: relative;
  vertical-align: middle;
}

.logo .container_logo img {
  margin-bottom: 4px;
  width: 100%;
}

.logo .subtitle {
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 5px;
  font-weight: 100;
  font-family: var(--font-regular);
}

.logo .container_logo {
  width: calc(100% - 65px);
  display: inline-block;
  vertical-align: middle;
}

.info-tile-inserzione .tile-origin {
  position: absolute;
  bottom: 10px;
  right: 5px;
  background-color: #ffffffb6;
  border-radius: 8px;
}

.info-tile-inserzione .tile-origin .logo-link {
  max-width: 70px;
  /* padding: 2px 8px; */
}

.info-tile-inserzione .tile-origin .logo-link img {
  width: 100%;
  max-height: 20px;
  display: block;
  padding: 5px;
}

.search-bar {
  position: relative;
  width: 90%;
  margin: 0 auto 10px;
}
.search-bar > input {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(196, 196, 196, 0.9) 90%,
    rgba(255, 255, 255, 0.8) 100%
  );
  width: 100%;
  position: relative;
  padding-block: 9.6px;
  padding-inline: 9.6px 27px;
  border-radius: 6px;
  outline: none;
  border: none;
  font-family: var(--font-regular);
}
.search-icon {
  position: absolute;
  width: 16px;
  top: 50%;
  right: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.search-tip {
  font-size: 14px;
  width: 90%;
  margin: 10px auto;
  font-family: var(--font-regular);
  color: var(--color-white);
}

.card-title #inserzione-name {
  font-family: var(--font-bold);
  font-size: 20px;
  text-transform: uppercase;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  word-break: auto-phrase;
}
.card-title #inserzione-details {
  font-size: 16px;
  margin-top: 20px;
}
.annuncio-desc,
.info-annuncio div {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  word-break: auto-phrase;
}

.card-title #inserzione-details .ann_category,
.card-title #inserzione-details .ann_city {
  text-transform: uppercase;
  font-family: var(--font-regular);
}

.card-title #inserzione-details .ann_category {
  margin-right: 10px;
}

.card-title #inserzione-details .ann_category:hover,
.card-title #inserzione-details .ann_city:hover {
  text-decoration: underline;
}

#inserzione_detail_grid .ann_category,
#inserzione_detail_grid .ann_city {
  font-size: 13px;
  font-family: var(--font-regular);
  opacity: 0.9;
}

#inserzione_detail_grid .ann_category:hover,
#inserzione_detail_grid .ann_city:hover {
  text-decoration: underline;
}

.ins-bottom .ins-origin .annuncio-label {
  font-family: var(--font-bold);
}

/* ----404---- */
.lost-page {
  background-color: #fff;
  height: 100vh;
}
.lost-page nav {
  width: 100%;
  height: auto;
  background: linear-gradient(0deg, var(--blue-light), var(--blue-dark));
}
.lost-page nav .logo {
  padding-block: 20px;
  padding-left: 15px;
}

.lost-page nav .logo img {
  height: 50px;
  width: 250px;
}

.lost-page .lost-hero h1 {
  position: absolute;
  top: 40%;
  left: 50%;
  color: #e6e6e6;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 500px;
}

.scribble {
  position: absolute;
  z-index: 1;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lost-content .img_block {
  position: absolute;
  left: 5%;
  z-index: 2;
  bottom: 0;
}
.lost-content .img_block img {
  display: block;
  height: 100%;
}
.desc {
  word-break: break-all;
}
.spinner.active {
  display: block;
}

.tile-list .favorites-btn.loading > *:not(.spinner) {
  display: none;
}
.tile-list .favorites-btn.loading .spinner {
  display: block;
  border-top-color: #b45b86;
}
.tile-list .favorites-btn.loading.active .spinner {
  border-top-color: #81124d;
}
.spinner {
  display: none;
  margin: 0 auto;
  width: 25px;
  height: 25px;
  border: 3px solid transparent;
  border-top-color: #777777;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.filter_favorites {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

/* -----annuncioMamiblue------ */

.annuncio-pagecontent {
  height: calc(100% - 26px);
}

.content {
  height: 100%;
}
.cover-content {
  position: relative;
  max-height: 550px;
  max-width: 1000px;
}

.container-annuncio {
  display: flex;
  padding: 32px;
  background-color: #fff !important;
  height: 100%;
}
.col-6 {
  width: 70%;
}
.col-4 {
  width: 30%;
}
.sticky {
  position: sticky;
  top: 2px;
}

.return-btn {
  display: block;
  width: max-content;
  cursor: pointer;
  font-family: var(--font-regular);
  font-weight: 700;
  padding: 5px;
  border: none;
  background-color: rgba(245, 121, 180, 78%);
  color: var(--color-white);
  border-radius: 9px;
  margin-bottom: 12px;
  transition: filter 0.3s ease;
}

.return-btn:hover {
  filter: brightness(0.9);
}
.return-btn:active {
  filter: brightness(0.8);
}

.return-btn .inner {
  display: block;
  width: 240px;
  background-color: #f58dbe;
  border-radius: 4px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.image-primary {
  cursor: pointer;
  position: relative;
  width: 100%;
  /* border-radius: 4px; */
  overflow: auto;
}
.image-primary img {
  position: relative;
  display: inline-block;
  width: 450px;
  height: 550px;
}

.btns-container {
  width: 100%;
  padding-left: 16px;
  margin-top: 48px;
  font-family: var(--font-regular);
}

.favorites-btn.btn-primary {
  border: 1px solid #f5cee1;
  background-color: var(--color-white);
  color: #b45b86;
  cursor: pointer;
}

.btns-container .button-card .favorites-btn .heartFilled,
.btns-container .button-card .favorites-btn .text-active {
  display: none;
}
.btns-container .button-card .favorites-btn .heartEmpty,
.btns-container .button-card .favorites-btn .text-inactive {
  display: block;
}

.btns-container .button-card .favorites-btn.active {
  background-color: #f5cee1;
  color: #81124d;
  font-family: var(--font-regular);
}

.btns-container .button-card .favorites-btn.active .heartEmpty,
.btns-container .button-card .favorites-btn.active .text-inactive {
  display: none;
}

.btns-container .button-card .favorites-btn.active .heartFilled,
.btns-container .button-card .favorites-btn.active .text-active {
  display: block;
}

.btn-primary {
  width: 100%;
  border: 0;
  padding: 11.2px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 8px;
  text-decoration: none;
  font-size: 14.4px;
  transition: filter 0.3s ease;
}

.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-primary:active {
  filter: brightness(0.8);
}

.btn-primary.whatsapp-btn {
  background-color: #25d366;
}

.btn-primary.reviews-btn {
  background-color: #3b5998;
}

.btn-primary.call-btn {
  background-color: #f576b3;
}

.annuncio-desc {
  text-align: justify;
  font-family: var(--font-regular);
}
.remove_adv {
  margin-top: 100px;
}
.other_info {
  font-family: var(--font-regular);
  font-size: 14.4px;
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}
.logo-link:hover {
  opacity: 0.5;
}
.other_info tr {
  border-bottom: 1px solid #e5e5e5;
  height: 40px;
}
.other_info tr td.name_info {
  font-family: var(--font-bold);
}
td.value_info {
  padding-left: 15px;
}

/* td.value_info .info_citta,
td.value_info .info_sito_provenienza,
td.value_info .info_category {
  display: inline-block;
} */
td.value_info a,
td.value_info .info_citta,
td.value_info .info_sito_provenienza,
td.value_info .info_category {
  display: inline-block;
  border-radius: 8px;
  padding: 4px;
  transition: all 0.3s ease;
}

td.value_info a:hover,
td.value_info .info_citta:hover,
td.value_info .info_sito_provenienza:hover,
td.value_info .info_category:hover {
  background-color: #80808052;
}
.remove_adv {
  font-family: var(--font-regular);
}

.btn_remove_adv {
  background: transparent;
  border: none;
  font-family: var(--font-regular);
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  font-style: italic;
}

.info-insertion {
  margin-top: 8px;
}

.info-insertion > div:first-child {
  font-size: 12.8px;
}

.info-insertion .location {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #f576b3;
  padding: 8px;
  border-radius: 8px;
  margin-top: 8px;
}
.username {
  margin-top: 16px;
}

.username h2 {
  font-weight: 400;
}

.decoration {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20.8px;
  font-family: var(--font-bold);
}

.decoration svg {
  color: #f576b3;
}

.description-insertion {
  max-width: 600px;
}

.info-annuncio {
  padding-left: 16px;
  font-family: var(--font-regular);
}

.info-annuncio .header-annuncio,
.info-annuncio .element strong {
  font-family: var(--font-bold);
}

.info-annuncio .element strong {
  font-size: 12px;
}

.info-annuncio .header-annuncio {
  font-size: 14.4px;
}

.info-annuncio .header-annuncio > div {
  padding: 6.4px;
  background-color: #f8f8f8;
}

.info-annuncio .header-annuncio > div:nth-child(2) {
  place-items: center;
}

.info-annuncio .header-annuncio > div:nth-child(3) {
  place-items: end;
}

.info-annuncio .element {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #e5e5e5;
  font-size: 14.4px;
}

.info-annuncio .element > strong,
.info-annuncio .element > div {
  text-transform: capitalize;
  display: grid;
  padding: 6.4px;
}

.info-annuncio .element > div:nth-child(2) {
  place-items: start;
}

.info-annuncio .element > div:nth-child(3) {
  place-items: end;
}

.header-info-insertion {
  background-color: #f8f8f8;
  padding: 4.8px 8px 0 16px;
  display: flex;
  margin-top: 32px;
}

.selector-info {
  padding: 16px;
  cursor: pointer;
  user-select: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.selector-info.active {
  background-color: #fff;
  color: #7a7a7a;
  font-weight: bold;
}

.info-section.home .number {
  display: flex;
  align-items: center;
  gap: 4.8px;
  padding: 32px 0;
}

.info-section.home .number svg {
  width: 23px;
  height: auto;
}

.personal-information {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.32px;
}

.media-section {
  margin-block: 18px;
}

.media-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-bold);
}

.info-section.home .separator {
  height: 9px;
  background-color: #eeeeee;
  margin: 40px 0;
}

.info-section.home .reviews-section h3 {
  display: flex;
  align-items: center;
  gap: 4.8px;
}

.info-section.home .reviews-section h3 svg {
  width: 23px;
  height: auto;
}

.info-section.home .summary-reviews {
  display: flex;
}

.info-section.home .summary-reviews .ratings-star {
  margin: 16px 0;
}

.info-section.home .summary-reviews .btns-reviews > div {
  background-color: #eeeeee;
  color: #333333;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12.8px;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 8px;
}

.info-section.home .summary-reviews .r-container {
  width: 70%;
  margin: 16px 0 0 16px;
}

.info-section.home .summary-reviews .r-container .rating-progress {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  text-transform: uppercase;
  font-size: 12.8px;
  font-weight: bold;
  color: #777777;
  padding: 4.8px 0;
}

.info-section.home
  .summary-reviews
  .r-container
  .rating-progress
  > div:first-child {
  display: grid;
  place-items: end;
}

.info-section.home
  .summary-reviews
  .r-container
  .rating-progress
  .percentage-rating {
  max-width: 40px;
  text-align: end;
}

.info-section.home .summary-reviews .r-container .rating-progress .progress {
  background-color: #eeeeee;
  border-radius: 4px;
  overflow: hidden;
  padding: 0.32px;
  margin: 0 8px;
  height: 18px;
}

.info-section.home
  .summary-reviews
  .r-container
  .rating-progress
  .progress-bar {
  width: 80%;
  height: 100%;
  background-color: #fdae16;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* gallery */

.gallery-wrapper,
.video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 32px;
}

.gallery-carousel,
.video-carousel {
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar,
.video-carousel::-webkit-scrollbar {
  display: none !important;
}

.carousel-container {
  height: 100%;
}
/* 
.img-cell {
  max-width: 120px;
  height: 120px;
  background-color: #b45b8681;
  cursor: pointer;
} */

.img-cell img {
  /* width: calc(150px / 1.28);
  height: calc(180px / 1.28); */
  width: 150px;
  height: 180px;
}

/* video carousel */

/* .prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.prev {
  left: 0;
}

.next {
  right: 0;
} */

.filter-dropdown-label.active,
.category-dropdown-label.active {
  text-align: center;
  font-family: "avenir_next_lt_probold";
  background: linear-gradient(-200deg, #5461ad, rgba(8, 33, 134, 1) 70%);
  color: white;
}
.filter-dropdown-label.active > strong,
.category-dropdown-label.active > strong {
  width: 100%;
}

.img-cell,
.prev,
.next {
  width: auto;
  color: white;
  display: block;
  cursor: pointer;
  /* height: 180px; */
  /* height: calc(140px / 1.28); */
  height: calc(140px - 1.28);
  position: relative;
  margin-top: 5px;
  transition: filter 0.3s ease;
}

.img-cell:first-child {
  margin-top: 0 !important;
}

.img-cell:hover {
  filter: brightness(0.8);
}

.prev,
.next {
  transition: filter 0.3s ease;
  height: 60px;
  position: fixed;
  z-index: 2;
  width: 150px;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0;
  user-select: none;
}

.prev {
  top: -70px;
  transition: top 0.5s;
}

.next {
  bottom: 0;
  transition: bottom 0.5s;
}

.prev:active,
.next:active {
  filter: brightness(0.9);
}

.prev svg,
.next svg {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-container {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 0 32px;
  overflow: hidden;
  transform: translateY(-50%);
}

.carousel {
  width: 150px;
  display: block;
  overflow-y: auto;
  scrollbar-width: none;
  height: 550px;
  top: 0;
  position: relative;
  margin-left: 10px;
  left: 5px;
}

/* .carousel-container-mobile {
  overflow: hidden;
}

.carousel-mobile {
  width: 100%;
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  height: auto;
  position: relative;
}

.carousel-mobile .img-cell,
.carousel-mobile .prev,
.carousel-mobile .next {
  width: auto;
  color: white;
  display: inline-block;
  cursor: pointer;
  /* height: 180px; 
  height: calc(140px / 1.28);
  position: relative;
  margin-top: 5px;
  transition: filter 0.3s ease;
} */

.image-selected {
  position: relative;
  background: #ccc;
  height: 550px;
  top: 0;
  left: 0;
  text-align: center;
}

.lb_gfarm.bg {
  display: block;
  z-index: 99999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.lb_gfarm .close {
  cursor: pointer;
  position: absolute;
  top: calc(3% - 10px);
  right: calc(3% - 10px);
  color: var(--color-white);
  background-color: var(--color-white);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.lb_gfarm .close svg {
  fill: var(--color-black);
  width: 10px;
  height: auto;
}

.lb_gfarm.img {
  display: block;
  border: 10px solid var(--color-white);
  position: fixed;
  z-index: 9999999;
  max-height: 97%;
  max-width: 97%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lb_gfarm .close:hover {
  filter: brightness(0.7);
}

/* ===annuncio mobile==== */
.content-mobile {
  position: relative;
  top: 90px;
  width: calc(100% - 10px);
  margin: 0 auto;
  height: auto;
  background-color: var(--color-white);
}
.content-mobile img {
  width: 100%;
}

.decoration-mobile {
  margin: 16px 0;
  font-size: 20px;
  font-family: var(--font-bold);
  padding: 0 10px;
}

.annuncio-desc-mobile {
  padding: 0 10px;
  text-align: justify;
  font-family: var(--font-regular);
}

@media screen and (max-width: 1440px) {
  .image-primary img {
    position: relative;
    display: inline-block;
    width: calc(450px / 1.28);
    height: calc(550px / 1.28);
  }
  .carousel-container {
    left: 308px;
  }
  .carousel {
    width: 150px;
    display: block;
    overflow-y: auto;
    scrollbar-width: none;
    height: calc(550px / 1.28);
    top: 0;
    position: relative;
    margin-left: 10px;
    left: 5px;
  }
  .img-cell img {
    width: calc(150px / 1.28);
    height: calc(180px / 1.28);
  }

  .prev,
  .next {
    width: calc(150px / 1.28);
  }
}
