.search-wrapper {
  width: 300px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  right: 20px;
  border-radius: 20px;
  cursor: pointer;
  background-color: #fff;
  z-index: 700;
}
.search-wrapper.open-all {
  height: 480px;
}

.search-container {
  /* width: 300px; */
  padding: 0 24px 0 48px;
  position: relative;
  overflow: hidden;
}

.search-rolling {
  height: 40px;
  overflow: hidden;
  position: relative;
}
.search-container p {
  position: absolute;
  top: 15%;
  left: 16px;
  transform: translateY(-50%);
}
#search-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  width: 100%;
}
#search-list li {
  height: 40px;
  line-height: 45px;
  text-align: left;
  background-color: white;
  position: relative;
}
li strong {
  margin-right: 16px;
}
li i.rank-icon {
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
li i.rank-icon.rise {
  background: url("../images/icon-rise.png") no-repeat center center;
}
li i.rank-icon.drop {
  background: url("../images/icon-drop.png") no-repeat center center;
}
li i.rank-icon.maintain {
  background: url("../images/icon-maintain.png") no-repeat center center;
}

.rank-list-all {
  padding: 0;
  font-size: 0.875rem;
  margin-top: 0px;
}
.rank-list-all li {
  padding: 0 24px;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
  position: relative;
}
.rank-list-all li i.rank-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.rank-list-all li:last-child {
  height: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: default;
  line-height: 1;
}
.rank-list-all li:last-child img {
  margin-right: 4px;
}
.rank-list-all li p {
  text-align: center;
  font-size: 0.8125rem;
  color: #888;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 10px;
}

.rank-list-all li img {
  vertical-align: middle; /* 이미지와 텍스트를 중앙 정렬 */
}

span.new-rank {
  font-size: 14px;
  margin-left: 10px;
  font-weight: bold;
  color: #f29100;
}

.select-wrapper {
  position: absolute;
  right: 325px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 702;
}
.select_wrap {
  position: relative;
  user-select: none;
}
.select_wrap .default_option {
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.select_wrap .default_option li {
  width: 160px;
  height: 40px;
  line-height: 14px;
  padding-left: 16px;
  list-style-type: none;
}
.select_wrap .default_option:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 11px;
  background: url("../images/naver-select-arr.png") no-repeat center center;
}
.select_wrap .select_ul {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  display: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
.select_wrap .select_ul::-webkit-scrollbar {
  width: 10px;
}
.select_wrap .select_ul::-webkit-scrollbar-thumb {
  height: 30%;
  background: #ddd;
  padding: 10px 0;
  border-radius: 10px;
  border: 3px solid #fff;
}
.select_wrap .select_ul::-webkit-scrollbar-track {
  background: #fff;
  border: 2px solid #fff;
}

.select_wrap .select_ul li {
  cursor: pointer;
  font-size: 0.875rem;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid #ddd;
}
.select_wrap .select_ul li:last-child {
  border-bottom: 0;
}

.select_wrap .select_ul li:hover {
  background-color: #efefef;
}
.select_wrap .option {
  display: flex;
  align-items: center;
}
.select_wrap.active .select_ul {
  display: block;
}
