/*=======================================
     start sub category page 
======================================== */

.custom-select2 {
  border: 1px solid var(--second-color);
  padding: 7px 10px;
  border-radius: 999px;
  background-color: transparent;
}

.custom-select2 select {
  border: none !important;
  background-color: transparent;
}

.sub-category-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 25px;
}

.sub-category-filter .btn-effect {
  min-width: 120px;
}

.sub-category-filter .btn-effect i {
  margin-right: 5px;
}

.tour-type-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.tour-type-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 10px 10px 10px;
  overflow: scroll;
}

.navigation-button {
  position: absolute;
  width: 100%;
  top: 0;
}

.tour-type-filters .btn-effect-2 {
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(26, 110, 189, .18);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: #2c357e !important;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
}

.tour-type-filters .btn-effect-2 .tour-type-title {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  display: inline-block;
  line-height: 1;
  color: inherit;
}

.tour-type-filters .btn-effect-2:hover {
  color: var(--black-color);
}

.tour-type-filters::-webkit-scrollbar {
  background: transparent;
  width: 3px;
  height: 6px;
  /* display: none; */
}

.tour-type-filters::-webkit-scrollbar-thumb {
  cursor: pointer;
}

.tour-filter-right,
.tour-filter-left {
  padding: 5px 10px;
  border: none;
  font-size: 18px;
  box-shadow: none;
  background-color: transparent;
  /* border-radius: 50%; */
  position: absolute;
  background-color: var(--white-color);
  top: 10px;
  box-shadow: 1px 1px 20px 20px var(--white-color);
}

/* .tour-card{
  margin-bottom: 3rem ;
} */

.tour-filter-right {
  right: 20px;
}

.tour-filter-left {
  left: -20px;
}

.sub-category-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.result-count {
  display: flex;
  align-items: center;
}

.result-count span {
  color: var(--main-color);
  font-size: 18px;
  margin-left: 5px;
  font-weight: 500;
  margin-bottom: 0;
}

.result-count .result-name {
  font-size: 18px;
  margin-left: 5px;
  font-weight: 500;
  /* color: var(--second-color); */
  margin-bottom: 0;
}

.tour-wrapper {
  margin-top: 50px;
}

.modal.fade .modal-dialog.modal-lg {
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 600px;
}


.modal.fade.show .modal-dialog.modal-lg {
  transform: scale(1);
  opacity: 1;
}


.modal-dialog.modal-lg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  border-radius: 20px;
}

.modal-dialog.modal-lg .btn-effect {
  background-color: var(--main-color);
  color: var(--white-color);
}

.modal-dialog.modal-lg .btn-effect:before {
  background-color: var(--white-color);

}

.modal-dialog.modal-lg .btn-effect:hover {
  color: var(--main-color);
}


.filter-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-dropdown>span {
  color: var(--para-color);
}


.label-check {
  cursor: pointer;
  position: relative;
  margin: auto;
  /* width: 18px;
    height: 18px; */
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.label-check:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 50, 84, 0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.label-check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}

.label-check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.label-check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.label-check:hover:before {
  opacity: 1;
}

.label-check:hover svg {
  stroke: var(--main-color);
}

input-check {
  display: none !important;
}

.input-check:checked+.label-check svg {
  stroke: var(--main-color);
}

.input-check:checked {
  display: block;
}

.input-check:checked+.check svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

.input-check:checked+.check svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}


.nice-label {
  cursor: pointer;
  position: relative;
  margin: auto;
  /* width: 18px;
    height: 18px; */
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  margin-bottom: 7px;
}

.nice-label:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 50, 84, 0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nice-label svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}

.nice-label svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.nice-label svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.nice-label:hover:before {
  opacity: 1;
}

.nice-label:hover svg {
  stroke: var(--main-color);
}

.nice-check {
  display: none !important;
}

.nice-check:checked+.nice-label svg {
  stroke: var(--main-color);
}

.nice-check:checked {
  display: block;
}

.nice-check:checked+.nice-label svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

.nice-check:checked+.nice-label svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}


.irs--round .irs-bar {
  background-color: var(--main-color);
}

.irs--round .irs-handle {
  background-color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: 0px 0px 0px 5px var(--light-color);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: var(--main-color);
}

.irs--round .irs-handle {
  width: 16px;
  height: 16px;
  top: 29px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background-color: transparent;
  color: #666;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before,
.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}

.range-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.range-number input {
  border-radius: 12px;
}

.btn-effect-2 {
  background-color: var(--white-color);
  border: none;
  border-radius: 10px;
  box-shadow: rgb(60 64 67 / 0.3) 0 1px 2px 0, rgb(60 64 67 / 0.15) 0 1px 3px 1px;
  color: var(--main-color);
  cursor: pointer;
  font-size: 16px;
  padding: 7px 10px;
  transition: box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

.filter-model {
  padding: 13px 32px;
}

.range-slider {
  position: relative;
  width: 100%;
  height: 40px;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  top: 15px;
  pointer-events: none;
  appearance: none;
  background: none;
}

.range-slider input::-webkit-slider-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  background: var(--second-color) !important;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
}

.range-slider input::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  background: var(--second-color) !important;
  border-radius: 50%;
  cursor: pointer;
}

.slider-track {
  position: absolute;
  height: 5px;
  width: 100%;
  background: var(--second-color) !important;
  top: 20px;
  border-radius: 5px;
}

/*=======================================
     End sub category page 
======================================== */

.blog-section {
    background: linear-gradient(180deg, #fff3cd38 0%, #ffc10708 100%);
    padding: 42px 0px;
}

.tst-header {
    text-align: center;
    margin-bottom: 24px;
}






/* Responsive */
@media (max-width: 768px) {

.sub-category-result {
    flex-wrap: wrap;
}
.tour-type-wrapper {
    padding: 0;
}

.filter-model {
    padding: 13px 32px;
    padding-left: 5px;
    padding-right: 45px;
}
.tst-header {
    text-align: center;
    margin-bottom: 27px;
}


}