  /* --------------------------------------- 검색 페이지 작은카드 모바일 --------------------------------------- */ 
  .search-placeinfo-card-mo {
  display: none;
  }
  @media screen and (max-width: 550px){
  .search-placeinfo-card-mo {
    position:fixed;
    bottom:76px;
    left:50%;
    transform: translate(-50%, -0%);
    z-index:101;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    display: block;
  }
  .search-placeinfo-card-mo .card-wrap {
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
    background: #fff;
  }
  .search-placeinfo-card-mo .card-wrap .card-body {
    position: relative;
    display:flex;
  }
  .search-placeinfo-card-mo .card-wrap .image-box {
    background-color:black;
    width: 124px;
    max-height: 130px;
    color: #888;
    overflow: hidden;
    aspect-ratio: 1 / 1;
  }
  .search-placeinfo-card-mo .card-wrap .image-box img{
    height: 100%;
  }
  .search-placeinfo-card-mo .card-wrap .info_inner {
    height: auto;
    padding:12px;
  }
  .search-placeinfo-card-mo .card-wrap .info_inner .txt__card__tit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 186px;
    font-size: 14px;
    font-weight: bold;
  }
  .search-placeinfo-card-mo .card-wrap .info_inner .txt__subtit__sm {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 183px;
    margin-top: 2px;  
    font-size: 14px;
    line-height: 24px;
    font-weight: normal; 
    color: #6D6D6D;
  }
  .search-placeinfo-card-mo .card-wrap .info_inner .txt__subtit__event {  
    font-size: 12px;
    font-weight: bold;
    color: #161616;
    display: flex;
    align-items: center;
    margin-top: 6px;
  }
  .search-placeinfo-card-mo .card-wrap .info_inner .txt__subtit__event .term{  
    font-size: 12px;
    color: #DE2E5F;
    font-weight: bold;
    margin-left: 6px;
  }
  }
  /* --------------------------------------- 검색 페이지 작은카드 모바일 pc --------------------------------------- */ 
  @media screen and (max-width: 550px){
    .search-placeinfo-card-pc{
      display: none;
    }
  }
  .search-placeinfo-card-pc {
    z-index: 101;
    position: absolute;
    left: 0;
    bottom: 40px;
    width: auto;
    height: auto;
    margin-left: -180px;
    text-align: left;
    display: block;
  }
  .search-placeinfo-card-pc .card-wrap {
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
    background: #fff;
  }
  .search-placeinfo-card-pc .card-wrap .card-body {
    position: relative;
    display:flex;
  }
  .search-placeinfo-card-pc .card-wrap .image-box {
    background-color:black;
    width: 120px;
    max-height: 130px;
    color: #888;
    overflow: hidden;
  }
  .search-placeinfo-card-pc .card-wrap .image-box img{
    height: 100%;
  }
  .search-placeinfo-card-pc .card-wrap .info_inner {
    height: auto;
    padding:12px;
  }
  .search-placeinfo-card-pc .card-wrap .info_inner .txt__card__tit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
    font-size: 16px;
    font-weight: bold;
  }
  .search-placeinfo-card-pc .card-wrap .info_inner .txt__subtit__sm {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    margin-top: 2px;  
    font-size: 14px;
    line-height: 24px;
    font-weight: normal; 
    color: #6D6D6D;
  }
  .search-placeinfo-card-pc .card-wrap .info_inner .txt__subtit__event {  
    font-size: 12px;
    font-weight: bold;
    color: #161616;
    display: flex;
    align-items: center;
    margin-top: 6px;
  }
  .search-placeinfo-card-pc .card-wrap .info_inner .txt__subtit__event .term{  
    font-size: 14px;
    color: #DE2E5F;
    font-weight: bold;
    margin-left: 6px;
  }


  /*--------------------------------------------------------------- 마감임박순 셀릭트박스 -----------------------------------------------------------------*/

  .selectbox{
    width: 140px;
  }
  .custom-select{
    color: grey;
    font-family:'NanumSquare',sans-serif;
    width: 100%;
    border: none;
    font-size: 14px;
    border-radius: 4px;
  }
  .custom-select select{
    font-size: 14px;
    color: grey;
  }
  .custom-select {
    position: relative;
    font-family:'NanumSquare',sans-serif;
    color: grey;
  }
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
  /*style the arrow inside the select element:*/
      
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;    
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color:  black transparent transparent transparent;
  }
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent black transparent;
    top: 7px;
  }
        
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    text-align: center;
    color: black;
    padding: 10px 2px;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    }
  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: 1px solid gray;
    box-shadow: 0 0 32px 0 rgb(0 0 0 / 12%);
  }
        
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  .select-items div:hover, .same-as-selected {
    background-color: #E5EBFB;
  }
  /*--------------------------------------------------------------- 마감임박순 셀릭트박스 END -----------------------------------------------------------------*/

  /*--------------------------------------------------------------- 팝업종류 셀렉트 박스  -----------------------------------------------------------------*/
  .popup-search{
    width: 340px;
  }
  .popup-search .popup-selectbox{
    border: none; 
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translate(-50%, -50%);
  }

  /*--------------------------------------------------------------- 팝업종류 셀렉트 박스 END -----------------------------------------------------------------*/

  
  .btn--outlined-gray{
    border-radius: 8px;
  }
  .btn--primary{
    border-radius: 8px;
    background-color: #3C7CF5;
  }
  .btn--primary:hover{
    background-color: #1264FF;
  }
  .tab-filter .half-line{
    width: 1px;
    height: 7.6px;
    background: #C3C0C0;
    position: relative;
    top: 25px;
  }
  .search_option{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #DCDCDC;
    background-color: white;
  }
  .section--searchResult .list--inner .list--header .filter-tab .active{
    border: 1px solid #3C7CF5;
  }
  .search_option img{
    width: 24px;
    height: 24px;
  }
  #layerPopup2{
    overflow: auto;
    max-width: 638px;
    border-radius: 8px;
    z-index: 1000;
  }
  .inputWrap{
    border: 4px solid rgba(0, 60, 224, 0.65);
    height: 100%;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #262626;
    padding-left: 1rem;
  }
  .section--searchResult{
    padding: 60px 100px;
    background-color: #e5ebfb;
    min-height: calc(100vh - 104px);
  }
  .list--inner{
    max-width: 1400px;
    background: #fff;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 18px;
    min-height: 730px;
  }
  .list--inner .list--header{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 14px;
    align-items: center;
    position: relative;
  }
  .list--inner .list--header .list-tab{
    display: flex;
    padding-right: 36px;
  }
  .list--inner .list--header .list-tab .card-content{
    padding-right: 36px;
    cursor: pointer;
  }
  .list--inner .list--header .list-tab .card-content .cardlistBtn{
    padding: 0px;
    background-color: white;
    font-weight: 500;
    height:56px;
  }
  .list--inner .list--header .list-tab .card-content .cardlistBtnbold-active{
    padding: 0px;
    background-color: white;
    font-weight: 600;    
    height:58px;
    border-bottom: 2px solid blue;
  }
  .section--searchResult .list--inner .list--headermb .searchbar{
    width: 100%;
    display: flex;
    position: relative;
  }
  .section--searchResult .list--inner .searchbar{
    width: 340px;
    display: flex;
    position: relative;
  }
  .section--searchResult .list--inner .searchbar input{
    border-radius: 40px;
    border: 1px solid #DCDCDC;
    padding-top: 14px;
    padding-right:72px;
    padding-bottom: 14px;
    padding-left: 16px;
  }
  .section--searchResult .list--inner .searchbar .popup-select-group{
    max-width: 120px;
    position: absolute;
    top: 52px;
    left: 64px;
    transform: translate(-50%, -50%); z-index: 10000;
  }
  .section--searchResult .list--inner .searchbar .ver2{
    left:74px;
  }
  .section--searchResult .list--inner .searchbar .popup-select-group .selectBox{
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%;
  }
  .section--searchResult .list--inner .searchbar .popup-select-group .select-styled:after{
    display: block;
    content: url(../images/ico_dropdown_black.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 0.2rem;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-radius: 18px;
  }
  .section--searchResult .list--inner .searchbar .popup-select-group .select-options{
    border-radius: 18px;
    display: none;
    position: absolute;
    top: -8px;
    left: -18px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    -webkit-box-shadow: 0 0 32px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 0 32px 0 rgb(0 0 0 / 12%);
    border-radius: 14px;
    width: auto;
    max-height: 215px;
    overflow: auto;
  }
  .section--searchResult .list--inner .searchbar .popup-select-group .select-options li {
    margin: 0;
    padding: 12px 0;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    cursor: pointer;
    border-bottom: none;
    padding: 13px 16px;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
    color: #232323;
}
.section--searchResult .list--inner .searchbar .popup-select-group .select-styled {
  width: 100%;
  border: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
  color: black;
  padding: 0;
  height: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  }

  /* 모바일 지도 검색바 */
 .searchbar_map_wrap  .popup-select-group{
    max-width: 120px;
    position: absolute;
    top: 52px;
    left: 64px;
    transform: translate(-50%, -50%); z-index: 10000;
  }
  .searchbar_map_wrap .popup-select-group .selectBox{
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%;
  }
  .searchbar_map_wrap .popup-select-group .select-styled:after{
    display: block;
    content: url(../images/ico_dropdown_black.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 0.2rem;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-radius: 18px;
  }
  .searchbar_map_wrap .popup-select-group .select-options{
    border-radius: 18px;
    display: none;
    position: absolute;
    top: -8px;
    left: -21px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    -webkit-box-shadow: 0 0 32px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 0 32px 0 rgb(0 0 0 / 12%);
    border-radius: 14px;
    width: auto;
    max-height: 215px;
    overflow: auto;
  }
  .searchbar_map_wrap .popup-select-group .select-options li {
    margin: 0;
    padding: 12px 0;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    cursor: pointer;
    border-bottom: none;
    padding: 13px 16px;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
    color: #232323;
}
  .searchbar_map_wrap  .popup-select-group .select-styled {
    width: 100%;
    border: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: normal;
    color: black;
    padding: 0;
    height: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  /* 모바일 자도  */
  .searchbar_map_wrap{
    display: none;
  }
  .map-container-mb{
    display: none;
  }
  @media screen and (max-width: 550px){
    .searchbar_map_wrap{
    display: block;
  }
  .map-container-mb{
    display: block;
    width: 100vw;
    height: 800px;
    background-color: black;
  }

  /* .list--inner .list--headermb .ver2{
    overflow-x: auto;
    min-width: 360px;
  } */
  }
  .section--searchResult .list--inner .searchbar button{
    width: 32px;
    height: 32px;
    background-color: #8A61FF;
    position: absolute; 
    right: 4px; 
    border-radius: 50%; top: 50%;
    transform: translate(0%, -50%);
  }
  .section--searchResult .list--inner .searchbar img{
    width: 16px;
    height:16px;
  }
  .areaBox{
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 0.5px #adadad inset;
    box-shadow: 0 0 0 0.5px #adadad inset;
    width: auto;
    height: 32px;
    border: 1px solid #DFDFDF;
    font-size: 14px;
    padding: 8px 14px;
    font-weight: 500;
  }
  .category-tab{
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #DFDFDF;
    border-radius: 8px;
    margin-left: 10px;
  }
  /* 카테고리 텝 모바일 */
  .category-tabmb{
    position: fixed;
    bottom: 54px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    padding: 14px 14px;
    border-radius: 50px;
    background-color: #3C7CF5;
    z-index: 100;
    display: none;
  }
  .category-tabmb .category-tablink{
    background-color: #3C7CF5;
    padding: 0px;
    margin-right: 14px;
  }
  .category-tabmb :nth-child(3){
    margin-right: 0px;
  }
  .category-tabmb img{
    width: 18px;
    height: 18px;   
  }
  /* 카테고리 텝 모바일 END */
  .category-tab :nth-child(3){
    margin-right: 0px;
  }
  .filter-tab{
    display: flex;
    align-items: center;
  }
  .category-tab img{
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
  .category-tablink{
    background-color: white;
    padding: 0px;
    margin-right: 14px;
  }
  /* 모바일 */
  .list--inner .list--headermb{
    border-bottom: 1px solid #D9D9D9;
    display: none;
    position: relative;
  }
  .list--inner .list--headermb .searchbar button{
    width: 32px;
    height: 32px;
    background-color: #8A61FF;
    position: absolute;
    right: 4px;
    border-radius: 50%; top: 50%;
    transform: translate(0%, -50%);
  }
  .list--inner .list--headermb .searchbar button img{
    width: 16px;
    height:16px;
  }
  .list--inner .list--headermb .searchbar input{
    padding-left: 20px;
  }
  .list--inner .list--headermb .tab-filter{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 12px;
    width: 100%;
  }
  .list--inner .list--headermb .tab-filter .list-tab-wrap{
    overflow: hidden;
    overflow-x: auto;
  }
  .list--inner .list--headermb .tab-filter .list-tab-wrap::-webkit-scrollbar {
    display: none;
  }
  .list--inner .list--headermb .list-tab{
    display: flex;
    align-items:flex-start;
    gap: 8px;
  }

  .list--inner .list--headermb .list-tab-group::-webkit-scrollbar {
    display: none;
  }
  .list--inner .list--headermb .list-tab .card-content{
    cursor: pointer;
  }
  .list--inner .list--headermb .list-tab .card-content .ver2{
    font-size: 14px!important;
  }
  .list--inner .list--headermb .list-tab .card-content .cardlistBtn{
    padding: 0px;
    background-color: white;
    font-weight: 500;
    height:56px;
    font-size: 15px;
  }
  .list--inner .list--headermb .list-tab .card-content .cardlistBtnbold-active{
    padding: 0px;
    background-color: white;
    font-weight: 700;    
    height:58px;
    font-size: 15px;
    border-bottom: 2px solid blue;
  }
  .btn_filter{
    width: 32px;
    height: 32px;
    border: 1px solid #DCDCDC;
    background-color: white;
    border-radius: 50%;
  }
  .btn_filter img{
    width: 24px;
    height: 24px;
    }
  /* 지도 검색바 */
  .searchbar_map_wrap{
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    width: 100%;
    top: 6%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .searchbar_map_wrap .searchbar{
    width: 100%;
    display: flex;
    position: relative;
    background-color: white;
    border-radius: 40px;
  }
    .w100{
      width: 100%;
  }
  .searchbar_map_wrap .searchbar input{
    border-radius: 40px;
    border: 1px solid #DCDCDC;
    padding-top: 14px;
    padding-right:72px;
    padding-bottom: 14px;
    padding-left: 16px;
  }
  .searchbar_map_wrap .searchbar button{
    width: 32px;
    height: 32px;
    background-color: #8A61FF;
    position: absolute;
    right: 4px;
    border-radius: 50%; top: 50%;
    transform: translate(0%, -50%);
  }
    .searchbar_map_wrap .searchbar button img{
    width: 16px;
    height:16px;
    }
    .searchbar_map_wrap .searchbar input{
    padding-left: 20px;
    }
    /* 모바일 끝 */
    .tabcontent{
      padding-top: 40px;
    }
    .pdt0{
      padding-top: 0px;
    }
    .number-arrange{
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .selectBox-re{
      border: none;
      font-size: 14px;
    }
    .list-title{
      font-size: 20px;
    }
    .card__item2{
      position: relative;
      max-width: 100%;
      margin-bottom: 20px;
      cursor: pointer;
      border-radius: 12px;
      min-width: 294px;
    }
    .card__item2:hover{
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
    .card_img{
      border-radius: 12px 12px 0 0;
      height: 100%;
    }
    .cccc{
      position: relative;
      background-position: center;
      aspect-ratio: auto 3 / 2; 
    }
    .location-box{
      background-color: rgba(0, 0, 0, 0.4);
      padding: 4px 20px;
      display: flex;
      align-items: center;
      position: absolute;
      bottom: 3px;
      width: 100%;
    }
    .location-box span{
      font-size: 12px;
      color: #E1E1E1;
      margin-left: 6px;
    }
    .location-box > img{
      width: 9px;
    }
    .card__inner2{
      position: relative;
      padding: 1rem 1.25rem 1rem;
      border: 1px solid rgba(224, 224, 224, 0.5);
      border-top: none;
      border-radius: 0 0 12px 12px;
      height: 132px;
    }
    .card__inner2:hover{
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
    .card-container{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 12px; grid-auto-columns: 300px;
    }
    .txt__wrap2 .txt__card__tit{
      font-weight: bold;
      font-size: 16px;
      line-height: 19px;
      height: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .txt__wrap2 .txt__subtit__sm{
      font-size: 14px;
      line-height: 17px;
      font-weight: normal;
      color: #161616;
      margin-top: 4px;
      height: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .txt__subtit__event{
      font-size: 12px;
      font-weight: bold;
      color: #161616;
      display: flex;
      align-items: center;
    }
    /* 캘린더 모바일 카드 */
    .txt__subtit__eventmb{
      font-size: 12px;
      font-weight: bold;
      color: #161616;
      display: flex;
      align-items: center;
      margin-top: 8px;
    }
    .calender-cardmb{
      width: 342px;
      height:126px;
      border-radius: 12px;
      display: flex;
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
      background-color: white; position: fixed;
      bottom: 50px;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .imagemb-box{
      position: relative;
      width: 119px;
      border-radius:12px 0px 0px 12px;
      background-size: cover;
    }
    .imagemb-box img{
      height: 100%;
      border-radius:12px 0px 0px 12px;
      background-size: cover;
      height: 100%;
    }
    .calendercard-innermb{
      padding: 12px 12px;
    }
    .calendercard-innermb .txt__card__tit{
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 188px;
    }
    .calendercard-innermb .txt__subtit__sm{
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 188px;
      margin-top: 4px;
    }
      /* 캘린더 모바일 카드 END*/
    .term{
      font-size: 16px;
      color: #DE2E5F;
      font-weight: bold;
      margin-left: 6px;    
    }
    .calendercard-innermb .term{
      font-size: 14px;
      color: #DE2E5F;
      font-weight: bold;
      margin-left: 6px;    
    }
    .card-line{
      border: none;
      border-bottom: 1px solid #F3F5F8;
      margin: 8px 0;
    }
    .reception-period{
      display: flex;
      margin-top: 6px;
    }
    .reception-period-text{
      font-weight: 500;
      padding: 3px 4px;
      background-color: #B499FE;
      border-radius: 4px 0px 0px 4px;
      display: flex;
      align-items: center;
    }
    .reception-period-text > span{
      font-size: 10px;
      font-weight: 600;
      color: white;
      height: 11px;
      display: flex;
      align-items: center;
    }
    .reception-period-term{
      display: flex;
      align-items: center;
      padding: 3px 4px;
      border: 1px solid #B499FE;
      border-radius: 0px 4px 4px 0px;
    }
    .reception-period-term span{
      font-size: 12px;
      font-weight: 600;
      color:#B499FE;
      display: flex;
      align-items: center;
      height: 11px;
    }
    

    /* 지역상권카드 */
    .sign-space{
      padding: 6px 14px;
      background: #799F54;
      border-radius: 12px 0px;
    }
    .sign-space > p{
      color:white;
      font-size:12px;
    }
    /* 지역상권카드 END */
    /* 백화점 팝업카드 */
    .sign-popup{
      padding: 6px 14px;
      background: #3D57E6;
      border-radius: 12px 0px;
    }
    .sign-popup > p{
      color:white;
      font-size:12px;
    }
    /* 백화점 팝업카드 END */
    /* 행사정보 카드 */
    .sign-event{
      padding: 6px 14px;
      background: #A2627E;
      border-radius: 12px 0px;
    }
    .sign-event > p{
      color:white;
      font-size:12px;
    }
    /* 행사정보 카드 END */
    /* 마감카드 */
    .txt__subtit__event_unabled{
      font-size: 12px;
      font-weight: bold;
      color: #A3A3A3;
      display: flex;
      align-items: center;
    }
    .term_unabled{
      font-size: 16px;
      color: #A3A3A3;
      font-weight: bold;
      margin-left: 6px;    
    }
    .reception-period{
      display: flex;
      margin-top: 6px;
    }
    .reception-period-text_unabled{
      font-weight: 500;
      padding: 3px 4px;
      background-color: #A3A3A3;
      border-radius: 4px 0px 0px 4px;
      display: flex;
      align-items: center;
    }
    .reception-period-text_unabled > span{
      font-size: 10px;
      font-weight: 600;
      color: white;
      height: 11px;
      display: flex;
      align-items: center;
    }
    .reception-period-term_unabled{
      display: flex;
      align-items: center;
      padding: 3px 4px;
      border: 1px solid #A3A3A3;
      border-radius: 0px 4px 4px 0px;
    }
    .reception-period-term_unabled span {
      font-size: 12px;
      font-weight: 600;
      color:#A3A3A3;
      height: 11px;
      display: flex;
      align-items: center;
    }
    /* 마감카드 END */
    .tag__wrap2{
      bottom: 16px;
      left: 20px;
      position:absolute;
      display: flex;
      width: calc(100% - 2.5rem);
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .txt__tag2{
    flex: none;
    line-height: 24px;
    }
    .tag__wrap2 li{
      color: #6D6D6D;
      font-weight: 400;
      display: inline-block;
      background: #f2f4f6;
      padding: 0 0.5rem;
      border-radius: 6px;
      margin-right: 0.375rem;
      color: inherit;
      font-size: 13px;
    }
    /* 더보기 추가 9월19일*/
    .moreBtn{
      padding: 10px 20px;
      border: 1px solid #BABABA;
      border-radius: 42px;
      display: flex;
      align-items: center;
      background-color: transparent;
      margin: 30px auto;
    }
    .moreBtn span{
      color: #ABA9A9;
    }
    .moreBtn span:nth-child(1){
      margin-right: 12px;
    }
    .pagination{
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .pagination .on{
      margin-right: 12px;
    }
    .pagination .on:last-child{
      margin-right: 0px;
    }
    .scrolltop{
      display: none;
    }
    #topBtn {
      display: none;
      position: fixed;
      bottom: 83px;
      right: 20px;
      z-index: 99;
      font-size: 18px;
      border: none;
      outline: none;
      color: black;
      cursor: pointer;
      padding: 8px;
      border-radius: 50px;
      background-color: white;
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
      z-index: 100;
      box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
    #topBtn img{
      width: 20px;
      height: 20px;
    }
    /* 더보기 추가 */
    .tabcontent-map .map-container{
      position: relative;
      width: 100%;
      height: 800px;
      padding: 0px;
      overflow: hidden;
      background-color: black;
    }

  /*--------------------------------------------------------------- 모바일용 카드 -----------------------------------------------------------------*/

  /*-- 스케줄 팝업카드 --*/
  .placeinfo_wrap_schedule {z-index: 101;position:absolute;bottom:28px;left:-150px;}
  .placeinfo_schedule {border-radius:12px;border: 1px solid #ccc; border-bottom:2px solid #ddd;background: #fff; display: flex;width: 370px;}
  .placeinfo_schedule:nth-of-type(n) {border:0; box-shadow:0px 1px 2px #888;}
  .placeinfo_schedule a, .placeinfo a:hover, .placeinfo a:active{color:#fff;text-decoration: none;}
  .placeinfo_schedule a, .placeinfo span {text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
  .placeinfo_schedule .title {font-weight: bold; font-size:14px;border-radius: 6px 6px 0 0;margin: -1px -1px 0 -1px;padding:10px; color: #fff;}  
  /*-- 스케줄 팝업카드 종료 --*/
  @media screen and (max-width: 550px){
 
  .placeinfo_schedule{
    width: 100%;
  }
  .placeinfo_wrap_schedule {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    position:fixed;
    bottom:76px;
    left:50%;
    transform: translate(-50%, -0%);
    z-index:101 ;
  }
  }
  @media screen and (max-width: 376px){
    .calendercard-innermb .term{
      font-size: 13px;
    }
  }
  /*--------------------------------------------------------------- 모바일용 카드 종료 -----------------------------------------------------------------*/
    @media screen and (max-width: 1920px){
    .section--searchResult{
      padding: 60px 0px;
      max-width: 1920px;
      background-color: #e5ebfb;
      min-height: calc(100vh - 104px);
    }
    }
    @media screen and (max-width: 1720px){
    .list--inner{
      max-width: 1400px;
      background: #fff;
      margin: 0 auto;
      padding: 60px 40px;
      border-radius: 18px;
      min-height: calc(100vh - 104px);
    }
    }
    @media screen and (max-width: 1528px){
    .card__item2{
      position: relative;
      max-width: 100%;
      margin-bottom: 20px;
      cursor: pointer;
      border-radius: 12px;
    }
    .card-container{
      grid-template-columns: repeat(4, 1fr);
    }
    }
    @media screen and (max-width: 1400px){
    .list--inner{
      border-radius: 0px;
    }
    .section--searchResult{
      padding: 0px 0px;
      max-width: 1920px;
      background-color: #e5ebfb;
      min-height: calc(100vh - 104px);
    }
    }
    @media screen and (max-width: 1286px){
    .card-container{
      grid-template-columns: repeat(3, 1fr);
    }
    }
    @media screen and (max-width: 950px){
    .card-container{
      grid-template-columns: repeat(2, 1fr);
    }
    }
    @media screen and (max-width: 846px){
    .card__item2{
      position: relative;
      max-width: 100%;
      margin-bottom: 20px;
      cursor: pointer;
      border-radius: 12px;
    }
    
    /* .list--inner .list--header{
    display: none;
    } */
    .pd0-m{
      padding: 0px;
    }
    .category-tabmb{
      display: block;
    }
    }
    @media screen and (max-width: 550px){
    .placeinfo_wrap_map{
      width: 100%;
    }
    .wd-28{
      width: 28px!important;
      height: 28px!important;
    }
    .wd-20{
      width: 20px!important;
      height: 20px!important;
    }
    @media screen and (max-width: 376px){
      .list--inner .list--headermb .list-tab .card-content .ver2{
        font-size: 13px!important;
      }
      }
    .list--inner{
      max-width: 1720px;
      background: #fff;
      margin: 0 auto;
      padding: 20px 20px;
      border-radius: 0px;
    }
    .list--inner .list--header{
      display: none;
    }
    .list--inner .list--headermb{
      display: block;
    }
    .card__item2{
      position: relative;
      max-width: 100%;
      margin-bottom: 20px;
      cursor: pointer;
      border-radius: 12px;
    }
    .location-box{
      background-color: rgba(0, 0, 0, 0.4);
      padding: 3px 20px;
      display: flex;
      align-items: center;
      position: absolute;
      bottom: 0%;
      width: 100%;
    }
    .card-container{
      grid-template-columns: auto;
    }
    .scrolltop{
      display: block;
    }
    .select-selected:after {
      position: absolute;
      content: "";
      top: 16px;    
      right: 10px;
      width: 0;
      height: 0;
      border: 6px solid transparent;
      border-color:  black transparent transparent transparent;
    }
    .txt__wrap2 .txt__card__tit{
      font-weight: bold;
      font-size: 18px;
      line-height: 19px;
      height: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 306px;
    }
    .txt__wrap2 .txt__subtit__sm{
      font-size: 14px;
      line-height: 17px;
      font-weight: normal;
      color: #161616;
      margin-top: 4px;
      height: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 306px;
    }
    .tabcontent .map-container{
      position: relative;
      width: 100%;
      padding: 0px;
      overflow: hidden;
    }
    .tabcontent-map .map-container{
      position: absolute;
      width: 100vw;
      height: 100vw;
      padding: 0px;
      overflow: hidden;
      background-color: black;
    }
    }