.txt-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.main-dash {
  max-width: 1280px;
  /*padding-bottom: 64px;*/
}

.main-top {
  width: 100%;
  min-height: 390px;
  background-color: #e9f4fa;
}

.main-top-inner {
  width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 100px 0 85px;
}

.main-top-left {
  padding-right: 400px;
}

.main-top h2 {
  font-size: 60px;
  font-weight: 700;
  background: none;
  line-height: normal;
  padding: 0;
  color: #1d1d1d;
}

.main-top p {
  font-size: 22px;
  padding: 10px 0 50px;
}

.main-top p span {
  font-weight: 600;
  color: #1d56bc;
}

.main-btn-area {
  display: grid;
  gap: 10px;
}

.main-btn-area .main-btn-set {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
}

/* 고속도로 선택 영역만 한 줄로 배치 */
.main-btn-area .highway-btn-set {
  flex-wrap: nowrap;
}

.main-btn-area .main-btn-set span {
  padding-right: 15px;
  font-size: 16px;
  color: #1d1d1d;
}

/* 고속도로 타이틀 스타일 추가 */
.main-btn-area .highway-btn-set-title {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.main-btn-area .highway-btn-set-title span {
  padding-right: 15px;
  font-size: 16px;
  color: #1d1d1d;
  white-space: nowrap;
  min-width: auto;
}

.main-btn-area .main-btn-set ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.main-btn-area .main-btn-set ul.sub-btn-area {
  width: 100%;
  padding-left: 75px;
}

.main-btn-area .main-btn-set ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 30px;
  background-color: #fff;
  font-size: 17px;
  box-shadow: 0px 4px 4px 0px rgba(36, 107, 235, 0.1);
  backdrop-filter: blur(5px);
  color: #555;
}

.main-btn-area .main-btn-set ul li a.active {
  font-weight: 600;
  color: #1d1d1d;
}

.main-btn-area .main-btn-set ul.road-set li a:hover {
  background-color: #246beb;
  color: #fff;
  opacity: 0.5;
}

.main-btn-area .main-btn-set ul.road-set li a:focus {
  box-shadow: var(--krds-box-shadow-outline-inset);
  outline-offset: -0.4rem;
}

.main-btn-area .main-btn-set ul.road-set li a.active {
  background-color: #246beb;
  color: #fff;
  opacity: 1;
}

.main-btn-area .main-btn-set ul.stat-btn li a {
  width: 100px;
  justify-content: center;
}

.main-btn-area .main-btn-set ul li a.green.active,
.main-btn-area .main-btn-set ul.sub-btn-area li a.green {
  background-color: #f7fdfb;
}

.main-btn-area .main-btn-set ul li a.yellow.active,
.main-btn-area .main-btn-set ul.sub-btn-area li a.yellow {
  background-color: #fffcf6;
}

.main-btn-area .main-btn-set ul li a.org.active,
.main-btn-area .main-btn-set ul.sub-btn-area li a.org {
  background-color: #fff7f6;
}

.main-btn-area .main-btn-set ul li a.red.active,
.main-btn-area .main-btn-set ul.sub-btn-area li a.red {
  background-color: #fffafb;
}

.main-btn-area .main-btn-set ul li a.border {
  border: 1px solid #ddd;
}

.badge {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  padding: 0 !important;
}

.badge.green {
  background-color: #01bb7e;
}

.badge.yellow {
  background-color: #ffb724;
}

.badge.org {
  background-color: #ff6a47;
}

.badge.red {
  background-color: #eb003b;
}

.main-top-right {
  position: absolute;
  bottom: -65px;
  right: 35px;
}

.main-top-right img {
  width: 100%;
}

section {
  padding: 30px 0 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  position: relative;
}

.section-top .legend-view,
.section-top .legend-icon {
  display: none;
}

.section-top .legend ul {
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 28px;
}

.section-top .legend ul li {
  color: #1d1d1d;
  font-size: 17px;
  padding-left: 18px;
  position: relative;
}

.section-top .legend ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.section-top .legend ul li.grn:before {
  background-color: #0ecc8e;
}

.section-top .legend ul li.yel:before {
  background-color: #ffb724;
}

.section-top .legend ul li.org:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fb584c;
}

.section-top .legend ul li.red:before {
  background-color: #eb003b;
}

section > p:first-of-type {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  padding-left: 10px;
  line-height: normal;
  color: #1d1d1d;
}

.main-area {
  display: grid;
  gap: 30px;
  grid-template-columns: 280px calc(100% - 310px);
}

.main-area .main-area-left {
  display: grid;
  gap: 20px;
  align-content: start;
}

.card {
  border-radius: 16px;
  padding: 40px;
}

.card.shadow {
  box-shadow: 0px 0px 10px 4px rgba(36, 107, 235, 0.1);
}

.card.border {
  border: 1px solid #e9e9e9;
}

.card.road-info {
  width: 280px;
  padding: 30px 10px 30px 15px !important;
}

.card.p40 {
  padding: 30px 40px;
}

.card.p30 {
  padding: 30px 30px;
}

.card.p20 {
  padding: 30px 20px;
}

.card > p:first-of-type {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.card.road-stat {
  height: 206px;
}

.location-info {
  padding: 20px 0 14px;
}

.location-info .loc {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-bottom: 10px;
}

.location-info .loc span {
  font-size: 17px;
}

.location-info .loc .flag {
  width: 72px;
  height: 32px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 400;
  color: #1d1d1d;
  background-repeat: no-repeat;
}

.location-info .loc .flag.up {
  background-color: #fff6f6;
}

.location-info .loc .flag.down {
  background-color: #e6f1fc;
}

.location-info .loc .reset-btn {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: #fff;
  background-image: url(../../../images/kma/ops/icon-reset.svg);
  border: 1px solid #c8c8c8;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

.location-info .loc .reset-btn:after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 100%;
  z-index: -1;
  inset: 0;
  opacity: 0.3;
  transition: 0.35s;
}

.location-info .loc .reset-btn:hover:after {
  transition: 0.35s;
  opacity: 0;
}

.location-info .distance {
  font-size: 16px;
}

.location-info .distance span {
  color: #1d1d1d;
  font-weight: 600;
  padding-left: 4px;
}

.road-stat .date {
  font-size: 14px;
  color: #555;
}

.card .date span:first-child {
  display: inline-block;
  padding-right: 5px;
}

.road-scroll {
  height: 520px;
  overflow-y: auto;
  padding-left: 10px;
  padding-top: 5px;
}

/* 스크롤바 전체 기본 꾸미기 */
.road-scroll::-webkit-scrollbar {
  width: 8px;
}

/* 스크롤바 막대 꾸미기 */
.road-scroll::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border: 2px solid #f8f8f8;
  border-radius: 4px;
}

/* 스크롤바 트랙 꾸미기 */
.road-scroll::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 4px;
}

.road-scroll ul {
  position: relative;
}

.road-scroll ul:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: calc(100% - 40px);
  background-color: #cdd7e4;
  position: absolute;
  top: 20px;
}

.road-scroll ul li {
  position: relative;
  margin-bottom: 5px;
  margin-right: 4px;
}

.road-scroll ul li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #cdd7e4;
  position: absolute;
  border-radius: 8px;
  top: 50%;
  transform: translateY(-50%);
  left: -4px;
  z-index: 2;
}

.road-scroll ul li:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 50%;
}

.road-scroll ul li.green:after {
  background-color: #06a873;
  z-index: 1;
}

.road-scroll ul li.orange:after {
  background-color: #fb584c;
  z-index: 1;
}

.road-scroll ul li.yellow:after {
  background-color: #c58505;
  z-index: 1;
}

.road-scroll ul li.red:after {
  background-color: #eb003b;
  z-index: 1;
}

.road-scroll ul li.nodata:after {
  background-color: #f1f1f1;
  z-index: 1;
}

.road-scroll ul li .road-list {
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 25px;
  font-size: 16px;
  padding: 0 15px 0 20px;
  gap: 10px;
  justify-content: space-between;
  position: relative;
  margin-left: 2px;
  color: #1d1d1d;
}

.road-scroll ul li .road-list:after {
  z-index: 3;
}

.road-scroll ul li .road-list.green {
  background-color: #f7fdfb;
  font-weight: 600;
  z-index: 2;
}

.road-scroll ul li .road-list.green:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #d9f5ec;
  position: absolute;
  left: -11px;
  z-index: 2;
}

.road-scroll ul li .road-list.green:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #06a873;
  position: absolute;
  left: -5px;
}

.road-scroll ul li .road-list.yellow {
  background-color: #fffcf6;
  font-weight: 600;
  z-index: 2;
}

.road-scroll ul li .road-list.yellow:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #fff1d3;
  position: absolute;
  left: -11px;
  z-index: 2;
}

.road-scroll ul li .road-list.yellow:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #c58505;
  position: absolute;
  left: -5px;
  /*z-index:3;*/
}

.road-scroll ul li .road-list.orange {
  background-color: #fff7f6;
  font-weight: 600;
  z-index: 2;
}

.road-scroll ul li .road-list.orange:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #ffe1da;
  position: absolute;
  left: -11px;
}

.road-scroll ul li .road-list.orange:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #fb584c;
  position: absolute;
  left: -5px;
}

.road-scroll ul li .road-list.red {
  background-color: #fffafb;
  font-weight: 600;
}

.road-scroll ul li .road-list.red:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #fce5eb;
  position: absolute;
  left: -11px;
  z-index: 2;
}

.road-scroll ul li .road-list.red:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #eb003b;
  position: absolute;
  left: -5px;
}

.road-scroll ul li .road-list.no-data {
  background-color: #f8f8f8;
  font-weight: 600;
}

.road-scroll ul li .road-list.no-data:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #f1f1f1;
  position: absolute;
  left: -11px;
  z-index: 2;
}

.road-scroll ul li .road-list.no-data:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #ccc;
  position: absolute;
  left: -5px;
}

.road-scroll ul li .road-list p {
  font-size: 11px;
  color: #666;
}

.road-scroll ul li .road-list .road-desc {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: left;
}

.road-scroll ul li .road-list p {
  color: #555;
  font-weight: 400;
  display: flex;
  gap: 2px;
  width: auto;
}

.road-scroll ul li .road-list p span {
  font-weight: 600;
  padding-left: 2px;
}

/* Add styles for disabled road list items */
.road-scroll ul li.disabled a,
.road-scroll ul li a.disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #686868;
}

.main-area-right {
  display: grid;
  gap: 20px;
  grid-template-columns: 317px 282px 330px;
}

.card.temp {
  background: #f4f5f9 url(../../../images/kma/ops/icon_temperature.svg) top 30px right 40px no-repeat;
}

.card.weather {
  background-image: url(../../../images/kma/ops/icon_weather.svg);
}

.card.sun {
  background-image: url(../../../images/kma/ops/icon_sunshine.svg);
}

.card.rain {
  background-image: url(../../../images/kma/ops/icon_rain.svg);
}

.card.snow {
  background-image: url(../../../images/kma/ops/icon_snow.svg);
}

.card.lightning {
  background-image: url(../../../images/kma/ops/icon_lightning.svg);
}

.card.temperature {
  background-image: url(../../../images/kma/ops/icon_temperature.svg);
}

.current-temp {
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  color: #1d1d1d;
}

.current-short-term-temp {
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  color: #1d1d1d;
}

.current-temp span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #555;
}

.current-temp span strong {
  color: #1d1d1d;
  font-weight: 400;
}

.temp-desc {
  padding-top: 36px;
  font-size: 16px;
  display: flex;
  gap: 20px;
}

.temp-desc p {
  color: #555;
}

.temp-desc span {
  font-weight: bold;
  color: #1d1d1d;
  padding-left: 10px;
}

.card.road {
  background-image: url(../../../images/kma/ops/bg-road.svg);
  position: relative;
  background-position: right top;
  background-size: cover;
}

.main-dash .road:after {
  content: "";
  display: inline-block;
  width: 190px;
  height: 106px;
  background-repeat: no-repeat;
  position: absolute;
  right: 14px;
  bottom: 29px;
  background-image: url(../../../images/kma/ops/img_light.svg);
  animation: blink 1.5s infinite; /* 1.5초 간격으로 무한 반복 */
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*.card.road:hover:after {
  background-image: url(../../../images/kma/ops/img_light.svg);
}*/

.road .distance {
  font-size: 32px;
  font-weight: bold;
  line-height: normal;
  color: #1d1d1d;
}

.card.cctv {
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.card.cctv:after {
  content: "";
  display: inline-block;
  width: 175px;
  height: 147px;
  background-image: url(../../../images/kma/ops/img_cctv.svg);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.card.cctv:hover:after {
  transform: scale(1.2);
  transform-origin: right bottom;
  transition: transform 0.4s ease-in-out;
}

.card.cctv p {
  font-size: 24px;
  font-weight: bold;
  line-height: 2.5rem;
  position: relative;
  z-index: 1;
  color: #1d1d1d;
  padding-bottom: 20px;
}

.card.cctv h3 span {
  padding-left: 5px;
}

.card.cctv ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card.cctv ul li {
  color: #555;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  display: inline-block;
  padding-right: 20px;
  line-height: 20px;
}

.card.cctv ul li a {
  line-height: 20px;
}

.card.cctv ul li:hover {
  font-weight: bold;
  background-image: url(../../../images/kma/ops/icon-arrow-right.svg);
  background-position: center right;
  background-repeat: no-repeat;
}

.card.acc {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-row: 3/5;
  position: relative;
}
.card.acc:after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 94px;
  background-image: url(../../../images/kma/ops/icon_acc.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
}
.card.acc:hover:after {
  transform: scale(1.2);
  /*transform-origin: right top;*/
  transition: transform 0.4s ease-in-out;
}
.acc > p:first-of-type {
  color: #1d1d1d;
}
.acc .dir-group {
  padding-top: 18px;
  display: grid;
  gap: 15px;
}

.acc .dir-group .direction {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  color: #555;
}

.acc .dir-group .direction p {
  /* display: flex;
  align-items: stretch;*/
}

.acc .dir-group .direction p a {
  display: flex;
  align-items: stretch;
  font-weight: 600;
  font-size: 32px;
}

.acc .dir-group .direction p a span {
  font-size: 14px;
  color: #1d1d1d;
}

.acc .dir-group .direction p a i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-image: url(../../../images/kma/ops/icon-arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.acc .dir-group .direction p:hover a {
  font-weight: 800;
  /*  background-image: url(../../../images/kma/ops/icon-arrow-right.svg);
  background-position: center right;
  background-repeat: no-repeat;*/
}

.main-right-btm {
  display: grid;
  grid-template-columns: 317px 282px 330px;
  gap: 20px;
}

.card.wind {
  position: relative;
  background-color: #edf1f5;
  /*background-image: url(../../../images/kma/ops/icon_wind.svg);*/
  background-repeat: no-repeat;
  background-position: bottom 30px right 25px;
  grid-column: 1/2;
  grid-row: 2/3;
  /* height: 397px; */
}

.card.wind:after {
  content: "";
  display: inline-block;
  width: 84px;
  height: 84px;
  background-image: url(../../../images/icon_wind.svg);
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.card.wind:hover:after {
  transform: scale(1.2);
  transition: transform 0.4s ease-in-out;
}

.wind .wind-dir {
  font-size: 32px;
  font-weight: bold;
  padding-top: 10px;
  line-height: 3.5rem;
  color: #1d1d1d;
}

.wind .wind-chart {
  padding-top: 20px;
  text-align: center;
}

.card.road-temp {
  background-color: #f8f8f8;
  position: relative;
  /*height: 271px;*/
  grid-row: 2/3;
}

.road-temp:after {
  content: "";
  display: inline-block;
  width: 98px;
  height: 28px;
  background-image: url(../../../images/kma/ops/icon_road.svg);
  position: absolute;
  bottom: 30px;
  right: 40px;
}

.road-temp:hover:after {
  transform: scale(1.2);
  transition: transform 0.4s ease-in-out;
}

.card.map {
  padding: 0;
  overflow: hidden;
  height: 270px;
  grid-row: 3 / 5;
}

.card.map img {
  max-width: fit-content;
}

.card.ice {
  grid-column: 2/3;
  grid-row: 3/5;
  /* height: 290px; */
}

.ice.safe {
  background-color: #f2fafd;
}

.ice.safe .ice-chart {
  background-image: url(../../../images/kma/ops/graph_safe.svg);
}

.ice.warning {
  background-color: #f7fdfb;
}

.ice.warning .ice-chart {
  background-image: url(../../../images/kma/ops/graph_warning.svg);
}

.ice.caution {
  background-color: #fffcf6;
}

.ice.caution .ice-chart {
  background-image: url(../../../images/kma/ops/graph_caution.svg);
}

.ice.danger {
  background-color: #fffafb;
}

.ice.danger .ice-chart {
  background-image: url(../../../images/kma/ops/graph_danger.svg);
}

.card.ice h4 {
  font-size: 20px;
  font-weight: 400;
  padding: 0 0 10px 0;
  color: #1d1d1d;
}

.card.ice > p {
  font-size: 14px;
  color: #555;
}

.ice .ice-chart {
  height: 135px;
  text-align: center;
  margin-top: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.ice .ice-chart p {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  color: #1d1d1d;
  padding-top: 48px;
}

.ice .ice-chart p span {
  display: block;
  font-size: 14px;
  padding-top: 10px;
}

.ice.safe .ice-chart p span {
  color: #006be1;
}

.ice.warning .ice-chart p span {
  color: #00bb7e;
}

.ice.caution .ice-chart p span {
  color: #ff6a47;
}

.ice.danger .ice-chart p span {
  color: #eb003b;
}

.acc-flag {
  position: relative;
  /*  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;*/
  height: 180px;
  min-height: 280px;
}
.acc-flag.ice {
  grid-column: 3/4;
  grid-row: 3/5;
}
.acc-flag.hardwind {
  grid-row: 5/6;
}
.acc-flag > p:first-of-type {
  color: #1d1d1d;
  width: 100%;
  font-size: 16px;
}
.acc-flag h5 p {
  color: #555;
  font-size: 14px;
  text-align: left;
}

.acc-flag > p {
  width: 100%;
  color: #555;
  font-size: 14px;
  text-align: left;
}

.acc-flag.safe {
  background-color: #f7fdfb;
}

.acc-flag.warning {
  background-color: #fffcf6;
}

.acc-flag.caution {
  background-color: #fff7f6;
}

.acc-flag.danger {
  background-color: #fffafb;
}

.acc-flag.no-data {
  background-color: #f8f8f8;
}

.acc-flag .acc-flag-set {
  width: 116px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 60px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  /*display:flex;*/
  align-items: center;
  min-height:50px;
}

.acc-flag.safe .acc-flag-set {
  background-image: url(../../../images/kma/ops/icon_safety_flag.svg);
}

.acc-flag.warning .acc-flag-set {
  background-image: url(../../../images/kma/ops/icon_warning_flag.svg);
}

.acc-flag.caution .acc-flag-set {
  background-image: url(../../../images/kma/ops/icon_caution_flag.svg);
}

.acc-flag.danger .acc-flag-set {
  background-image: url(../../../images/kma/ops/icon_danger_flag.svg);
}

.acc-flag.no-data .acc-flag-set {
  width: 165px;
  height: 58px;
  display: flex;
  align-items: center;
  background-image: url(../../../images/kma/ops/icon-no-data.svg);
}

.acc-flag .acc-flag-set span {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.acc-flag .acc-flag-set p {
  font-size: 32px;
  color: #1d1d1d;
  font-weight: 600;
  line-height: normal;
}

.card.radar {
  background-image: url(../../../images/kma/ops/img_radar.png);
  background-repeat: no-repeat;
  background-position: left -10px center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  height: 164px;
}

.radar h4 {
  font-size: 20px;
  color: #1d1d1d;
  width: 155px;
  font-weight: 400;
}

.radar div {
  width: 155px;
  font-size: 14px;
  color: #1d1d1d;
  display: flex;
  align-items: center;
}

.radar div p {
  font-size: 32px;
  font-weight: 600;
  padding-left: 10px;
}

.radar div p span {
  font-size: 14px;
}

/* swiper */
.danger-info {
  position: relative;
  padding: 0;
  grid-column: 1/2;
  grid-row: 3/5;
  background-color: #f8f8f8;
}
/*flag로 변경*/
/*.danger-info.bc-grn,
.danger-info .swiper .swiper-slide.grn {
  background-color: #f8f8f8;
}

.danger-info.bc-yel,
.danger-info .swiper .swiper-slide.yel {
  background-color: #f8f8f8;
}

.danger-info.bc-org,
.danger-info .swiper .swiper-slide.org {
  background-color: #f8f8f8;
}

.danger-info.bc-red,
.danger-info .swiper .swiper-slide.red {
  background-color: #f8f8f8;
}*/

.danger-info:before {
  content: "";
  display: inline-block;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #e9e9e9;
  position: absolute;
  z-index: 2;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
}

/* .danger-info:after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url(../../../images/kma/ops/icon-alert-red.svg);
  background-repeat: no-repeat;
  background-size: auto 60px;
  position: absolute;
  left: -14px;
  top: -18px;
  z-index: 1;
} */

.danger-info > p:first-of-type{
  padding-bottom: 10px;
  position: absolute;
  z-index: 2;
  margin: 23px 0 0 30px;
  color: #1d1d1d;
}

.danger-info .swiper {
  border-radius: 16px;
  height: 100%;
}

.danger-info .swiper-slide {
  padding: 100px 30px 20px;
}

.danger-info .swiper-indicator {
  position: absolute;
  display: flex;
  gap: 4px;
  align-items: center;
  top: 20px;
  right: 30px;
}

.danger-info .swiper-indicator .swiper-button-next,
.danger-info .swiper-indicator .swiper-button-prev {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  background-repeat: no-repeat;
  background-position: center center;
  position: static;
  margin-top: 0;
}

.danger-info .swiper-indicator .swiper-button-next {
  background-image: url(../../../images/kma/ops/swiper-arrow-st.svg);
}

.danger-info .swiper-indicator .swiper-button-prev {
  background-image: url(../../../images/kma/ops/swiper-arrow-st.svg);
  transform: rotate(180deg);
}

.danger-info .swiper-button-prev:after,
.danger-info .swiper-button-next:after {
  content: none;
}

.danger-info .swiper-pagination {
  width: auto;
  position: static;
  padding-right: 4px;
  font-size: 14px;
  font-weight: 600;
  transform: none;
}

.danger-info .swiper-pagination .swiper-pagination-current {
  color: #003675;
}

.danger-info .danger-road-info {
  /*font-size: 16px;
  font-weight: 600;*/
  display: flex;
  gap: 5px;
  color: #1d1d1d;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
}

.danger-info .danger-road-info span {
  font-weight: 400;
}

.danger-info .danger-flag {
  /*padding-top: 6px;*/
  padding-top: 24px;
}

.danger-info .danger-flag ul {
  display: flex;
  justify-content: flex-end;
  gap: 38px;
  position: relative;
}

.danger-info .danger-flag ul:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.danger-info .danger-flag ul li {
  width: 50%;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  /*flex-direction: column;*/
  gap: 5px;
  align-items: flex-start;
}

.danger-info .danger-flag ul li div {
  display: flex;
  flex-direction: column;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  cursor: unset;
}

.danger-info .danger-flag ul li .m-desc {
  /*display: none;*/
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-top: 7px;
  font-size: 14px;
  color: #555;
}

.danger-info .danger-flag ul li span {
  font-size: 17px;
  color: #1d1d1d;
  font-weight: 600;
  /*  font-size: 14px;
  color: #555;*/
}

.danger-info .danger-flag ul li .flag {
  padding-left: 0px;
  position: relative;
  color: #1d1d1d;
  font-size: 17px;
  line-height: 1.5rem;
}

.danger-info .danger-flag ul li .no-data {
  padding-left: 0px;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.danger-info .danger-flag ul li .flag:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  position: absolute;
  /*  left: 0;
  top: 0;*/
  right: -10px;
  left: auto;
  top: -10px;
  display: none;
}

.danger-info .swiper-slide .danger-flag ul li .flag.green:before {
  background-color: #0ecc8e;
}

.danger-info .swiper-slide .danger-flag ul li .flag.yellow:before {
  background-color: #ffb724;
}

.danger-info .swiper-slide .danger-flag ul li .flag.orange:before {
  background-color: #ff6a47;
}

.danger-info .swiper-slide .danger-flag ul li .flag.red:before {
  background-color: #eb003b;
}

.tooltip {
  position: absolute;
  min-width: 165px;
  background: #ffffff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 12px;
  border: 1px solid#B1B8BE;
  padding: 24px;
  font-size: 15px;
  z-index: 2;
  display: none;
  bottom: 90px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

.tooltip.ice {
  left: 45px;
  display: none !important;
}

.tooltip.dis {
  left: 138px;
  display: none !important;
}

.tooltip:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 13px 13px 0;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -13px;
  left: 170px;
}

.tooltip:before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 13px 13px 0;
  border-color: #b1b8be transparent;
  display: block;
  width: 0;
  z-index: 0;
  bottom: -14px;
  left: 170px;
}

.modal-content .road-stat p {
  font-size: 19px;
}

.modal-content .location-info .loc .flag {
  border: 1px solid #c6c6c6;
}

.accordion-item>div {
  font-size: 17px;
  color: #1e2124;
  /*margin-bottom: 10px;*/
}

.accordion-item > p:first-of-type {
  font-size: 17px;
  color: #1e2124;
  font-weight:700;
  /*margin-bottom: 10px;*/
}

.accordion-item.border-0 {
  border-top: 0 !important;
}

.filter-tag-wrap .tag-in {
  padding: 24px 4px 10px;
  margin-bottom: 14px;
}

.filter-tag-wrap .tag-in .krds-btn-tag {
  border-radius: 6px;
  border: 1px solid #c6c6c6;
  display: flex;
  height: 40px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*.filter-tag-wrap .tag-in .krds-btn-tag:focus {*/
/*  box-shadow:none;*/
/*}*/

.filter-tag-wrap .tag-in .krds-btn-tag.active {
  border: 1px solid #246beb;
  background: #eff5ff;
  color: #1d56bc;
  font-weight: 600;
}

.filter-tag-wrap .tag-in .krds-btn-tag.active:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  padding-right: 4px;
  background-image: url(../../../images/kma/ops/icon-check.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.filter-tag-wrap .tag-btn {
  padding: 24px 0 24px 24px;
}

.filter-tag-wrap.full,
.filter-tag-wrap.full .tag-in {
  width: 100%;
  padding: 0;
}

.filter-tag-wrap.full .tag-in .krds-btn-tag {
  flex-basis: 50%;
}

.accordion-body .road-info .road-list {
  font-weight: 600;
  font-size: 19px;
  background-color: #fff;
  justify-content: flex-start;
}

.accordion-body .road-scroll ul li .road-list .road-desc {
  gap: 12px;
}

.accordion-body .road-scroll ul li .road-list .road-desc p {
  font-size: 17px;
  color: #555;
}

.accordion-body .road-scroll ul li .road-list .road-desc span {
  font-weight: 400;
}

.filter-btn {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 8px 8px 10px 0px rgba(36, 107, 235, 0.05);
  background-image: url(../../../images/kma/ops/icon-filter.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
  color: #8e8e8e;
  font-size: 19px;
  text-align: left;
  display: none;
}

.modal-btn.between {
  justify-content: space-between !important;
}

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/
@media all and (max-width: 1279px) {
  .main-top {
    padding: 0 24px;
  }

  .main-top-inner {
    width: 100%;
  }

  .main-area .main-area-left {
    display: flex;
    flex-direction: column;
  }

  .main-area-right {
    /* display: flex;
    flex-wrap: wrap; */
    grid-template-columns: 50% auto;
  }

  .road-scroll {
    height: 100%;
  }

  .card.temp {
    grid-column: 1/3;
  }

  .card.road {
    grid-column: 3/4;
  }
  .card.cctv {
    grid-column: 1/2;
  }
  .card.road-info {
    max-height: 1028px;
    height: 100%;
  }

  .card.acc {
    grid-column: 2/4;
    grid-row: 2/3;
  }
  .card.acc:after {
    content: none;
  }
  .card.wind {
    grid-column: 1/3;
    grid-row: 3/4;
    height: 400px;
  }
  .card.road-temp {
    grid-row: 3/4;
    /*height: 290px;*/
  }

  .card.ice {
    grid-column: 3/4;
    grid-row: 5/7;
    /*height: auto;*/
  }

  .ice .ice-chart {
    margin-top: 100px;
  }

  .card.map {
    grid-row: auto;
    grid-column: 1/3;
  }

  .card.map img {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .card.radar {
    grid-column: 1/3;
    background-position: left 0 center;
  }

  .danger-info {
    grid-row: 4/5;
    grid-column: 1/2;
  }
  .acc-flag.dis {
    grid-row: 4/5;
    grid-column: 2/4;
  }
  .acc-flag.ice {
    grid-row: 5/6;
    grid-column: 1/2;
  }
  .acc-flag.hardwind {
    grid-row: 5/6;
    grid-column: 2/4;
  }
  .tooltip.ice {
    left: 197px;
  }

  .tooltip.dis {
    left: 287px;
  }

  .danger-info .danger-flag ul li .flag:before {
    display: inline-block;
  }
}

/* 테블릿 세로 (해상도 768px ~ 1023px)*/
@media all and (max-width: 1023px) {
  .main-area {
    display: block;
  }

  .main-area .main-area-left {
    display: none;
  }

  .main-right-btm {
    grid-template-columns: 466px auto;
  }

  /*검색창 보여줌*/
  .main-btn-area .main-btn-set {
    display: none;
  }

  .filter-btn {
    width: 358px;
    display: inline-block;
  }

  .road-scroll {
    height: 300px;
  }

  .danger-info .danger-flag ul li .flag:before {
    display: inline-block;
  }
}

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/
@media all and (max-width: 767px) {
  .main-top {
    min-height: 315px;
  }

  .main-top-inner {
    padding: 70px 0 40px;
  }

  .main-top-left {
    padding-right: 150px;
  }

  .main-top h2 {
    font-size: 25px;
  }

  .main-top p {
    font-size: 19px;
    padding: 40px 0 50px;
  }

  .main-btn-area {
    display: none;
  }

  .main-top-right {
    right: -15px;
    top: 5px;
    height: min-content;
  }

  .main-top-right img {
    width: 180px;
  }

  section h4 {
    font-size: 25px;
  }

  .main-top {
    padding: 0 16px;
  }

  .section-top {
    justify-content: flex-start;
    align-items: center;
  }

  .section-top .legend.pc {
    display: none;
  }

  .section-top .legend-icon {
    margin-left: 8px;
  }

  .main-area-right {
    display: flex;
    flex-direction: column;
  }

  .card.temp,
  .card.road {
    width: 100%;
  }

  /*모바일 범례*/
  .section-top .legend ul {
    gap: unset;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-top .legend ul li {
    width: 47%;
    margin-right: 5%;
    margin-bottom: 10px;
  }

  .section-top .legend ul li:nth-child(even) {
    margin-right: 0%;
  }

  .section-top .legend ul li:nth-child(3),
  .section-top .legend ul li:nth-child(4) {
    margin-bottom: 0px;
  }

  .section-top .legend ul li span {
    color: #555;
    font-size: 15px;
    padding-left: 5px;
  }

  /*  .card.lightning {
    height: 195px;
  }*/

  .temp-desc {
    padding-top: 23px;
  }

  .card.road {
    height: 207px;
    background-image: url(../../../images/kma/ops/bg-road_m.svg);
    background-position: right bottom;
    background-size: auto;
    background-color: #f0efec;
    background-repeat: no-repeat;
  }

  .road:after {
    right: 50px;
    bottom: 50px;
  }

  .main-right-top {
    gap: 24px;
  }

  .main-right-btm {
    grid-template-columns: 100%;
  }

  .main-right-btm .card {
    grid-row: auto;
    grid-column: auto;
  }

  .card.road-temp {
    grid-row: 2/4;
    height: 270px;
  }

  .road-temp:after {
    right: 30px;
  }

  .card.ice {
    /*height: 223px;*/
    position: relative;
  }

  .ice .ice-chart {
    margin-top: 0;
    position: absolute;
    width: 180px;
    right: 30px;
    bottom: 30px;
  }

  .card.map img {
    width: auto;
    height: 100%;
  }

  .tooltip.ice,
  .tooltip.dis {
    display: none !important;
  }

  .danger-info .danger-road-info {
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
  }

  .danger-info .danger-flag {
    padding-top: 28px;
  }

  .danger-info .danger-flag ul {
    justify-content: center;
    position: relative;
  }

  .danger-info .danger-flag ul li {
    width: 50%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .danger-info .danger-flag ul li span {
    font-size: 17px;
    color: #1d1d1d;
    font-weight: 600;
  }

  .danger-info .danger-flag ul li .flag {
    padding-left: 0;
  }

  .danger-info .danger-flag ul li .flag:before {
    right: -10px;
    left: auto;
    top: -10px;
  }

  .danger-info .danger-flag ul li .m-desc {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding-top: 7px;
    font-size: 17px;
    color: #1d1d1d;
  }

  .section-top {
    padding-bottom: 24px;
  }

  .section-top .legend-icon {
    display: inline-block;
  }

  .legend-view {
    left: 30px;
    bottom: 55px;
    display: inline-block;
  }

  .tooltip:before,
  .tooltip:after {
    left: 210px;
  }

  .section-top .legend-view p {
    font-size: 17px;
    padding: 0 0 16px 0;
    font-weight:bold;
  }

  .section-top .legend-view ul {
    padding: 0;
  }

  .filter-btn {
    width: 100%;
    display: inline-block;
  }

  .card.temp {
    order: 1;
  }

  .card.road {
    order: 2;
  }

  .card.wind {
    order: 3;
    height: 100%;
  }

  .card.road-temp {
    order: 4;
  }

  .card.radar {
    order: 5;
  }

  .card.ice {
    order: 6;
  }

  .card.acc-flag {
    order: 7;
  }

  .card.cctv {
    order: 8;
  }

  .card.acc {
    order: 9;
  }

  .card.danger-info {
    order: 10;
  }

  .danger-info .danger-flag ul li a {
    flex-direction: row;
  }

  .main-dash .road:after {
    width: 190px;
    height: 106px;
    right: 40px;
    bottom: 46px;
  }

  .road-scroll {
    height: 300px;
  }

  .danger-info .danger-flag ul li .flag:before {
    display: inline-block;
  }
  /*  .swiper-wrapper {
    flex-direction: row !important;
  }*/
}

.krds-main-menu {
  border-top: none;
  border-bottom: none;
}

/*메인팝업*/
#notice-modal_0 {
  z-index: 99999;
}
#notice-modal_1 {
  z-index: 9999;
}
#notice-modal_1 {
  z-index: 999;
}

#container .main-top + .inner {
  padding-top: 0px !important;
}

/*메인스와이프 추가*/
.swiper.menu {
  width: 100%;
  height: 100%;
  padding: 5px 5px 50px;
}

.swiper.menu:before {
  content: "";
  display: inline-block;
  width: 55px;
  height: 100%;
  background-color: #e9f4fa;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.swiper.menu:after {
  content: "";
  display: inline-block;
  width: 55px;
  height: 100%;
  background-color: #e9f4fa;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.menu .swiper-wrapper {
  width: calc(100% - 80px);
  margin: 0 55px;
}

.menu .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: auto !important;
}

.main-top p {
  padding-bottom: 40px;
}

.main-btn-area {
  position: relative;
}

.main-btn-area .menu.main-btn-set ul {
  flex-wrap: nowrap;
  position: relative;
}

.road .swiper-slide li a {
  font-size: 14px;
  padding: 2px 0;
}

.road .swiper-slide .bubble a:hover span {
  font-weight: 800;
  color: #246beb;
}

.road .swiper-slide .bubble a span {
  display: inline-block;
  width: 25px;
  padding-left: 5px;
  text-align: right;
}

.road .swiper-button-prev:after,
.road .swiper-button-next:after,
.menu .swiper-button-prev:after,
.menu .swiper-button-next:after {
  content: none;
}
.menu .highway-swiper-button-prev,
.menu .highway-swiper-button-next {
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: url(../../../images/kma/ops/swiper-arrow.svg) no-repeat center center #fff;
  position: absolute;
  top: 5px;
}

.menu .swiper-button-prev {
  left: 5px;
}

.menu .swiper-button-next {
  transform: rotate(180deg);
  right: 5px;
}

.main-btn-area .main-btn-set.menu span {
  padding-right: 0;
}

.road .swiper-pagination,
.menu .swiper-pagination {
  /* bottom: -10px !important; */
}

.road .swiper-pagination-bullet-active,
.menu .swiper-pagination-bullet-active {
  width: 20px;
  background-color: #246beb !important;
}

.road .swiper-pagination-bullet,
.menu .swiper-pagination-bullet {
  opacity: 1;
  background-color: #8e8e8e;
}

/* 고속도로 선택 Swiper 스타일 */
.highway-swiper {
  position: relative;
}

.highway-swiper-button {
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: url(../../../images/kma/ops/swiper-arrow.svg) no-repeat center center #fff;
  position: absolute;
  top: 28px;
  cursor: pointer;
  z-index: 10;
}

.highway-swiper-button-prev {
  left: 5px;
}

.highway-swiper-button-next {
  transform: rotate(180deg);
  right: 5px;
}

/* 위험정보 Swiper 스타일 */
.danger-info-swiper {
  position: relative;
}

.danger-swiper-indicator {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}

.danger-swiper-button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff no-repeat center center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.danger-swiper-button-prev {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15,18 9,12 15,6'%3E%3C/polyline%3E%3C/svg%3E"); */
  background-image: url(../../../images/kma/ops/swiper-arrow-st.svg);
  transform: rotate(180deg);
}

.danger-swiper-button-next {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9,18 15,12 9,6'%3E%3C/polyline%3E%3C/svg%3E"); */
  background-image: url(../../../images/kma/ops/swiper-arrow-st.svg);
}

.danger-swiper-pagination {
  font-size: 14px;
  color: #666;
  padding-right: 4px;
  font-weight: bold;
}

/* 모바일 대응 */
@media all and (max-width: 767px) {
  .highway-swiper-button {
    display: none;
  }

  .danger-swiper-indicator {
    position: absolute;
    top: 10px;
    right: 30px;
    justify-content: flex-end;
    margin-top: 0;
  }

  .danger-swiper-button {
    width: 40px;
    height: 40px;
  }
  .acc-flag {
  	min-height: 180px;
  }
}
