/* 차량 조회 페이지  */
.l-other-car-search  .custom-select {
  line-height: 1.5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  padding: 8px 6px 8px 10px;
  background-color: transparent;
  display: flex;
  gap: 4px;

}
.l-other-car-search .c-btn-input.select-box {
 padding: 8px 16px 8px 8px;
}

.l-other-car-search .custom-select > .custom-select__selected {
  display: flex;
  gap: 4px;
  align-items: center;
}

.l-other-car-search .custom-select > .custom-select__selected > img {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.l-other-car-search .custom-select > .custom-select__selected > .selected-value{
font-weight: 600;
font-size: 16px;
line-height: 18px;
vertical-align: middle;

 color: var(--content-main);
}

.l-other-car-search .custom-select > .custom-select__list {
  position: absolute;
  top: 40px;
  left:0;
  width:200%;
  border-radius: 16px;
  border : 1px solid rgba(2, 32, 71, 0.05);
  box-shadow: 0px 10px 40px 0px rgba(2,32,71,0.05) ,0px 20px 50px 0px rgba(0, 23, 51, 0.02), 2px 70px 80px 0px rgba(0, 23, 51, 0.02);
  background-color: #fff;
  z-index: 10; 
  display: none;
  padding: 8px;
}


.l-other-car-search .custom-select.is-open > .custom-select__list {
  display:block; 
}

.l-other-car-search .custom-select > .custom-select__list > .custom-select__option {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--content-sub);
  border-radius: 8px;
}

.l-other-car-search .custom-select > .custom-select__list > .custom-select__option.sts-active {
 color: var(--content-main);
 background-color: var(--gray-50);
 font-weight: 700
}

.l-other-car-search .custom-select > .custom-select__list > .custom-select__option:hover {
  background-color: var(--gray-50);  
}


.l-other-car-search .desc-box {
  display: flex;
  flex-direction: column;
  gap:4px;
  width: 100%;
}

.l-other-car-search .desc-box__title {
font-weight: 600;
font-size: 14px;
line-height: 1.5;
color: var(--content-sub);
}


.l-other-car-search .desc-box__contents > .desc-box__list > li {
  padding-left: 10px;
  position: relative;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.50;
  color: var(--content-caption)

  
}


.l-other-car-search .desc-box__contents > .desc-box__list > li:before {
 content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  top: 0.65em;
  transform: translateY(-50%);
  background-color: var(--content-caption);
  border-radius: 50%;
}


@media only screen and (max-width: 768px) {
 .l-other-car-search .contents {
   padding: 0; 
 }
 .l-other-car-search .select-box--wrap {
  padding: 0 16px;
 }
 
 .l-other-car-search .desc-box {
  padding: 0 16px;
}
} 