@charset "UTF-8";

.service .payment_box {
  display: flex;
  gap: 50px;
  @media (max-width : 1300px) {
    flex-wrap: wrap;
  }
}

/* * 구독 (결제) 정보 상태 뱃지 */
.service .subscribe_badge.poc {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  padding: 0px 10px;
  margin-left: 15px;
  font-size: 13px;
  border-radius: 5px;
  text-align: center;
  background: rgba(255, 130, 40, 0.14);
  color: #FF8228;
}

.span_blue_ex_color {
  background: #E0F1FF;
  padding: 2px 12px !important;
  color: #2196F3 !important;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0px;
}

/* * 결제 정보 */
.service .payment_status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 546px;
  border-radius: 5px;
}
/* 가려진 요소 */
.service .payment_status.covered {
  position: relative;
}
.service .payment_status.covered::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  display: block;
  border-radius: 5px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  font-size: 15px;
  padding-top: calc(10% - 30px);
  background-color: rgba(255, 243, 243, 0.86);
  opacity: .86;
}
.service .payment_status.covered::before {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '\f070\A 정기 구독 신청 시\A결제 예정 금액을 안내드립니다.';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  white-space: pre;
  z-index: 20;
  text-align: center;
}

.service .payment_detail {
  width: calc(100% - 100px);
}

.service .payment_detail_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-size: 15px;
  padding: 3px 13px;
}
.service .payment_detail_list.amount {
  border-radius: 5px;
  margin-top: 10px;
  background-color: #F5F5F5;
}
.service .payment_detail_list .border_dashed {
  border-top: 1px dashed #ddd;
  display: inline-block;
  width: 40%;
  margin-top: 10px;
}
.service .payment_detail_list span.color_gray {
  font-size: 14px;
}
.service .payment_detail_list span.color_gray.sub {
  margin-right: 10px;
}
.service .payment_detail_list .last_text {
  display: flex;
  justify-content: flex-end;
  justify-items: center;
}
.service .status_text {
  width: 100%;
}
.service .status_text .title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  margin-bottom: 6px;
}
.service .status_text .title svg {
  margin-right: 6px;
}
/* 느낌표 아이콘 */
.service .status_text .title .circle_exclamation_icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.service .status_text .title .circle_exclamation_icon svg {
  color: #fff;
  font-size: 10px;
  margin-left: 6px;
  vertical-align: 3px;
}
.service .status_text .title .circle_exclamation_icon img {
  vertical-align: baseline;
}

.service .status_text .date_info {
  font-size: 15px;
  margin-bottom: 6px;
}

.service .status_text .text {
  font-size: 15px;
  width: calc(100% - 30px);
}
/* 실패 */
.service .status_text.fail .title,
.service .status_text.fail .title .circle_exclamation_icon,
.service .status_text.fail .date_info .date{
  color: var(--text-red-color);
}
.service .status_text.fail .title .circle_exclamation_icon {
  background-color: var(--text-red-color);
}
/* 만료 */
.service .status_text.expiration .title,
.service .status_text.expiration .date_info .date{
  color: #FF8228;
}
.service .status_text.expiration .title .circle_exclamation_icon {
  background-color: #FF8228;
}


/* * 구독 정보 내용 */
.service .item_list {
  padding: 20px 20px 15px;
  border-bottom: 1px solid #ddd;
}
.service .item_list .item_title {
  /* margin-bottom: 10px; */
}
.service .item_list .item_title .title_sub {
  margin-left: 20px;
  font-size: 15px;
  font-family: 'Pretendard-Medium';
}
.service .item_list .item_info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: space-between;
  align-items: self-end;
  margin-top: 15px;
  font-family: 'Pretendard-Regular';
}
.service .item_list .item_info .text_os {
  background-color: #EDEDED;
  border-radius: 25px;
  padding: 5px 11px;
  margin-right: 8px;
}
.service .item_list .item_info .poc {
  background-color: rgba(255, 130, 40, 0.15);
  color: #FF8228;
  border-radius: 25px;
  padding: 5px 11px;
  margin-right: 8px;
}
.service .item_list .item_info .credit_card {
  color: #2196F3;
  margin-right: 24px;
}
.service .item_list .item_info .credit_card svg {
  margin-right: 4px;
}
/* * 버튼 간격 */

.service .list_wrap .btn_wrap {
  padding-top: 0;
}
.service .btn_wrap {
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.service .btn_area {
  margin-top: 20px;
  text-align: center;
}

/* *구독 변경 */
.service .change_title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.service .bubble::after {
  background-image: url(/assets/images/svg/service_bubble.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  display: inline-block;
  width: 90px;
  height: 33px;
  color: #fff;
  font-family: 'Pretendard-Bold';
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  animation: bounce 2s infinite alternate ease-in-out;
  margin: -34px 0px 0px -102px;
}

@media (max-width : 430px) {
  .service .bubble::after {
    display: none;
  }
}

.lang-ko .service .bubble::after {
  content: "최대 22% 할인";
}

.lang-en .service .bubble::after {
  content: "Up to 22%";
}
@media (max-width : 552px) {
  .lang-en .service .bubble::after {
    display: none;
  }
}
.lang-ja .service .bubble::after {
  content: "最大22%割引";
}
.lang-en .service .bubble::after {
  margin: -32px 0px 0px -142px;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-3px);
  }
}


.service .change_title .tab_title button {
  font-size: 15px;
  padding: 7px 13px;
  border-radius: 30px;
  color: #AAAAAA;
}
.service .change_title .tab_title button:hover {
  color: #222;
}
.service .change_title .tab_title button.active {
  background-color: #222;
  color: #fff;
}
.service .more_info ul li:not(:last-child)::after {
  content: '|';
  color: #9999aa;
  margin: 10px;
}
.service .more_info ul li a {
  color: #9999aa;
}

.service .content_text {
  padding: 25px 0 20px 0 ;
  font-size: 17px;
  color: #5C656E;
  font-family: 'Pretendard-Regular';
}
.service .content {
  display: flex;
  flex-wrap: wrap;
  gap: 37px;
  @media (max-width : 992px) {
    flex-direction: column;
  }
}
.service .content .choice {
  flex: 1;
  
}
.service .content .amount {
  flex: 1;
  font-size: 15px;
}
/* *플랜선택 */
.service .label_box {
  display: flex;
  gap: 8px;
}
.service .label_box .type {
  font-size: 15px;
  font-family: 'Pretendard-Bold';
}
.service .choice_item {
  border-radius: 8px;
  border: 1px solid #E6E6E6;
}
.service .choice_item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 21px;
  border-radius: 5px 5px 0 0;
  background-color: #E7EAED;
  font-size: 17px;
  font-family: 'Pretendard-SemiBold';
}
.service .choice_item .title .sub_title {
  margin-left: 12px;
  font-size: 14px;
  color: #555;
}

.service .choice_item .title .red a {
  font-size: 14px;
  color: #EF5350;
  padding: 5px 10px;
  border-radius: 5px;
  transition: .3s;
}
.service .choice_item .title .red a:hover {
  background-color: #FFF1F1;
}
.service .choice_item .title .red a:active {
  background-color: #FFE2E2;
}
.service .choice_item .title .red a svg {
  margin-left: 4px;
  margin-top: 1px;
}
.service .label_box .type {
  margin-bottom: 7px;

}
.service .label_box .type_des {
  font-size: 15px;
  color: #737373;
}
.service .choice_box {
  padding: 12px 20px;
}
.service .choice_box .choice_box_list {
  padding: 18px 0;
}
.service .choice_box .choice_box_list:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.service .choice_box .choice_box_list:last-child {
  padding-bottom: 6px;
}

/* * 뱃지 */
.service .badge_service {
  padding: 4px 11px;
  border-radius: 25px;
  margin-left: 5px;
  vertical-align: 2px;
}

.service .badge_service.now {
  background-color: #E0F1FF;
  color: #2196F3;
}
.service .badge_service.try {
  background-color: rgba(255, 130, 40, 0.15);
  color: #FF8228;
}
.service .badge_service_2 {
  padding: 4px 11px;
  border-radius: 25px;
  margin-left: 5px;
  vertical-align: 2px;
  font-size: .75em;
  font-weight: 700;
}
.service .badge_service_2.best {
  background-color: #FF1B9926;
  color: #FF1B99;
}
.service .badge_service_2.new {
  background-color: #A78CE926;
  color: #A78CE9;
}

/* 라디오 클릭 시 보이는 부분 */
.service .hidden_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  margin-top: 15px;
  border-radius: 8px;
  background-color: rgba(230, 230, 230, 0.4);
}
.service .hidden_box .left .pc { 
  margin-bottom: 6px;
  font-size: 13px;
  font-family: 'Pretendard-SemiBold';
  color: #737373;
}
.service .hidden_box .left .money {
  font-family: 'Pretendard-Regular';
  font-size: 12px;
  color: #9A9A9A;
} 
.service .hidden_box .left .money .bold {
  font-size: 15px;
  font-family: 'Pretendard-Bold';
  margin-left: 10px;
}

/* 가격 정책 보기 버튼 */
.service .pay_more {
  color: #2196F3;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Pretendard-SemiBold';
  transition: .3s;
}
.service .pay_more:hover {
  background-color: #E5EEF6;
}
.service .pay_more:active {
  background-color: #D5EBFC;
}
/* * 타이틀 툴팁 */
.service .info:hover ~ .tool_tip.right {
  right: 10px !important;
}
/* * 현재 엑소스피어가 설치된 PC */
.service .install_pc_text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 15px;
  color: #9A9A9A;
  font-family: 'Pretendard-Medium';
}
.service .counter_title {
  font-size: 17px;
}
/* +,- 카운터 */
.service .counter_box {
  background-color: rgba(230, 230, 230, 0.4);
  font-size: 15px;
  border-radius: 5px;
  padding: 0 7px;
}
.service .counter_box button {
  padding: 10px 10px;
}
.service .counter_box .number {
  display: inline-block;
  width: 40px;
}
.service .counter_box .number input {
  border: none;
  background: none;
  text-align: center;
  font-size: 18px;
}
.service .counter_box svg {
  font-size: 13px;
}

/* 현재 구독 : 유료기능 체험*/
.service .amount .item .title {
  margin-bottom: 15px;
  font-size: 15px;
  font-family: 'Pretendard-SemiBold';
}
.service .amount .item .item_box {
  background-color: #F7F7F7;
  border-radius: 10px;
  padding: 21px 28px;
}
.service .amount .item .item_box.experience svg {
  margin-top: 6px;
  font-size: 20px;
}
.service .amount .item .item_box.experience .large {
  margin: 13px 0 14px 0;
  font-family: 'Pretendard-SemiBold';
  font-size: 18px;
}
.service .amount .item .item_box.experience .sub {
  font-size: 15px;
  color: #828282;
  margin-bottom: 14px;
}
.service .amount .item .item_box .list {
  padding-right: 19px;
  margin-bottom: 6px;
}
.service .amount .item .item_box .list.total {
  border-top: 1px solid #E6E6E6;
  padding: 7px 19px 0 8px;
  margin-top: 15px;
}
.service .amount .caution {
  color: #FF8228;
  margin-left: 20px;
}
.subscriptionWarning {
  /* margin-left: 40px; */
  font-family: 'Pretendard-SemiBold';

}
/* 구독 변경 제한 안내 */
.service .limit {
  margin: 0 auto;
  max-width: 760px;
  padding: 0 40px;
  font-size: 18px;
  font-family: 'Pretendard-Regular';
}
.service .limit .img_box {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  background-color: #FFE6E6;
  border-radius: 50%;
}
.service .limit .img_box img {
  margin-top: 8px;
}
.service .limit .title {
  color: #EF5350;
  font-family: 'Pretendard-SemiBold';
  font-size: 20px;
}
.service .limit .border_top {
  border-top: 1px solid #DDDDDD;
  padding-top: 33px;
  margin-top: 24px;
  margin-bottom: 28px;
}

/* * 구독 내역 */
.service .list_wrap {
  overflow-y: auto;
  /* background-color: red; */
}
.service .list_box {
  min-width: 800px;
}
.service .list_box .date {
  margin-bottom: 12px;
  color: #555;
}
.service .list_box .table_info {
  padding: 10px 20px;
  background-color: #E7EAED;
}
.service .list_box .table_info .id_title {
  margin-right: 18px;
}
.service .list_box .table_info .id {
  margin-right: 29px;
}
.service .now_badge {
  line-height: normal;
  padding: 4px 11px;
  color: #40A629;
  background-color: #fff;
  border-radius: 25px;
  font-size: 11px;
}
.service .now_badge svg {
  font-size: 6px;
  margin-bottom: 2px;
}
.service .list_box .date_info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 6px;
  font-size: 13px;
}
.service .list_box .date_info svg {
  margin-right: 3px;
  /* vertical-align: -2px; */
  /* margin-bottom: -2px; */
  width: 12px;
}
.date_info_clock_icon {
  width: 12px;
  margin-bottom: 2px;
  margin-right: 3px;

}
.service .list_box .result {
  padding: 10px 20px;
}
.service .list_box .result p {
  width: calc(100% / 2);
}
.service .list_box .result p.result_text {
  font-size: 18px;
}
/* 구독 성공 */
.service .list_box .result p.result_text.success {
  color: #2196F3;
}
/* 구독 실패 */
.service .list_box .result p.result_text.fail {
  color: #EF5350;
}
/* 구독 예정 */
.service .list_box .result p.result_text.expected {
  color: #40A629;
}
.service .list_box .result p.result_text svg {
  margin-right: 7px;
}
.service .list_box .result .amount_payment {
  font-size: 15px;
  color: #555;
  padding-left: 20px;
}
.service .list_box .result .amount_payment span {
  /* margin-left: 45px; */
}
.service .subscribeMessage {
  font-size: 14px;
  font-family: 'Pretendard-SemiBold';
  color: #222222;
}

.service .subscription_history_span_1 {
  font-size: 14px;
  font-family: 'Pretendard-Bold';
}
.service .subscription_history_span_1:not(:first-child) {
  margin-left: 5px;
}

/* 구독 내역 테이블 */
.service table.result_table tr:first-child {
  border-top: 1px solid #E6E6E6;

}
.service table.result_table tr:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.service table.result_table {
  width: 100%;
  font-size: 15px;
}
.service table.result_table tr th {
  width: 15%;
  padding: 8px 20px;
  background-color: #F5F5F5;
}
.lang-en .service table.result_table tr th {
  width: 18%;
  padding: 14px 20px;
  background-color: #F5F5F5;
}
.service table.result_table tr th svg {
  color: #ccc;
  margin-right: 8px;
}
.service table.result_table tr td {
  width: 35%;
  padding-left: 20px;
}
/* 구독 관리 > 구독 내역 - 결제 금액 버튼 크기 */
.service table.result_table tr td .white_btn {
  padding: 4px 10px 3px;
  margin: 2px 20px 2px 8px;
}

/* * 더보기 버튼 */
.service .more_btn_wrap {
  padding-bottom: 20px;
  text-align: center;
  color: #9A9A9A;
}

/* * 결제 정보 관리 텍스트 */
.service .management_text_box {
  margin-bottom: 32px;
}
.service .management_text_box p {
  font-family: 'Pretendard-Regular';
  font-size: 17px;
}
.service .management_text_box p:not(:last-child) {
  margin-bottom: 9px;
}
.service .management_text_box p .semi_bold {
  font-family: 'Pretendard-SemiBold';
}
.service .management_text_box .circle {
  /* margin-right: 5px; */
  line-height: 0;
  font-size: 33px;
  vertical-align: sub;
}

/* 신용카드 박스 */
.service .card_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.service .card_item {
  width: calc((100% - 70px) / 3 );
  min-width: 265px;
  padding: 30px 25px 20px;
  box-shadow: 0 0 40px 0 rgba(197, 197, 197, 0.25);
  border-radius: 15px;
}
.service .card_item.add_card {
  text-align: center;
  font-family: 'Pretendard-SemiBold';
  font-size: 17px;
  cursor: pointer;
}
.service .card_item.add_card p {
  margin: 60px 0;
}
.service .card_item .card_name {
  font-size: 15px;
  margin-bottom: 19px;
}
.service .card_item .card_name svg {
  color: #2196F3;
}
.service .card_item .card_num {
  margin-bottom: 28px;
  font-family: 'Pretendard-SemiBold';
  font-size: 20px;
} 
.service .outer_table_body:last-child {
  border-bottom: none;
}

/* 크레딧 컬러 텍스트 박스 */
.service .color_box_text {
  padding: 3px 16px;
  margin-top: 5px;
  border-radius: 8px;
  background-color: #E3F3FF;
  font-size: 16px !important;
}
.service .color_box_text p {
  font-size: 16px !important;
}
.service .color_box_text svg {
  margin-right: 8px;
  color: #2196F3;
}

/* 계정 관련 공통 */
.service h4.title {
  font-family: 'Pretendard-SemiBold';
  font-size: 20px;
}
html[lang='ja'] .Exosphere.custom--exosecurity .service h4.title {
  font-family: 'NotoSansJP-SemiBold';
}
.service h4.title span {
  display: inline-block;
  width: 30px;
  height: 28px;
  margin-right: 10px;
  border-radius: 8px;
  background-color: #E7E3FF;
  text-align: center;
  vertical-align: 2px;
}
.service h4.title span.month {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 0;
  border-radius: 0;
  background-color: transparent;
  text-align: left;
  vertical-align: 0;
}
.service h4.title span svg {
  padding-top: 2px;
  font-size: 17px;
  color: #7764EC;
}
.service .container_wrap .item {
  margin-bottom: 12px;
  /* border-bottom: 1px solid #ddd; */
}
.service .container_wrap .item .item_title {
  margin-bottom: 6px;
  margin-left: 9px;
  font-size: 15px;
  font-family: 'Pretendard-SemiBold';
}
.service .container_wrap .item .item_text {
  margin-left: 9px;
  margin-bottom: 10px;
  font-family: 'Pretendard-Regular';
  font-size: 15px;
}

.service .item_row .item_title_wrap {
  width: 170px;
}

.service .double .btn_double {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  transition: .3s;
}
.service .btn_double:hover {
  background-color: #EFEFEF;
}
.service .btn_double:active {
  background-color: #E7E7E7;
}
.service .double .btn_double .mail {
  padding: 6px 0 6px 10px;
}
.service .double .btn_double .mail::after {
  content: '|';
  margin-left: 10px;
  color: #ddd;
}
.service .double .btn_double .select {
  border: none;
  margin: 0;
}
.service .double .btn_double .selected {
  padding: 6px 2px;
  transition: .3s;
}
.service .double .btn_double .selected-value {
  margin-left: 10px;
  margin-right: 10px;
}
.service .btn_double:hover .selected {
  background-color: #EFEFEF;
}
.service .btn_double:active .selected {
  background-color: #E7E7E7;
}
.service .double .btn_double .arrow {
  margin-left: 0;
  padding: 0 7px 0 0;
}
.none_install {
  color: #EF5350;
}
.service .container_wrap.offline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.service .container_wrap.offline .item_text {
  margin-right: 10px;
}
.service .container_wrap.offline input {
  width: 275px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-right: 9px;
  font-family: 'Pretendard-Regular';
  padding: 7px 5px;
  box-sizing: border-box;
}
.service .service_btn_wrap {
  margin-left: 40px;
}
.notification .outer_table_head th:nth-child(1) {
  width: 20%;
} 
.notification .outer_table_head th:nth-child(2) {
  width: 66%;
} 
.notification .outer_table_head th:nth-child(3) {
  width: 7%;
} 
.notification .outer_table_head th:nth-child(4) {
  width: 7%;
} 
.notification .outer_table_body .item_row {
  white-space: wrap !important;
}

/* 구독변경 */


.subscriptionChange_table th {
  padding: 0px !important;
  border: 0px !important;
}

.subscriptionChange_table td {
  white-space: nowrap !important;
}

.subscriptionChange_newSubscription_table {
  /* border: 2px solid #262626 !important; */
  box-sizing: border-box;
  border-collapse: separate;
  padding: 0px;
  background: #F7F7F7;
  border-radius: 5px;
}

.subscriptionChange_newSubscription_table td {
  /* border-top: 1px solid #BFBFBF;; */
  /* border-bottom: 1px solid #BFBFBF;; */
  text-align: center !important;
  border: none !important;
}

div.subscriptionChange_table_subscriptionType_left:hover {
  cursor: pointer;
}

.subscriptionChange_newSubscription_table tr:nth-child(1) td:nth-child(1) {
  /* border: 1px solid #000000 !important; */
  border-radius: 100px;
  width: 20px;
  /* border-top-left-radius: 5px; */
  /* border-bottom-left-radius: 5px; */
  color: #747474;
  background: #F7F7F7;
  font-weight: bolder;
  padding: 7px 0px;
  cursor: pointer;
  text-align: center;
}

.subscriptionChange_newSubscription_table tr:nth-child(1) td:nth-child(2) {
  font-size: 10px;
  padding: 0px;
  /* padding-top: 4px !important; */
  cursor: pointer;
  width: 29px;
}

.subscriptionChange_newSubscription_table tr:nth-child(1) td:nth-child(3) {
  /* border: 1px solid #000000 !important; */
  border-radius: 100px;
  width: 20px;
  /* border-top-right-radius: 5px; */
  /* border-bottom-right-radius: 5px; */
  color: #747474;
  background: #F7F7F7;
  padding: 7px 0px;
  /* cursor: pointer; */
}

div.subscriptionChange_updownBtn {
  border-radius: 100px;
  /* width: 10px; */
  padding: 0 2px;
  /* height: 25px; */
  cursor: pointer;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

div.subscriptionChange_updownBtn:hover {
  background: rgba(196, 196, 196, 0.5);
}

div.subscriptionChange_updownBtn:active {
  background: rgba(196, 196, 196, 0.9);
}

div.subscriptionChange_updownBtn:disabled {
  background: rgba(196, 196, 196, 0.4);
}

.subscriptionChange_newSubscription_table tr:nth-child(1) td:nth-child(4) {
  border: 1px solid #000000 !important;
  border-radius: 20px;
  width: 35px;
  font-size: 13px;
  padding: 0px !important;
  cursor: pointer;
}

.subscriptionChange_newSubscription_table tr:nth-child(1) td:nth-child(4):hover {
  color: #FFFFFF;
  background: #000000;
  cursor: pointer;
}

.subscriptionChange_newSubscription_table tr:nth-child(2) td:nth-child(1) {
  border: 1px solid #000000 !important;
  border-radius: 20px;
  width: 30px;
  font-size: 13px;
  padding: 0px !important;
  cursor: pointer;
}

.subscriptionChange_newSubscription_table tr:nth-child(2) td:nth-child(1):hover {
  color: #FFFFFF;
  background: #000000;
  cursor: pointer;
}

.subscriptionChange_inputBox {
  text-align: center; 
  width: 45px !important;
  padding: 0px;
  border: none !important;
  font-size: 16px !important;
  background: #F7F7F7;
  /* height: 47px; */
  outline:none;
}

.subscriptionChange_inputBox:focus {
  border: none !important;
}


.subscriptionType {
  line-height: 23px !important;
}

table.price_info_table>tbody>tr>td:nth-child(1) {
  border-right: 1px solid #E8E8E8;
}

table.price_info_table>tbody>tr>td:nth-child(1) {
  width: 40%;
}

.priceByPCQuantity_frame_close {
  float: right;
  width: 16px;
  height: 16px;
  background-image: url(/assets/images/svg/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: inline-block;
}

.priceByPCQuantity_frame_close:hover {
  background-image: url(/assets/images/svg/close_hover.svg);
}

.priceByPCQuantity_frame_close:active {
  background-image: url(/assets/images/svg/close_active.svg);
}

.priceByPCQuantity_frame_close:disabled {
  background-image: url(/assets/images/svg/close_disabled.svg);
}

/*  */

.service .subscriptionChange_table .etcSubscription_td {
  width: 100%;
  overflow: unset;
}

.etcSubscription_td>.etcInfo {
  float: right;
}

.etcSubscription_td>.etcInfo>div {
  margin-left: 6px;
  display: inline-block;
  color: #9999aa;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}


/* 구독변경 선택된 td */

.changeSubscription_selectedTd2 {
  border-bottom: 0px !important;
  background: none !important;
}



.subscriptionChange_table>tbody>tr>td:nth-child(1)>div>div>hr {
  border: 0;
  height: 1px;
  background: #D9D9D9;
  margin-top: 15px;
  margin-bottom: 15px;
}

div.vert_section.amountPC {
  line-height: 1.0em !important;
}

.subscriptionHistory_content {
  width: 100%;
  display: flex;
  padding: 0px;
  width: 975px;
  height: 300px;
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0px 6px 16px rgba(0, 0, 0, 0.08));
  margin: 20px 0px;
}

.subscriptionHistorys_area>div>div.subscriptionHistory_content>table {
  width: 100%;
  border-collapse: separate
}

/* 구독내역 테이블 전체 */
.subscriptionHistorys_area>div>div.subscriptionHistory_content>table>tbody>tr>td {
  padding: 16px;

}

/* 리셀러, 커스텀 안내문 */
.reseller_custom_notice {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 30px 0px;
}
.reseller_custom_notice.hide {
  margin: 0;
}

.subscription_notice_img {
  background: #FFE6E6;
  padding: 5px 9px 9px 10px;
  border-radius: 30px;
  width: 39px;
  height: 39px;
}

.subscription_notice_title {
  color: #EF5350;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
}
.payment_box .payment_status:has(.poc_notice) {
  position: relative;
}
/* 유료기능체험 안내문 */
.poc_notice {
  position: absolute;
  height: 100%;
  max-width: 546px;
  border-radius: 5px;
  width: 100%;
  padding-top: 0;
  margin-left: 0px;
  background: rgba(255, 243, 243, 0.86);
  text-align: center;
  color: #222;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.poc_notice.subscription_information_experience_warning_right {
  height: 100%;
}
.poc_notice.hide {
  display: none;
}


/* .subscriptionChange_table_frame_left {
  border: 1px solid #E6E6E6;
  background: #FFFFFF;
  border-radius: 5px;
  margin-bottom: 20px;
} */

/* .subscriptionChange_table_frame_left_title {
  background: #E6E6E6;
  color: #222;
  border-radius: 5px 5px 0px 0px;
  padding: 5px 22px;
  height: 38px;
  font-style: normal;
  font-weight: normal;
} */

.subscriptionChange_table_frame_left_content {
  background: #FFFFFF;
  border-radius: 5px;
}

.subscriptionChange_table_frame_left_content > table {
  width: 100%;
}

.subscriptionChange_table_subscription_label_plan_name {
  margin-bottom: 8px;
  height: 18px;
  line-height: 18px;
  /* margin-left: 4px; */
  color: #222;
  font-size: 17px;
  font-family: 'Pretendard-Bold';
}
.subscriptionChange_table_subscription_label_plan_name:has(.badge_service) {
  margin-top: -4px;
  margin-bottom: 12px;
}
.subscriptionChange_table_subscription_label_plan_explain {
  color: #737373;
  font-size: 16px;
  margin-top: 5px;
}

.view_pricing_policy {
  color: #2196F3;
  font-size: 15px;
  font-weight: 500;
}

.subscription_change_table_text_1 {
  color: #737373;
  width: fit-content;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 24px 0px 24px 0px;
}

.subscriptionChange_table_payment_method_name {
  margin-bottom: 7px;
  margin-left: 4px;
  color: #222;
  font-size: 17px;
  font-family: 'Pretendard-Bold';
}

.subscriptionChange_table_payment_method_explain {
  color: #737373;
  font-size: 14px;
}

.uploadCertificate_btn {
  color: #333;
  font-size: 11px;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  padding: 2px 10px 1px 10px;
}
.info-uploadCertificate_btn {
  padding: 5px 12px;
  background-color: #fff;
  border: var(--common-border);
  border-radius: 5px;
  font-size: 13px;
  transition: .3s;
}
/* .info-uploadCertificate_btn {
  background: #F2F2F2 !important;
} */
.info-uploadCertificate_btn:disabled {
  background: #EDECEC !important;
  color: #939393 !important;
  pointer-events: none !important;
}
.info-uploadCertificate_btn:disabled img {
  filter: brightness(3);
}
div.subscriptionChange_table_subscriptionInfo_right.currentSubscription>table>tbody>tr:nth-child(3)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.currentSubscription>table>tbody>tr:nth-child(4)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.currentSubscription>table>tbody>tr:nth-child(9)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.currentSubscription>table>tbody>tr:nth-child(10)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.currentSubscription>table>tbody>tr:nth-child(11)>td:nth-child(1) {
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

div.subscriptionChange_table_subscriptionInfo_right.newSubscription>table>tbody>tr:nth-child(2)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.newSubscription>table>tbody>tr:nth-child(3)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.newSubscription>table>tbody>tr:nth-child(8)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.newSubscription>table>tbody>tr:nth-child(9)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.newSubscription>table>tbody>tr:nth-child(10)>td:nth-child(1),
div.subscriptionChange_table_subscriptionInfo_right.newSubscription>table>tbody>tr:nth-child(11)>td:nth-child(1) {
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

/* 결제 정보 관리 > 결제 내역 및 영수증 */
.item_table .payment_history_receipt_table tbody td {
  padding: 7px 10px !important;
}
.item_table .payment_history_receipt_table tbody td.none_data {
  padding: 30px 34px !important;
}
.item_table .payment_history_receipt_table tbody td .white_btn {
  margin: 3px;
}

/* 알림관리 */
table.notification .outer_table_head th[name="Example"],
table.notification .outer_table_head th[name="Setting"] {
  text-align: center;
}
.notification table.notification td:has(.type_view_notification) {
  text-align: center;
}
.type_view_notification {
  display: inline-block;
  color: #777777;
  width: 25px;
  text-align: center;
  padding: 3px 0 2px;
  border-radius: 5px;
  transition: .3s;
}
.type_view_notification:hover {
  background-color: #EFEFEF;
}
/* 에이전트 배포 커스텀 셀렉트 마진 */
.group_margin_class {
  margin: -56px 0px 20px 0px;
  max-width: calc(100% - 170px);
  @media (max-width : 500px) {
    margin: 0 0px 20px 0px;
    max-width: 100%;
  }
}
.group_margin_class_2 {
  /* margin: -56px 0px 20px 0px; */
  margin-bottom: 20px !important;
}
.approval_date_margin {
  margin-top: -10px;
  margin-bottom: 20px;
  @media (max-width : 1150px) {
    margin-bottom: 60px;
  }
  @media (max-width : 570px) {
    margin-top: 0;
    margin-bottom: 20px;
    
    overflow: auto;
  }
}
.approval_date_margin > div {
  @media (max-width : 570px) {
min-width: 600px;
  }
}
div:has(>.approval_search_margin) {
  position: relative;
}
.approval_search_margin {
  float: right;
  margin-top: 1px;
  @media (max-width : 1150px) {
    float: none;
    position: absolute;
    top: 40px;
    right: 0;
  }
  @media (max-width : 570px) {
    position: static;
    margin-top: -25px;
  }
}

/* 서비스 관리 > 에이전ㅌ 무력화 방지 > OS 시간대 변경 방지설정 */
.content_exception_table table thead tr th:last-child {
  text-align: center;
}

/* 구독 관리 안내 텍스트 */
.subscription_information_expiration_warning_left {
  width: 49.5%;
  margin-right: 3px;
  margin-bottom: 6px;
  padding: 10px;
}

.subscription_information_expiration_warning_right {
  width: 49.5%;
  margin-left: 6px;
  margin-bottom: 6px;
  padding: 10px;
}

.subscription_information_experience_warning_left {
  width: 57%;
  margin-right: 3px;
  margin-bottom: 6px;
  padding: 10px;
}
.subscription_information_experience_warning_right {
  /* width: 42% !important; */
  height: fit-content;
  /* margin-left: 3px; */
  margin-bottom: 6px;
  padding: 10px 0;
}
/* 서비스 관리 > 보안 관리 > 관리자페이지 접속 보안 강화 > 설정 옵션 서치 반응형 */
.service_admin_search_margin {
  margin-top: -46px;
  @media (max-width : 1200px) {
    margin-top: 0;
    justify-content: flex-start !important;
  }
}
.lang-en .pw_error_count_set_area .setting_option-title {
  width: 210px;
}
.lang-en .pw_error_count_set_area .setting_option-title .item_title {
  margin-right: 0;
}

.current_servicePlan, .selected_servicePlan  {
  margin-right: 5px;
}
.subscriptionChange_monthlySubscriptionFee span:nth-child(2) {
  font-size: 15px !important;
  vertical-align: 4px;
}

hr.border-ddd {
  color: #ddd;
}
.service-lang-area .setting_option-title, 
.service-time-area .setting_option-title {
  min-width: 120px;
  font-size: 15px;
  font-family: 'Pretendard-Bold';
  text-align: left;
  color: #222222;
  font-weight: 600;
  margin-left: 9px;
}

 /* openApi */
 .api_key_btn_margin {
  margin-left: 44px;
  @media (max-width : 660px) { 
    margin-left: 0;
  }
 }


 .api-chart-wrap {
  overflow-x: auto;
  margin-bottom: 30px;
}
.api-chart {
  width: 100%;
  height: 200px;
  min-width: 1100px;
  margin-bottom: 10px;
 }
 #chartLoading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1000;
    background: #ffffff7a;
    width: 100%;
    height: 200px;
    text-align: center;
    img {
      margin-top: 70px;
    }
 }
.open_api_calender::before {
  width: 100%;
  font-size: 13px;
  margin-left: 9px;
  color: #999;
}
.lang-ko .open_api_calender::before {
  content: '선택 가능한 날짜는 최대 3개월입니다.';
}
.lang-en .open_api_calender::before {
  content: 'The available dates are up to 3 months.';
}
.lang-ja .open_api_calender::before {
  content: '選択可能な日付は最大3ヶ月です。';
}

/* 사용자 계정 보안 관리 */
.user_account_info_text {
  color: #555;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 22.5px */
  margin-bottom: 52px;
}
.user_method_wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.user_method_wrap .user_method {
  position: relative;
  border-radius: 8px;
  padding: 31px 23px 42px;
  border: 1px solid #DDD;
}
.user_method_wrap .user_method .search_area {
  top: 57px;
  
}
.user_method_wrap .user_method .text_small_title {
  font-size: 13px;
}
@media (max-width : 1400px) { 
  .user_method_wrap .user_method .search_area {
    top: 0;
  }
  .method-text-select-wrap {
    top: 100px !important;
  }
}
@media (max-width : 1000px) { 
  .user_method_wrap .title-sub_wrap {
    margin-bottom: 70px;
  }
  .method-text-select-wrap {
    top: 120px !important;
  }
}
.user_method_wrap .method-title-box {
  position: absolute;
  top: -20px;
  left: -1px;
  background: #222;
  padding: 5px 18px;
  display: inline-block;
  border-radius: 0px 100px 100px 0px;
  color: #FFF;
  font-family: Pretendard;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 25.5px */
}
.user_method_wrap .title-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
  margin-bottom: 24px;
}
.user_method_wrap .method_2 .title-wrap {
  margin-bottom: 9px;
}
.user_method_wrap .title-wrap .title-1 {
  color: #222;
  font-family: Pretendard;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 25.5px */
}
.user_method_wrap .title-wrap .title-sub {
  color: #5C656E;
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: -0.5px;
}
.user_method_wrap .text-1 {
  color: #555;
font-family: Pretendard;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 22.5px */
margin-bottom: 8px;
}
.user_method_wrap .text-2 {
  padding: 5px 17px 4px 17px;
  display: inline-block;
  border-radius: 5px;
  background: #FFF8F3;
  color: #FF8228;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
  margin-bottom: 21px;
}
.user_method_wrap .text-2::before {
  content: '';
  display: inline-block;
  vertical-align: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #FF8228;
  margin-right: 4px;
}
.user_method_wrap .dis_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* .user_method_wrap .dis_wrap .set-box {
  display: flex;
  align-items: center;
  background-color: red;
} */
/* .user_method_wrap .dis_wrap .title_width {
  width: 221px;

} */
.user_method_wrap .dis_wrap .set-title {
}
.user_method_wrap .dis_wrap .item_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.user_method_wrap .dis_wrap .item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.user_method_wrap .dis_wrap .code_disabled {
  display: flex;
  gap: 15px;
}
.user_method_wrap .dis_wrap .code_abled .code_area {
  display: flex;
  gap: 15px;
}
.input_disabled_style .eye_btn {
  width: 19px;
  height: 15px;
  background: url('/assets/images/svg/icn_eye_hide.svg?ver=25022400') no-repeat;
  position: absolute;
  right: 38px;
  top: 10px;
}
.input_disabled_style .eye_btn.show {
  background: url('/assets/images/svg/icn_eye_show.svg?ver=25022400') no-repeat;
}
.user_method_wrap .dis_wrap .code_abled .input-change-pw {
  width: 315px;
}
.user_method_wrap .dis_wrap .code_abled .change-box {
  position: relative;
}
.user_method_wrap .dis_wrap .code_abled .random_pw {
  position: absolute;
  right: 0;
  width: 25px;
  height: 24px;
  top: 4px;
  right: 10px;
}
.user_method_wrap .dis_wrap .code_abled .random_pw svg {
  color: #777777;
  width: 13px;
}

.user_method_wrap .dis_wrap .code_abled.hide,
.user_method_wrap .dis_wrap .code_disabled.hide {
  display: none;
}/* 
.user_method_wrap .dis_wrap .code_wrap {
  display: flex;
} */
.user_method_wrap .dis_wrap .item .item_title {
  width: 221px;
}
[name="user_security_link"] .input_disabled_style {
  width: 397px !important;
}
.user_method_wrap .dis_wrap .input_disabled_style {
  width: 315px;
}
.method-text-select-wrap {
  position: absolute;
  top: 70px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.method-text-select-wrap .text {
  color: #555;
font-family: Pretendard;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 22.5px */
}
.method-text-select-wrap .list_select > a {
  display: inline-block;
  width: 80px;
  padding: 2px 19px 2px 12px;;
}
.zero_separate_link {
  color: #737373;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Pretendard-SemiBold';
  transition: .3s;
  display: flex;
  gap: 6px;
  align-items: center;
}
.zero_separate_link:hover {
  color: #737373;
  background-color: rgba(230, 230, 230, 0.4);
}
.choice_box_list:has(.zero_separate_link) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 다운로드 현황 */
.download_status .title_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 57px;
  align-items: center;
}
.download_status .date-btn-3month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  border: 1px solid #DDD;
  background: #FFF;
  color: #222;
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 19.5px */
  width: 223px;
  height: 32px;
}
.download_status .date-btn-3month .arrow {
  width: 20px;
  transition: .3s;
  background: #FFF;
  height: 100%;
  text-align: center;
}
.download_status .date-btn-3month .arrow:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.download_status .date-btn-3month .arrow.prev {
  border-radius: 5px 0 0 5px;
}
.download_status .date-btn-3month .arrow.next {
  border-radius: 0 5px 5px 0;
}
.download_status .date-btn-3month .arrow:hover {
  background: #EFEFEF;
}
.download_status .date-btn-3month .arrow:hover {
  background: #E7E7E7;
}
.download_status_info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.download_status_info .info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  @media (max-width : 900px) {
    flex-wrap: wrap;
  }
}
.download_status_info .info-title {
  display: flex;
  align-items: center;
  width: 25%;
  @media (max-width : 900px) {
    width: 100%;
  }
}
.download_status_info .info-title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 9px;
}
.download_status_info .info-title .icon svg {
  height: 16px;
}
.download_status .progress-info {
  margin-top: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.download_status_info .info-text {
  width: 75%;
  word-break: break-all;
  @media (max-width : 900px) {
    width: 100%;
  }
}
.download_status .progress-info .text-1 {
  color: #222;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
.download_status .progress-info .text-2 {
  color: #AAA;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
/* 다운로드 현황 프로그래스바 */
.progress-wrap {
  line-height: 1;
  margin-bottom: 14px;
}

.progress-download_status {
  appearance: none;
  height: 35px;
}

.progress-download_status::-webkit-progress-bar {
  border: 1px solid #DDD;
  background: #FAFAFA;
  border-radius: 5px;
  height: 35px;
  overflow: hidden;
}

.progress-download_status::-webkit-progress-value {
  /* border-radius: 3px; */
  background: #FFBF62;
  height: 35px;
  transition: width 1s ease; /* 너비에 대한 애니메이션 효과 */
}


/* 저장소 현황 */

.title-notice {
  display: flex;
  align-items: center;
  justify-content: center;


  width: 467.024px;
  height: 29px;
  border-radius: 5px;
  background: rgba(239, 83, 80, 0.10);
  color: #EF5350;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.progress-info-left {
  display:flex; 
  position: relative;
  align-items: center;
  gap: 5px
}

.progress-info-left .tooltip_type04 {
  position: absolute;
  top: 10%;
  left: 95%; 
  width: max-content;
}

/* 누적 프로그래스바 */
.stacked-progress-wrap {
  margin-top: 10px;
}

.stacked-progress-bar {
  display: flex;
  width: 100%;
  height: 35px;
  border-radius: 8px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #DDD;
  background: #FAFAFA;
  position: relative;
}


.stacked-progress-bar .bar  {
  height: 100%;
  position: relative;
  transition: width 0.8s ease; /* width 변화 부드럽게 */
}

.stacked-progress-bar .bar .tooltip_type04{
  position: absolute;
}


.bar.dlrm {
  background-color: #FF7777;
}

.bar.dlsw {
  background-color: #77A6FE;
}

.bar.output {
  background-color: #FFBF62;
}

.progress-legend {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.progress-legend .legend-item {
  display: flex;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
}

.legend-box {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  margin-right: 4px;
}

.legend-box.dlrm { background-color: #FF7777; }
.legend-box.dlsw { background-color: #77A6FE; }
.legend-box.output { background-color: #FFBF62; }

.con_table:has(.storage_setting_row) {
  margin-top: 20px;
}