:root {
    --Color-Style-Grayscale-50: #F9FAFB;
    --Color-Style-Grayscale-800: #1F2A37;
    --Color-Style-Grayscale-700: #374151; 
    --Color-Style-Grayscale-600: #4B5563;
    --Color-Style-Grayscale-500 : #6B7280;
    --Color-Style-Grayscale-200: #E5E7EB;
    --Color-Style-Grayscale-00: #FFF; 
    --Color-Style-Theme-Map-Autumn: #FF7300;
    --Color-Style-Theme-Map-Chart_grey_fill: #DBDBDB;
    --Color-Style-Primary-600 : #7E3AF2;
    --Color-Style-Parking-Gray : #888E9B;
    
    --GrayScale-70: #343434;
    --autumn-primary: #FF8A00;
    --primitive-need-to-check-blue-500: #3F83F8;

    /*그림자 효과*/
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    --button-shadow: 0 4px 16px rgba(255, 138, 0, 0.3);

     /* 보더 반경 */
    --border-radius: 12px;
    --border-radius-small: 8px;
    --border-radius-large: 24px;
    
}



.thm_banner {
  display: none;
  justify-content: center; 
}
.thm_banner.ban_active {
  display: flex;
}
@media (hover: hover) and (pointer: fine){
  .thm_container:hover {
    border-color: var(--autumn-primary);
    /* transform: translateY(-2px); */
    transition: all 0.3s ease;
  }
}

.banner_container {
  display: flex;
  justify-content: center; 
  flex-direction: column;
  gap: 8px; 
  width: 300px;
  height:66px;
  z-index: 100;
  position: absolute;
  border-radius: var(--border-radius);
  padding: 12px 16px;
  align-items: center;
  align-self: stretch;
  cursor: pointer;
  background: var(--Color-Style-Grayscale-50, #F9FAFB);
  transition: all 0.3s ease;
}
.banner_container:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--autumn-primary);
}
.banner_container.top {
  top: 150px;
}
.banner_container.bottom{
  bottom: 50px;
}

.banner_item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner_icon {
  font-size: 16px;
  background-image: url('/static/images/theme/ico_illust_fallen_leaf.svg');
  width: 40px;
  height: 40px;
  padding: 3px 5.69px 2.73px 5px;
  justify-content: center;
  align-items: center;

  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;

}
.banner_text {
  display: flex;
  flex-direction: column;
  width:200px
}
.banner_title {
  color: var(--Color-Style-Grayscale-800, #1F2A37);
  align-self: stretch;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.6px;
  height: 22px;
}
.banner_desc {
  color: var(--Color-Style-Grayscale-600, #4B5563);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; 
  letter-spacing: -0.6px;
  height: 16px;
}
.banner_arrow {
  background-image: url('/static/images/theme/ico_expand_arrow_fill.svg');
  width: 16px;
  height: 16px;
  background-size: cover;
  aspect-ratio: 1/1;
}
.banner_container:hover .banner_arrow {
    transform: translateX(3px);
}

.modal_container {
  display: none;
}

.modal_container.active {
  display: block;
}

.modal_overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 968px; 
  /* max-height: 80vh; */
  background: var(--Color-Style-Grayscale-00, #FFF);
  border: 1px solid #ccc;
  border-radius: var(--border-radius-large);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25);
  z-index: 999;
  cursor: grab;
  overflow: hidden;
  backdrop-filter: blur(10px);
  
  /* Media query 변경 시 애니메이션 */
  transition: width 0.3s ease, flex-direction 0.3s ease;
}
.modal_overlay.minimize{
  border-radius: var(--border-radius);
  width:421px;
}
.minimize_layer {
  display: none;
  height: 64px;
  padding: 16px;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--Color-Style-Grayscale-200, #E5E7EB);
  background: var(--Color-Style-Grayscale-00, #FFF);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(10px);
}
.minimize_layer.active {
  display: inline-flex;
}
.min_item {
  display: flex;
  align-items: center;
  width: 100%;
  /* gap: 12px; */
}
.min_icon {
  background-image: url('/static/images/theme/ico_illust_fallen_leaf.svg');
  display: flex;
  width: 32px;
  height: 32px;
  padding: 2.4px 4.552px 2.184px 4px;
  justify-content: center;
  align-items: center;
  background-size: cover;
  margin-right:8px;
  flex-shrink: 0;
  
} 
.min_title {
  color: var(--Color-Style-Grayscale-800, #1F2A37);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; 
  letter-spacing: -0.6px;   
  width: 91px;
}
.min_sep {
  background-image: url('/static/images/theme/divider_grey.svg');
  display: flex;
  width: 1px;
  height: 14px;
  justify-content: center;
  align-items: center;
  background-size: cover;
  margin: 0 12px;
}
.min_region {
  display: flex;
  /* width: 120px; */
  height: 32px;
  min-width: 115px;
  padding: 6px 16px;
  align-items: center;
  border-radius: 100px;
  background: var(--Color-Style-Grayscale-700, #374151);
  overflow: hidden;
  color: var(--Color-Style-Grayscale-00, #FFF);
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; 
  letter-spacing: -0.6px;
  margin-right:8px;
} 
.min_rank {
  color: var(--Color-Style-Theme-Map-Autumn, #FF7300);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; 
  letter-spacing: -0.6px;
  margin-right:6px;
  flex-shrink: 0;
}
.min_poiName {
  flex: 1;
  overflow: hidden;
  color: var(--Color-Style-Grayscale-800, #1F2A37);
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  /* font-family: var(--font-family-base); */
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.6px;
  margin-right: 16px;
  min-width: 0; /* flex 아이템이 줄어들 수 있도록 */
}
.minimize_closeBtn {
  background-image: url('/static/images/theme/ico_close_delete_thin_fill.svg');
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  background-size: cover;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto; /* 오른쪽 정렬 */
}

.modal {
  position: relative;
  display: none;
  flex-direction: column;
  background: #fff;
  width: 100%;
  max-height: 75vh;
  gap:24px;
}

/* 모달 내 모든 요소에 폰트 적용 */

.modal_header {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0 18px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  
  /* flex-direction 변경 시 애니메이션 */
  transition: flex-direction 0.3s ease, gap 0.3s ease;
}


.modal_header_title {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  width:100%;
}
.modal_header_content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  width:100%;
}
.modal_title {
  display: flex;
  padding: 24px 0 16px 0;
  /* gap: 0 16px; */
  flex-wrap: wrap;
  color: var(--Color-Style-Grayscale-700, #374151);
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px; 
}
.modal_subtitle1 {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: stretch;
}
.modal_subtitle1_image {
  background-image: url('/static/images/theme/ico_illust_fallen_leaf.svg');
  background-size: cover;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 3px 5.69px 2.73px 5px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
.modal_subtitle1_text {
  color: var(--Color-Style-Grayscale-800, #1F2A37);
  font-size: 22px;
  font-weight: 600;
  line-height: 32px; 
}
.modal_subtitle1_text span:first-child {
  color: var(--Color-Style-Theme-Map-Autumn, #FF7300);
  font-weight: 700;
  line-height: 34px; 
  letter-spacing: -0.6px;
  padding-right:6px;
}
.modal_subtitle2 {
  color: var(--GrayScale-70, #343434);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.6px;
  margin-top:9px;
}
.modal_header_image {
  display: flex;
  width: 400px;
  height: 202px;
  margin-top: 16px;
  flex-direction: column;
  align-items: flex-start;
  background-image: url('/static/images/theme/ico_illust_theme_autumn.svg');
  background-size: cover;
  position:absolute;
  right:35px;
  
  /* 위치 및 크기 변경 시 애니메이션 */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal_closeBtn { 
  width: 20px;
  height: 20px;
  background-image: url('/static/images/theme/ico_close_delete_thin_fill.svg');
  background-size: cover;
  margin-top:24px;
  cursor: pointer;
}
.tab_container {
  display: flex;
  flex-wrap: wrap;
  gap:8px;
  margin:12px 0 18px 0;
}
.tab {
  min-width: 56px;
  padding: 6px 16px;
  align-items: center;
  border-radius: 100px;
  background: var(--Color-Style-Grayscale-50, #F9FAFB);
  color: var(--Color-Style-Grayscale-500, #6B7280);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.tab.active{
  background: var(--Color-Style-Grayscale-700, #374151);
  color: var(--Color-Style-Grayscale-00, #FFF);
  font-weight: 600;
}
.card_scroll_area {
  display: flex;
  padding: 0 4px 0 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  scroll-behavior: smooth;
  overflow-y: auto;
}
.region_section {
  margin-bottom: 32px;
}
.region_title {
  margin-bottom:8px;
  color: var(--Color-Style-Grayscale-800, #1F2A37);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.card_grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  align-self: stretch;
  
  /* 그리드 컬럼 변경 시 애니메이션 */
  transition: all 0.3s ease;
}
.card {
  display: flex;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--Color-Style-Grayscale-300, #D1D5DB);
  background: var(--Color-Style-Grayscale-00, #FFF);
  cursor:pointer;
  width: 458px;
}

.card_header {
  display: flex;
  width: 100%; //422px
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.card_badge {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 0 2.705px 0 2.75px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  /* background-image: url('/static/images/theme/ic_medal_1@2x.png'); */
  background-size: cover;
}
.card_title_container {
  align-self: stretch;
  flex: 1 1 0;

}
.card_title {
  color: var(--Color-Style-Grayscale-800, #1F2A37);
  max-width: 430px;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.card_info {
  overflow: hidden;
  color: var(--Color-Style-Grayscale-600, #4B5563);
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; 
}
.card_arrow {
  background-image: url('/static/images/theme/ico_expand_arrow_fill.svg');
  width: 16px;
  height: 16px;
  background-size: cover;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.card_body {
  display: flex;
  flex-direction: row;
  gap: 8px;
  
  /* flex-direction 변경 시 애니메이션 */
  transition: flex-direction 0.3s ease;
}

.card_image{
  /* flex: 1 0 0; */
  align-self: stretch;
  border-radius: 12px;
  width: 190px;
  height: 190px;
  aspect-ratio: 1/1;
  background: url('/static/images/theme/sample_image.png');
  background-size: cover;
  /* object-fit: cover; */
  
  /* 크기 변경 시 애니메이션 */
  transition: width 0.3s ease, height 0.3s ease;
}
.image_copyright {
  color: var(--Color-Style-Grayscale-1000, #000);

  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 140% */
  margin: 5px 8px 0 5px;
  top: 170px;
  position: relative;
  display: flex;
  justify-content: end;
}



.graph_area {
  position: relative;
  display: flex;
  width: 224px;
  height: 190px;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: var(--Color-Style-Grayscale-50, #F9FAFB);
  
  /* 크기 변경 시 애니메이션 */
  transition: width 0.3s ease, height 0.3s ease;
}
.graph_container {
  align-self: stretch;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}
.graph_title {
  display: flex;
  align-items: center;
  gap: 5px;
  align-self: stretch;
}
.graph_title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  flex: 1 0 0;
  overflow: hidden;
  color: var(--Color-Style-Grayscale-600, #4B5563);
  text-overflow: ellipsis;

  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 133.333% */
}
.chart_area {
  align-self: stretch;
    flex: 1 1 0;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
    display: flex;
}
.group_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    align-self: stretch;
}
.bar {
    position: relative;
    display: flex;
    width: 24px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
    align-self: stretch;
    border-radius: 4px;
  background: var(--Color-Style-Theme-Map-Chart_grey_back, #EEE);
}
.bar.highlight {
  background: var(--Color-Style-Theme-Map-Chart_fill, #E8D9FF);
}
.bar_value {
  align-self: stretch;
  height: 50%;
  border-radius: 4px;
  background: var(--Color-Style-Theme-Map-Chart_grey_fill, #DBDBDB);
}
.bar_value.highlight {
  background: var(--Color-Style-Primary-600, #7E3AF2);
}
.bar_txt {
  width: 22px;
  height: 16px;
  left: 1px;
  top: 4px;
  position: absolute;
  color: var(--Color-Style-Grayscale-400, #9CA3AF);
  text-align: center;

  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}
.bar_txt.highlight {
  color: var(--Color-Style-Primary-600, #7E3AF2);
}
.day {  
  align-self: stretch;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: inline-flex;
}
.day span {
  width: 24px;
  gap:4px;
  display: inline-flex;
  align-self: stretch;
  text-align: center;
  justify-content: center;  
  color: var(--Color-Style-Grayscale-400, #9CA3AF);    
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  word-wrap: break-word;
}
.avg {
      width: 208px;
    left: 0px;
    top: 34px;
    position: absolute;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    display: inline-flex;
}
.ic_mark {
width: 100%;
    height: 24px;
    position: relative;
}
.ic_mark_rec {
  position: relative;
  top:-13px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  width: 40px;
  height: 24px;
  flex-shrink: 0;
  background-image: url('/static/images/theme/ic_mark_average.svg');
  background-size: 40px 24px;
  text-align: center;
  color: white;
  font-size: 12px;  
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.6px;
  word-wrap: break-word;
  color: var(--Color-Style-Grayscale-00, #FFF);
  padding-left: 6px;
  box-sizing: border-box;
}
.ic_mark_line {
  display: flex;            
  align-items: center;      
  height: 1px;            
  width: 100%;
}
.dashed-line {
  stroke-linecap: round;
  stroke-width: 2; /* 선 두께 */
  stroke-dasharray: 2, 4; /* 대시 길이 5, 간격 길이 3 */
  stroke: var(--Color-Style-Grayscale-900, #111928);
}

.graph_info {
  display: flex;
  min-height: 24px;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--primitive-need-to-check-blue-50, #EBF5FF);
}
.graph_info img {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
}
.graph_info .busy_time {
  color: var(--primitive-need-to-check-blue-500, #3F83F8);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

.avg_info {
  position: absolute;
  left: 0;
  top: 80px; /* bar_graph의 평균선 위치에 맞게 조정 */
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2px;
}
.avg_texts {
  display: flex;
  flex-direction: column;
  align-items: center; /* 오른쪽 정렬, 필요시 left로 변경 */
  margin-right: 6px;
  width:20px;
}
.avg_label {
  font-size: 12px;
  color: #888;
}
.avg_val {
  font-size: 12px;
  font-weight: bold;
  color: #ff9800;
}
.avg_line {
  width: 160px; /* bar_graph의 너비에 맞게 조정 */
  height: 2px;
  background: #ff9800;
}

/* .bar_graph {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 80px;
  margin-bottom: 4px;
} */
 /* .bar_graph {
  display: flex;
  align-items: flex-end;
  margin-left: 20px; 
  position: relative;
  height: 120px; 
  gap:2px;
}
.bar_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height:100%;
}

.bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 22px;
  background: #e0e0e0;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.bar_area .value {
  font-size:10px;
  color: #666;
}

.bar_area .day {
  font-size: 10px;
}

.bar.highlight {
  background: #a66cff;
  color: white;
} */

.popular_list {
  margin-top: 16px;
  width:100%
}

.section_title {
  font-weight: bold;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;

  overflow: hidden;
  color: var(--Color-Style-Grayscale-600, #4B5563);
  text-overflow: ellipsis;

  /* Body/B3 */
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.6px;
}

.popular_list ul {
  display: flex;
  gap:8px;
  flex-direction: column;
}

.popular_list li {
  display: inline-flex;
  align-self: stretch;
  padding: 8px;
  background: var(--Color-Style-Grayscale-50, #F9FAFB);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;

}

/* .rank {
  background: url('/static/images/theme/ico_list_no_1.svg') no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
} */

.place_title {
  color: var(--Color-Style-Grayscale-600, #4B5563);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
} 
.place_category {
  color: var(--Color-Style-Grayscale-600, #4B5563);
  text-align: center;

  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.place_divider {
  width: 1px;
  height: 14px;
  background: var(--Color-Style-Grayscale-200, #E5E7EB);
}

.place_desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; 
  overflow: hidden;
  color: var(--Color-Style-Grayscale-600, #4B5563);
  text-overflow: ellipsis;
  text-align: start;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  flex: 1 0 0;
}
/* .place_arrow {
  width: 14px;
  height: 14px;
  aspect-ratio: 1/1;
} */
.dontAgainLayer {
  display: none;
  padding: 20px 24px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  align-self: stretch;

color: var(--Color-Style-Grayscale-600, #4B5563);

/* Body/B4 */
font-family: Pretendard;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
letter-spacing: -0.6px;
}

.modal.active,
.minimize_layer.active,
.dontAgainLayer.active {
  display: flex;
}
.dontAgainLayer label {
  display: flex;
  align-items: center;
  gap: 8px; /* Checkbox와 텍스트 사이 간격 */
}

/* checkbox button image override*/
input[type=checkbox] + .modal_btn_checkbox{
  background: url(../images/theme/ico_checkbox_deselected_enabled.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  cursor:pointer;
  display: inline-flex;
}
input[type=checkbox]:checked + .modal_btn_checkbox {
  background: url(../images/theme/ico_checkbox_selected_enabled.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
} 


/* 스크롤바 스타일 (특정 레이어에만 적용) */
.card_scroll_area::-webkit-scrollbar {
  width: 10px;
  height:10px;
}

.card_scroll_area::-webkit-scrollbar-track {
    background:transparent;
} 
.card_scroll_area::-webkit-scrollbar-thumb {    
    width: 2px;

    border-radius: 1px;
    background: var(--Color-Style-Grayscale-300, #D1D5DB);
    margin: 0 auto;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;  
    background-clip: content-box;
}
.mapboxgl-popup-content.theme_popup_overay {
  background: transparent;
  padding: 0;
  box-shadow: none;
  transform: translate(-50%, -53px);
  border: 0px;
  left:0px
}
.theme_symbol_popup {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  width: 220px;
  height: 124px;
  border-radius: 12px;
  background: var(--Color-Style-Grayscale-00, #FFF);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);

}
.theme_symbol_popup .popup_content {

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.theme_symbol_popup .popup_title {
  color: var(--Color-Style-Grayscale-800, #1F2A37); 
  font-size: 14px; 
  font-weight: 600; 
  line-height: 20px; 
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
  flex: 1 1 0%;             /* flex-grow, flex-shrink, flex-basis */
  min-width: 0; 
  display: flex;
} 
.theme_symbol_popup .popup_address {
  align-self: flex-start; 
  color: var(--Color-Style-Grayscale-500, #6B7280); 
  font-size: 12px; 
  font-weight: 400; 
  line-height: 16px; 
  word-wrap: break-word
}
.theme_symbol_popup .theme_symbol_popup_route {
 
  gap: 8px; 
  display: inline-flex;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; 
  cursor: pointer;
  
}


.theme_symbol_popup .btn_go {
  display: flex;
  width: 56px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px; 
  background: var(--Color-Style-Theme-Map-Autumn, #FF7300);
  color: var(--Color-Style-Grayscale-00, #FFF);
}
.theme_symbol_popup .btn_arrive {
  display: flex;
  width: 56px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--Color-Style-Grayscale-100, #F3F4F6);
        
}


@keyframes theme_symbol_popup {
  from { transform: scale(0.5) translate(-50%, -50%); opacity: 0; }
  to { transform: scale(1) translate(-50%, -50%); opacity: 1; }
}

/* Tablet responsive - 파일 맨 끝에 위치하여 우선순위 확보 */
@media (max-width: 1100px) {
  .modal_overlay {
    width: 472px
  }
  .modal_header {
    flex-direction: column;
    gap: 16p;
  }

  .modal_header_content {
    width: 100%;
  }
  
  .modal_header_image {
    /* margin-top: 0;
    position: relative;
    right: auto;
    display: flex;
    width: 380px;
    height: 202px;
    padding: 1.266px 1.77px 0 2.008px;
    justify-content: center;
    align-items: center; */
    display: none;
  }
  
  .modal_title {
    padding: 16px 0 8px 0;
  }
  
  .tab_container {
    margin: 8px 0 16px 0;
  }
  .card {
    width: 436px;
  }
  
  .card_grid {
    grid-template-columns: 1fr;
  }
  .card_body {
    flex-direction: column;
  }
  .card_image {
    width: 400px;
    height: 190px;
  }
  .graph_area {
    width: 100%;
    height: 190px;
  }
  .chart_area .avg {
    left: 35px;
    width: 280px;
  }
  
}