@charset "UTF-8";
.opacity img {
position: absolute; top: 0; left: 0; width: 100%; height: auto; opacity: 1; z-index: -1;
}

.service_usage_page {
  padding-bottom: 60px;
}

.top_menu_wrap ul{
  display: flex;
  gap: 42px;
  border-bottom: 1px solid #d5d5d5;
}
.top_menu_wrap ul li{
  position: relative;
}
.top_menu_wrap ul li a{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
  color: #878787;
  gap: 4px;
  letter-spacing: -0.6px;
  cursor: pointer;
}
.top_menu_wrap ul li.current a{
  color: var(--brandColor);
  font-weight: 600;
}
.top_menu_wrap ul li.current::after{
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brandColor);
}
.service_usage_area .filter_wrap {
  display: flex;
  gap: 16px;
}
.service_usage_area .filter_wrap .tab_item {
  padding: 8px 18px;
  border-radius: 18.5px;
  border: solid 1px #d5d5d5;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.54px;
  text-align: center;
  color: #878787;
  cursor: pointer;
}
.service_usage_area .filter_wrap .tab_item.active {
  border: solid 1px var(--brandColor);
  background-color: #f2f7fc;
  color: var(--brandColor);
}
.service_usage_area .title_wrap h2 {
  padding: 50px 0 30px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.9px;
}
.applicant_list_wrap {
  margin-top: 26px;
  display: none;
}
.applicant_list_wrap.active {
  display: block;
}
.applicant_header {
  padding: 18px 44px;
  background: #fafafa;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  justify-content: space-between;
}

.applicant_header .col {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.applicant_item {
  display: flex;
  justify-content: space-between;
  padding: 26px 44px;
  border-bottom: 1px solid #d5d5d5;
}

.applicant_item .col {
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.applicant_item .col.ad_apply {
  line-height: 1.3;
}
.applicant_item .product .product_tag {
  display: flex;
  gap: 8px;
}
.applicant_item .product .product_tag span {
  padding: 4px 12px;
  border-radius: 12px;
  background-color: #f2f7fc;
  font-size: 14px;
  letter-spacing: -0.42px;
  color: var(--brandColor);
}
.applicant_item .product .product_tag .d_day {
  background-color: #fafafa;
  color: #df222c;
}
.applicant_item .product .product_title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.66px;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 10px;
}
.applicant_item .product .payment_date {
  font-size: 16px;
  letter-spacing: -0.64px;
  color: #878787;
}
.applicant_item .col .info_btn {
  padding: 8px 34px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.48px;
  text-align: center;
  color: #878787;
  border-radius: 5px;
  border: solid 1px #d5d5d5;
  background-color: #fafafa;
  cursor: pointer;
}
.number {
  width: 8%;
}

.product {
  width: 15%;
}

.period {
  width: 20%;
}

.ad_apply {
  width: 25%;
}
.control {
  width: 13%;
}



/* 페이지 네이션 */
.pagination_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  gap: 20px;
}

.pagination_wrap .pagination_navi,
.pagination_wrap .pagination_pages {
  display: flex;
  gap: 15px;
}

.pagination_navi .btn {
  padding: 5px;
}

.pagination_navi .btn.disabled {
  opacity: 0.2;
}

.pagination_pages .btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #858585;
}

.pagination_pages .btn.on {
  background: var(--brandColor);
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.pagination .prev_box {
  margin-right: 30px;
}
.pagination .next_box {
  margin-left: 30px;
}
.pagination .prev_box, .pagination .next_box {
  display: flex;
  align-items: center;
  gap: 20px;
} 
.pagination .page {
  font-size: 18px;
  color: #878787;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page:not(:last-of-type) {
  margin-right: 16px;
}
.pagination .arrow {
  position: relative;
}
.pagination .arrow img{
  width: 100%;
  height: 100%;
}
.pagination .page.active {
  background-color: var(--brandColor);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.pagination .arrow:disabled {
  cursor: default;
}

.pagination .arrow.disabled {
  pointer-events: none;
  opacity: 0.3; 
}