/* 커넥트 요청 팝업 */
.sendConnect_popup {
  display: none;
}

.sendConnect_popup .kg_layer_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 32px 24px;
  position: relative;
}

.sendConnect_popup .kg_layer_header::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05) inset;
  background: var(--bg-blue)
    url("../images/bizhome/kglobal500/common/ic_send_37px.svg") no-repeat center
    center / 32px;
}

.sendConnect_popup .kg_layer_header .kg_layer_title {
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
  letter-spacing: -0.6px;
  color: var(--black);
}

.sendConnect_popup .kg_layer_header .sendConnect_desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  color: var(--desc);
  margin-top: 8px;
}

.sendConnect_popup .kg_layer_header .kg_layer_close {
  position: absolute;
  right: 26px;
  top: 30px;
}

.sendConnect_popup .kg_layer_content {
  height: calc(100vh - 600px);
  padding: 56px 32px 28px;
}

.sendConnect_popup .sendConnect_row {
  margin: 28px 0;
}

.sendConnect_popup .sendConnect_row:first-of-type {
  margin-top: 0;
}

.sendConnect_popup .sendConnect_row:last-of-type {
  margin-bottom: 0;
}

.sendConnect_popup .sendConnect_row .sendConnect_row_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
  color: #475569;
  margin-bottom: 16px;
}

.sendConnect_popup .sendConnect_row .sendConnect_row_title--required::after {
  content: "*";
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
  color: var(--alert);
}

.sendConnect_popup .sendConnect_textarea {
  height: 102px;
  padding: 17px 21px;
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}

.sendConnect_popup .sendConnect_textarea::placeholder {
  font-size: 15px;
  font-weight: 700;
  color: #94A3B8;
}

.sendConnect_row--isShowCompany .kg_radio_list {
  gap: 37px;
}

.sendConnect_popup .sendConnect_info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  border-radius: 16px;
  background-color: rgba(239, 246, 255, 0.7);
  border: 1px solid var(--bg-blue-hover);
  margin-top: 28px;
}

.sendConnect_popup .sendConnect_info::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/bizhome/kglobal500/common/ic_info.png") no-repeat
    center center / 16px;
}

.sendConnect_popup .sendConnect_info .sendConnect_info_desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: #4b5563;
}

.sendConnect_popup .sendConnect_info .sendConnect_info_desc strong {
  font-weight: 700;
  color: #1f2937;
}

.sendConnect_popup .kg_file_dropzone {
  height: 130px;
  padding: 22px 120px;
}

.sendConnect_popup .kg_file_dropzone::before {
  width: 40px;
  height: 40px;
  background-size: 20px 14px;
}

.sendConnect_popup .kg_file_dropzone_desc--main {
  margin-top: 10px;
  font-size: 13px;
  color: var(--desc2);
  line-height: 19.5px;
  margin-top: 8px;
}

.sendConnect_popup .kg_file_dropzone_desc--sub {
  margin-top: 3px;
  font-size: 10px;
  line-height: 15px;
  color: #D1D5DB;
}

.sendConnect_popup .kg_file_item {
  padding: 10px 14px 10px 52px;
  gap: 20px;
  border-radius: 8px;
  border: 1px solid #F3F4F6;
  background: #FFF;
}

.sendConnect_popup .kg_file_item::before {
  left: 14px;
  width: 30px;
  height: 30px;
  background-size: auto 18px;
}

.sendConnect_popup .kg_file_name {
  width: 282px;
  line-height: 30px;
  font-size: 12px;
}

.sendConnect_popup .kg_file_size {
  display: none;
}

.sendConnect_popup .sendConnect_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.sendConnect_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 54px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: var(--white);
  cursor: pointer;
}

.sendConnect_popup .sendConnect_buttons .sendConnect_button--cancel {
  width: 154px;
  background-color: #f1f5f9;
  color: #64748b;
}

.sendConnect_popup .sendConnect_buttons .sendConnect_button--request {
  width: 282px;
  background-color: var(--pcolor);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.sendConnect_popup .sendConnect_buttons .sendConnect_button--request::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/bizhome/kglobal500/common/ic_send_white.svg")
    no-repeat center center / 14px 14px;
}

/* 커넥트 거절 팝업 */
.rejectConnect_popup {
  display: none;
}

.rejectConnect_popup .kg_layer_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 32px 22px;
  position: relative;
  border-bottom: none;
}

.rejectConnect_popup .kg_layer_header::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  background: #FFF1F2 url('../../kglobal500/images/bizhome/kglobal500/mypage/main/ic_stop.svg') no-repeat center / 26px;
}

.rejectConnect_popup .kg_layer_header .kg_layer_title {
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.025em;
  color: #111827;
  text-align: center;
}

.rejectConnect_popup .kg_layer_header .sendConnect_desc {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 21.13px;
  color: #6B7280;
  text-align: center;
}

.rejectConnect_popup .kg_layer_header .kg_layer_close {
  display: none;
}

.rejectConnect_popup .kg_layer_content {
  padding: 0 32px;
}

.rejectConnect_popup .rejectConnect_reasonList {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
}

.rejectConnect_popup .kg_radio.card_type input[type="radio"]:checked + label {
  border-color: #F43F5E;
}

.rejectConnect_popup .rejectConnect_textarea {
  width: 100%;
  height: 102px;
  margin-top: 12px;
  padding: 17px 21px;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background-color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  color: #111827;
  resize: none;
}

.rejectConnect_popup .rejectConnect_textarea::placeholder {
  font-size: 15px;
  font-weight: 700;
  color: #94A3B8;
}

.rejectConnect_popup .kg_layer_footer {
  padding: 31px 32px 32px;
}

.rejectConnect_popup .sendConnect_buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.rejectConnect_popup .sendConnect_button {
  flex: 1;
  height: 54px;
  padding: 0 55px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 25.5px;
  letter-spacing: -0.0327em;
}

.rejectConnect_popup .sendConnect_button--cancel {
  background: #F9FAFB;
  color: var(--desc2);
}

.rejectConnect_popup .sendConnect_button--reject {
  flex: 3;
  background-color: #DC2626;
  color: var(--white);
  box-shadow: 0 20px 25px -5px rgba(254, 202, 202, 1), 0 8px 10px -6px rgba(254, 202, 202, 1);
  transition: background-color 0.2s ease;
}

.rejectConnect_popup .sendConnect_button--reject:hover {
  background-color: #B91C1C;
}

/* 커넥트 요청 완료 팝업 */
.sendConnectComplete_popup .kg_layer_content {
  height: auto;
  padding: 40px 32px;
}

.sendConnectComplete_popup .sendConnectComplete_contents {
  text-align: center;
}

.sendConnectComplete_popup
  .sendConnectComplete_contents
  .sendConnectComplete_title {
  font-size: 20px;
  font-weight: 900;
  line-height: 30px;
}

.sendConnectComplete_popup
  .sendConnectComplete_contents
  .sendConnectComplete_title::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05) inset;
  background: var(--bg-blue)
    url("../images/bizhome/kglobal500/common/ic_send_37px.svg") no-repeat center
    center / 32px;
}

.sendConnectComplete_popup
  .sendConnectComplete_contents
  .sendConnectComplete_desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  color: var(--desc);
  margin-top: 8px;
}

.sendConnectComplete_popup
  .sendConnectComplete_contents
  .sendConnectComplete_desc
  strong {
  color: var(--black);
}

.sendConnectComplete_popup .sendConnectComplete_contents .sendConnect_button {
  width: 100%;
  background-color: var(--pcolor);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
  margin-top: 32px;
}

/* 명함 전달 팝업 */
.sendCard_popup .kg_layer_wrap {
  display: flex;
  flex-direction: column;
  max-height: 804px;
}

.sendCard_popup .kg_layer_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 32px 16px;
  position: relative;
  flex-shrink: 0;
  border-bottom: none;
}

.sendCard_popup .kg_layer_header::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: var(--bg-blue)
    url("../images/bizhome/kglobal500/common/ic_card.svg") no-repeat center
    center / 32px 24px;
}

.sendCard_popup .kg_layer_header .kg_layer_title {
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: var(--black);
}

.sendCard_popup .kg_layer_header .sendCard_desc {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: var(--desc2);
  margin-top: 4px;
}

.sendCard_popup .kg_layer_header .kg_layer_close {
  position: absolute;
  right: 26px;
  top: 30px;
}

.sendCard_popup .kg_layer_content {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
  background: rgba(249, 250, 251, 0.50);
}

.sendCard_popup .sendCard_label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 13px;
}

.sendCard_popup .sendCard_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 20px;
}

.sendCard_popup .sendCard_field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sendCard_popup .sendCard_field_label {
  font-size: 10px;
  font-weight: 900;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--desc2);
}

.sendCard_popup .sendCard_field_input {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 19.5px;
  color: #1f2937;
  transition: border-color 0.2s;
}

.sendCard_popup .sendCard_field_input:focus {
  outline: none;
  border-color: #3b82f6;
}

/* 명함 미리보기 카드 */
.sendCard_preview {
  position: relative;
  padding: 29px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--black), #000000);
  border: 1px solid #1f2937;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  color: var(--white);
  overflow: hidden;
}

.sendCard_preview_blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.sendCard_preview_header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.sendCard_preview_avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #2563eb;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.5);
  flex-shrink: 0;
}

.sendCard_preview_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sendCard_preview_name {
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: var(--white);
}

.sendCard_preview_role {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #60a5fa;
}

.sendCard_preview_contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.sendCard_preview_contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.sendCard_preview_contact_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.sendCard_preview_contact_text {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #e5e7eb;
}

/* 명함 전달 팝업 푸터 */
.sendCard_popup .kg_layer_footer {
  padding: 24px 32px;
  border-top: 1px solid #f9fafb;
  flex-shrink: 0;
}

.sendCard_popup .sendCard_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.sendCard_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 48px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

.sendCard_popup .sendCard_buttons .sendCard_button--cancel {
  flex: 1;
  background-color: #f9fafb;
  color: var(--desc2);
}

.sendCard_popup .sendCard_buttons .sendCard_button--cancel:hover {
  background-color: #f3f4f6;
}

.sendCard_popup .sendCard_buttons .sendCard_button--submit {
  flex: 2;
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.sendCard_popup .sendCard_buttons .sendCard_button--submit:hover {
  opacity: 0.9;
}

/* 이용약관 팝업 */
#footer_agree .kg_layer_header,
#footer_privacy .kg_layer_header {
  padding: 30px 32px;
}

#footer_agree .kg_layer_content,
#footer_privacy .kg_layer_content {
  padding: 32px;
}

