@charset "UTF-8";
:root {
  --wel-card-w: 326px;
  --wel-gap-x: 30px; /* horizontal */
  --wel-gap-y: 100px; /* vertical (row gap) default 100 */
  --wel-controls-mt: 100px;
}

.wel-listing {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wel-listing .wel-spacer {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .wel-listing .wel-spacer {
    display: none;
  }
}
.wel-listing .wel-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
  z-index: 20;
}
@media (max-width: 767px) {
  .wel-listing .wel-toolbar {
    flex-direction: column;
    gap: 10px;
  }
}
.wel-listing .wel-toolbar .wel-search,
.wel-listing .wel-toolbar .wel-sort,
.wel-listing .wel-toolbar .wel-term {
  display: flex;
  align-items: center;
}
.wel-listing .wel-items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: var(--wel-gap-x);
  row-gap: var(--wel-gap-y);
  justify-content: center; /* center cards when extra space */
}
.wel-listing .wel-item {
  flex: 0 0 var(--wel-card-w);
  max-width: var(--wel-card-w);
}
.wel-listing.wel-loading {
  opacity: 0.6;
  pointer-events: none;
}

.wel-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--wel-controls-mt);
}
.wel-controls .wel-pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.wel-controls .wel-load-more,
.wel-controls .wel-page-btn {
  background: transparent;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.wel-controls .wel-load-more:hover,
.wel-controls .wel-page-btn:hover {
  background: #fff;
  border-color: coral; /* changeable via Style tab */
}
.wel-controls .wel-load-more[disabled],
.wel-controls .wel-page-btn[disabled] {
  opacity: 0.3;
  cursor: default;
}
.wel-controls .wel-load-more.wel-current,
.wel-controls .wel-page-btn.wel-current {
  color: var(--color-coral);
}
.wel-controls .wel-sentinel {
  height: 1px;
  width: 100%;
}

.wel-searchpill {
  border-radius: 50px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  display: flex;
  width: 60px;
  height: 60px;
  transition: var(--transition);
}
.wel-searchpill:hover {
  border-color: var(--color-white);
}
@media (max-width: 767px) {
  .wel-searchpill {
    width: 100%;
    height: 50px;
  }
}
.wel-searchpill.is-open {
  width: 340px;
}
@media (max-width: 767px) {
  .wel-searchpill.is-open {
    width: 100%;
  }
}
.wel-searchpill.is-open .wel-searchpill__field {
  width: 100%;
}
.wel-searchpill .wel-searchpill__btn {
  height: 54px;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  fill: white;
}
@media (max-width: 767px) {
  .wel-searchpill .wel-searchpill__btn {
    height: 44px;
  }
}
.wel-searchpill .wel-searchpill__icon {
  width: 24px;
  height: 24px;
  border: none;
}
.wel-searchpill .wel-searchpill__field {
  width: 0;
  height: 100%;
  color: white;
  border: none;
  outline: none !important;
}
@media (max-width: 767px) {
  .wel-searchpill .wel-searchpill__field {
    width: 100%;
  }
}
.wel-searchpill .wel-searchpill__input {
  border: none;
  background: transparent;
  color: #ffffff;
  border-radius: 50px;
  font-family: "Circular XX", sans-serif;
  font-weight: 600;
  font-size: 14px;
  height: 100%;
  padding: 0;
}
.wel-searchpill .wel-searchpill__input::placeholder {
  color: #ffffff;
}
.wel-searchpill .wel-searchpill__input:focus, .wel-searchpill .wel-searchpill__input:focus-visible, .wel-searchpill .wel-searchpill__input:active, .wel-searchpill .wel-searchpill__input:hover {
  border: none !important;
  outline: none !important;
}

.wel-chip {
  position: relative;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  gap: 15px;
  padding: 0 10px 0 20px;
  cursor: pointer;
  transition: var(--transition);
}
.wel-chip:hover {
  border-color: var(--color-white);
}
@media (max-width: 767px) {
  .wel-chip {
    min-height: 50px;
  }
}
.wel-chip[aria-expanded=true] .wel-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}
.wel-chip span {
  font-family: "Circular XX", sans-serif;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  display: inline-flex;
}
.wel-chip .wel-chip__caret {
  fill: white;
  padding: 0;
  width: 16px;
  height: 6px;
  flex-shrink: 0;
}
.wel-chip .wel-menu {
  position: absolute;
  top: 60px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  right: 0;
  transition: var(--transition);
}
.wel-chip ul.wel-menu {
  background-color: var(--color-blue);
  padding: 10px 15px 10px 20px;
  border-radius: 30px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  list-style: none;
  min-width: 200px;
}
.wel-chip ul.wel-menu li {
  flex-shrink: 0;
  color: var(--color-white);
  padding: 5px 0;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  line-height: 1.4em;
}
.wel-chip ul.wel-menu li:hover {
  color: var(--color-yellow-light);
  transform: translateX(5px);
}
.wel-chip ul.wel-menu li::before {
  display: none;
}

/* Search input clear gombok elrejtése */
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
input[type=search] {
  /* Firefox */
}
input[type=search]::-moz-search-clear {
  display: none;
}

.wel-listing .wel-items--masonry {
  display: block !important;
  position: relative;
  column-count: unset !important;
  column-gap: unset !important;
}
.wel-listing .wel-items--masonry > .wel-item {
  position: absolute;
  box-sizing: border-box;
  flex: none !important;
  max-width: none !important;
}
.wel-listing .wel-items--masonry > .wel-item > * {
  height: auto !important;
  min-height: 0 !important;
  align-self: flex-start !important;
}
.wel-listing .wel-items--masonry > .wel-item .e-con,
.wel-listing .wel-items--masonry > .wel-item .elementor-section,
.wel-listing .wel-items--masonry > .wel-item .elementor-container,
.wel-listing .wel-items--masonry > .wel-item .elementor-widget-wrap,
.wel-listing .wel-items--masonry > .wel-item .elementor-widget-container {
  height: auto !important;
  min-height: 0 !important;
  align-items: flex-start !important;
}
.wel-listing .wel-items--single {
  justify-content: flex-start;
}
.wel-listing .wel-empty {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.wel-listing .wel-empty p {
  margin: 0;
  font-family: "Circular XX", sans-serif;
  font-size: 18px;
  color: var(--color-eggshell);
  opacity: 1;
}

.wel-searchpill.is-open {
  width: 340px;
  border-color: var(--color-white);
}
@media (max-width: 767px) {
  .wel-searchpill.is-open {
    width: 100%;
  }
}
.wel-searchpill.is-open .wel-searchpill__field {
  width: 100%;
}

.wel-listing .wel-items--masonry {
  display: block !important;
  position: relative;
  column-count: unset !important;
  column-gap: unset !important;
}
.wel-listing .wel-items--masonry > .wel-item {
  position: absolute;
  box-sizing: border-box;
  flex: none !important;
  max-width: none !important;
}
.wel-listing .wel-items--masonry > .wel-item > * {
  height: auto !important;
  min-height: 0 !important;
  align-self: flex-start !important;
}
.wel-listing .wel-items--masonry > .wel-item .e-con,
.wel-listing .wel-items--masonry > .wel-item .elementor-section,
.wel-listing .wel-items--masonry > .wel-item .elementor-container,
.wel-listing .wel-items--masonry > .wel-item .elementor-widget-wrap,
.wel-listing .wel-items--masonry > .wel-item .elementor-widget-container {
  height: auto !important;
  min-height: 0 !important;
  align-items: flex-start !important;
}
.wel-listing .wel-items--single {
  justify-content: flex-start;
}
.wel-listing .wel-empty {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.wel-listing .wel-empty p {
  margin: 0;
  font-family: "Circular XX", sans-serif;
  font-size: 18px;
  color: var(--color-eggshell);
  opacity: 1;
}

.wel-listing .wel-items--masonry {
  display: block !important;
  position: relative;
  column-count: unset !important;
  column-gap: unset !important;
}
.wel-listing .wel-items--masonry > .wel-item {
  position: absolute;
  box-sizing: border-box;
  flex: none !important;
  max-width: none !important;
}
.wel-listing .wel-items--masonry > .wel-item > * {
  height: auto !important;
  min-height: 0 !important;
  align-self: flex-start !important;
}
.wel-listing .wel-items--masonry > .wel-item .e-con,
.wel-listing .wel-items--masonry > .wel-item .elementor-section,
.wel-listing .wel-items--masonry > .wel-item .elementor-container,
.wel-listing .wel-items--masonry > .wel-item .elementor-widget-wrap,
.wel-listing .wel-items--masonry > .wel-item .elementor-widget-container {
  height: auto !important;
  min-height: 0 !important;
  align-items: flex-start !important;
}
.wel-listing .wel-items--single {
  justify-content: flex-start;
}
.wel-listing .wel-empty {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.wel-listing .wel-empty p {
  margin: 0;
  font-family: "Circular XX", sans-serif;
  font-size: 18px;
  color: var(--color-eggshell);
  opacity: 1;
}

.wel-searchpill.is-open {
  width: 340px;
  border-color: var(--color-white);
}
@media (max-width: 767px) {
  .wel-searchpill.is-open {
    width: 100%;
  }
}
.wel-searchpill.is-open .wel-searchpill__field {
  width: 100%;
}

.wel-further-wrap:empty {
  display: none;
}

.wel-further__heading {
  font-family: "Circular XX", sans-serif;
  margin: 0 0 48px;
  color: var(--color-eggshell);
}
.wel-further__heading:empty {
  display: none;
}
.wel-further__group + .wel-further__group {
  margin-top: 56px;
}
.wel-further__group .webstar-qc.webstar-qc--carousel.has-nav {
  padding-bottom: 100px;
}
.wel-further__group .webstar-qc.webstar-qc--carousel.has-nav .swiper {
  overflow: visible;
}
.wel-further__group-label {
  margin: 0 0 30px;
  padding: 0;
  color: var(--color-eggshell);
}
.wel-further__items {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0 0 50px;
  gap: 70px 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1280px) {
  .wel-further__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .wel-further__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .wel-further__items {
    grid-template-columns: 1fr;
  }
}
.wel-further__item {
  box-sizing: border-box;
  min-width: 0;
}
.wel-further__item > .elementor,
.wel-further__item > .elementor > .elementor-section-wrap > .elementor-section,
.wel-further__item > .elementor > .e-con {
  height: 100%;
}
.wel-further__item .e-con,
.wel-further__item .elementor-section,
.wel-further__item .elementor-widget-wrap,
.wel-further__item .elementor-widget-container {
  height: auto !important;
}
.wel-further__item [data-elementor-type=loop-item] {
  height: 100%;
}
.wel-further__item:before, .wel-further__item .elementor-inline-item:before {
  display: none !important;
}

/*# sourceMappingURL=listing.css.map */
