/***  띠 배너 영역 ***/

.responsive-horizontal {
  width: 100%;
  height: 60px;
}

.bottom-info-text{
  background: white;
  color: #8C8C8C;
}

/* 아이폰 미니 이하 (667px 이하) */
@media only screen and (max-height: 647px) {
  .responsive-horizontal {
    height: 50px;
  }
}

/* 아이폰 미니 초과 아이폰 프로 맥스 이하 (667px 이상) */
@media only screen and (min-height: 647px) and (max-height: 820px) {
  .responsive-horizontal {
  }
}

/* 13인치 노트북 이상 (720px 이상) */
@media only screen and (min-width: 1000px) {
  .responsive-horizontal {
    height: 35vh;
  }
}
.responsive-native {
  width: 100%;
}

/***  네이티브 영역 ***/

/* 아이폰 미니 이하 (667px 이하) */
@media only screen and (max-height: 647px) {
  .responsive-native {
    width: 300px;
    height: 200px;
  }
}

/* 아이폰 미니 초과 아이폰 프로 맥스 이하 (667px 이상) */
@media only screen and (min-height: 647px) and (max-height: 820px) {
  .responsive-native {
    width: 100%;
    height: 35vh;
  }
}

/* 13인치 노트북 이상 (720px 이상) */
@media only screen and (min-width: 1000px) {
  .responsive-native {
    width: 100%;
    height: 40vh;
  }
}
