[dir='rtl'] body {
  overflow-x: hidden;
}

[dir='rtl'] #rain-info {
  direction: ltr;
}

[dir='rtl'] .detail-info-wrap.active .detail-info-title-wrap {
  align-items: start;
}

[dir='rtl'] .detail-info-wrap.active .detail-info-icon {
  margin-right: -2px;
}
.bar-rain {
  position: absolute;
  bottom: 1px;
  left: 25px;
  width: 10px;
  height: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: height 2s ease;
}

/* 검색 영역 */
/* .popup-background{
        top: 0 ;
        height: 100%;
        overflow: auto;
        flex-flow: column nowrap;
      }
      #top-container-search-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
      }
      #top-container-search-container >form{
        width: 100%;
        margin: 0 16px 0 0;
        padding: 0 16px;
      }
      #top-container-search-close-btn{
        width: 24px;
        height: 24px;
      }
      #top-container-search-close-btn >img{
        object-fit: contain;
        cursor: pointer;
        margin-right: 6px;
        filter: brightness(0);
      }
      #search-bottom-logo{
        display: flex;
        justify-content: center;
      } */

/* 오늘의 날씨 포인트 영역 */
.weather-point {
  position: relative;
}

.weather-point .point-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.weather-point .point-title h3 {
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--main-color-d1);
}

.weather-point p.point-cont {
  display: -webkit-box;
  -webkit-line-clamp: initial;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 100%;
  font-size: 14px;
  font-weight: var(--weight-regular);
  line-height: 20px;
  color: var(--main-color-d1);
  margin-bottom: 18px;
  overflow-y: hidden;
  transition: max-height 0.3s ease-in-out;
}

.weather-point p.point-cont.short {
  -webkit-line-clamp: 5;
  max-height: 120px;
}

.switch-wrapper {
  position: relative;
  top: -4px;
  display: inline-flex;
  padding: 2px;
  border: 1px solid var(--select-color);
  border-radius: 30px;
}

.switch-wrapper [type='radio'] {
  position: absolute;
  left: -9999px;
}

.switch-wrapper [type='radio']:checked#cur ~ label[for='cur'],
.switch-wrapper [type='radio']:checked#tom ~ label[for='tom'] {
  color: var(--main-color-d1);
  font-weight: var(--weight-medium);
}

.switch-wrapper [type='radio']:checked#cur ~ label[for='cur']:hover,
.switch-wrapper [type='radio']:checked#tom ~ label[for='tom']:hover {
  background: transparent;
}

.switch-wrapper [type='radio']:checked#cur + label[for='tom'] ~ .highlighter {
  transform: none;
}

.switch-wrapper [type='radio']:checked#tom + label[for='cur'] ~ .highlighter {
  transform: translateX(100%);
}

.switch-wrapper label {
  min-width: 48px;
  font-size: 14px;
  font-weight: var(--weight-regular);
  line-height: 24px;
  color: var(--main-color-d5);
  text-align: center;
  border-radius: 30px;
  transition: color 0.25s ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.switch-wrapper .highlighter {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  border-radius: 30px;
  background: var(--select-color);
  transition: transform 0.25s ease-in-out, width 0.25s ease-in-out;
}

/* .switch-wrapper .highlighter.after-reset {
  transition: transform 0.25s ease-in-out, width 0.25s ease-in-out;
} */

/* 날씨 상세 정보 영역 */
#today-weather-info .card {
  padding-bottom: 7px;
}

.card.radar-today {
  position: relative;
  width: 100%;
  min-height: 100%;
  cursor: pointer;
}

.radar-link-container {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding-bottom: 80%;
  overflow: hidden;
  border-radius: var(--border-radius-small);
}

#radarThumbImgContainer {
  overflow: hidden;
  min-height: unset;
  position: relative;
  width: unset;
  padding: 20px;
}

/* 레이더 */
#radar-img-today {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: calc(var(--border-radius-small) + 20px); */
  /* padding: 20px; */
}

#radar-comment {
  padding: 20px 0px 0px;
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: var(--main-color-d4);
}

/* 태풍 추적 */
#todayTyphoonRadar {
  width: 100%;
  height: 265px;
  border-top-left-radius: var(--border-radius-medium);
  border-top-right-radius: var(--border-radius-medium);
}

#typhoonRadar .info-more-btn-wrap {
  padding-top: 17px;
}

/* #typhoonMoreBtn {
  margin-right: 20px;
} */

[dir='rtl'] #typhoonMoreBtn {
  margin-right: 0;
  margin-left: 20px;
}

#typhoonRadar .card {
  position: unset;
  padding: 20px;
}

.typhoon-img-wrap {
  width: 100%;
  margin: 0 auto;
  height: 265px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  position: relative;
}

.typhoon-img-wrap:hover {
  cursor: pointer;
}

.typhoon-info-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: white;
  background: linear-gradient(0deg, #000, transparent 20%, transparent 75%, #000);
  pointer-events: none;
}

.typhoon-info-wrap .typhoon-info {
  width: 100%;
  height: 30px;
  display: flex;
}

.typhoon-icon-wrap {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
}

[dir='rtl'] .typhoon-icon-wrap {
  margin-right: unset;
  margin-left: 10px;
}

.typhoon-icon {
  width: 25px;
  height: 25px;
}

/* .info-type-icon {
  width: 30px;
  height: 30px;
  border: 3px solid orange;
  background-color: darkolivegreen;
  margin-right: 10px;
  border-radius: 100%;
}

.info-type-icon span {
  height: 100%;
  width: 100%;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.info-text-wrap {
  flex: 1;
}

.info-text-wrap > span {
  display: flex;
  height: 13px;
  align-items: center;
}

.info-text-wrap > span:first-child {
  font-weight: bold;
  font-size: 11px;
  margin-bottom: 4px;
}

.info-text-wrap > span:last-child {
  font-size: 10px;
}

.mapbox-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
  cursor: pointer;
  display: block;
  width: 75px;
  height: 25px;
  margin: 0 0 -4px -4px;
  overflow: hidden;
}

[dir='rtl'] .mapbox-icon {
  right: unset;
  left: 15px;
}

/* 대기질 영역 */

.air-quality-bar .air-bar {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  /* background: linear-gradient(90deg, #4d6ad6 8%, #89d538 16%, #efc03e 32%, #d93030 100%); */
  background: linear-gradient(90deg, #4d6ad6 0%, #4d6ad6 5%, #89d538 15%, #efc03e 35%, #d93030 60%, #d93030 100%);
}

/* [dir='rtl'] .air-quality-bar .air-bar {
  background: linear-gradient(-90deg, #4d6ad6 8%, #89d538 16%, #efc03e 32%, #d93030 100%);
} */

.air-quality-bar .point {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  /* background-color: var(--color-l1); */
  border-radius: 50%;
  border: 2.33px solid var(--card-color);
  transition: left 1.5s ease-out;
}

.air-quality-top {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
}

.air-quality-bar {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
}
#airqMoreBtn {
  margin-top: 20px;
}
#airValue {
  position: relative;
  top: -2px;
  font-size: 46px;
  font-weight: var(--weight-bold);
  letter-spacing: -2px;
  line-height: 55px;
  text-align: center;
  margin: 0 24px 0 4px;
  color: var(--main-color-d3);
}

[dir='rtl'] #airValue {
  margin: 0 4px 0 24px;
}

.air-quality-index-wrap {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: #666666;
  line-height: 21px;
}

.air-quality-index-wrap > em {
  padding-right: 5px;
}

[dir='rtl'] .air-quality-index-wrap > em {
  padding-right: 0;
  padding-left: 5px;
}

.air-quality-index {
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: #666666;
  line-height: 21px;
}

.air-quality-index.summary {
  color: var(--main-color-d4);
}

#airStatus {
  font-weight: var(--weight-bold);
  color: var(--main-color-d3);
}

#mainPollutant {
  color: var(--main-color-d1);
}

#mainPollutant > em {
  color: #666666;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.bottom-popup img {
  width: 30px;
  padding: 3px;
  object-fit: contain;
}

.bottom-popup .xbtn {
  padding: 0px;
}

[dir='rtl'] .bottom-popup img {
  margin-right: 0;
  margin-left: 5px;
}

.description-title {
  font-size: 16px;
  font-weight: var(--weight-medium);
}

/* .table4 thead {
  background-color: var(--card-color);
} */

/* 통합대기환경지수 i  */
.table4-wrapper {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
}

.table4-wrapper > span {
  font-size: 12px;
  color: #868686;
  text-align: left;
}

[dir='rtl'] .table4-wrapper > span {
  text-align: right;
}

.table4-wrapper > span a {
  color: #868686;
}

.table4 {
  width: 100%;
  max-width: 700px;
  border-collapse: collapse;
  margin: 5px 0 10px;
}

.aqi-table-wrap tr th {
  font-weight: var(--weight-bold);
  padding-bottom: 10px;
}

.aqi-table-wrap th,
.aqi-table-wrap td {
  font-size: 12px;
  color: var(--main-color-l3);
  text-align: left;
  word-break: break-word;
  /* border: 1px solid var(--border-color); */
  padding: 5px;
}

[dir='rtl'] .aqi-table-wrap th,
[dir='rtl'] .aqi-table-wrap td {
  text-align: right;
  padding: 8px 7px;
}

[dir='rtl'] .aqi-table-wrap .air-quality-circle {
  margin-left: 5px;
}

.aqi-table-wrap .air-quality-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.info-icon {
  margin-right: 5px;
}

#air-info {
  cursor: pointer;
}

/* 미세먼지 영역 */
#pm10-info.card {
  padding: 16px 20px;
  cursor: pointer;
}

#pm10-info .pm10-wrap {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

#pm10-info .pm25-wrap {
  padding-bottom: 0px;
}

#pm10-info .pm10-wrap:first-child {
  border-bottom: 1px solid var(--border-color);
  padding-top: 0;
}

#pm10-info .pm10-wrap div[id] {
  position: relative;
  display: flex;
}
.CircleGraphWrap {
  position: relative;
}
.pm-value-data {
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  position: absolute;
  font-weight: var(--weight-bold);
  top: 50%;
  left: 50%;
  color: var(--main-color-d3);
  font-size: 24px;
}

#pm10-info .pm10-wrap .flex-column {
  padding-left: 20px;
}

.pm-contents-container {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
}

#pm10-info a {
  display: inline-block;
}

.pm10-status {
  font-size: 21px;
  letter-spacing: 0;
  line-height: 21px;
  font-weight: var(--weight-bold);
  margin-bottom: 8px;
  word-break: keep-all;
  color: var(--main-color-d3);
}

#pm10Prop > em,
#pm25Prop > em,
.air-quality-index.unit > em {
  color: #666666;
}

#pm10Prop,
#pm25Prop {
  color: var(--main-color-d1);
}

.pm10-comment {
  font-size: 14px;
  color: #868686;
  letter-spacing: 0;
  line-height: 21px;
  font-weight: var(--weight-regular);
}

#pm-summary {
  cursor: pointer;
}

[dir='rtl'] #pm10-info .pm10-wrap .flex-column {
  padding-right: 20px;
  padding-left: 0px;
}

/* 생활지수 */
#life-index.card {
  padding: 0 20px;
}

.life-index-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0px 17px 0px;
  margin: 0 -6px;
}

#life-index a:last-child .life-index-wrap {
  border-bottom: none;
}

.life-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.life-wrap .life-text {
  padding: 0 10px;
}

.life-wrap .life-text h3 {
  font-size: 17px;
  font-weight: var(--weight-medium);
  color: var(--main-color-d1);
}

.life-wrap .life-text p {
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: #868686;
  margin-top: 3px;
}

.life-wrap img {
  width: 24px;
  transform: rotateZ(270deg);
  padding: 2px;
}

[dir='rtl'] .life-wrap img {
  transform: rotateZ(90deg);
}

.life-index-title {
  display: flex;
  align-items: center;
}

.title-wrap-tablet {
  display: none;
}

/* CCTV */
#cctvLocWrap {
  display: flex;
  flex-direction: row;
}
.cctv-link-wrap {
  /* display: inline-flex; */
  display: none;
  align-items: center;
}

.cctv-link-wrap::before {
  display: inline-block;
  vertical-align: top;
  width: 1px;
  height: 16px;
  margin: 2px 8px 2px 3px;
  background-color: #8c8c8c;
  content: '';
}
#tableCctvWrap {
  margin: 2px 8px;
}
.cctv-link {
  display: inline-flex;
  align-items: center;
}

.cctv-link span {
  font-size: 13px;
  font-weight: 600;
  color: var(--main-color-d1);
  line-height: 20px;
  margin: 0 4px;
}

.cctv-link .cctv-icon {
  width: 20px;
  height: 20px;
}

.cctv-link .right-arrow-icon {
  width: 10px;
  height: 10px;
}

.map-container {
  position: relative;
}

.season-map .map-container {
  display: flex;
}

.season-map .map-container img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.season-map .info-more-btn-wrap {
  padding-top: 20px;
}

.map-btnbox .map-btn {
  position: absolute;
  width: 25%;
  height: 8%;
  z-index: 9999;
}

.map-btnbox .map-btn0 {
  right: 65%;
  top: 22%;
}
.map-btnbox .map-btn1 {
  left: 2%;
  top: 31%;
}
.map-btnbox .map-btn2 {
  left: 2%;
  top: 40%;
}
.map-btnbox .map-btn3 {
  left: 2%;
  top: 49%;
}
.map-btnbox .map-btn4 {
  left: 2%;
  bottom: 34%;
}
.map-btnbox .map-btn5 {
  left: 4%;
  bottom: 7%;
}
.map-btnbox .map-btn6 {
  right: 6%;
  top: 20%;
}
.map-btnbox .map-btn7 {
  right: 2%;
  top: 30%;
}
.map-btnbox .map-btn8 {
  right: 2%;
  top: 47%;
}
.map-btnbox .map-btn9 {
  right: 2%;
  bottom: 33%;
}
.map-btnbox .map-btn10 {
  right: 2%;
  bottom: 21%;
}
.map-btnbox .map-btn11 {
  right: 7%;
  bottom: 10%;
}
.map-btnbox .map-btn12 {
  right: 35%;
  bottom: 7%;
}
/* tip */
#lifeTip img {
  width: 100%;
  border-radius: var(--border-radius-medium);
}

/* 전국날씨지도 패딩 제거 */
#weatherMap .article-wrap {
  padding: unset;
}

#main {
  scroll-margin-top: 600px;
}

#astro-comment {
  padding-top: 20px;
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: var(--main-color-d4);
}
@media all and (min-width: 1024px) {
  #today-weather-info-card-bottom {
    display: flex;
    flex-wrap: wrap;
  }

  #today-weather-info-card-bottom > a {
    width: calc(50% - 18px);
  }

  #today-weather-info-card-bottom > a:nth-child(odd) {
    margin-right: 18px;
  }

  [dir='rtl'] #today-weather-info-card-bottom > a:nth-child(odd) {
    margin-right: 0;
    margin-left: 18px;
  }

  #today-weather-info-card-bottom > a:nth-child(even) {
    margin-left: 18px;
  }

  [dir='rtl'] #today-weather-info-card-bottom > a:nth-child(even) {
    margin-left: 0;
    margin-right: 18px;
  }

  #today-weather-info-card-bottom .detail-info-wrap {
    border-bottom: none;
    border-top: 1px solid var(--border-color);
  }
}

@media (max-width: 1280px) {
  #main {
    scroll-margin-top: 974px;
  }
  #m_forecast {
    scroll-margin-top: 134px;
  }
  #weatherMap {
    scroll-margin-top: 190px;
  }

  #lifeindex {
    scroll-margin-top: 140px;
  }
}

@media (max-width: 767px) {
  #m_forecast {
    scroll-margin-top: 60px;
  }
  #weatherMap {
    scroll-margin-top: 100px;
  }

  #lifeindex {
    scroll-margin-top: 80px;
  }
  #main {
    scroll-margin-top: 300px;
  }
}

@media all and (min-width: 768px) {
  .title-wrap-tablet {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .headline-tablet {
    font-size: 21px;
    font-weight: var(--weight-medium);
    color: var(--main-color-d3);
    line-height: 28px;
    margin-bottom: 4px;
  }

  .sub-title-tablet {
    font-size: 13px;
    font-weight: var(--weight-medium);
    color: var(--color-d5-text);
    line-height: 18px;
  }

  .title-wrap {
    /* padding-left: 20px; */
    display: none;
  }
}

@media (max-width: 320px) {
  #pm10-info .pm10-wrap {
    flex-direction: column;
  }

  #pm10-info .pm10-wrap .flex-column {
    padding-left: 0;
  }
  .pm1025StatusContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .air-quality-index {
    text-align: center;
  }
  .pm10-status {
    padding-top: 10px;
  }
}

@media (prefers-color-scheme: dark) {
  .life-wrap img {
    filter: invert(64%) sepia(9%) saturate(0%) hue-rotate(234deg) brightness(84%) contrast(88%);
  }

  .bottom-popup img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(0%) saturate(61%) hue-rotate(191deg) brightness(95%) contrast(86%);
  }

  .table4 th,
  .table4 td {
    color: var(--color-white);
  }
}

.b_none {
  border: none;
}

.text-none {
  font-size: 0;
  /* text-indent: -9999; */
}

#month-select-info {
}

.forecast-box {
  padding-top: 20px;
}

.forecast-box > p {
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: var(--main-color-d4);
  line-height: 21px;
}

.forecast-text {
  font-size: 13px;
  font-weight: 400;
  color: #8b8b8c;
  margin-top: 20px;
}

.forecast-text > a {
  font-weight: 500;
  color: #166ab5;
}

@media screen and (min-width: 1300px) {
  .bottom-popup {
    width: 40%;
  }
}

/* 별똥별 */

.night {
  position: absolute;
  width: 70%;
  height: 60%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  top: 50%;
  left: 50%;
  z-index: 2;
  background-color: transparent;
}

.shooting_star {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  background: linear-gradient(-45deg, #5f91ff, rgba(0, 0, 255, 0));
  border-radius: 999px;
  filter: drop-shadow(0 0 6px #699bff);
  -webkit-animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
  animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
}
.shooting_star::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  height: 2px;
  background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #5f91ff, rgba(0, 0, 255, 0));
  transform: translateX(50%) rotateZ(45deg);
  border-radius: 100%;
  -webkit-animation: shining 3000ms ease-in-out infinite;
  animation: shining 3000ms ease-in-out infinite;
}
.shooting_star::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  height: 2px;
  background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #5f91ff, rgba(0, 0, 255, 0));
  transform: translateX(50%) rotateZ(45deg);
  border-radius: 100%;
  -webkit-animation: shining 3000ms ease-in-out infinite;
  animation: shining 3000ms ease-in-out infinite;
  transform: translateX(50%) rotateZ(-45deg);
}
.shooting_star:nth-child(1) {
  top: calc(0%);
  left: calc(0%);
  -webkit-animation-delay: 2200ms;
  animation-delay: 2200ms;
}
.shooting_star:nth-child(1)::before,
.shooting_star:nth-child(1)::after {
  -webkit-animation-delay: 2200ms;
  animation-delay: 2200ms;
}
.shooting_star:nth-child(2) {
  top: calc(100%);
  left: calc(0%);
  -webkit-animation-delay: 3240ms;
  animation-delay: 3240ms;
}
.shooting_star:nth-child(2)::before,
.shooting_star:nth-child(2)::after {
  -webkit-animation-delay: 3240ms;
  animation-delay: 3240ms;
}
.shooting_star:nth-child(3) {
  top: calc(50%);
  left: calc(0%);
  -webkit-animation-delay: 4480ms;
  animation-delay: 4480ms;
}
.shooting_star:nth-child(3)::before,
.shooting_star:nth-child(3)::after {
  -webkit-animation-delay: 4480ms;
  animation-delay: 4480ms;
}
.shooting_star:nth-child(4) {
  top: calc(30%);
  left: calc(0%);
  -webkit-animation-delay: 5320ms;
  animation-delay: 5320ms;
}
.shooting_star:nth-child(4)::before,
.shooting_star:nth-child(4)::after {
  -webkit-animation-delay: 5320ms;
  animation-delay: 5320ms;
}
.shooting_star:nth-child(5) {
  top: calc(70%);
  left: calc(0%);
  -webkit-animation-delay: 7200ms;
  animation-delay: 7200ms;
}
.shooting_star:nth-child(5)::before,
.shooting_star:nth-child(5)::after {
  -webkit-animation-delay: 7200ms;
  animation-delay: 7200ms;
}
.shooting_star:nth-child(6) {
  top: calc(20%);
  left: calc(0%);
  -webkit-animation-delay: 8900ms;
  animation-delay: 8900ms;
}
.shooting_star:nth-child(6)::before,
.shooting_star:nth-child(6)::after {
  -webkit-animation-delay: 8900ms;
  animation-delay: 8900ms;
}

@-webkit-keyframes tail {
  0% {
    width: 0;
  }
  30% {
    width: 100px;
  }
  100% {
    width: 0%;
  }
}

@keyframes tail {
  0% {
    width: 0;
  }
  30% {
    width: 100px;
  }
  100% {
    width: 0%;
  }
}
@-webkit-keyframes shining {
  0% {
    width: 0;
  }
  50% {
    width: 30px;
  }
  100% {
    width: 0;
  }
}
@keyframes shining {
  0% {
    width: 0;
  }
  50% {
    width: 30px;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes shooting {
  0% {
    left: 0%;
    transform: translateX(-50%);
  }
  100% {
    left: 100%;
    transform: translateX(-50%);
  }
}
@keyframes shooting {
  0% {
    left: 0%;
    transform: translateX(-50%);
  }
  100% {
    left: 100%;
    transform: translateX(-50%);
  }
}
@-webkit-keyframes sky {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@keyframes sky {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
