
.search-form{
    padding-top: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-form-head{
    display: flex;
    flex-direction : row;
    align-items : center;
    justify-content: center;
}

.search-word-wrapper{
    width : 36.875rem;
    height : 3.5rem;
    border : 1px solid #E5E5EC;
    border-radius : 0.3rem;
    display : flex;
    flex-direction : row;
    align-items : center;
}

.search-word-wrapper > label > img{
    width : 1.75rem;
    padding-left : 0.5rem;
    padding-right : 0.5rem;
}

.search-word-wrapper > input[type=text]{
    width : 32.875rem;
    height : 3.5rem;
    padding-left : 0.5rem;
    padding-right : 0.5rem;
    color: #111111;
    border: none;
    position: relative;
    background: none;

    font-size : 1.125rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
}

.search-word-wrapper > input[type=text]::placeholder {
    color: #aaaaaa;
}
.search-word-wrapper > input[type=text]:focus { outline: none; }

.search-btn {
    width: 4.25rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius : 0.3rem;
    padding : 0;
    margin-left : 0.5rem;
}

.search-btn,
.search-btn > span{
    color: white;
    background-color : #111111;
    font-size : 1.0rem;
}

.filter-more-btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 7.5rem;
    margin-left: 0.5rem;
}

.filter-more-btn > img{
    margin-right : 0.2rem;
}

.filter-more-btn > span{
    display: flex;
    font-size : 0.9rem;
    font-family: 'Pretendard-Semibold';
    letter-spacing: -.0875rem;
}

.filter-more-btn > span::after{
    display: block;
    width : 0.75rem;
    height : 0.75rem;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
    background-image : url("../images/filter_down.svg");
    background-repeat: no-repeat;
    margin-left : 0.5rem;
}


.filter-more-btn.closed > span::after{
    background-image : url("../images/filter_down.svg");
    background-repeat: no-repeat;
}

.filter-more-btn.opened > span::after{
    background-image : url("../images/filter_up.svg");
    background-repeat: no-repeat;
}

.search-form-filter-wrapper{
    width : calc(36.875rem + 6.75rem + 8.0rem);
    display: flex;
    flex-direction : row;
    margin-top : 0.625rem;
}

.search-form-filter-bg{
    background-color : #F5F3F1;
    min-height: 3.5rem;
    width: calc(41.675rem);
    border-radius : 0.3rem;
    display : flex;
    flex-direction : row;
    min-height: 3.5rem;
}

.filter-clear-btn > span{
    font-family: 'Pretendard-Regular';
    margin-left : 0.5rem;
}

.filter-clear-btn{
    display : flex;
    flex-direction : row;
    align-items:center;
    font-size : 1.0rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
    height: 1.5rem;
}

.filter-badge-box{
    flex : 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding : 0.5rem 0.5rem 0.5rem 0.5rem;

}

.filter-badge-item{
    display: flex;
    flex-direction : row;
    align-items : center;
    padding : 0.5rem 1.0rem 0.5rem 1.0rem;
}

.filter-badge-item > span{
    color : var(--color-primary);
    font-size : 1.0rem;
    font-family: 'Pretendard-Semibold';
    letter-spacing: -.0875rem;
}

.filter-badge-remove{
    padding : 0;
}

.filter-badge-remove > img{
    width : 1.0rem;
    color : #767676;
    margin-left : 0.4rem;
}

.search-form-selectbox-wrapper{
    display: flex;
    margin-top: 1.25rem;
    padding-right: 9.5rem;
}

/* IE */
.filter-selectbox > select::-ms-expand {
	display: none;
}

.filter-selectbox > select option {
  padding: 3px 0;
}

.filter-selectbox {
  display:block;
  position: relative;
  width: 10.5rem;
  height: 3.5rem;
  border-radius: 6px;
  border: 1px solid #E5E5EC;
  padding: 0 0.5rem 0 0.5rem;
  margin-right:0.5rem;
}

.filter-selectbox > select {
  width: inherit;
  height: inherit;
  background: transparent;
  border: 0 none;
  outline: 0 none;
  padding: 0 5px;
  position: relative;
  z-index: 3; // select가 위로 올라와야 함
  -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.filter-selectbox  select option {
  background: #E5E5EC;
  color: #fff;
  padding: 3px 0;
  font-size: 16px;
}

.filter-selectbox .ico-arrow {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 1.0rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right : 0.5rem;
}

/*
.filter-selectbox  .ico-arrow img {
  width: 1.0rem;
  transition: .3s; // 부드럽게 회전
  transform: rotate(0deg);
}

.filter-selectbox > select:focus + .ico-arrow img {
  transform: rotate(180deg);
}*/




.list-wrapper{
    margin-top : 1.5rem;
    width : 80.0rem;
}

.list-sort-ctrl-wrapper{
    display:flex;
    flex-direction : row-reverse;
}

.list-sort-selectbox,
#listSortSelectBox{
    width : 8.8rem;
    height : 2.25rem;
}

.list-body{
    margin-top: 1.375rem;
    border-top : 1px solid #E5E5EC;
    border-bottom : 1px solid #E5E5EC;
}

.list-body .list-item {
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : space-between;
    padding : 1.875rem 1.25rem 1.875rem 1.25rem;
}

.list-body .list-item:hover{
    background-color : #FAFAFA;
    cursor: pointer;
}

.list-body .list-item > .title{
    display : flex;
    flex-direction : row;
    align-items : center;
    flex : 1;
}

.list-body .list-item > .instname,
.list-body .list-item > .addr{
    display : block;
    margin-right : 1.0rem;
}

.list-body .list-item > .title > span{
    font-size : 1.25rem;
    font-family: 'Pretendard-Semibold';
    letter-spacing: -.0875rem;
}

.list-body .list-item > .title > span.category{
    color : var(--color-primary) !important;
    width : 14.75rem;
    display :block;
    margin-right : 0.5rem;
}

.list-body .list-item > .title > img.fixed{
    width : 1.25rem;
    height : 1.25rem;
    margin-right : 0.5rem;
}

.list-body .list-item.fixed{
    background-color : #FCF6F6;
}

.list-body .list-item > .title > small{
    color : #111111;
    font-size : 1.25rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
    margin-left : 1.0rem;
}

.list-body .list-item > .title > img{
    width : 1.5rem;
    height : 1.5rem;
    margin-left : 0.625rem;
}

.list-body .list-item > .date{
    color : #767676;
    font-size : 1.25rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
}

.pagination-wrapper{
    margin-top : 3.75rem;
    display : flex;
    width : 80.0rem;
    justify-content : center;
    flex-direction : row;
    align-items : center;
    gap: 1.0rem;
    margin-bottom : 21.25rem;
}

.pagination-btn{
    width : 2.0rem;
    height : 2.0rem;
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : center;
    padding : 0px;
}

.pagination-btn.number > span{
    font-size:0.8rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
    color : #767676;
}

.pagination-btn.number.active > span{
    font-size:0.8rem;
    font-family: 'Pretendard-Semibold';
    letter-spacing: -.0875rem;
    color : #111111;
}


.pagination-btn.number.active{
    border : 1px solid #111111;
    border-radius : 50%;
}

.pagination-btn > img{
    width : 0.75rem;
    height : 0.75rem;
}



.not-found-data{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10.0rem;
    margin-top: 10.0rem;
    width: 100%;
}