/* generic */
@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-regular-webfont.woff2") format("woff2"),
    url("../font/poppins-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/poppins-bold-webfont.woff2") format("woff2"),
    url("../font/poppins-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/roboto-medium-webfont.woff2") format("woff2"),
    url("../font/roboto-medium-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/roboto-bold-webfont.woff2") format("woff2"),
    url("../font/roboto-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

body {
  line-height: 1.5;
  background-color: #000000;
}
body #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body #wrapper #content {
  /* background-color: transparent;
  background-image: linear-gradient(180deg, #000000 5%, #930025 15%); */
  background: linear-gradient(180deg, #000000 0%, #6a0000 100%);
}
body #wrapper #content .muzicalist-page-title {
  color: #fff;
  position: relative;
  margin-bottom: 30px;
}
body #wrapper #content .muzicalist-page-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #d30033;
}
body #wrapper #content .page-content {
  color: #dddddd;
}

.text-red {
  color: #930025;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  display: none;
}

/* .performer-template-default.single-performer main {
  background-image: linear-gradient(
    180deg,
    #000000 5%,
    #930025 19.5%
  ) !important;
} */

/* not found page */
.not-found-page {
  text-align: center;
  padding: 50px 0;
}
.not-found-page img {
  max-width: 100%;
}

/* search */
.performer-search .search-result {
  padding: 50px 0;
}
.performer-search .search-result .page-title {
  color: #fff;
  font-size: 32px;
}
.performer-search .search-result .page-title span {
  color: #fee2a3;
  font-weight: 700;
}
.performer-search .search-result .page-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #d30033;
}
.performer-search .search-result .results {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 1rem;
}
.performer-search .search-result .results .navigation {
  display: none;
}
.performer-search .search-result .results .result.performer {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border: 2px solid #fdcb61;
  border-radius: 15px;
}
.performer-search .search-result .results .result.performer .image img {
  border-radius: 50%;
  width: 100%;
  max-width: 100px;
}
.performer-search .search-result .results .result.performer .content {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.performer-search .search-result .results .result.performer .content .tags {
  margin-bottom: 5px;
}
.performer-search
  .search-result
  .results
  .result.performer
  .content
  .tags
  .county,
.performer-search
  .search-result
  .results
  .result.performer
  .content
  .tags
  .specialization {
  background: #fee2a3;
  padding: 4px 10px;
  border-radius: 40px;
  margin-left: 8px;
  margin-bottom: 5px;
}
.performer-search .search-result .results .result.performer .content h3 {
  padding-left: 10px;
  margin-bottom: 0;
  color: #fdcb61;
}
.performer-search .search-result .results .result.performer .content h3 a {
  text-decoration: none;
  min-height: inherit;
  overflow: hidden;
  display: block;
  position: relative;
  color: inherit;
  font-weight: 700;
}
.performer-search
  .search-result
  .results
  .result.performer
  .content
  h3
  a:hover:after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.performer-search
  .search-result
  .results
  .result.performer
  .content
  h3
  a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  /* background-color: #fdcb61; */
  border-radius: 0.1em;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translate3d(-100%, 0, 0);
}
.performer-search .search-result .results .no-result {
  color: #fff;
}
.nav-previous a,
.nav-next a {
  color: #fff;
}

/* Header */
header .main-header {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
header .main-header .logo {
  max-width: 80px;
}
header .main-header .logo img {
  width: 100%;
  border-radius: 50%;
  height: auto;
}
header .main-header #searchform {
  display: flex;
}
header .main-header #searchform input {
  border-radius: 20px 0 0 20px;
  box-shadow: none;
  outline: none;
  border: 1px solid #930025;
  background: #930025;
  color: #fff;
  padding: 4px 10px;
  max-width: 170px;
}
header .main-header #searchform input::placeholder {
  color: #fff;
}
header .main-header #searchform input::-ms-input-placeholder {
  color: #fff;
}
header .main-header #searchform button {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  border-radius: 0 20px 20px 0;
  outline: none;
  border: 1px solid #930025;
  background: #930025;
  padding: 0 10px;
}
header .main-header .main-menu-wrapper .menu {
  list-style: none;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
header .main-header .main-menu-wrapper .menu li {
  font-size: 15px;
}
header .main-header .main-menu-wrapper .menu li a {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 10px;
}
header .main-header .buttons {
  display: flex;
  align-items: center;
}
.side-menu-toggle-x {
  display: none !important;
}
header .main-header .buttons .side-menu-toggle.active {
  display: none;
}
header .main-header .buttons button {
  background: #6a0000;
  border: 2px solid #fff;
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
}
header .main-header .buttons button i {
  margin-right: 10px;
}
header .main-header .side-menu-toggle-x,
header .main-header .side-menu-toggle {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
}
header .main-header .side-menu-toggle-x .top,
header .main-header .side-menu-toggle-x .middle,
header .main-header .side-menu-toggle-x .bottom,
header .main-header .side-menu-toggle .top,
header .main-header .side-menu-toggle .middle,
header .main-header .side-menu-toggle .bottom {
  height: 5px;
  /* background: #930025; */
  background: #fff;
  border-radius: 5px;
  margin: 3px 0;
  transform-origin: left;
  transition: all 0.5s;
}
header .main-header .side-menu-toggle.active .top {
  transform: rotate(45deg);
}
header .main-header .side-menu-toggle.active .middle {
  transform: translateX(1rem);
  opacity: 0;
}
header .main-header .side-menu-toggle.active .bottom {
  transform: rotate(-45deg);
}
header .main-header .side-menu {
  position: fixed;
  top: 0;
  right: -390px;
  height: 100%;
  width: 300px;
  z-index: 9999;
  box-shadow: -14px 0px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
  background-color: #920025;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .main-header .side-menu .side-menu-toggle {
  position: absolute;
  right: 0;
}
header .main-header .side-menu .side-menu-toggle .top,
header .main-header .side-menu .side-menu-toggle .middle,
header .main-header .side-menu .side-menu-toggle .bottom {
  background: #fff;
}
header .main-header .side-menu .side-menu-content {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}
header .main-header .side-menu.active {
  right: 0;
}
header .main-header .side-menu button {
  background: #fff;
  border: 2px solid #fff;
  color: #000;
  padding: 5px 20px;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
}
header .main-header .side-menu .main-menu-wrapper {
  display: none;
  margin: 50px 30px 15px;
  padding: 15px;
  border: 1px solid #000;
}
header .main-header .side-menu .main-menu-wrapper ul {
  flex-direction: column;
  align-items: start;
  padding: 0;
}
header .main-header .side-menu .main-menu-wrapper ul li a {
  font-weight: 600;
  display: block;
  margin: 10px 0;
  text-transform: initial;
}
.main-menu-wrapper .menu-item-2855,
.main-menu-wrapper .menu-item-2843,
.main-menu-wrapper .menu-item-2959,
.main-menu-wrapper .menu-item-3010 {
  display: none;
}
.main-menu-wrapper.logged .menu-item-2778,
.main-menu-wrapper.logged .menu-item-2855,
.main-menu-wrapper.logged .menu-item-2959,
.main-menu-wrapper.logged .menu-item-3010 {
  display: revert;
}
.main-menu-wrapper.logged .menu-item-2769 {
  display: revert;
}
.main-menu-wrapper .menu-item-2769 {
  display: none;
}
.main-menu-wrapper.logged .menu-item-67,
.main-menu-wrapper.logged .menu-item-2986 {
  display: none;
}

/* Footer */
#footer {
  margin-top: auto;
  /* padding: 20px 0 0; */
  padding: 0px 0 0;
}
#footer .main-footer {
  padding: 80px 0 50px 0;
  background: #000000;
}
#footer .main-footer .logo img {
  max-width: 85px;
  border-radius: 50%;
}
#footer .main-footer .footer-col-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
#footer .main-footer ul {
  list-style: none;
  padding: 0;
}
#footer .main-footer ul li {
  padding-bottom: 2px;
}
#footer .main-footer ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
}
#footer .main-footer ul li a i {
  display: flex;
  align-items: center;
  font-size: 14px;
  width: 17px;
}
#footer .main-footer ul li a span {
  padding-left: 5px;
}
#footer .main-footer ul li a:hover {
  text-decoration: none;
  color: #930025;
}
#footer .copyright {
  padding: 30px 0 20px 0;
  background-color: transparent;
  /* background-image: linear-gradient(180deg, #000000 0%, #930025 100%); */
  background: linear-gradient(180deg, #000000 0%, #6a0000 100%);
}
#footer .copyright p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
#footer .copyright a {
  color: #fff;
}

/* Performer specialization page */
.performer-specialization .top-regions .top-title {
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fee2a3;
  text-shadow: -2px 4px 0 rgba(0, 0, 0, 0.3);
}
.performer-specialization .top-regions .specialization {
  background: url("/wp-content/themes/muzicalist/assets/images/bg-2.jpg") center
    center/cover no-repeat;
  text-align: center;
  color: #bd0c0c;
  /* font-size: 22px;
  font-weight: 700;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1); */
}
.performer-specialization .top-regions .regions-wrapper {
  padding: 10px;
}
.performer-specialization .top-regions .regions-wrapper .region .title {
  padding: 25px;
  background: url("/wp-content/themes/muzicalist/assets/images/region-bg.png")
    center center/contain no-repeat;
  text-transform: uppercase;
  color: #373737;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto -7px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1);
}
.performer-specialization .counties {
  background: #000;
  padding: 20px;
}
.performer-specialization .counties h5 {
  font-size: 30px;
  color: #930025;
  font-weight: 700;
  text-align: center;
}
.performer-specialization .counties .counties-wrapper {
  margin-top: 30px;
}
.performer-specialization .counties .counties-wrapper ul.counties {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.performer-specialization .counties .counties-wrapper ul.counties li {
  color: #d30033;
}
.performer-specialization .counties .counties-wrapper ul.counties li a {
  text-decoration: none;
  padding: 10px;
  margin: 0 0 10px;
  border: 1px solid #d6b359;
  display: block;
  text-align: center;
  background: #b4812c;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1);
}

/* Performers slider */
.performers-slider-wrapper {
  padding-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.performers-slider-wrapper .performer-slide {
  position: relative;
  /* padding: 30px; */
  /* background: url("/wp-content/themes/muzicalist/assets/images/performer-slide-bg.jpg") center center/contain no-repeat; */
  border-radius: 20px;
  border: 2px solid rgba(241, 192, 0, 1);
  min-width: 200px;
  max-width: 250px;
  width: 100%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.perf-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.performers-slider-wrapper .performer-slide.unavailable .performer-info .name {
  color: #938686;
}
.performers-slider-wrapper .performer-slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.performers-slider-wrapper .performer-slide .performer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
.performers-slider-wrapper .performer-slide .performer-info .name {
  font-size: 28px;
  margin-bottom: 0;
  text-align: center;
  color: #fee2a3;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1);
}
.performers-slider-wrapper .performer-slide .performer-info .icons {
  display: flex;
  justify-content: center;
}
.performers-slider-wrapper .performer-slide .performer-info .icons button {
  padding: 0;
}
.performers-slider-wrapper .performer-slide .performer-info .icons i {
  font-size: 60px;
  color: #930025;
  padding: 10px 15px;
  cursor: pointer;
}
.performers-slider-wrapper .performer-slide .performer-info .icons i:hover {
  color: #bf9243;
}
.performers-slider-wrapper .performer-slide.unavailable .performer-info {
  display: block !important;
  padding: 20px 0;
}

/* Performer county page */
.performer-county {
  /* background: #000; */
  background: linear-gradient(180deg, #000000 0%, #6a0000 100%);
}
.performer-county .top-content .top-title {
  font-size: 46px;
  font-weight: 700;
  /* text-transform: uppercase; */
  text-align: center;
  color: #fff;
  text-shadow: -2px 4px 0 rgba(0, 0, 0, 0.3);
}
.performer-county .top-content .county-gallery-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
  display: none;
}
.performer-county .top-content .county-gallery-slider-wrapper img {
  width: 100%;
}
.performer-county .specializations .specialization-wrapper .specialization h3 {
  position: relative;
  padding: 10px 0;
  /* background: rgb(214, 179, 89);
  background: radial-gradient(circle, #d6b359 0%, rgb(178, 126, 42) 35%, rgb(236, 216, 152) 100%); */
  text-align: center;
  color: #bf9243;
  font-size: 32px;
  font-weight: 700;
  margin: 0 -10px 0;
  /* text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1), 0 18px 23px rgba(0, 0, 0, 0.1); */
  text-decoration: underline;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-underline-offset: 20px;
}
.performer-county
  .specializations
  .specialization-wrapper
  .specialization
  h3
  a {
  position: absolute;
  right: 10px;
  background: #6a0000;
  color: #fff;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1);
}

/* Performer county specialization page */
.performer-county-specialization {
  padding: 50px 0;
  background: #000;
}
.performer-county-specialization .top-content .top-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #bf9243;
  /* color: #fdcb61; */
  text-shadow: -2px 4px 0 rgba(0, 0, 0, 0.3);
}
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border: 2px solid #fdcb61;
  border-radius: 10px;
}
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  img {
  max-width: 100px;
  margin-right: 30px;
  border-radius: 10px;
}
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  h4,
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  a {
  font-size: 30px;
  font-weight: 700;
  color: #bf9243;
}
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  a {
  min-height: inherit;
  overflow: hidden;
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* .performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  a:hover {
  color: #6f6f6f;
} */
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  a:hover:after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.performer-county-specialization
  .performers
  .performers-wrapper
  .performers-list
  li
  a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  /* background-color: #6f6f6f; */
  border-radius: 0.1em;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translate3d(-100%, 0, 0);
}
.performer-profile-inner .gallery .container .row .col-md-4.col-sm-12 {
  padding-bottom: 30px;
}
.performer-profile-inner .gallery .container .row .col-md-4.col-sm-12 img {
  height: 500px;
  object-fit: cover;
}
.performers-list .performer .info {
  text-transform: capitalize;
}
/* About us */
.about-us-accordion .elementor-tab-title {
  border-radius: 4px;
  margin: 14px 0 !important;
}

.home-counties .column-list {
  column-count: 2;
  column-gap: 20px;
}
.home-counties .column-list li a {
  font-size: 20px;
  color: #c36;
}
.modal-body {
  color: #fff;
}
#header {
  background-color: #000000;
}
@media (max-width: 350px) {
  .results h2 {
    font-size: 28px;
  }
  .result-cards .result-card {
    width: 160px !important;
    height: 160px !important;
  }
  .result-cards .result-card h3 {
    font-size: 40px !important;
  }
  .result-cards .result-card p {
    font-size: 20px !important;
  }
}
@media (max-width: 400px) {
  .testimonial-card {
    margin: 2rem 1rem;
  }
  .result-cards {
    flex-direction: row;
  }
  .result-cards .result-card {
    width: 180px;
    height: 180px;
    padding: 2rem 0;
  }
  .result-cards .result-card h3 {
    font-size: 50px;
  }
  .result-cards .result-card p {
    font-size: 24px;
  }
  .about-us .about .info p {
    font-size: 18px !important;
  }
}
.swiper-wrapper.owl-carousel {
  transform: none !important;
}
.performers-slider-wrapper:has(.owl-carousel) {
  margin: 0;
}
@media (max-width: 600px) {
  .performers-slider-wrapper .performer-slide {
    max-width: 300px !important;
    width: 100%;
  }
  .performer-v-social-media-icon {
    word-break: break-all;
  }
  .performer-county .specializations .specialization-wrapper .specialization h3 {
    margin: 0 !important;
  }
  .owl-carousel.owl-drag .owl-item {
    display: flex;
    justify-content: center;
    padding-left: 10px;
  }
  .result-card {
    width: 250px;
    height: 250px;
    padding: 2rem 0;
  }
  .result-card h3 {
    font-size: 60px;
    text-align: center;
  }
  .result-card p {
    font-size: 28px;
    text-align: center;
  }
  .about-us .about img {
    max-width: 200px;
    height: 200px;
  }
  .about-us .about .info p {
    font-size: 20px;
    padding: 0 10px;
  }
  #newPerformerAnnouncementForm {
    width: 100%;
  }
  .performer-profile-announces .announces-add .form-group {
    width: 100%;
  }
  .performers-slider-wrapper .performer-slide .performer-info .icons i {
    font-size: 40px;
    margin-top: 10px;
  }
  .performer-county .top-content .container {
    padding: 20px 20px !important;
  }
  .performer-county .top-content .top-title {
    font-size: 38px !important;
  }
  .specializations .specialization .swiper-container {
    padding-top: 20px !important;
  }
  .performer-county
    .specializations
    .specialization-wrapper
    .specialization
    h3 {
    text-decoration: none;
    text-align: left;
    margin-left: 20px !important;
    margin-bottom: -15px !important;
  }
  #booking-modal {
    width: 100%;
  }
  #booking-modal h3 {
    margin-right: 10px;
  }
  #booking-date,
  #booking-description {
    width: 100%;
    margin-right: 10px;
  }
  .calendar-details {
    margin-left: 0px;
    width: 100%;
  }
  .calendar-details .container {
    width: 100%;
  }
  .categories-grid a {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .gallery .container .row:has(h3) {
    display: flex !important;
  }
  .performer-profile-inner .gallery .container .row .col-md-4.col-sm-12 img {
    height: 120px !important;
  }
  .gallery .container .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  /* feed */
  .map-container svg {
    margin-left: -50px;
  }
  /* Header */
  header .main-header #searchform input {
    max-width: 150px;
  }
  header .main-header > .main-menu-wrapper {
    display: none;
  }
  header .main-header .buttons .login-register-user-btn {
    /* display: none; */
    margin-right: 12px;
  }
  .side-menu-toggle-x {
    display: flex !important;
  }
  header .main-header .buttons .side-menu-toggle.active {
    display: block;
  }
  header
    .main-header
    .side-menu
    .side-menu-content
    .main-menu-wrapper.unlogged {
    display: block;
  }
  header .main-header .side-menu .side-menu-content .main-menu-wrapper ul {
    align-items: center;
  }
  header .main-header .side-menu .side-menu-content .main-menu-wrapper ul li {
    font-size: 20px;
    width: 100%;
    text-align: right;
    border-bottom: 1px solid #000;
  }
  header
    .main-header
    .side-menu
    .side-menu-content
    .main-menu-wrapper
    ul
    li.register-performer-btn,
  header
    .main-header
    .side-menu
    .side-menu-content
    .main-menu-wrapper
    ul
    li:last-child {
    border-bottom: none;
  }
  .not-found-page h1 {
    font-size: 20px;
  }
  /* .menu-logged-links {
    display: none;
  } */
  /* Performers slider */
  .performers-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -15px 0;
    padding-bottom: 50px;
  }
  .performers-slider-wrapper .performer-slide {
    max-width: 600px;
  }
  /* Performer county specialization page */
  .performer-county-specialization .top-content .top-title {
    font-size: 38px;
  }
  .performer-county-specialization
    .performers
    .performers-wrapper
    .performers-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .performer-county-specialization
    .performers
    .performers-wrapper
    .performers-list
    li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .performer-county-specialization
    .performers
    .performers-wrapper
    .performers-list
    li
    img {
    max-width: 100px;
    margin-right: 30px;
  }
  .performer-county-specialization
    .performers
    .performers-wrapper
    .performers-list
    li
    h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fdcb61;
  }
  /* Performer county page */
  .performer-county
    .specializations
    .specialization-wrapper
    .specialization
    h3 {
    margin: 0 -15px 20px;
  }
  /* Performer specialization page */
  .performer-specialization .top-regions .specialization {
    margin: 0 -15px 15px;
  }
  .performer-specialization .counties {
    padding: 20px 0;
  }
  .performer-specialization .counties .counties-wrapper ul.counties {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 -15px;
  }
  /* Footer */
  #footer .main-footer {
    padding: 20px 0 10px 0;
  }
  #footer .main-footer .logo {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  /* Performers slider */
  .performers-slider-wrapper .performer-slide {
    /* max-width: 360px; */
    max-width: 300px;
  }
}
/* Romanian cities */
.page-content .container .counties {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
  background: #930025;
  box-sizing: border-box;
  margin-top: 160px;
  margin-bottom: 60px;
}
.page-content .container .counties li a {
  text-decoration: none;
  padding: 10px;
  margin: 0 0 10px;
  border: 1px solid #d6b359;
  display: block;
  text-align: center;
  background: #b4812c;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1);
}
/*# sourceMappingURL=main.css.map */

/* announces */
.recent-performers-announces .inner {
  width: 70%;
}

/* checkbox register */
.checkbox-container {
  display: flex;
  gap: 10px;
  color: white;
  margin-left: 10px;
}
.accept-check {
  color: #d6b359;
  font-weight: 800;
}
.accept-check:hover {
  color: #dadbdd;
}
.checkbox-container label {
  margin-bottom: 0px;
}
/* judetele Romaniei */
.performer-specialization.search_city {
  margin-top: 100px;
}
.performer-specialization.search_city .counties h5 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.video_profile {
  height: auto;
  width: 100%;
}
.icon_performer {
  width: 40px;
  height: auto;
  padding-bottom: 5px;
  padding-left: 10px;
}
.content .content_title {
  display: flex;
}
.person-info .row {
  margin-left: 10px;
  padding-top: 15px;
}
.action .save-post label {
  margin-bottom: 0;
}
.login-with-google-btn {
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 11px;

  &:hover {
    color: #ac8c42;
  }

  &:active {
    background-color: #eeeeee;
  }

  &:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25),
      0 0 0 3px #c8dafc;
  }

  &:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
  }
}
#registerUser .form-inputs {
  height: 600px;
}
.image-or-video.more img {
  width: 100%;
  padding-bottom: 10px;
}
@media (min-width: 1200px) {
  .main-footer .container {
    max-width: 900px;
  }
}
.performer-county .top-content .container {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.view-all {
  text-align: center;
  margin-top: 30px;
  /* margin-bottom: 50px; */
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(10px, 0, 0px) !important;
}
.view-all a {
  background: rgba(158, 109, 28, 1);
  color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
  border: none;
}
.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.filter-btn {
  background-color: #fff;
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.location-btn {
  background-color: transparent;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
/* formular register cand esti logat */
#registration-container {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin: 0 auto;
}
.registration-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}
#step-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 5px;
  color: #000;
}
.progress-bar {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transition: width 0.6s ease;
}
.progress-bar {
  height: 8px;
  background: rgba(217, 217, 217, 1) !important;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
}
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress {
  height: 100%;
  width: 33.33%;
  background: rgba(106, 0, 0, 1) !important;
  border-radius: 10px;
}
.step.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
  color: white;
}
.step {
  display: none;
}
.form-inputs ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.form-inputs ul li.col-half {
  flex: 1 1 50%;
}
.form-inputs ul li {
  padding: 10px;
  box-sizing: border-box;
}
.registration label {
  display: block;
  color: #333 !important;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-inputs label {
  width: 100%;
}
.select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.button-group button {
  width: 100%;
  background: rgba(158, 109, 28, 1);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}
.bp-messages-wrap
  .bm-messages-list
  .bm-list
  .bm-messages-stack.bm-left-side
  .bm-content
  .bm-messages-listing
  .bm-message
  .bm-message-content:not(.bm-hide-background)
  * {
  color: #fff !important;
}
.testimonial-card .image img {
  width: 100px !important;
  height: 100px;
}

.testimonial-slider.owl-carousel .owl-nav span {
  font-size: 50px;
  color: #fff;
}
.testimonial-slider.owl-carousel .owl-nav .owl-prev {
  left: -20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}
.testimonial-slider.owl-carousel .owl-nav .owl-next {
  right: -20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}
.testimonial-slider.owl-carousel .testimonial-card {
  z-index: 100;
}
.feed .container .download-app.ad .phone-image img {
  height: 300px;
}
.feed .container .download-app.ad .phone-image {
  display: flex;
  justify-content: center;
}
.feed .container .download-app.ad p {
  margin-bottom: 0;
}
.feed .container .download-app.ad .download-buttons {
  margin-bottom: 10px;
}
.category-card p {
  font-size: 18px;
}
.feed .container .categories.ad .icon-circle {
  width: 85px;
  height: 85px;
}
.feed .container .categories.ad .category-cards .category-card {
  height: 115px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.icon-circle .icon {
  width: 35px;
  height: 100%;
}
.feed .container .categories.ad .icon-circle img {
  height: 100%;
  width: 100%;
}
.category-card p {
  margin: 0;
}
.feed .container .categories.ad {
  overflow: hidden;
}
.announces ul img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.name a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.promo a {
  color: black;
  font-weight: bold;
}
.specializations .container {
  max-width: 100% !important;
  padding: 0 !important;
}
.specializations .specialization .swiper-container .swiper-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.specializations .specialization .swiper-container {
  padding-top: 60px;
  padding-bottom: 60px;
}
main:has(.performer-county) + footer {
  padding-top: 0 !important;
}

.muzicalist-booking-calendar .calendar-month,
.muzicalist-booking-calendar .buttons {
  background: transparent !important;
}

.muzicalist-booking-calendar .weekdays .weekday,
.muzicalist-booking-calendar .week .day {
  background: #eceff3;
  border: 1px solid #eee;
}
.muzicalist-booking-calendar .week .day.prev {
  color: #000;
}
.muzicalist-booking-calendar .week .day.unavailable {
  background: #930025;
  color: #fff;
}
.muzicalist-booking-calendar .week .day {
  vertical-align: middle !important;
  padding-top: 0 !important;
  border-radius: 10px;
  background: #fff;
}
.muzicalist-booking-calendar .calendar-month {
  background: #eceff3 !important;
}
.muzicalist-booking-calendar .month-title th {
  border: 1px solid #930025;
  background-image: linear-gradient(180deg, #930025 19.5%) !important;
}
.muzicalist-booking-calendar
  .month-wrapper
  .calendar-month
  .month-title
  .month-title-with-image
  .date
  span {
  color: #fff;
}
.muzicalist-booking-calendar .buttons .month-navigation {
  color: #fff;
}
.muzicalist-booking-calendar .buttons .month-navigation:hover {
  color: #000;
}

@media (max-width: 990px) {
  header .main-header .buttons > .login-register-user-btn {
    display: none;
  }
}
header .main-header .side-menu .main-menu-wrapper {
  border: none;
}
.feed .anunt.post {
  border-radius: 20px;
}
#footer .main-footer {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .categories-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .category-card {
    width: 250px;
  }
}
header .main-header .side-menu:has(.side-menu-toggle.active) {
  right: 0;
}
header .main-header .side-menu {
  background-color: #000;
}
header .main-header .side-menu .side-menu-content .menu-logged-links {
  color: #fff !important;
  border-bottom: 1px solid #fff;
  width: 100%;
  text-align: end;
  padding-right: 20px;
  padding-top: 10px;
}

.unlogged {
  padding: 0px !important;
  margin-bottom: 10px !important;
}
.unlogged ul li {
  color: #fff !important;
  border-bottom: 1px solid #fff !important;
  width: 100%;
  text-align: end;
  padding-right: 20px;
  padding-top: 10px;
}
.unlogged ul li a {
  font-size: 16px !important;
  font-weight: initial !important;
}
header .main-header .side-menu .side-menu-content .logout-button {
  margin-top: 30px;
}
header .main-header .side-menu .side-menu-content .performer-image-wrapper {
  width: 50px;
  height: 50px;
  margin-left: 20px;
}
header .main-header .side-menu .side-menu-content .performer-image-wrapper img {
  width: 100%;
  height: 100%;
}
.side-menu .performer-info .performer-image-wrapper {
  padding: 2px;
}
.side-menu .performer-info h3 {
  font-size: 16px;
}
.side-menu .performer-info {
  align-items: unset;
}
.side-menu .performer-info h3 {
  position: absolute;
  left: 80px;
  color: #fff;
  top: 45px;
}

.performer-v-social-links {
  flex-direction: row;
  gap: 10px;
}
.btn-primary:active {
  background-color: rgba(158, 109, 28, 1) !important;
}
.btn-primary:hover {
  border: 1px solid rgba(158, 109, 28, 1);
}
.feed .anunt.post .image-or-video.more video,
.feed .anunt.post .image-or-video.more img {
  max-width: 100% !important;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.feed .anunt.post .image-or-video.more {
  grid-template-columns: 1fr;
}
.performer-search .search-result .results .result.performer .content .tags {
  display: none;
}
.performer-search .search-result .results .result.performer .image img {
  border-radius: 10px;
  object-fit: cover;
}
.performer-search .search-result .results .result.performer {
  overflow: hidden;
}
.feed .container .download-app.ad,
.feed .container .categories.ad {
  background: transparent;
  border: none;
}
.person-info .row {
  padding-top: 0;
}
.button_add_ann {
  margin-bottom: 50px;
  margin-top: 0 !important;
}
.feed-wrapper {
  padding-top: 30px;
}
.feed {
  padding-top: 0;
}
.performer-profile form .response .success {
  border-radius: 20px;
}
@media (max-width: 760px) {
  .categories-grid {
    display: grid;
    justify-items: center;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .categories-title,
  .about-us .about .info h1 {
    font-size: 26px;
  }
  .about-us .about .info h1 {
    margin-bottom: 25px;
  }
}
@media (max-width: 500px) {
  .category-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .categories-grid .category-card {
    max-width: 150px;
  }
  .category-icon {
    width: 65px;
    height: 65px;
  }
}
.bp-messages-wrap,
.bp-messages-wrap .chat-header,
.bp-messages-wrap.mobile-ready:not(.bp-messages-mobile) .bp-messages-mobile-tap,
.bp-messages-wrap .chat-footer,
.container .bp-messages-wrap-main.bm-initialized {
  background: transparent;
  border: none;
  box-shadow: none;
}
.bp-messages-wrap .chat-footer {
  border-top: 1px solid #dc3545;
}
.bp-messages-wrap .chat-header {
  border-bottom: 1px solid #dc3545;
}
.container .bp-messages-wrap-main.bm-initialized {
  border: 1px solid #dc3545;
  border-radius: 20px;
}
.form-inputs .col-half label {
  color: #000;
}
#registration-container {
  margin-top: 40px;
  margin-bottom: 40px;
}
.registerDateProfile {
  color: #fff;
  padding: 10px;
}

.performer-v-pricing h3,
.performer-v-contact h3,
.performer-v-social-media h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}
.performer_regions {
  text-align: center;
  font-size: 18px;
}
.performer_regions #performerRegions {
  border: none;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.performer-profile-inner .gallery .container .row .col-md-4.col-sm-12 img {
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
}
.video_profile {
  border-radius: 20px;
  object-fit: cover;
}
.clasament_container {
  margin-top: 60px;
  margin-bottom: 60px;
}
.clasament_container h3 {
  color: #fff;
  text-align: center;
}
.clasament_container #performerCounty {
  text-align: center;
  font-size: 18px;
}
#getClasament .performer-v-tab-buttons {
  margin-top: 60px;
  font-size: 22px;
}
#clasamentResults {
  color: white;
  padding: 1rem;
  font-size: 22px;
}
.clasament_table tr:first-child th:first-child {
  border-top-left-radius: 20px;
}
.clasament_table tr:first-child th:last-child {
  border-top-right-radius: 20px;
}
.clasament_table tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}
.clasament_table tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}
.clasament_table {
  border-collapse: separate;
  border-spacing: 0;
}
.performer-search .search-result .results .result.performer .content h3 a {
  font-size: 20px;
}
header .container {
  max-width: 1250px;
}
header .main-header .main-menu-wrapper .menu {
  padding-left: 0;
}
.main-menu-wrapper.unlogged {
  max-width: 685px;
  width: 100%;
}
@media (max-width: 1200px) {
  .main-menu-wrapper.unlogged {
    max-width: unset;
  }
  header .main-header .main-menu-wrapper .menu li a {
    font-size: 12px;
  }
  header .main-header .main-menu-wrapper .menu li a {
    margin: 0 5px;
  }
}
@media (max-width: 768px) {
  header .main-header .side-menu .main-menu-wrapper {
    margin: 0;
  }
  .avatarHeader p {
    display: none;
  }
  .avatarHeader {
    background: none !important;
  }
  .avatarHeader img {
    width: 40px !important;
    height: 40px !important;
    box-shadow: none !important;
    border: #e5b800 2px solid !important;
  }
}
.avatarHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(158, 109, 28, 1);
  border-radius: 32px;
  height: 40px;
  box-sizing: border-box;
  padding: 5px 10px;
}
.avatarHeader {
  flex-flow: initial !important;
  width: initial !important;
}
.avatarHeader img {
  width: 25px;
  /* border: 1px solid #ac8c42; */
  height: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.avatarHeader p {
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4), 0 8px 13px rgba(0, 0, 0, 0.1),
    0 18px 23px rgba(0, 0, 0, 0.1);
}
.button_add_ann:active {
  background-color: rgba(158, 109, 28, 1);
}
.performer-thumbnail {
  width: 100px;
  margin: 0 auto;
}
.performer-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: #e5b800 2px solid;
}
.back-to-profile-new {
  display: flex;
  align-items: center;
  gap: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.back-to-profile-new a {
  color: #fff;
}
.performer-new-announces-profile > div > div {
  position: relative;
  margin-bottom: 40px;
}
.performer-new-announces-profile .announces-add.new-add-view,
.performer-new-announces-profile .announces {
  padding: 40px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.performer-new-announces-profile .announces-add.new-add-view .form-group label {
  color: #fff;
}
.performer-new-announces-profile button:active,
.performer-new-announces-profile button:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}
.performer-new-announces-profile .info-announces .inner p {
  text-align: center;
}
.performer-new-announces-profile button {
  max-width: 150px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  cursor: pointer;
}
.performer-new-announces-profile button p {
  margin: 0;
}
.performer-new-announces-profile .announces-add.new-add-view button {
  max-width: 150px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  grid-column-start: 1;
  grid-column-end: 3;
  cursor: pointer;
}
.performer-new-announces-profile .announces-add.new-add-view .form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.performer-new-announces-profile .announces-add.new-add-view .input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.performer-new-announces-profile {
  padding: 50px 20px;
  box-sizing: border-box;
}
.performer-new-announces-profile h4,
.performer-new-announces-profile h3,
.performer-new-announces-profile h2,
.performer-new-announces-profile span,
.performer-new-announces-profile p {
  color: #fff;
}
.performer-new-announces-profile .info-announces .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.performer-new-announces-profile .info-announces .inner img {
  max-width: 50px;
  width: 100%;
}
.performer-new-announces-profile > div {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}
.performer-new-announces-profile .saved_posts {
  margin-bottom: 20px;
  margin-top: 40px;
}
.displayAnnouncesNew > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  gap: 15px;
}
.displayAnnouncesNew > div img {
  max-width: 200px !important;
  height: 150px !important;
  max-height: 150px !important;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
  object-fit: cover;
  margin: 0;
}
#performerAnnouncesListNew {
  padding: 0 !important;
  list-style-type: none;
}
.displayAnnouncesNew video {
  max-width: 750px !important;
  height: 350px !important;
  max-height: 350px !important;
  padding: 0;
  border-radius: 10px;
  width: 100%;
  margin: 30px auto;
  display: flex;
}
.performer-new-announces-profile .announces-add.new-add-view .gallery {
  grid-column-start: 2;
  grid-column-end: 3;
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 15px;
}
.performer-new-announces-profile .announces h4 {
  text-align: center;
  margin-bottom: 30px;
}

.performerAnnouncesListNew {
  padding: 0;
}
#performerAnnouncesList {
  padding: 0 !important;
  list-style-type: none;
}
#performerAnnouncesList > li > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
#performerAnnouncesList a img {
  max-width: 650px !important;
  height: 350px !important;
  max-height: 350px !important;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
  object-fit: cover;
  margin: 0;
}
#performerAnnouncesList .announces_list:has(img) {
  max-width: 650px !important;
  height: 350px !important;
  max-height: 350px !important;
  width: 100%;
}
#performerAnnouncesList a span {
  color: #fff;
}

#performerAnnouncesList video {
  max-width: 650px !important;
  height: 350px !important;
  max-height: 350px !important;
  padding: 0;
  border-radius: 10px;
  width: 100%;
  margin: 30px auto;
  display: flex;
}
@media (max-width: 600px) {
  .performer-new-announces-profile .announces-add.new-add-view .form-group {
    display: flex;
    flex-direction: column;
  }
}
.performer-new-announces-profile
  .announces-add.new-add-view
  .gallery
  #preview-container {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.performer-new-announces-profile
  .announces-add.new-add-view
  .gallery
  .or_options {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 0;
}
.performer-new-announces-profile
  .announces-add.new-add-view
  .gallery
  input[type="file"],
.performer-new-announces-profile .announces-add.new-add-view select {
  background-color: rgba(255, 255, 255, 0.1);
}
.performer-new-announces-profile .announces-add.new-add-view select {
  cursor: pointer;
  color: #aaa;
}
#performerAnnouncesList li video {
  padding: 0;
}
.performer-new-announces-profile
  .announces-add.new-add-view
  .gallery
  input[type="file"] {
  cursor: pointer;
}
.resultsCateg {
  padding: 0;
  padding-top: 20px;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.categWrapper {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 1000px) {
  .top-regions .container {
    max-width: 100%;
  }
  .resultsCateg {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 700px) {
  .performerName {
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  .displayAnnouncesNew > div {
    flex-direction: column;
  }
  #performerAnnouncesList a img,
  #performerAnnouncesList .announces_list:has(img) {
    height: 150px !important;
    max-height: 150px !important;
  }
  .performer-new-announces-profile span {
    text-align: center;
  }
  .displayAnnouncesNew video,
  #performerAnnouncesList video {
    height: 250px !important;
    max-height: 250px !important;
  }
  .announces h4,
  .performer-new-announces-profile .saved_posts {
    width: 100%;
  }
  .performer-v-tab-button {
    font-size: 14px;
  }
  #clasamentResults {
    padding-left: 0;
    padding-right: 0;
  }
  .clasament_table_th,
  .clasament_table tr td {
    font-size: 12px;
  }
  .resultsCateg {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .performerName {
    font-size: 12px;
  }
  .categWrapper {
    height: 300px;
  }
}
#getClasament .performer-v-tab-buttons a:hover {
  text-decoration: none;
}
#performerAnnouncesList li div {
  display: flex;
  align-items: center;
  flex-direction: row;
  /* justify-content: space-between; */
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  gap: 15px;
}
#performerAnnouncesList li div img,
#performerAnnouncesList .announces_list:has(img) {
  max-width: 200px !important;
  height: 150px !important;
  max-height: 150px !important;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
  object-fit: cover;
  margin: 0;
  margin-top: 0px;
}
.performer-thumbnail img {
  height: 125px;
  width: 125px;
}
@media (max-width: 1200px) {
  .performer-new-announces-profile .announces,
  .announces-add.new-add-view {
    width: 100%;
  }
}
@media (max-width: 600px) {
  header .main-header {
    gap: 3px;
  }
  .avatarHeader p {
    font-size: 10px;
  }
  .back-to-profile-new {
    top: -20px;
  }
  #performerAnnouncesList li div {
    flex-direction: column;
  }
}
#header {
  background-color: #000000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
main {
  padding-top: 100px;
}
header .main-header #searchform input::placeholder {
  font-size: 14px;
}
header .main-header #searchform input {
  font-size: 14px;
}
#header {
  z-index: 1000;
}

.performer-announces {
  background-image: none;
}
.custom-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5e7d0;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
/* .custom-upload-btn:hover {
  background: #3c1a1a;
} */
.custom-upload-btn i {
  font-size: 20px;
}
.photoPost {
  display: none;
}

.custom-upload-btn-video {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5e7d0; /* text deschis */
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
/* .custom-upload-btn-video:hover {
  background: #3c1a1a;
} */
.custom-upload-btn-video i {
  font-size: 20px;
}
.videoPost {
  display: none;
}
.performer-profile section.image .image-inner .current-image img {
  height: 125px;
  width: 125px;
}

header .main-header .side-menu.active .side-menu-toggle .top {
  transform: rotate(45deg);
}
header .main-header .side-menu.active .side-menu-toggle .middle {
  transform: translateX(1rem);
  opacity: 0;
}
header .main-header .side-menu.active .side-menu-toggle .bottom {
  transform: rotate(-45deg);
}
.reviews {
  width: 100%;
  max-width: 800px;
}

.performer-v-tab-pane.active {
  width: 100%;
  max-width: 700px;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.lightbox-overlay-home {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-overlay-home img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox-overlay-home.active {
  display: flex;
}

.lightbox-close-home {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.gallery-image {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 15px;
}

.noBookingFound {
  display: none;
}
.performer-specialization .top-regions {
  margin-top: 30px;
}
#newPerformerAnnouncementForm .form-group .submit {
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  width: 100%;
  max-width: 250px;
  display: block;
}
/* .form-inputs .col-half label {
  color: #fff;
} */
#lightbox-img {
  object-fit: contain;
}
#footer {
  z-index: 999;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
.bp-messages-wrap
  .bm-messages-list
  .bm-list.bm-inverted
  [data-overlayscrollbars-contents],
.bp-messages-wrap .chat-header,
.bp-messages-wrap
  .bp-messages-threads-wrapper:not(.threads-hidden)
  .bp-messages-side-threads {
  background: transparent;
}
.bp-messages-wrap.bp-messages-full-screen {
  background: black;
}
.container .bp-messages-wrap-main.bm-initialized {
  overflow: hidden;
}
.button_add_ann a {
  display: flex;
  align-items: center;
  text-align: center;
}
.button_add_ann {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .performer-county
    .specializations
    .specialization-wrapper
    .specialization
    h3 {
    margin-left: 0 !important;
    text-align: center;
  }
  .specializations .specialization .swiper-container {
    padding-bottom: 20px;
  }
  .performers-slider-wrapper .performer-slide {
    max-width: 300px !important;
    height: 300px !important;
    min-width: 150px;
  }
  .feed .container {
    padding-right: 0;
  }
  .feed .anunt {
    margin-bottom: 25px;
  }

  .results-text {
    padding: 10px;
  }

  .download-now {
    gap: 100px;
  }
}

@media (max-width: 400px) {
  .download-now {
    gap: 110px;
  }
}

@media (max-width: 460px) {
  .download-now {
    gap: 130px;
  }
}
@media (max-width: 600px) {
  .homepage .county-search {
    padding-left: 10px;
    padding-right: 10px;
  }
  #footer .container .row {
    display: flex !important;
    flex-direction: column !important;
  }
  #footer .main-footer .logo {
    display: flex;
    justify-content: center;
  }
  #footer .container .row .col-md-12 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.side-menu-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: black;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.side-menu-left.open-left {
  transform: translateX(0);
}

.side-menu-close-left {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1001;
  color: white;
}

.side-menu-content-left nav {
  margin-top: 60px;
}

.side-menu-content-left nav ul {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 10px;
  margin-top: 60px;
  width: 100%;
}

.side-menu-content-left nav ul li {
  width: 100%;
}

.side-menu-content-left nav ul a {
  font-size: 16px !important;
  font-weight: normal !important;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  width: 100% !important;
  display: block !important;
  margin: 0px !important;
  padding: 10px !important;
}

.performer-v-tab-pane
  .performer-announces
  .announces
  ul
  li
  .displayAnnouncesNew
  > div {
  justify-content: initial !important;
}
@media (max-width: 600px) {
  .feed .container {
    padding-left: 0;
  }
  .feed .anunt .person-info .person-info-content {
    display: flex !important;
    flex-direction: row !important;
  }
  .feed .anunt .person-info .person-info-content .image,
  .feed .anunt.post .person-info .image {
    display: flex;
    /* justify-content: end; */
  }

  .feed .anunt .person-info .row ul {
    font-size: 12px;
    gap: 15px;
  }
  .feed .anunt .person-info .column {
    display: flex;
    flex-direction: column;
    align-items: start;
    grid-column-start: 2;
    grid-column-end: 5;
  }
  .feed .container .anunt .person-info {
    position: relative;
  }
  .feed .container .anunt .person-info .report {
    position: absolute;
    bottom: -20px;
    right: -10px;
  }
  .feed .container .anunt .person-info {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .feed .anunt .person-info .row ul {
    height: 20px;
  }
  .feed .anunt .person-info .row {
    justify-content: start;
    grid-column-start: 1;
    grid-column-end: 5;
    padding: 0 !important;
    margin-left: 0;
  }
  .feed .anunt .person-info .person-info-content .image a {
    margin-right: 10px;
  }
  .feed .anunt.post .person-info .row ul {
    padding-right: 40px;
  }
}
.person-info .row {
  padding-top: 16px;
}
.input-error {
  border: 2px solid red;
}

.performer-v-tab-content #gallery-content .performer-v-empty-message {
    color: #fff;
}

.register-checbox{
  color: black !important;
  display: flex;
  gap:8px;
  margin-left:10px;
}

.register-checbox input{
  width: initial !important;
  box-shadow: initial !important;
}