.filter-wrap {width: 100%;background: white;/* border: 1px solid #ddd; *//* border-radius: 0px; */text-align: left;}
.filter-wrap .title-result {width: 100%;width: 100%;/* background-color: #f5f5f5; */padding: 10px 15px;border-color: #ddd;/* border-bottom: 1px solid #EFEFEF; */}
.filter-wrap .title-result .title {font-size: 1.286rem;color: #003466;text-decoration: none;font-weight: 600;}

.filter-wrap .filter-list-wrap {width: 100%;border-bottom: 1px solid #EFEFEF;padding-top: 15px;line-height: 19px;font-weight: normal;/* margin: 20px 0 16px; */}
.filter-wrap .filter-list-wrap .title,
.filter-wrap .filter-list-wrap h3.title {
  position: relative;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  padding-right: 40px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  margin: 0;
  display: block;
}
.filter-wrap .filter-list-wrap .title:hover,
.filter-wrap .filter-list-wrap h3.title:hover {
  color: #3b82f6;
}
.filter-wrap .filter-list-wrap .title span {float: right;font-size: 0.7rem;color: #6f6f6f;}

/* Accordion Arrow */
.filter-wrap .filter-list-wrap .title::after,
.filter-wrap .filter-list-wrap h3.title::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-size: 12px;
  color: #666;
  transition: transform 0.3s ease;
}

.filter-wrap .filter-list-wrap.collapsed .title::after,
.filter-wrap .filter-list-wrap.collapsed h3.title::after {
  transform: translateY(-50%) rotate(0deg);
}

/* Accordion Content */
.filter-wrap .filter-list-wrap .scroll {
  max-height: max-content;
  overflow-y: auto;
  padding: 15px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.filter-wrap .filter-list-wrap.collapsed .scroll {
  max-height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
}
/*.fiyataraligi-filter .scroll {padding: 0 10px;overflow: inherit !important; }
*/.filter-wrap .filter-list-wrap .scroll::-webkit-scrollbar {
  width: 4px;
}
.filter-wrap .filter-list-wrap .scroll::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 15px;
}
.filter-wrap .filter-list-wrap .scroll::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 15px;
}
.filter-wrap .filter-list-wrap .scroll::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.filter-wrap .filter-list-wrap .scroll .filter-check-item {width: 100%;margin-bottom: 0px;font-weight: normal;display: block;margin-bottom: 16px;}
.filter-wrap .filter-list-wrap .scroll .filter-check-item input {margin-top: 0; margin-right: 10px;margin-bottom: 3px;}
/*.filter-wrap .filter-list-wrap .scroll .filter-check-item input[type="checkbox"]:checked {border: 0;}
.filter-wrap .filter-list-wrap .scroll .filter-check-item input[type="checkbox"]:checked:before {content: "\f410";font-family: 'Font Awesome 5 Free';font-weight: bold;font-size: 12px;left: 0px;top: -1px;}
*/.filter-wrap .filter-list-wrap .scroll .filter-check-item .name {font-size: 14px;color: #000;}
.filter-wrap .filter-list-wrap .scroll .filter-check-item .count {font-size: 10px;color: #777;margin-left: 5px;}

#dynamicSort {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  gap: 2px;
  background: #f1f3f5;
  border-radius: 12px;
  padding: 4px;
  box-shadow: inset 0 1px 2px rgba(28, 30, 35, .06);
  overflow: hidden;
}
#dynamicSort .sort-indicator {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  opacity: 0;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 9px;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(239, 68, 68, .35);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1), width .38s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
  will-change: transform, width;
}
#dynamicSort .sort-indicator.is-ready {
  opacity: 1;
}
.sort-wrapper {display: block;padding: 5px;border-radius: 5px;min-height: 50px;}
.sort-wrapper .title {float: left;padding: 3px 7.5px 0 0;font-size: 16px;font-weight: bold;}
.sort-wrapper .title small {font-size: 100%;font-weight: bold;}
.sort-btn {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  background: transparent;
  color: #5c6670;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .01em;
  border: 0;
  border-radius: 9px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color .28s ease, transform .28s ease;
}
.sort-btn:last-child {margin-right: 0;}
.sort-btn:hover {
  color: #1f2937;
  background: transparent;
}
.sort-btn.active {
  background: transparent;
  color: #ffffff;
}
.sort-btn:active {
  transform: scale(.98);
}
.sort-btn i {
  margin-right: 0;
  font-size: 13px;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.sort-btn.active i {
  transform: scale(1.12);
}
.sort-btn:hover i {
  transform: translateY(-1px);
}
.sort-btn.active:hover i {
  transform: scale(1.12);
}


.timeline-item {background: #fff;border: 1px solid;border-color: #e5e6e9 #dfe0e4 #d0d1d5;border-radius: 3px;padding: 12px;margin: 0 auto;max-width: 100%;min-height: 150px;margin-bottom: 10px;margin-top: 10px;}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0
  }

  100% {
    background-position: 468px 0
  }
}

.animated-background {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

.background-masker {
  background: #fff;
  position: absolute;
}

/* Every thing below this is just positioning */

.background-masker.header-top,
.background-masker.header-bottom,
.background-masker.subheader-bottom {
  top: 0;
  left: 40px;
  right: 0;
  height: 10px;
}

.background-masker.header-left,
.background-masker.subheader-left,
.background-masker.header-right,
.background-masker.subheader-right {
  top: 10px;
  left: 40px;
  height: 8px;
  width: 10px;
}

.background-masker.header-bottom {
  top: 18px;
  height: 6px;
}

.background-masker.subheader-left,
.background-masker.subheader-right {
  top: 24px;
  height: 6px;
}


.background-masker.header-right,
.background-masker.subheader-right {
  width: auto;
  left: 300px;
  right: 0;
}

.background-masker.subheader-right {
  left: 230px;
}

.background-masker.subheader-bottom {
  top: 30px;
  height: 10px;
}

.background-masker.content-top,
.background-masker.content-second-line,
.background-masker.content-third-line,
.background-masker.content-second-end,
.background-masker.content-third-end,
.background-masker.content-first-end {
  top: 40px;
  left: 0;
  right: 0;
  height: 6px;
}

.background-masker.content-top {
  height: 20px;
}

.background-masker.content-first-end,
.background-masker.content-second-end,
.background-masker.content-third-end {
  width: auto;
  left: 380px;
  right: 0;
  top: 60px;
  height: 8px;
}

.background-masker.content-second-line {
  top: 68px;
}

.background-masker.content-second-end {
  left: 420px;
  top: 74px;
}

.background-masker.content-third-line {
  top: 82px;
}

.background-masker.content-third-end {
  left: 300px;
  top: 88px;
}

#dynamicPagination {text-align: center;margin-top: 15px;}
.pagination-btn {border:0;display: inline-block;padding: 10px 50px;border-radius: 20px;height: auto;background: #ff5a00;color: #fff;margin: 0;line-height: normal;font-size: 14px;width: 50%;text-transform: uppercase;}

.visibleTotal {}

.price-input-wrap {}
.price-input-wrap .price-input {float: left;width: calc(40% - 10px);border: 1px solid #EFEFEF;height: 30px;text-indent: 10px;font-size: 0.8rem;border-radius: 5px;}
.price-input-wrap .price-input-separate {float: left;width: 20px;height: 30px;line-height: 30px;text-align: center;}
.price-input-wrap .price-search {float: left;width: calc(20% - 5px);height: 28px;margin-top: 1px;border-radius: 5px;display: block;background: #1884b5;border: 0;color: #fff;font-size: 0.9rem;margin-left: 5px;}

@media(max-width: 768px) {
  .pagination-btn {width: auto;}
}
.filter-wrap {
  box-shadow: 0 0 8px -1px rgba(28, 30, 35, .1);
  border-radius: 8px;
}

span.sort-btn:last-child {
  border-right: unset;
}
.sort-btn.active:hover {
  background: transparent !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  #dynamicSort.mobile {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
  }
  #dynamicSort.mobile .sort-indicator {
    display: none;
  }
  #dynamicSort.mobile .sort-btn {
    flex: none;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  }
  #dynamicSort.mobile .sort-btn:hover {
    background: #fff5f5;
    border-color: #fecaca;
    color: #ef4444;
  }
  #dynamicSort.mobile .sort-btn.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(239, 68, 68, .3);
  }
  #dynamicSort.mobile .sort-btn.active:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #fff !important;
  }
}