@charset "UTF-8";

.row {
  justify-content: center;
  margin: 0 auto;
}
.gls_mgtb20 {
  padding-left: 260px;
}
.search_box {
  padding: 19px;
  background-color: #d24663;
  margin: 56px 16px 0 0;
  width: 260px;
  min-height: 1276px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.search_text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  color: white;
  margin-bottom: 8px;
}
.search_input {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: solid 1px white;
}
.search_input input {
  border: none;
  border-radius: 5px 0 0 5px;
  width: 185px;
  height: 30px;
}
.search_input input:focus{
    outline: none;
}
.search_icon_box {
  width: 25px;
  height: 30px;
  line-height: 30px;
  background-color: white;
  border-radius: 0 5px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.search_icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 16px;
  height: 17px;
}
.title_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.check_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  color: white;
}
.remove_check {
  font-size: 16px;
  line-height: 1.31;
  color: #ffffff;
  cursor: pointer;
}
.check_box_block {
  margin-bottom: 32px;
}
.check_box_block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check_box_block ul li label {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.31;
  color: #ffffff;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.check_box_block ul li input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* 外觀部份 */
.check_box_block ul li .checkmark.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border: solid 1.5px #ffffff;
  background-color: #d24663;
}
.check_box_block ul li .checkmark.radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  border: solid 1.5px #ffffff;
  background-color: #d24663;
}
/* 滑鼠移過去的部份 */
.check_box_block ul li label:hover input ~ .checkmark {
  background-color: #ccc;
}
/* 打勾後的部分 */
.check_box_block ul li label input:checked ~ .checkmark {
  background-color: #d24663;
}
.check_box_block ul li label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check_box_block ul li label input:checked ~ .checkmark:after {
  display: block;
}
/* 打勾部份 */
.check_box_block ul li label .checkmark.checkbox:after {
  left: 4px;
  top: -1px;
  width: 9px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check_box_block ul li label .checkmark.radio:after {
  top: 4px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.game_list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  min-width: 812px;
}
.game_row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
.filter_btn_block, .search_mobile_bg {
  display: none;
}
.close_place.search_close {
  display: none;
}

@media screen and (max-width: 769px) {
  .search_box {
    display: none;
    position: absolute;
    left: 0;
    top: -5px;
    width: 100%;
    z-index: 100;
    margin: 0;
    padding-left: 27px;
  }
  .filter_btn_block {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 8px;
  }
  .filter_btn {
    border-radius: 15px;
    border: solid 1px #d24663;
    width: 110px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    color: #d24663;
  }
  .game_list {
    margin-top: 24px;
    min-width: 0;
  }
  .game_row {
    flex-direction: column;
    margin-bottom: 0;
    align-items: flex-start;
    width: 344px;
  }
  .gls_mgtb20 {
    padding-left: 0;
  }
  .col-xl-12 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .search_close {
    margin: 0 !important;
  }
  .search_input {
    justify-content: flex-start; 
  }
  .search_input, .check_box_block {
    width: 212px;
  }
  .search_mobile_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
  .close_place.search_close {
    display: flex;
  }
}
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .row {
    zoom: 80%;
  }
}
@media screen and (min-width: 800px) and (max-width: 900px) {
  .row {
    zoom: 70%;
  }
}
@media screen and (min-width: 770px) and (max-width: 799px) {
  .row {
    zoom: 60%;
  }
}
@media screen and (min-width: 768px) and (max-width: 769px) {
  .row {
    zoom: 200%;
  }
  .filter_btn_block {
    zoom: 120%;
  }
  .bread_crumbs {
    zoom: 180%;
  }
  .search_box {
    top: -15px;
  }
}
@media screen and (min-width: 540px) and (max-width: 767px) {
  .row {
    zoom: 150%;
  }
}
@media screen and (min-width: 411px) and (max-width: 539px) {
  .row {
    zoom: 110%;
  }
}
@media screen and (max-width: 320px) {
  .row {
    zoom: 90%;
  }
}
@media screen and (max-width: 280px) {
  .row {
    zoom: 75%;
  }
  .filter_btn_block {
    zoom: 90%;
  }
}
