@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;
}
@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;
}

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