
/* ==================   Search Result  ============== */
.fx-searchresult__page .dropdown-check-list .anchor:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  cursor: pointer;
  padding-right: 15px;
}

.fx-searchresult__page .dropdown-check-list .anchor:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_1' enable-background='new 0 0 128 128' height='512' viewBox='0 0 128 128' width='512'%3E%3Cpath id='Right_Arrow_4_' d='m44 108c-1.023 0-2.047-.391-2.828-1.172-1.563-1.563-1.563-4.094 0-5.656l37.172-37.172-37.172-37.172c-1.563-1.563-1.563-4.094 0-5.656s4.094-1.563 5.656 0l40 40c1.563 1.563 1.563 4.094 0 5.656l-40 40c-.781.781-1.805 1.172-2.828 1.172z' style='&%2310; fill: %233F5270;&%2310;'/%3E%3C/svg%3E");
}
.fx-searchresult__page .attaraction-list .card {
  border: 1px solid #dbe4eb;
  box-shadow: 0px 5px 17px 0px rgba(0, 0, 0, 0.14);
}
.fx-searchresult__page .attaraction-list .card .ticket-logo {
  width: 270px;
}
.fx-searchresult__page .attaraction-list .card .ticket-price > span {
  font-size: 13px;
  line-height: 20px;
}
.fx-searchresult__page .attaraction-list .card .ticket-price > span + span {
  font-size: 23px;
  font-weight: 600;
}
.fx-searchresult__page .dropdown-check-list {
  display: inline-block;
  width: 30%;
  position: relative;
}
.fx-searchresult__page .dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4b566b;
  background-color: #fff;
  border: 1px solid #dae1e7;
  border-radius: 0.25rem;
}
.fx-searchresult__page .dropdown-check-list .anchor:after {
  transition: all 0.5s;
  transform: rotate(90deg);
}
.fx-searchresult__page .dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}
.fx-searchresult__page .dropdown-check-list ul.items {
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
}
.fx-searchresult__page .dropdown-check-list ul.items li {
  list-style: none;
  margin-bottom: 7px;
}
.fx-searchresult__page .dropdown-check-list ul.items.visible {
  position: absolute;
  z-index: 1024;
  height: 250px;
  overflow-y: scroll;
  width: 100%;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
@media (max-width: 768px) {
  .fx-searchresult__page .dropdown-check-list {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fx-searchresult__page .dropdown-check-list {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1680px) {
  .fx-searchresult__page .dropdown-check-list {
    width: 40%;
  }
}
input[type=checkbox] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

input[type=checkbox] + label {
  position: relative;
  cursor: pointer;
}

input[type=checkbox] + label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #d8dde5;
  padding: 11px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 3px;
}

input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #3f526f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

