@charset "utf-8";

/* Chrome, Safari용 스크롤 바 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #efefef;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track-piece {
  background: #fff;
}

/* input file : inline */
.inline_filebox {
  position: relative;
  display: inline-flex;
}

.inline_filebox .upload_name {
  display: inline-block;
  width: 400px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 7px 12px;
  font-size: inherit;
  font-family: inherit;
  text-align: left;
  color: var(--black);
  line-height: normal;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.inline_filebox .upload_name::placeholder {
  color: #999;
}

.inline_filebox .upload_name::-moz-placeholder {
  color: #999;
}

.inline_filebox label {
  display: inline-block !important;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: inherit;
  color: var(--black);
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid var(--black);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 0 !important;
  margin-left: 8px;
}

.inline_filebox input[type="file"] {
  display: none;
}

.inline_filebox .btn_del_file {
  display: none;
  position: absolute;
  right: 97px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/bizhome/kglobal500/cycle_16px.png) no-repeat 50% 50%;
}

/* filebox wrap */
.kg_filebox_notice_wrap {
  display: flex;
  align-items: flex-end;
  position: relative;
  gap: 8px;
}

/* select */
.module-select-area select {
  display: none;
}

.module-select-area .fakeselect_wrap {
  position: relative;
  max-width: 240px;
}

.module-select-area .fakeselect_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

.module-select-area .fakeselect_btn::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  transform: rotate(0deg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/bizhome/kglobal500/select_arrow_down_12px.png);
}

.module-select-area .fakeselect_btn:focus {
  border-color: var(--black);
}

.module-select-area .fakeselect_btn.focus::after {
  transform: rotate(180deg);
}

.module-select-area .fakeselect_input {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  box-sizing: border-box;
  text-align: left;
  position: absolute;
  top: 31px;
  left: 0;
  z-index: 9;
}

.module-select-area .fakeselect_list_wrap {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 10;
  border-radius: 3px;
  box-shadow:
    0 0 1px 0 rgba(0, 0, 0, 0.3),
    0 3px 12px 0 rgba(0, 0, 0, 0.08);
}

.module-select-area .fakeselect_btn span {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}

.module-select-area .fakeselect_list {
  padding: 7px 0;
}

.module-select-area .fakeselect_list li {
  padding: 6px 0 6px 10px;
  text-align: left;
  cursor: pointer;
}

.module-select-area .fakeselect_list li:hover {
  background-color: #f8f8f8;
}

.module-select-area .fakeselect_list li span {
  display: inline-block;
  overflow: hidden;
  width: 90%;
  margin-left: 5px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--black);
}

.module-select-area:not(.sort_type) .fakeselect_list li.active {
  background-color: var(--p10);
}

.module-select-area:not(.sort_type) .fakeselect_list li.active span {
  color: var(--pcolor);
}

.module-select-area.disabled .fakeselect_btn {
  background-color: #f8f8f8;
  color: var(--grey999);
}

.module-select-area.disabled .fakeselect_btn::after {
  background-image: url(../images/bizhome/kglobal500/select_arrow_disabled.png);
}

.module-select-area.disabled .fakeselect_list_wrap {
  display: none;
}

.module-select-area.disabled .fakeselect_btn:focus {
  border-color: #ddd;
}

/* select > 카테고리 type */
.module-select-area.cate_type select {
  display: none;
}

.module-select-area.cate_type .fakeselect_wrap {
  max-width: 140px;
}

.module-select-area.cate_type .fakeselect_btn {
  width: 100%;
  height: 36px;
  font-weight: 700;
  color: var(--pcolor);
  border: none;
  background-color: #f2f4f7;
  padding: 0 12px;
}

.module-select-area.cate_type .fakeselect_btn::after {
  width: 8px;
  height: 8px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4 2 3.5 4h-7L4 2z' fill='%230D0D0D'/%3E%3C/svg%3E%0A");
}

.module-select-area.cate_type .fakeselect_btn:focus {
  border-color: rgba(5, 76, 255, 0.1);
}

.module-select-area.cate_type .fakeselect_btn.focus::after {
  transform: rotate(0);
}

/* select > sort type */
.module-select-area.sort_type select {
  display: none;
}

.module-select-area.sort_type .fakeselect_wrap {
  width: 108px;
}

.module-select-area.sort_type .fakeselect_btn {
  height: 32px;
  padding: 0 12px;
  border: none;
}

.module-select-area.sort_type .fakeselect_btn::after {
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.4 4.8 6 8.4l3.6-3.6' stroke='%230D0D0D' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.module-select-area.sort_type .fakeselect_btn:focus {
  border-color: rgba(5, 76, 255, 0.1);
}

.module-select-area.sort_type .fakeselect_list_wrap {
  top: 34px;
}

/* select > round type */
.module-select-area.round_type select {
  display: none;
}

.module-select-area.round_type .fakeselect_btn {
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 42px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.module-select-area.round_type .fakeselect_btn::before {
  content: "";
  display: inline-flex;
  width: 18px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1884)'%3E%3Cpath d='M9.75315 6H12.7531C13.0465 6 13.2865 5.90667 13.4731 5.72C13.6598 5.53333 13.7531 5.29333 13.7531 5C13.7531 4.70667 13.6598 4.46667 13.4731 4.28C13.2865 4.09333 13.0465 4 12.7531 4H9.78315C9.48981 4 9.24981 4.09333 9.06315 4.28C8.87648 4.46667 8.78315 4.70667 8.78315 5C8.78315 5.29333 8.87648 5.53333 9.06315 5.72C9.22981 5.90667 9.45981 6 9.75315 6ZM9.75315 10H14.7531C15.0465 10 15.2865 9.90667 15.4731 9.72C15.6598 9.53333 15.7531 9.29333 15.7531 9C15.7531 8.70667 15.6598 8.46667 15.4731 8.28C15.2865 8.09333 15.0465 8 14.7531 8H9.78315C9.48981 8 9.24981 8.09333 9.06315 8.28C8.87648 8.46667 8.78315 8.70667 8.78315 9C8.78315 9.29333 8.87648 9.53333 9.06315 9.72C9.22981 9.90667 9.45981 10 9.75315 10ZM9.75315 2H10.7531C11.0465 2 11.2765 1.90667 11.4431 1.72C11.6298 1.53333 11.7231 1.29333 11.7231 1C11.7231 0.706667 11.6298 0.466666 11.4431 0.28C11.2565 0.0933331 11.0265 0 10.7531 0H9.75315C9.45981 0 9.21981 0.0933331 9.03315 0.28C8.84648 0.466666 8.75315 0.706667 8.75315 1C8.75315 1.29333 8.84648 1.53333 9.03315 1.72C9.21981 1.90667 9.45981 2 9.75315 2ZM16.7531 12H9.78315C9.48981 12 9.24981 12.0933 9.06315 12.28C8.87648 12.4667 8.78315 12.7067 8.78315 13C8.78315 13.2933 8.87648 13.5333 9.06315 13.72C9.24981 13.9067 9.48981 14 9.78315 14H16.7531C17.0465 14 17.2865 13.9067 17.4731 13.72C17.6598 13.5333 17.7531 13.2933 17.7531 13C17.7531 12.7067 17.6598 12.4667 17.4731 12.28C17.2865 12.0933 17.0465 12 16.7531 12ZM5.75315 9.34L4.75315 10.44V1C4.75315 0.706667 4.65981 0.466666 4.47315 0.28C4.28648 0.0933331 4.04648 0 3.75315 0C3.45981 0 3.21981 0.0933331 3.03315 0.28C2.84648 0.466666 2.75315 0.706667 2.75315 1V10.44L1.75315 9.34C1.54648 9.11333 1.29648 9 1.00315 9C0.756481 9 0.526481 9.09333 0.313147 9.28C0.126481 9.46667 0.0231474 9.69667 0.00314737 9.97C-0.0168526 10.2367 0.0664807 10.4767 0.253147 10.69L3.00315 13.69C3.18981 13.8967 3.42981 14 3.72315 14C4.01648 14 4.26648 13.8967 4.47315 13.69L7.19315 10.69C7.37981 10.4767 7.46315 10.2367 7.44315 9.97C7.44315 9.69667 7.33981 9.46667 7.13315 9.28C6.93981 9.09333 6.70981 9 6.44315 9C6.18981 9.02 5.95981 9.13333 5.75315 9.34Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1884'%3E%3Crect width='17.7531' height='14' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.module-select-area.round_type .fakeselect_btn::after {
  width: 10px;
  height: 10px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1888)'%3E%3Cpath d='M4.38 4.99512C4.20667 4.99512 4.05667 4.93845 3.93 4.82512L0.18 1.07512C0.06 0.941784 0 0.791784 0 0.625117C0 0.458451 0.06 0.308451 0.18 0.175117C0.306667 0.0551175 0.456667 -0.00488281 0.63 -0.00488281C0.796667 -0.00488281 0.943333 0.0551175 1.07 0.175117L4.38 3.49512L7.68 0.175117C7.80667 0.0551175 7.95667 -0.00488281 8.13 -0.00488281C8.29667 -0.00488281 8.44333 0.0551175 8.57 0.175117C8.69 0.308451 8.75 0.458451 8.75 0.625117C8.75 0.791784 8.69 0.941784 8.57 1.07512L4.82 4.82512C4.69333 4.93845 4.54667 4.99512 4.38 4.99512Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1888'%3E%3Crect width='8.75' height='5' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.module-select-area.round_type .fakeselect_btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-select-area.round_type .fakeselect_btn:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1884)'%3E%3Cpath d='M9.75315 6H12.7531C13.0465 6 13.2865 5.90667 13.4731 5.72C13.6598 5.53333 13.7531 5.29333 13.7531 5C13.7531 4.70667 13.6598 4.46667 13.4731 4.28C13.2865 4.09333 13.0465 4 12.7531 4H9.78315C9.48981 4 9.24981 4.09333 9.06315 4.28C8.87648 4.46667 8.78315 4.70667 8.78315 5C8.78315 5.29333 8.87648 5.53333 9.06315 5.72C9.22981 5.90667 9.45981 6 9.75315 6ZM9.75315 10H14.7531C15.0465 10 15.2865 9.90667 15.4731 9.72C15.6598 9.53333 15.7531 9.29333 15.7531 9C15.7531 8.70667 15.6598 8.46667 15.4731 8.28C15.2865 8.09333 15.0465 8 14.7531 8H9.78315C9.48981 8 9.24981 8.09333 9.06315 8.28C8.87648 8.46667 8.78315 8.70667 8.78315 9C8.78315 9.29333 8.87648 9.53333 9.06315 9.72C9.22981 9.90667 9.45981 10 9.75315 10ZM9.75315 2H10.7531C11.0465 2 11.2765 1.90667 11.4431 1.72C11.6298 1.53333 11.7231 1.29333 11.7231 1C11.7231 0.706667 11.6298 0.466666 11.4431 0.28C11.2565 0.0933331 11.0265 0 10.7531 0H9.75315C9.45981 0 9.21981 0.0933331 9.03315 0.28C8.84648 0.466666 8.75315 0.706667 8.75315 1C8.75315 1.29333 8.84648 1.53333 9.03315 1.72C9.21981 1.90667 9.45981 2 9.75315 2ZM16.7531 12H9.78315C9.48981 12 9.24981 12.0933 9.06315 12.28C8.87648 12.4667 8.78315 12.7067 8.78315 13C8.78315 13.2933 8.87648 13.5333 9.06315 13.72C9.24981 13.9067 9.48981 14 9.78315 14H16.7531C17.0465 14 17.2865 13.9067 17.4731 13.72C17.6598 13.5333 17.7531 13.2933 17.7531 13C17.7531 12.7067 17.6598 12.4667 17.4731 12.28C17.2865 12.0933 17.0465 12 16.7531 12ZM5.75315 9.34L4.75315 10.44V1C4.75315 0.706667 4.65981 0.466666 4.47315 0.28C4.28648 0.0933331 4.04648 0 3.75315 0C3.45981 0 3.21981 0.0933331 3.03315 0.28C2.84648 0.466666 2.75315 0.706667 2.75315 1V10.44L1.75315 9.34C1.54648 9.11333 1.29648 9 1.00315 9C0.756481 9 0.526481 9.09333 0.313147 9.28C0.126481 9.46667 0.0231474 9.69667 0.00314737 9.97C-0.0168526 10.2367 0.0664807 10.4767 0.253147 10.69L3.00315 13.69C3.18981 13.8967 3.42981 14 3.72315 14C4.01648 14 4.26648 13.8967 4.47315 13.69L7.19315 10.69C7.37981 10.4767 7.46315 10.2367 7.44315 9.97C7.44315 9.69667 7.33981 9.46667 7.13315 9.28C6.93981 9.09333 6.70981 9 6.44315 9C6.18981 9.02 5.95981 9.13333 5.75315 9.34Z' fill='%232563EB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1884'%3E%3Crect width='17.7531' height='14' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.module-select-area.round_type .fakeselect_btn:focus {
  border-color: rgba(5, 76, 255, 0.1);
}

.module-select-area.round_type .fakeselect_btn span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #374151;
}

.module-select-area.round_type .fakeselect_list_wrap {
  top: 43px;
}

/* kg dropdown */
.kg_dropdown .fakeselect_btn {
  height: 47px;
  padding: 13px 19px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: #374151;
}

.kg_dropdown .fakeselect_btn:focus {
  border: 1px solid var(--pcolor);
  outline: 1px solid #EBF2FE;
}

.kg_dropdown .fakeselect_wrap {
  max-width: none;
}

.kg_dropdown .fakeselect_list_wrap {
  top: 55px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(0, 0, 0, 0.00), 0 0 0 0 rgba(0, 0, 0, 0.00);
}

.kg_dropdown .fakeselect_list_wrap .fakeselect_list li {
  padding: 10px 16px; 
}

.kg_dropdown .fakeselect_list_wrap .fakeselect_list li:hover {
  background-color: #F8FAFC;
}

.kg_dropdown .fakeselect_list_wrap .fakeselect_list li span {
  margin-left: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: #374151;
}

.kg_dropdown .fakeselect_list_wrap .fakeselect_list li:hover span {
  color: var(--pcolor);
}

/* input */
.chkS {
  display: inline-block;
  margin: 0 10px 0 0;
  cursor: pointer;
  vertical-align: middle;
}

.chkS input {
  position: absolute;
  visibility: hidden;
  position: static\9;
  visibility: visible\9;
}

.chkS input + span {
  position: relative;
  display: flex;
  align-items: center;
  text-transform: none;
}

.chkS input + span:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  margin-right: 8px;
  border: 1px solid #ccc;
  vertical-align: middle;
  box-sizing: border-box;
  background: #fff;
}

.chkS input + span.hide-txt {
  font: 0/0 a;
}

.chkS input:checked + span:before {
  border: 1px solid #054cff;
  background-color: #054cff;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 5.5 3 3L10.5 3' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.chkO {
  display: inline-block;
  margin: 0 10px 0 0;
  cursor: pointer;
  vertical-align: middle;
}

.chkO input {
  position: absolute;
  visibility: hidden;
  position: static\9;
  visibility: visible\9;
}

.chkO input + span {
  position: relative;
  display: inline-block;
}

.chkO input + span:before {
  content: "";
  display: inline-block;
  display: none\9;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  background: url("../images/sprite.png") no-repeat -470px -60px;
  background: none\9;
  vertical-align: -5px;
}

.chkO input:checked + span:before {
  background: url("../images/sprite.png") no-repeat -500px -60px;
  background: none\9;
}

.chkB {
  display: inline-block;
  margin: 0 10px 0 0;
  cursor: pointer;
  vertical-align: middle;
}

.chkB input {
  position: absolute;
  visibility: hidden;
  position: static\9;
  visibility: visible\9;
}

.chkB input + span {
  position: relative;
  display: inline-block;
  line-height: 24px;
}

.chkB input + span:before {
  content: "";
  display: inline-block;
  display: none\9;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: url("../images/sprite.png") no-repeat -530px -60px;
  background: none\9;
  vertical-align: top;
}

.chkB input + span.hide-txt {
  font: 0/0 a;
}

.chkB input:checked + span:before {
  background: url("../images/sprite.png") no-repeat -560px -60px;
  background: none\9;
}

.radioS {
  display: inline-block;
  margin: 0 8px 0 0;
  cursor: pointer;
  vertical-align: middle;
}

.radioS.vspace {
  width: 100px;
}

.radioS input {
  position: absolute;
  visibility: hidden;
  position: static\9;
  visibility: visible\9;
}

.radioS input + span {
  position: relative;
  display: inline-block;
}

.radioS input + span:before {
  content: "";
  display: inline-block;
  display: none\9;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  background: url("../images/sprite.png") no-repeat -590px -60px;
  background: none\9;
  vertical-align: -7px;
}

.radioS input:checked + span:before {
  background: url("../images/sprite.png") no-repeat -620px -60px;
  background: none\9;
}

.radioS input + label {
  position: relative;
  display: inline-block;
}

.radioS input + label:before {
  content: "";
  display: inline-block;
  display: none\9;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  background: url("../images/sprite.png") no-repeat -590px -60px;
  background: none\9;
  vertical-align: -7px;
}

.radioS input:checked + label:before {
  background: url("../images/sprite.png") no-repeat -620px -60px;
  background: none\9;
}

.chksp input {
  position: absolute;
  visibility: hidden;
  position: static\9;
  visibility: visible\9;
}

.of_radio_box {
  display: inline-block;
  margin: 3px 10px 3px 3px;
}

.of_radio_box > input {
  display: none;
}

.of_radio_box > label {
  font-size: 14px;
  cursor: pointer;
}

.of_radio_box > label span {
  margin: 0 0 0 6px;
  vertical-align: middle;
}

.of_radio_box > label:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 50%;
  vertical-align: middle;
  box-sizing: border-box;
}

.of_radio_box input:checked + label:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #4bbeff;
  box-shadow: 0 0 0 4px #fff inset;
  border-radius: 50%;
  background: #4bbeff;
  box-sizing: border-box;
}

.of_radio_box input:disabled + label:before {
  width: 22px;
  height: 22px;
  background: #eaeaea;
  border-radius: 50%;
  border: 2px solid #ddd;
  box-shadow: 0 0 0 4px #fff inset;
  box-sizing: border-box;
}

.of_check_box {
  display: inline-block;
  margin: 3px 10px 3px 3px;
}

.of_check_box > input[type="checkbox"] {
  display: none;
}

.of_check_box > label {
  position: relative;
  font-size: 14px;
  cursor: pointer;
}

.of_check_box > label span {
  margin: 0 0 0 6px;
}

.of_check_box > label:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  vertical-align: middle;
  box-sizing: border-box;
}

.of_check_box input:checked + label:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #4bbeff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.of_check_box input:disabled + label:before {
  background: #f3f3f3;
}

/* 비즈홈 공통 레이어팝업 */
.biz-layer-pop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.biz-layer-pop.open {
  display: block;
}

.biz-layer-pop .bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.46;
  filter: alpha(opacity=46);
}

.biz-layer-pop .biz-layer-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 800px;
  height: auto;
  border: 1px solid #ccc;
  background: #fff;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.biz-layer-header {
  padding: 18px 24px;
  background: #e4e4e4;
  border-bottom: 1px solid #ccc;
}

.biz-layer-header h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.biz-layer-pop .btn-close {
  position: absolute;
  top: 21px;
  right: 24px;
  width: 24px;
  height: 24px;
  font: 0/0 a !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 2 20 20M22 2 2 22' stroke='%230D0D0D' stroke-width='1.4' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.biz-layer-content {
  padding: 24px 40px;
  font-size: 14px;
  height: calc(100% - 65px);
  overflow: auto;
}

/* 비즈홈 공통 스탠다드 페이지 레이어팝업 */
.biz-layer-pop .biz-layer-wrap.standardPop {
  border-radius: 10px;
}

.standardPop .biz-layer-content {
  overflow: unset;
}

.standardPop .detail-contents {
  position: unset;
  width: auto;
  height: calc(100% - 120px);
  margin: 20px 0;
  overflow: auto;
}

.standardPop .detail-contents .tbl-type3 {
  border-top: 0;
  margin-top: 0;
  word-wrap: break-word;
  word-break: keep-all;
}

.standardPop .detail-contents .tbl-type3 th {
  border-bottom: 2px solid #555;
}

.standardPop .detail-contents .tbl-type3 td {
  padding: 25px 0 25px 10px;
}

.standardPop .detail-contents {
  width: auto;
  height: auto;
  background: none;
}

.standardPop.svbbs .detail-contents {
  height: calc(100% - 120px);
}

.target_pop .target-contents .target-bg-body {
  width: auto;
  height: auto;
  padding: 0 20px;
  background: none;
}

.target_pop .target-contents .target-bg-bottom {
  width: auto;
  height: auto;
  background: none;
}

/* kglobal용 팝업 - 내부에 헤더 있음 */
.biz-layer-pop.type2 .biz-layer-content {
  height: 100%;
  padding: 0;
}

.biz-layer-pop.type2 .biz-layer-content::-webkit-scrollbar {
  width: 4px;
}

.biz-layer-pop.type2 .biz-layer-content::-webkit-scrollbar-thumb {
  background-color: #959595;
  border-radius: 50px;
}

.biz-layer-pop.type2 .biz-layer-content::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 50px;
}

.biz-layer-pop.type2 .biz-layer-content-inner {
  padding: 0 24px 24px;
  height: calc(100% - 94px);
  overflow-y: auto;
}

.biz-layer-pop.type2 .biz-layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: none;
  padding: 24px;
  position: sticky;
  top: 0;
}

.biz-layer-pop.type2 .biz-layer-btn-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.biz-layer-pop.type2 .btn-close {
  position: static;
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 2.5 20 20M22 2.5l-20 20' stroke='%230D0D0D' stroke-width='1.4' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

/* kdx 레이어팝업 */
.kg_layer_pop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.kg_layer_pop.open {
  display: block;
}

.kg_layer_pop .bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  filter: blur(2px);
}

.kg_layer_pop .kg_layer_wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: auto;
  background: var(--white);
  border-radius: 20px;
}

.kg_layer_pop .kg_layer_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 28px 30px 28px 60px;
  border-bottom: 1px solid #f3f4f6;
}

.kg_layer_pop .kg_layer_header .kg_layer_title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.kg_layer_pop .kg_layer_close {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  font-size: 0;
  background: url("../images/bizhome/kglobal500/common/ic_close_popup.png")
    no-repeat center center / 12.5px;
}

.kg_layer_pop .kg_layer_content {
  padding: 26px 60px;
  font-size: 16px;
  /* height: calc(100vh - 600px); */
  height: calc(100% - 85px);
  overflow-y: auto;
}

.kg_layer_pop .kg_layer_footer {
  padding: 25px 32px 40px;
  border-top: 1px solid var(--bg-grey);
}

/*** 버튼 ***/
/* 면pcolor */
.btn_blue_large {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  background-color: #054cff;
  font-size: 16px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_blue_large:hover,
.btn_blue_large:active {
  background-color: #6994ff;
}

.btn_blue_large:disabled {
  background-color: #ddd;
}

.btn_blue_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  background-color: #054cff;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_blue_mid:hover,
.btn_blue_mid:active {
  background-color: #6994ff;
}

.btn_blue_mid:disabled {
  background-color: #ddd;
}

.btn_blue_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 10px;
  background-color: #054cff;
  font-size: 12px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_blue_small:hover,
.btn_blue_small:active {
  background-color: #6994ff;
}

.btn_blue_small:disabled {
  background-color: #ddd;
}

/* 선pcolor */
.btn_borderblue_large {
  display: inline-flex;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  border: 1px solid #054cff;
  background-color: #fff;
  font-size: 16px;
  color: #054cff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_borderblue_large:hover,
.btn_borderblue_large:active {
  background-color: #e6eeff;
}

.btn_borderblue_large:disabled {
  background-color: #ddd;
}

.btn_borderblue_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #054cff;
  background-color: #fff;
  font-size: 14px;
  color: #054cff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_borderblue_mid:hover,
.btn_borderblue_mid:active {
  background-color: #e6eeff;
}

.btn_borderblue_mid:disabled {
  background-color: #ddd;
}

.btn_borderblue_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #054cff;
  background-color: #fff;
  font-size: 14px;
  color: #054cff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_borderblue_small:hover,
.btn_borderblue_small:active {
  background-color: #e6eeff;
}

.btn_borderblue_small:disabled {
  background-color: #ddd;
}

/* 면white/선grey */
.btn_bordergrey_large {
  display: inline-flex;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 16px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_bordergrey_large:hover,
.btn_bordergrey_large:active {
  background-color: #f8f8f8;
}

.btn_bordergrey_large:disabled {
  background-color: #ddd;
}

.btn_bordergrey_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 14px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_bordergrey_mid:hover,
.btn_bordergrey_mid:active {
  background-color: #f8f8f8;
}

.btn_bordergrey_mid:disabled {
  background-color: #ddd;
}

.btn_bordergrey_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 14px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_bordergrey_small:hover,
.btn_bordergrey_small:active {
  background-color: #f8f8f8;
}

.btn_bordergrey_small:disabled {
  background-color: #ddd;
}

.btn_bordergrey_xsmall {
  display: inline-flex;
  justify-content: center;
  height: 24px;
  line-height: 24px;
  letter-spacing: -0.28px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 12px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_bordergrey_xsmall:hover,
.btn_bordergrey_xsmall:active {
  background-color: #f8f8f8;
}

.btn_bordergrey_xsmall:disabled {
  background-color: #ddd;
}

/* 면black */
.btn_black_large {
  display: inline-flex;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  border: 1px solid #0d0d0d;
  background-color: #0d0d0d;
  font-size: 16px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_black_large:hover {
  background-color: #333;
}

.btn_black_large:disabled {
  background-color: #ddd;
}

.btn_black_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #0d0d0d;
  background-color: #0d0d0d;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_black_mid:hover {
  background-color: #333;
}

.btn_black_mid:disabled {
  background-color: #ddd;
}

.btn_black_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #0d0d0d;
  background-color: #0d0d0d;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_black_small:hover {
  background-color: #333;
}

.btn_black_small:disabled {
  background-color: #ddd;
}

/* 선black */
.btn_borderblack_large {
  display: inline-flex;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  border: 1px solid #0d0d0d;
  background-color: #fff;
  font-size: 16px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_borderblack_large:hover {
  background-color: var(--greyf2f2);
}

.btn_borderblack_large:disabled {
  background-color: #ddd;
}

.btn_borderblack_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #0d0d0d;
  background-color: #fff;
  font-size: 14px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_borderblack_mid:hover {
  background-color: var(--greyf2f2);
}

.btn_borderblack_mid:disabled {
  background-color: #ddd;
}

.btn_borderblack_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #0d0d0d;
  background-color: #fff;
  font-size: 14px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_borderblack_small:hover {
  background-color: var(--greyf2f2);
}

.btn_borderblack_small:disabled {
  background-color: #ddd;
}

/* 선grey */
.btn_grey_large {
  display: inline-flex;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  font-size: 16px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_grey_large:hover {
  background-color: var(--greyf2f2);
}

.btn_grey_large:disabled {
  background-color: #ddd;
}

.btn_grey_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  font-size: 14px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_grey_mid:hover {
  background-color: var(--greyf2f2);
}

.btn_grey_mid:disabled {
  background-color: #ddd;
}

.btn_grey_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  font-size: 14px;
  color: #0d0d0d;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_grey_small:hover {
  background-color: var(--greyf2f2);
}

.btn_grey_small:disabled {
  background-color: #ddd;
}

/* 면 그라디언트 */
.btn_gradient_large {
  display: inline-flex;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  line-height: 48px;
  letter-spacing: -0.32px;
  padding: 0 15px;
  background-image: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  font-size: 16px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_gradient_mid {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  background-image: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.btn_gradient_small {
  display: inline-flex;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
  letter-spacing: -0.28px;
  padding: 0 15px;
  background-image: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

/* kdx 리뉴얼 */
.kg_button {
  flex-grow: 1;
}

.kg_button_grey_large {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding: 0 15px;
  border: 1px solid #F3F4F6;
  background-color: #F3F4F6;
  font-size: 17px;
  font-weight: 700;
  line-height: 25.5px;
  letter-spacing: -0.425px;
  color: var(--desc);
  border-radius: 16px;
  cursor: pointer;
}

.kg_button_bordergrey_large {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding: 0 15px;
  border: 1px solid #E5E7EB;
  background-color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 25.5px;
  letter-spacing: -0.425px;
  color: #374151;
  border-radius: 16px;
  cursor: pointer;
}

.kg_button_gradient_large {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 0 15px;
  background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
  box-shadow: 0 8px 10px -6px rgba(59, 130, 246, 0.20), 0 20px 25px -5px rgba(59, 130, 246, 0.20), 0 0 0 0 rgba(0, 0, 0, 0.00), 0 0 0 0 rgba(0, 0, 0, 0.00);
  font-size: 17px;
  font-weight: 700;
  line-height: 25.5px;
  letter-spacing: -0.425px;
  color: var(--white);
  border-radius: 16px;
  cursor: pointer;
}

/* 플러스 */
.btn_plus {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #0d0d0d;
  background-image: url(../images/bizhome/kglobal500/plus.png);
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  font-size: 0;
}

.btn_plus:disabled {
  background-color: #ddd;
}

/* 마이너스 */
.btn_minus {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--red);
  background-image: url(../images/bizhome/kglobal500/minus.png);
  vertical-align: middle;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  font-size: 0;
}

/* 다운로드 */
.btn_down {
  height: 32px;
  line-height: 32px;
  padding: 0 16px 0 12px;
  white-space: nowrap;
  min-width: auto;
}

.btn_down .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url(../images/bizhome/kglobal500/download.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-top: -4px;
}

.btn_down_dark {
  border-radius: 3px;
  height: 32px;
  line-height: 32px;
  padding: 0 16px 0 32px;
  color: #fff;
  background-color: var(--pdark);
}

.btn_down_dark:hover {
  background-color: #6994ff;
}

.btn_down_dark .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/bizhome/kglobal500/download_white.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/* 바로가기 */
.btn_link .icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-top: -4px;
  background-image: url(../images/bizhome/kglobal500/next_white_24px.png);
  background-repeat: no-repeat;
  background-position: 50% 0%;
}

.kg_link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 11px 21px;
  font-size: 14px;
  font-weight: 700;
  color: var(--desc);
  border-radius: 50px;
  background-color: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.6);
  backdrop-filter: blur(6px);
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.05),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.kg_link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #f3f4f6;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7.875px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1114)'%3E%3Cpath d='M7.72 3.78L4.9 6.59C4.78667 6.69667 4.65333 6.75 4.5 6.75C4.34667 6.75 4.21333 6.69667 4.1 6.59C3.99333 6.47667 3.94 6.34333 3.94 6.19C3.94 6.03667 3.99333 5.9 4.1 5.78L5.96 3.94H0.56C0.4 3.94 0.266667 3.88667 0.16 3.78C0.0533333 3.67333 0 3.53667 0 3.37C0 3.21 0.0533333 3.07667 0.16 2.97C0.266667 2.86333 0.4 2.81 0.56 2.81H5.96L4.1 0.97C3.99333 0.85 3.94 0.713333 3.94 0.56C3.94 0.406667 3.99333 0.273333 4.1 0.16C4.21333 0.0533332 4.34667 0 4.5 0C4.65333 0 4.78667 0.0533332 4.9 0.16L7.72 2.97C7.82667 3.09 7.88 3.22333 7.88 3.37C7.88 3.52333 7.82667 3.66 7.72 3.78Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1114'%3E%3Crect width='7.875' height='6.75' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.kg_link:hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  border-color: rgb(191 219 254);
  background-color: rgb(255 255 255 / 0.9);
  color: var(--pcolor);
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.kg_link:hover::after {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-45deg) scale(1.03);
  background-color: var(--pcolor);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1114)'%3E%3Cpath d='M7.72 3.78L4.9 6.59C4.78667 6.69667 4.65333 6.75 4.5 6.75C4.34667 6.75 4.21333 6.69667 4.1 6.59C3.99333 6.47667 3.94 6.34333 3.94 6.19C3.94 6.03667 3.99333 5.9 4.1 5.78L5.96 3.94H0.56C0.4 3.94 0.266667 3.88667 0.16 3.78C0.0533333 3.67333 0 3.53667 0 3.37C0 3.21 0.0533333 3.07667 0.16 2.97C0.266667 2.86333 0.4 2.81 0.56 2.81H5.96L4.1 0.97C3.99333 0.85 3.94 0.713333 3.94 0.56C3.94 0.406667 3.99333 0.273333 4.1 0.16C4.21333 0.0533332 4.34667 0 4.5 0C4.65333 0 4.78667 0.0533332 4.9 0.16L7.72 2.97C7.82667 3.09 7.88 3.22333 7.88 3.37C7.88 3.52333 7.82667 3.66 7.72 3.78Z' fill='%23ffffff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1114'%3E%3Crect width='7.875' height='6.75' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

/* 더보기 */
.btn_more .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  background: url("../images/bizhome/kglobal500/arrow_down_20px.png") no-repeat
    50% 80%;
}

/* 스타트업 상세 > 더보기 */
.kg_view_all {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--desc2);
}

.kg_view_all::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 5px;
  height: 8.75px;
  background: url("../images/bizhome/kglobal500/company_detail/ic_view_more.png")
    no-repeat center / cover;
}

/* btn_wrap */
.btn_wrap.right {
  text-align: right;
}

.btn_wrap.center {
  text-align: center;
}

/*** input ***/
/* text */
input[type="text"],
input[type="password"],
input[type="number"] {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 3px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
  font-size: 14px;
  color: #959595;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border: 1px solid #0d0d0d;
}

input[type="text"]:disabled,
input[type="password"]:disabled {
  background: #f8f8f8;
  outline: none;
}

input[type="text"]:read-only,
input[type="password"]:read-only {
  background: #f8f8f8;
  outline: none;
}

.input_wrap {
  display: block;
}

.input_wrap label {
  display: block;
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--pdark);
  margin-bottom: 8px;
}

.input_wrap input {
  display: inline-block;
  width: 100%;
}

.input_wrap.row {
  display: inline-block;
}

.kg_form_group {
  margin: 48px 0;
}

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

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

.kg_form_group .kg_form_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 9px;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: var(--black);
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.kg_form_group .kg_form_title.kg_form_title--required::after {
  content: "*";
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: #ef4444;
}

.kg_form_group .kg_form_contents {
  padding-top: 32px;
}

.kg_form_group .kg_form_contents.kg_form_contents--partner {
  padding-top: 16px;
}

.kg_form_grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 34px;
  margin: 32px 0;
}

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

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

.kg_form_grid--column {
  flex-direction: column;
}

.kg_form_grid .kg_input_wrap {
  max-width: 360px;
  margin: 0;
}

.kg_input_wrap--full {
  max-width: none !important;
}

.kg_input_wrap .kg_label_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 9px;
}

.kg_input_wrap .kg_input_label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
  color: #475569;
  margin-bottom: 9px;
}

.kg_form_group .kg_input_wrap .kg_label_desc {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  color: var(--desc2);
}

.kg_input_wrap .kg_label_wrap .kg_input_label {
  margin-bottom: 0;
}

.kg_input_wrap .kg_input_label--required::after {
  content: "*";
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
  color: #ef4444;
}

.kg_input_wrap .kg_input_label em {
  font-weight: 500;
  color: var(--desc2);
}

.kg_textarea {
  width: 100%;
  height: 169px;
  padding: 17px 70.89px 17px 21px;
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.kg_textarea:focus {
  border-color: var(--pcolor);
  background-color: var(--white);
}

.kg_textarea::placeholder {
  font-weight: 500;
  color: #757575;
}

.kg_input_contents--button {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
}

.kg_input_contents--button .kg_input_wrap input {
  width: 503px;
}

.kg_input_contents--button .kg_input_button {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 159px;
  height: 56px;
  background-color: #1E293B;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  line-height: 19.5px;
  color: var(--white);
  cursor: pointer;
}

/* clear text */
.text_clear_wrap {
  position: relative;
  width: fit-content;
}

.text_clear_wrap .btn_clear {
  display: none;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
  background: #ddd;
}

.text_clear_wrap .btn_clear.active {
  display: block;
}

/* textarea */
textarea {
  width: 560px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 12px;
  height: 100px;
  box-sizing: border-box;
}

textarea::placeholder {
  font-size: 14px;
  color: #959595;
}

textarea:focus {
  outline: none;
  border-color: #0d0d0d;
}

textarea:read-only {
  background: #f8f8f8;
  border-color: #ddd;
}

textarea::-webkit-scrollbar {
  width: 4px;
}

textarea::-webkit-scrollbar-thumb {
  width: 4px;
  background: #959595;
  border-radius: 20px;
}

/* kg_textarea_count */
.kg_textarea_count {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kg_textarea_count .kg_textarea {
  width: 100%;
  padding: 17px 21px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.kg_textarea_count .kg_textarea::placeholder {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  color: #757575;
}

.kg_textarea_count .byte-check {
  font-size: 12px;
  font-weight: 700;
  color: var(--desc2);
}

.kg_textarea_count .byte-check .byte {
  color: #1f2937;
}

/* filebox */
.filebox {
  width: 200px;
  height: 200px;
  border: 1px dashed var(--greyccc);
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.preview {
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.filebox label {
  height: 100%;
  width: 100%;
  vertical-align: middle;
  cursor: pointer;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  z-index: 8;
}

.filebox label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 20px;
  background: var(--black);
  transform: translate(-50%, -40%) rotate(90deg);
}

.filebox label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 20px;
  background: var(--black);
  transform: translate(-50%, -40%) rotate(180deg);
}

.filebox label.active::before {
  display: none;
}

.filebox label.active::after {
  display: none;
}

.filebox .btn_del_file {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--black) url(../images/bizhome/kglobal500/btn_del_file.png)
    no-repeat 50% 50%;
  z-index: 9;
  font-size: 0;
}

/* filebox grey 직사각형 */
.filebox.grey {
  width: 160px;
  height: 90px;
  background: var(--bg);
}

.filebox.greylarge {
  width: 100%;
  height: 68px;
  background: var(--bg);
}

/* filebox grey 정사각형 */
.filebox.grey_square {
  width: 120px;
  height: 120px;
  background: var(--bg);
}

.filebox_list {
  display: flex;
}

.filebox_list li {
  margin-right: 8px;
}

/* kg_filebox */
.kg_filebox {
  position: relative;
  overflow: visible;
}

.kg_filebox:hover {
  border-color: var(--pcolor);
  background-color: var(--white);
  box-shadow: 0 20px 50px -12px rgba(37, 99, 235, 0.15);
}

.kg_filebox_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: -0.275px;
  color: #94A3B8;
}

.kg_filebox_text::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 32px;
  background: url('../images/bizhome/kglobal500/mypage/company_profile/ic_camera.svg') no-repeat center / 24px 21px;
}

.kg_filebox:hover .kg_filebox_text {
  color: var(--pcolor);
}

.kg_filebox:hover .kg_filebox_text::before {
  background-image: url('../images/bizhome/kglobal500/mypage/company_profile/ic_camera_pcolor.svg');
}

.kg_filebox .preview {
  border-radius: 50%;
}

.kg_filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.kg_filebox label {
  position: absolute;
  left: auto;
  top: auto;
  right: 14px;
  bottom: 21px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  font-size: 0;
  border: 4px solid var(--white);
  border-radius: 100%;
  box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.30);
  z-index: 5;
  background: var(--pcolor) url('../images/bizhome/kglobal500/common/ic_pencil_white.svg') no-repeat center / 13.981px 13.977px;
}

.kg_filebox label::before,
.kg_filebox label::after {
  display: none;
}

.kg_filebox label.active::before {
  display: none;
}

.kg_filebox label.active::after {
  display: none;
}

.kg_filebox .filebox_button--delete {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #2563eb url('../images/bizhome/kglobal500/common/ic_pencil_white.svg') no-repeat center / 13.981px 13.977px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  z-index: 9;
  font-size: 0;
}

.kg_filebox:hover .preview.is-show::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.20);
  border-radius: 100%;
}

.kg_filebox .btn_del_file {
  display: none !important;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  width: 40px;
  height: 40px;
  font-size: 0;
  border-radius: 12px;
  border: 1px solid #FEE2E2;
  background: #FEF2F2 url('../images/bizhome/kglobal500/common/ic_trash_red.svg') no-repeat 50% 50% / 12.25px 14px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.10), 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 0 0 0 rgba(0, 0, 0, 0.00), 0 0 0 0 rgba(0, 0, 0, 0.00);
}

.kg_filebox:hover .preview.is-show ~ .btn_del_file {
  display: block !important;
}

.kg_filebox .btn_del_file:hover {
  border-color: #F32323;
  background-color: #F32323;
  background-image: url('../images/bizhome/kglobal500/common/ic_trash_white.svg');
}

/* kg_filebox circle_type */
.kg_filebox.circle_type {
  width: 240px;
  height: 240px;
  border: 2px dashed #cbd5e1;
  border-radius: 50%;
}

.kg_filebox.circle_type:not(:hover) {
  background: #f8fafc;
}

.kg_filebox.circle_type:hover .preview.is-show::before {
  border-radius: 100%;
}

/* kg_filebox square_type */
.kg_filebox.square_type {
  width: 240px;
  height: 240px;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
}

.kg_filebox.square_type:not(:hover) {
  background: #f8fafc;
}

.kg_filebox.square_type:hover {
  border-color: var(--pcolor);
  color: var(--pcolor);
}

.kg_filebox.square_type label {
  right: 20px;
  bottom: 20px;
}

.kg_filebox.square_type:hover .preview.is-show::before {
  border-radius: 16px;
}

.kg_filebox.square_type .preview {
  border-radius: 16px;
}

/* kg_file_upload (다중 파일 드래그 앤 드롭) */
.kg_file_dropzone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 217px;
  padding: 41px 196px;
  text-align: center;
  background-color: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.kg_file_dropzone::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  padding: 20px 17px;
  box-sizing: border-box;
  border-radius: 100%;
  background: #eff6ff url("../images/bizhome/kglobal500/suggest/ic_cloud.svg") no-repeat center / 30px 21px;
}

.kg_file_dropzone:hover,
.kg_file_dropzone:focus {
  border-color: var(--pcolor);
  background-color: #eff6ff;
  color: #334155;
}

.kg_file_dropzone:focus {
  outline: none;
}

.kg_file_dropzone.is-dragover {
  border-color: var(--pcolor);
  background-color: var(--bg-blue-hover);
  color: #1e3a8a;
}

.kg_file_dropzone_desc--main {
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
  color: var(--black);
  margin-top: 16px;
}

.kg_file_dropzone_desc--sub {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--desc2);
  margin-top: 7px;
}

.kg_file_list {
  margin-top: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.kg_file_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 34px 14px 78px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #334155;
  position: relative;
  border: 1px solid #f3f4f6;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.kg_file_item + .kg_file_item {
  border-top: 1px solid #f1f5f9;
}

.kg_file_item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.kg_file_item.file_type--pdf::before {
  background-image: url("../images/bizhome/kglobal500/suggest/ic_file_pdf.svg");
  background-color: #fef2f2;
}

.kg_file_item.file_type--ppt::before,
.kg_file_item.file_type--pptx::before {
  background-image: url("../images/bizhome/kglobal500/suggest/ic_file_ppt.svg");
  background-color: #fff7ed;
}

.kg_file_item.file_type--doc::before,
.kg_file_item.file_type--docx::before {
  background-image: url("../images/bizhome/kglobal500/suggest/ic_file_doc.svg");
  background-color: #F3E8FF;
}

.kg_file_name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: var(--black);
}

.kg_file_meta {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.kg_file_size {
  flex-shrink: 0;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: var(--desc2);
  margin-top: 3px;
}

.kg_file_remove {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 16px;
  font-size: 0;
  background: url("../images/bizhome/kglobal500/suggest/ic_file_delete.svg") no-repeat center / contain;
  cursor: pointer;
}

.kg_file_remove:hover {
  border-color: #94a3b8;
  color: #334155;
}

.kg_file_remove:focus {
  outline: none;
  border-color: var(--pcolor);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

.kg_file_item--empty {
  justify-content: center;
  color: #94a3b8;
  font-weight: 500;
}

/* radio */
.radio_box.row {
  display: inline-block;
}

.radio_box > label {
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
}

.radio_box input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--greyccc);
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}

.radio_box input::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--pcolor);
  display: none;
}

.radio_box input:hover,
.radio_box input:checked {
  border-color: var(--pcolor);
}

.radio_box input:checked::before {
  display: block;
}

/* kg_radio (기본) */
.kg_radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kg_radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1.5px solid #CBD5E1;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.kg_radio input[type="radio"]:hover {
  border-color: var(--pcolor);
}

.kg_radio input[type="radio"]:checked {
  border-color: var(--pcolor);
  background-color: var(--white);
}

.kg_radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--pcolor);
  transform: translate(-50%, -50%);
}

.kg_radio label {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #64748B;
  cursor: pointer;
  transition: color 0.2s ease;
}

.kg_radio input[type="radio"]:checked + label {
  color: #1E293B;
}

/* radio list */
.kg_radio_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.kg_radio_list .kg_radio.round_type {
  position: relative;
}

.kg_radio_list .kg_radio.round_type input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.kg_radio_list .kg_radio.round_type label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 51px;
  padding: 14px 26px 15px;
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 51px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #475569;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.kg_radio_list .kg_radio.round_type input[type="radio"]:checked + label {
  border-color: var(--pcolor);
  color: var(--pcolor);
  background-color: #eff6ff;
  box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.15);
}

.kg_radio_list .kg_radio.radius_type {
  position: relative;
}

.kg_radio_list .kg_radio.radius_type input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.kg_radio_list .kg_radio.radius_type label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 51px;
  padding: 14px 26px 15px;
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #475569;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.kg_radio_list .kg_radio.radius_type input[type="radio"]:checked + label {
  border-color: var(--pcolor);
  color: var(--pcolor);
  background-color: #eff6ff;
  box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.15);
}

.kg_radio_list .kg_radio.radius_type.kg_radio--green input[type="radio"]:checked + label,
.kg_radio_list .kg_radio.round_type.kg_radio--green input[type="radio"]:checked + label {
  border-color: #10b981;
  color: #10b981;
  background-color: var(--bg-green);
  box-shadow: 0 4px 12px 0 rgba(16, 185, 129, 0.15);
}

.kg_radio_list .kg_radio.radius_type.kg_radio--red input[type="radio"]:checked + label,
.kg_radio_list .kg_radio.round_type.kg_radio--red input[type="radio"]:checked + label {
  border-color: #EF4444;
  color: #EF4444;
  background-color: var(--white);
  box-shadow: 0 4px 12px 0 rgba(239, 68, 68, 0.10);
}

/* radio - card type (옵션별 border 박스) */
.kg_radio.card_type {
  position: relative;
  display: block;
  width: 100%;
}

.kg_radio.card_type input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.kg_radio.card_type label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: auto;
  padding: 17px;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.kg_radio.card_type label::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #CBD5E1;
  border-radius: 50%;
  background-color: var(--white);
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.kg_radio.card_type input[type="radio"]:checked + label {
  border-color: var(--pcolor);
  background-color: #EFF6FF;
  background-color: rgba(255, 241, 242, 0.5);
}

.kg_radio.card_type input[type="radio"]:checked + label::before {
  border-color: var(--pcolor);
  background-color: var(--pcolor);
  box-shadow: inset 0 0 0 2px var(--white);
}

.kg_radio_list.card_list {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
}

/* radio list - tab type */
.kg_radio_list.tab_type {
  background-color: #f1f5f9;
  border-radius: 20px;
  padding: 6px;
  height: 58px;
  gap: 2px;
}

.kg_radio_list.tab_type .kg_radio.round_type {
  flex: 1 0 0;
  height: 100%;
}

.kg_radio_list.tab_type .kg_radio.round_type label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 22.5px;
  color: #64748b;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.kg_radio_list.tab_type .kg_radio.round_type input[type="radio"]:checked + label {
  background-color: var(--white);
  color: #111827;
  border-color: transparent;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.05), 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* radio list >  */
/* .kg_radio_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.kg_radio_list .kg_radio.round_type {
  position: relative;
}

.kg_radio_list .kg_radio.round_type input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.kg_radio_list .kg_radio.round_type label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 51px;
  padding: 14px 26px 15px;
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 51px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #475569;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.kg_radio_list .kg_radio.round_type input[type="radio"]:checked + label {
  border-color: var(--pcolor);
  color: var(--pcolor);
  background-color: #eff6ff;
  box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.15);
}

.kg_radio_list .kg_radio--green input[type="radio"]:checked + label {
  border-color: #10b981;
  color: #10b981;
  background-color: var(--bg-green);
  box-shadow: 0 4px 12px 0 rgba(16, 185, 129, 0.15);
} */

/* checkbox */
.check_box {
  display: inline-block;
}

.check_box > input[type="checkbox"] {
  display: none;
}

.check_box > label {
  position: relative;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.check_box > label span {
  margin: 0 0 0 8px;
  white-space: nowrap;
}

.check_box > label:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  vertical-align: middle;
  box-sizing: border-box;
}

.check_box input:checked + label:before {
  background: #054cff;
  border-color: #054cff;
}

.check_box input:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 5.5 3 3L10.5 3' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E%0A");
}

/* 체크박스 kdx 리뉴얼 */
.kg_checkbox {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  color: #374151;
  cursor: pointer;
}

.kg_checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: visible;
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

.kg_checkbox input[type="checkbox"]:checked {
  background: #2563eb;
  border-color: #2563eb;
}

.kg_checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: url('../images/bizhome/kglobal500/common/ic_check.svg') no-repeat center / 10.5px 12px;
}

/* 섹션 타이틀 숨김 처리 */
.kg_section_title--blind {
  display: none;
}

/* 마케팅 활용 동의 박스 */
.kg_marketing_box {
  padding: 25px;
  background-color: rgba(249, 250, 251, 0.50);
  border-radius: 24px;
  border: 1px solid #F3F4F6;
}

.kg_marketing_box .kg_marketing_box_title {
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  letter-spacing: 1.2px;
  color: var(--desc2);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kg_marketing_box .kg_marketing_notice .kg_marketing_notice_item {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--desc2);
  margin: 16px 0 0;
}

.kg_agree_radio_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* switch */
.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.switch button {
  position: relative;
  width: 40px;
  height: 20px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #054cff;
  background: #054cff;
  vertical-align: middle;
}

.switch button:after {
  display: block;
  clear: both;
  content: "";
  position: absolute;
  top: 1px;
  left: 21px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  z-index: 3;
  transition: all 0.2s;
}

.switch span {
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  white-space: nowrap;
  vertical-align: middle;
  color: var(--desc);
}

.switch.btn_off button {
  background: #E8E8E8;
  border-color: #E8E8E8;
}

.switch.btn_off button:after {
  left: 1px;
}

.hidden {
  display: none !important;
}

/* table */
table {
  width: 100%;
  font-size: 14px;
}

th {
  padding: 16px 0;
  vertical-align: middle;
  font-weight: 500;
}

td {
  padding: 16px 0 16px 20px;
  vertical-align: middle;
}

/* table style */
.layout_table {
  width: 100%;
}

.layout_table th {
  border-left: none;
  border-bottom: 1px solid var(--greyf2f2);
  border-right: none;
}

.layout_table td {
  border-left: none;
  border-bottom: 1px solid var(--greyf2f2);
  border-right: none;
  word-break: break-word;
}

/* table style > row */
.row_table th {
  text-align: left;
}

/* table style > col */
.col_table {
  margin: 20px 0;
  overflow-y: hidden;
}

.col_table th {
  word-wrap: break-word;
  word-break: keep-all;
  text-align: center;
}

.col_table td {
  text-align: center;
}

.col_table td .of_td_logo img {
  margin: 0 5px 0 0;
  width: 40px;
  border-radius: 50%;
  vertical-align: middle;
}

.col_table td:first-child {
  border-left: none;
}

.col_table td:last-child {
  border-right: none;
}

.w40 {
  width: 40px !important;
}

.w80 {
  width: 80px !important;
}

.w120 {
  width: 120px !important;
}

.w140 {
  width: 140px !important;
}

.w160 {
  width: 160px !important;
}

.w200 {
  width: 200px !important;
}

.w240 {
  width: 240px !important;
}

.w320 {
  width: 320px !important;
}

.w400 {
  width: 400px !important;
}

.w480 {
  width: 480px !important;
}

.w640 {
  width: 640px !important;
}

.pcolor {
  color: var(--pcolor);
}

.notice {
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--grey666);
  text-transform: none;
}

.notice li {
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--grey666);
  margin-bottom: 6px;
  line-height: 1.4;
  text-transform: none;
}

.kg_notice_box {
  padding: 24px 0 24px 36px;
  position: relative;
  border-bottom: 1px solid var(--greyf2f2);
}

.kg_notice_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z' stroke='%23959595' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 8v4M12 16h.01' stroke='%23959595' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.kg_notice_box li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey666);
  text-transform: none;
  padding-left: 9px;
  position: relative;
  margin-bottom: 2px;
}

.kg_notice_box li:last-of-type {
  margin-bottom: 0;
}

.kg_notice_box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 3px;
  height: 3px;
  background-color: var(--grey666);
  border-radius: 100%;
}

.kg_notice_list li {
  padding-left: 10px;
  font-size: 13px;
  color: var(--grey666);
  line-height: 16.8px;
  margin-bottom: 6px;
  position: relative;
}

.kg_notice_list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 2px;
  height: 2px;
  background-color: var(--grey666);
  border-radius: 100%;
}

.kg_notice_list.small_type li {
  margin-bottom: 4px;
  font-size: 12px;
}

.kg_notice {
  padding-left: 10px;
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--grey666);
  text-transform: none;
  position: relative;
}

.kg_notice::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 2px;
  height: 2px;
  background-color: var(--grey666);
  border-radius: 100%;
}

i.essential {
  color: var(--red);
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* 위첨자 */
.sup {
  vertical-align: super;
}

/* 레이어팝업 */
[class*="layer-pop"] {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.layer-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--greyccc);
  box-sizing: border-box;
  z-index: 2;
  background: var(--white);
}

.layer-box .popup-title {
  position: relative;
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 500;
  background: var(--greye4e4);
  color: var(--black);
  letter-spacing: -0.4px;
}

.layer-box .of_pop_contents {
  padding: 24px;
  background: var(--bg);
}

.layer-box .layer-close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 25px;
  height: 25px;
  background: url("../images/bizhome/biz_sprite.png") no-repeat -240px -170px;
  font: 0/0 a !important;
}

/* 카드 */
.card_wrap {
  display: flex;
}

.card {
  width: 305px;
  height: 360px;
  position: relative;
  top: 0;
  margin-right: 20px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.08);
  border: solid 1px var(--greye4e4);
  transition: all 0.3s;
}

.card:nth-child(4n) {
  margin-right: 0;
}

.card a {
  display: block;
}

.card .image {
  height: 203px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.card .logo {
  position: absolute;
  width: 64px;
  height: 64px;
  right: 20px;
  top: 150px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.card .desc {
  height: 156px;
  padding: 20px;
  background: var(--white);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.card .desc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.36px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 25.19px;
}

.card .desc p {
  font-size: 14px;
  min-height: 40px;
  color: var(--grey333);
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-transform: none;
}

.card .desc em {
  display: block;
  padding-top: 16px;
  color: var(--pdark);
}

.card .desc .bookmark_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
}

.card .desc .bookmark_wrap em {
  padding-top: 0;
}

.card .goal_badge_wrap {
  padding-top: 16px;
}

.main .card:hover,
.comapny_list .card:hover {
  top: -5px;
}

/* 마이페이지 공통 카드영역 */
.aside .card_wrap {
  flex-wrap: wrap;
}

.aside .card {
  flex: none;
  width: calc(25% - 15px);
  height: 305px;
}

.aside .card .image {
  height: 160px;
}

.aside .card .logo {
  width: 56px;
  height: 56px;
  right: 16px;
  top: 114px;
}

.aside .card .desc {
  padding: 16px 16px 20px;
  height: 145px;
}

/* 카드 - 메인페이지 */
.kg_card_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.kg_card {
  width: 400px;
  height: 504px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  border: solid 1px #f3f4f6;
  transition: all 0.3s;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.05),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.kg_card a {
  display: block;
}

.kg_card .image {
  height: 224px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.kg_card .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 280px;
  padding: 32px;
  background: var(--white);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.kg_card .info .name_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-bottom: 20px;
}

.kg_card .info .name_wrap .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 16px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05) inset;
}

.kg_card .info .name_wrap .logo .company_initial {
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
}

.kg_card .info .name_wrap .compnay_name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.36px;
  line-height: 28px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 25.19px;
}

.kg_card .info .company_desc {
  min-height: 52px;
  font-size: 16px;
  font-weight: 500;
  color: var(--desc);
  line-height: 26px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-transform: none;
}

.kg_card .info .tag_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.kg_card .info .tag_wrap .tag {
  flex-shrink: 0;
  padding: 5.25px 10.594px 6.25px 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 16.5px;
  border-radius: 8px;
}

.kg_card .badge_wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.kg_card .badge_wrap .badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 29px;
  padding: 8px 13px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 16.5px;
  letter-spacing: 0.55px;
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.kg_card .badge_wrap .bookmark {
  width: 40px;
  height: 40px;
  font-size: 0;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13.5px 18px;
  background-image: url("../images/bizhome/kglobal500/common/ic_bookmark_off_white.svg");
}

.kg_card .badge_wrap .bookmark.on {
  background-image: url("../images/bizhome/kglobal500/common/ic_bookmark_on.svg");
}

/* 투자사 */
.kg_card_list--investor {
  flex-shrink: 0;
  gap: 26px;
}

.kg_card_list--investor .kg_card {
  width: 320px;
  height: 404px;
}

.kg_card_list--investor .kg_card .image {
  height: 192px;
}

.kg_card_list--investor .kg_card .info {
  height: 212px;
  padding: 24px;
}

.kg_card_list--investor .kg_card .info .name_wrap {
  gap: 12px;
  margin-bottom: 15px;
}

.kg_card_list--investor .kg_card .info .name_wrap .logo {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05) inset;
}

.kg_card_list--investor .kg_card .info .name_wrap .compnay_name {
  font-size: 18px;
  line-height: 22.5px;
  white-space: nowrap;
}

.kg_card_list--investor .kg_card .info .company_desc {
  min-height: 64px;
  font-size: 13px;
  line-height: 21.125px;
}

.kg_card_list--investor .kg_card .info .tag_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  border-top: none;
}

.kg_card_list--investor .kg_card .info .tag_wrap .tag {
  height: 28.5px;
  padding: 3.5px 8.625px 4.5px 10px;
  font-size: 10px;
  font-weight: 900;
  line-height: 15px;
  letter-spacing: 0.25px;
  border-radius: 6px;
}

.kg_card_list--investor .kg_card .badge_wrap .kg_send_businessCard {
  width: 36px;
  height: 36px;
  font-size: 0;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9)
    url("../images/bizhome/kglobal500/ic_connect.png") no-repeat center / 21px
    21px;
}

.kg_card_list--investor .kg_card .badge_wrap .kg_send_businessCard.active {
  background-color: var(--pcolor);
  background-image: url("../images/bizhome/kglobal500/ic_connect_on.png");
}

.main .kg_card:hover,
.comapny_list .kg_card:hover {
  transform: translateY(-5px);
  transition: all cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.main .kg_card:hover .image {
  scale: 1.05;
}

/* 공통 팔레트 순환 — 부모 리스트/래퍼에 .kg_color_cycle 클래스 추가 */
/* 또는 .main .kg_card처럼 자체적으로 반복되는 요소에 직접 적용 */
.main .kg_card:nth-of-type(6n-5),
.kg_color_cycle > *:nth-of-type(6n-5) {
  --c-logo-bg: var(--company-bg-1);
  --c-logo-fg: var(--company-color-1);
  --c-badge-bg: var(--badge-bg-1);
}

.main .kg_card:nth-of-type(6n-4),
.kg_color_cycle > *:nth-of-type(6n-4) {
  --c-logo-bg: var(--company-bg-2);
  --c-logo-fg: var(--company-color-2);
  --c-badge-bg: var(--badge-bg-2);
}

.main .kg_card:nth-of-type(6n-3),
.kg_color_cycle > *:nth-of-type(6n-3) {
  --c-logo-bg: var(--company-bg-3);
  --c-logo-fg: var(--company-color-3);
  --c-badge-bg: var(--badge-bg-3);
}

.main .kg_card:nth-of-type(6n-2),
.kg_color_cycle > *:nth-of-type(6n-2) {
  --c-logo-bg: var(--company-bg-4);
  --c-logo-fg: var(--company-color-4);
  --c-badge-bg: var(--badge-bg-4);
}

.main .kg_card:nth-of-type(6n-1),
.kg_color_cycle > *:nth-of-type(6n-1) {
  --c-logo-bg: var(--company-bg-5);
  --c-logo-fg: var(--company-color-5);
  --c-badge-bg: var(--badge-bg-5);
}

.main .kg_card:nth-of-type(6n),
.kg_color_cycle > *:nth-of-type(6n) {
  --c-logo-bg: var(--company-bg-6);
  --c-logo-fg: var(--company-color-6);
  --c-badge-bg: var(--badge-bg-6);
}

/* 팔레트 변수 소비부 — 타겟 요소는 변수만 참조 */
.main .kg_card .badge_wrap .badge {
  background-color: var(--c-badge-bg);
}

.main .kg_card .info .name_wrap .logo,
.kg_color_cycle .logo,
.kg_color_cycle .connect_profile_avatar {
  background-color: var(--c-logo-bg);
}

.main .kg_card .info .name_wrap .logo .company_initial,
.kg_color_cycle .logo .company_initial,
.kg_color_cycle .connect_profile_avatar .company_initial {
  color: var(--c-logo-fg);
}

/* bookmark_board는 .company_initial 자체가 컬러 사각형 역할 */
.bookmark_board_list.kg_color_cycle .company_initial {
  background-color: var(--c-logo-bg);
  color: var(--c-logo-fg);
}

.kg_color_cycle .tag_col > span,
.kg_color_cycle .stage_badge {
  background-color: var(--c-logo-bg);
  color: var(--c-logo-fg);
}

/* 카드 - 상품리스트 */
.kg_goods_card_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.kg_goods_card {
  width: 250px;
  height: 376px;
  position: relative;
  top: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.kg_goods_card a {
  display: block;
}

.kg_goods_card .check_box {
  position: absolute;
  left: 12px;
  top: 12px;
}

.kg_goods_card .image {
  height: 250px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 4px;
}

.kg_goods_card .info_wrap {
  height: 156px;
  background: var(--white);
}

.kg_goods_card .info_wrap .btn_wrap {
  padding: 12px 0 0;
  background: var(--white);
}

.kg_goods_card .info_wrap .desc {
  min-height: 40px;
  font-size: 14px;
  min-height: 40px;
  color: var(--black);
  padding-top: 10px;
}

.kg_goods_card .kg_tag_list {
  padding-top: 16px;
}

.main .kg_goods_card:hover,
.comapny_list .kg_goods_card:hover {
  top: -5px;
}

/* 카드 - 마이페이지 상품리스트 */
.kg_goods_card.type2 .desc {
  padding: 12px 20px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 카드 > 태그 리스트 */
.kg_tag_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 16px;
}

.kg_tag_list > li {
  padding: 3px 6px;
  background-color: #f2f4f7;
  backdrop-filter: blur(20px);
  font-size: 12px;
  font-weight: 400;
  color: var(--navy);
  border-radius: 2px;
}

/* 툴팁 단일 */
.tooltip {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--black-ui);
  color: #fff;
  border-radius: 2px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

.tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--black-ui);
}

.tooltip.orange_type {
  padding: 3px 6px;
  font-size: 13px;
  font-weight: 400;
  background-color: #ee614f;
  box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.07);
}

.tooltip.orange_type::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: #ee614f;
}

.tooltip.move {
  animation: moveTooltip 0.6s ease-in-out 0s 2;
}

@keyframes moveTooltip {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

/* pagination - 게시판 */
.pagination {
  margin: 30px 0 0;
  font-size: 0;
  text-align: center;
}

.pagination a,
.pagination button,
.pagination em.on,
.pagination strong {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 4px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 30px;
  vertical-align: middle;
  border-radius: 2px;
}

.pagination a {
  color: #666;
}

.pagination input.page_search_num {
  display: inline-block;
  width: 50px;
  height: 30px;
  margin: 0 3px;
  text-align: center;
  border: 1px solid #dedede;
  border-radius: 50px;
  font-size: 14px;
  vertical-align: middle;
}

.pagination em.page_search_sum {
  line-height: 30px;
  font-size: 14px;
  vertical-align: middle;
}

.pagination span.search_btn {
  display: inline-block;
  width: 60px;
  padding: 3px 0;
  margin-left: 20px;
  background: #4bbeff;
  color: #fff;
  border: 1px solid #4bbeff;
  border-radius: 50px;
  font-size: 14px;
  vertical-align: middle;
}

.pagination em.on,
.pagination strong {
  background: var(--black);
  color: #fff;
  border: 1px solid var(--black);
  font-weight: 500;
}

.pagination a:hover {
  background: #e4e4e4;
  color: var(--black);
}

.pagination .page-nav {
  position: relative;
  font: 0/43px a !important;
  vertical-align: middle;
}

.pagination .page-nav:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/biz_03.png) no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
}

.pagination .page-prev:after {
  background: url(../images/biz_01.png) center no-repeat;
}

.pagination .page-next:after {
  background: url(../images/biz_03.png) center no-repeat;
}

.pagination .page-start:after {
  background: url(../images/biz_02.png) center no-repeat;
}

.pagination .page-end:after {
  background: url(../images/biz_04.png) center no-repeat;
}

.pagination .next-button:after,
.pagination .prev-button:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 25px;
  background: url(../images/sprite.png) no-repeat;
  vertical-align: middle;
}

.pagination .prev-button:after {
  background-position: -435px -210px;
}

.pagination .next-button:after {
  background-position: -465px -210px;
}

.pagination .next-button em,
.pagination .prev-button em {
  font-size: 0;
}

/* pagination - 리스트페이지 */
.kg_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.kg_pagination .page_nav {
  width: 20px;
  height: 20px;
  font-size: 0;
  background: url("../images/bizhome/kglobal500/pagination_arrow_prev.svg")
    no-repeat center;
}

.kg_pagination .page_nav.page_next {
  transform: rotate(180deg);
}

.kg_pagination .page_num {
  width: 32px;
  height: 32px;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  color: #5e6063;
  border-radius: 2px;
  background-color: transparent;
}

.kg_pagination .page_num:hover {
  background-color: var(--greye4e4);
  color: var(--black);
}

.kg_pagination .page_num.active {
  background-color: var(--black);
  color: #fff;
}

/* 스위치 */
.toggle_btn {
  position: relative;
}

.toggle_btn input {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.toggle_btn label {
  display: inline-block;
  position: relative;
  width: 74px;
  height: 32px;
  padding: 0 14px;
  background: var(--grey666);
  border-radius: 22px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
  line-height: 32px;
  text-align: right;
  vertical-align: middle;
  font-size: 12px;
}

.toggle_btn label:after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 4px;
  right: 70px;
  border-radius: 50%;
  background: #fff;
  transition:
    right 0.2s,
    background-color 0.2s;
}

.toggle_btn input:checked + label {
  background: var(--pcolor);
  color: #fff;
  text-align: left;
}

.toggle_btn input:checked + label:after {
  right: 2px;
  background: #fff;
}

.toggle_btn.mid {
  position: relative;
  min-width: 80px;
}

.toggle_btn.mid label {
  display: inline-block;
  position: relative;
  width: 55px;
  height: 32px;
  padding: 0 14px;
  background: var(--grey666);
  border-radius: 22px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
  line-height: 32px;
  text-align: right;
  vertical-align: middle;
  font-size: 11px;
}

.toggle_btn.mid label:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 6px;
  right: 58px;
  border-radius: 50%;
  background: #fff;
  transition:
    right 0.2s,
    background-color 0.2s;
}

.toggle_btn.mid input:checked + label:after {
  right: 4px;
  background: #fff;
}

.toggle_btn.mid label {
  display: inline-block;
  position: relative;
  width: 55px;
  height: 28px;
  padding: 0 14px;
  background: var(--grey666);
  border-radius: 22px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
  line-height: 28px;
  text-align: right;
  vertical-align: middle;
  font-size: 11px;
}

.toggle_btn.mid label:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 4px;
  right: 58px;
  border-radius: 50%;
  background: #fff;
  transition:
    right 0.2s,
    background-color 0.2s;
}

.toggle_btn.mid input:checked + label:after {
  right: 2px;
  background: #fff;
}

.toggle_btn.mid {
  position: relative;
  min-width: 40px;
}

.toggle_btn.small label {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 20px;
  background: var(--grey666);
  border-radius: 22px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
  vertical-align: middle;
  font-size: 11px;
  box-sizing: content-box;
}

.toggle_btn.small label:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  right: 22px;
  border-radius: 50%;
  background: #fff;
  transition:
    right 0.2s,
    background-color 0.2s;
}

.toggle_btn.small input:checked + label:after {
  right: 2px;
  background: #fff;
}

.toggle_btn span {
  margin-right: 8px;
  vertical-align: middle;
}

/* 스크롤바 */
.scroll_wrap::-webkit-scrollbar {
  width: 4px;
}

.scroll_wrap::-webkit-scrollbar-thumb {
  background-color: #959595;
  border-radius: 50px;
}

.scroll_wrap::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 50px;
}

/* 탭메뉴 */
.tab_menu .menu,
.kg_tab_menu .menu {
  cursor: pointer;
}

.tab_cont .cont,
.kg_tab_cont .cont {
  display: none;
}

.tab_cont .cont.active,
.kg_tab_cont .cont.active {
  display: block;
}

/* 탭메뉴 - round type */
.kg_tab_menu.round_type {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.kg_tab_menu.round_type li {
  height: 48px;
  line-height: 48px;
  min-width: 136px;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey666);
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid var(--greye4e4);
}

.kg_tab_menu.round_type li.active {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 600;
}

/* 탭메뉴 - line type */
.kg_tab_menu.line_type {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--greye4e4);
}

.kg_tab_menu.line_type li {
  height: 59px;
  line-height: 1.4;
  min-width: 94px;
  padding: 16px 4px;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey666);
  letter-spacing: -0.36px;
}

.kg_tab_menu.line_type li.active {
  font-weight: 700;
  color: var(--black);
  border-bottom: 3px solid var(--black);
}

/* 탭메뉴 - hidden */
.kg_tab_menu .menu.hidden {
  display: none;
}

.kg_tab_cont .cont.hidden {
  display: none;
}

/* 그라디언트 */
.bg1 {
  background-image: linear-gradient(
    99deg,
    #2fff82 0%,
    #1a81e1 36%,
    #164acf 68%
  );
}

.bg2 {
  background-image: linear-gradient(
    95deg,
    #3dcbff 0%,
    #48a7ff 29%,
    #754bf2 100%
  );
}

.bg3 {
  background-image: linear-gradient(95deg, #f2b633 0%, #ee614f 100%);
}

/* 포인트색 */
.kg_pcolor {
  color: var(--pcolor);
}

/* 북마크 */
.bookmark.type1 {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url("../images/bizhome/kglobal500/bookmark_off.png") no-repeat 50%
    50% / 12px 15.993px;
}

.bookmark.type1.on {
  background-image: url("../images/bizhome/kglobal500/bookmark_on.png");
}

.bookmark.type2 {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  margin-bottom: 12px;
  cursor: pointer;
  background: #fff url("../images/bizhome/kglobal500/bookmark_off_grey.png")
    no-repeat 50% 50%;
}

.bookmark.type2.on {
  background-image: url("../images/bizhome/kglobal500/bookmark_on.png");
}

/* pagenation */
.common_pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.common_pagenation .page_num {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin: 0 4px;
  font-size: 14px;
  color: var(--grey666);
  border-radius: 2px;
}

.common_pagenation .page_num.is-active {
  background-color: var(--black);
  color: #fff;
}

.common_pagenation .page_num:not(.is-active):hover {
  background-color: var(--greye4e4);
  color: var(--black);
  font-weight: 600;
}

.common_pagenation .page_arrow {
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 0 4px;
  background-image: url("../images/bizhome/kglobal500/pagenation_arrow_20px.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.common_pagenation .page_arrow.page_arrow_next {
  transform: rotate(180deg);
}

.common_pagenation .page_arrow span {
  font-size: 0;
  text-indent: -999999px;
}

/* 리스트 없을 때 */
.no_list_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 120px 0;
  border-top: solid 1px var(--greye4e4);
  border-bottom: solid 1px var(--greye4e4);
}

.no_list_wrap .icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  background: url("../images/bizhome/kglobal500/empty_gray.png") no-repeat 50%
    50%;
  background-size: cover;
}

.no_list_wrap p {
  color: #666;
  text-transform: none;
}

.kg_empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.kg_empty::before {
  content: '';
  display: block;
  width: 224px;
  height: 224px;
  margin-bottom: 20px;
  background: url("../images/bizhome/kglobal500/common/ic_empty_purple.png") no-repeat 50% 50%;
  background-size: cover;
}

.kg_empty .kg_empty_text--main {
  font-size: 30px;
  font-weight: 900;
  line-height: 36px; /* 120% */
  letter-spacing: -0.75px;
  color: var(--black);
  margin-bottom: 7px;
}

.kg_empty .kg_empty_text--sub {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.625px; /* 162.5% */
  color: #64748B;
}

/* 글자 수 체크 */
.byte-check {
  font-size: 13px;
  text-align: right;
  color: var(--grey666);
}

.byte-check .byte {
  color: var(--green);
}

/* datepicker */
.datepicker {
  position: relative;
  width: 120px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
}

.datepicker .fake_date {
  position: absolute;
  display: inline-block;
  left: 7px;
  top: 5px;
  width: 70%;
  height: 30px;
  text-indent: 5px;
  background: #fff !important;
  border: none;
  z-index: 9;
  padding: 0;
  color: var(--black);
}

.datepicker .fake_date:focus {
  outline: none;
  border: none;
}

.datepicker input[type="date"] {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-indent: 12px;
  box-sizing: border-box;
}

.datepicker input[type="date"]:focus {
  outline: none;
}

.datepicker input[type="date"]::-webkit-calendar-picker-indicator {
  background: url(../images/bizhome/kglobal500/calendar.png) no-repeat 20% 50%;
  padding-right: 15px;
}

/* 유효성 메세지 */
.msg {
  font-size: 14px !important;
  color: var(--red) !important;
  padding: 4px 0 0 0 !important;
  text-align: left !important;
  font-weight: 400 !important;
  text-transform: none;
}

.kg_msg_flex_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.kg_msg_flex_wrap .msg {
  padding: 0 !important;
}

.orange {
  background-color: #f98130;
}

.purple {
  background-color: #7840d4;
}

.yellow {
  background-color: #ffd988;
}

.sprite {
  background: linear-gradient(90deg, #fff 99%, var(--greyf2f2) 0);
  /* 웹킷용 벤더프리픽스와 그외 벤더프리픽스는 각도에 따른 그라데이션 진행반향이 다르다. */
  background: -webkit-linear-gradient(0, #fff 99%, var(--greyf2f2) 0);
  background: -moz-linear-gradient(0, #fff 99%, var(--greyf2f2) 0);
  background-size: 104.09px 100%;
}

/* 그라데이션 */
.kg_gradient {
  background-image: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.kg_gradient--text {
  background-image: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kg_gradient--text2 {
  background-image: linear-gradient(to right, #60a5fa, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kg_gradient--text3 {
  background-image: linear-gradient(90deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kg_gradient--text4 {
  background-image: linear-gradient(90deg, #60a5fa 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* pcolor */
.pcolor {
  color: var(--pcolor);
}

/* total count wrap */
.kg_total_count_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.kg_total_count_wrap .total {
  color: var(--black);
}

.kg_total_count_wrap .total .count {
  color: var(--pcolor);
}

/* table */
table {
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}

th {
  padding: 10px;
  vertical-align: middle;
  font-weight: 600;
}

td {
  padding: 8px;
  vertical-align: middle;
}

/* table style */
.kg_layout_table {
  width: 100%;
}

.kg_layout_table td {
  word-wrap: break-word;
  word-break: keep-all;
}

/* table style > row */
.kg_row_table th {
  text-align: left;
}

/* table style > col */
.kg_col_table {
  border: 1px solid #ccc;
  overflow-x: auto;
  overflow-y: hidden;
}

.kg_col_table th {
  height: 48px;
  border-right: 1px solid #ddd;
  background: var(--greyf2f2);
  word-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.kg_col_table th:last-of-type {
  border-right: none;
}

.kg_col_table td {
  height: 72px;
  border-top: 1px solid var(--greyf2f2);
  word-wrap: break-word;
  word-break: keep-all;
  background-color: #fff;
}

.kg_col_table tbody tr:first-of-type td {
  border-color: #ddd;
}

.kg_col_table tr:hover td {
  background-color: var(--p5);
}

.kg_col_table td.td_company_name {
  padding: 8px 8px 8px 12px;
}

.kg_col_table td.td_company_field {
  padding: 8px 16px 8px 8px;
}

.kg_col_table td.td_date {
  text-align: center;
}

.kg_col_table td.td_portfolio,
.kg_col_table td.td_project {
  padding: 8px 16px 8px 8px;
}

.kg_col_table td .number {
  font-family: "Inter";
  color: var(--grey666);
}

.kg_col_table td.td_company_field > span,
.kg_col_table td.td_project > span {
  display: block;
  width: 385px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.kg_col_table .table_partner td.td_company_field > span,
.kg_col_table .table_partner td.td_project > span {
  width: 466px;
}

.kg_col_table .no_list_wrap {
  border: none;
  cursor: default;
}

/* 마이페이지 table style > col */
.kg_col_table.type2 {
  border: none;
  overflow-x: auto;
  overflow-y: hidden;
}

.kg_col_table.type2 th {
  height: 40px;
  border: none;
  background: #f8f8f8;
  word-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.kg_col_table.type2 th:last-of-type {
  border: none;
}

.kg_col_table.type2 td {
  height: 66px;
  padding: 20px 0;
  border-top: none;
  border-bottom: 1px solid var(--greyf2f2);
  font-size: 16px;
  word-wrap: break-word;
  word-break: keep-all;
  background-color: #fff;
}

.kg_col_table.type2 tbody tr:first-of-type td {
  border-color: var(--greyf2f2);
}

.kg_col_table.type2 td.td_center {
  text-align: center;
}

.kg_col_table.type2 tr:hover td {
  background-color: var(--white);
}

.kg_col_table.type2 td.kg_table_no_list {
  padding: 0;
}

.kg_col_table.type2 td.kg_table_no_list .no_list_wrap {
  height: auto;
  padding: 120px 0;
  font-size: 14px;
  border: none;
}

/* 기업 리스트 */
/* .kg_company_list {display: flex; justify-content: flex-start; align-items: center; gap: 10px;}
.kg_company_list .bookmark {flex-shrink: 0; width: 32px; height: 32px; background-size: cover; margin-bottom: 0;}
.kg_company_list .bookmark.on {background-image: url('../images/bizhome/kglobal500/bookmark_on@2x.png');}
.kg_company_list .link_company_detail {flex-shrink: 0; display: flex; align-items: center; gap: 10px;}
.kg_company_list .company_logo {flex-shrink: 0; width: 46px; height: 46px; border-radius: 100%; border: 1px solid var(--greye4e4); overflow: hidden;}
.kg_company_list .company_logo img {width: 100%; height: 100%; object-fit: cover;}
.kg_company_list .company_name {display: block; width: 182px; font-size: 14px; font-weight: 500; color: var(--navy); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;} */

.kg_company_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.kg_company_list .kg_company_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  top: 0px;
  width: 316px;
  min-height: 357px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: top 0.2s;
}

.kg_company_list .kg_company_card:hover {
  top: -4px;
}

.kg_company_list .kg_company_card.active {
  border: 1px solid var(--pcolor);
}

.kg_company_list .kg_company_card .kg_company_info--main .main_info_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.kg_company_list .kg_company_card .kg_company_info--main .main_info_top .logo {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.kg_company_list
  .kg_company_card
  .kg_company_info--main
  .main_info_top
  .logo
  .company_initial {
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
}

.kg_company_list
  .kg_company_card
  .kg_company_info--main
  .main_info_top
  .main_info_desc
  .com_name {
  display: block;
  width: 193px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
}

.kg_company_list
  .kg_company_card
  .kg_company_info--main
  .main_info_top
  .main_info_desc
  .badge_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.kg_company_list
  .kg_company_card
  .kg_company_info--main
  .main_info_top
  .main_info_desc
  .badge_list
  .badge_list_item {
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  line-height: 0.25px;
  color: var(--desc2);
  background: #f3f4f6;
  border-radius: 6px;
}

.kg_company_list .kg_company_card .kg_company_info--main .company_info_desc {
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: var(--desc);
  margin-bottom: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kg_company_list .kg_company_card .company_info_fund {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  margin-bottom: 20px;
  background-color: var(--bg-grey);
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}

.kg_company_list .kg_company_card .company_info_fund::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 30px;
  background-color: #e5e7eb;
}

.kg_company_list .kg_company_card .company_info_fund.company_info_fund--single::before {
  display: none;
}

.kg_company_list .kg_company_card .company_info_fund .fund_list {
  width: 108px;
}

.kg_company_list .kg_company_card .company_info_fund .fund_list:nth-child(2) {
  text-align: right;
}

.kg_company_list .kg_company_card .company_info_fund .fund_list .fund_title {
  font-size: 9px;
  font-weight: 700;
  color: var(--desc2);
  margin-bottom: 2px;
}

.kg_company_list .kg_company_card .company_info_fund .fund_list .fund_contents {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  color: var(--black);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.kg_company_list .kg_company_card .company_info_fund .fund_list .fund_contents--empty {
  color: #d2d2d2;
}

.kg_company_list .kg_company_card .portfolio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 23px 0 20px;
}

.kg_company_list .kg_company_card .portfolio .portfolio_title {
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  color: var(--desc2);
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list .portfolio_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #e5e7eb;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
  border: 3px solid var(--white);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  margin-left: -10px;
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list .portfolio_item:first-child {
  margin-left: 0;
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(1) {
  z-index: 1;
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(2) {
  z-index: 2;
  left: 0;
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(3) {
  z-index: 3;
  left: -2px;
}

.kg_company_list .kg_company_card .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(4) {
  z-index: 4;
}

.kg_company_list .kg_company_card:nth-child(2n-1) .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(1) {
  background-image: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  color: #CA8A04;
}

.kg_company_list .kg_company_card:nth-child(2n-1) .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(2) {
  background-image: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  color: #db2777;
}

.kg_company_list .kg_company_card:nth-child(2n-1) .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(3) {
  background-image: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  color: #0891b2;
}

.kg_company_list .kg_company_card:nth-child(2n) .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(1) {
  background-image: linear-gradient(135deg, #eff6ff 0%, var(--bg-blue-hover) 100%);
  color: var(--pcolor);
}

.kg_company_list .kg_company_card:nth-child(2n) .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(2) {
  background-image: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: #4F46E5;
}

.kg_company_list .kg_company_card:nth-child(2n) .portfolio .portfolio_contents .portfolio_list .portfolio_item:nth-child(3) {
  background-image: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: var(--green);
}

.kg_company_list .kg_company_card .tag_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  height: 19px;
  margin-bottom: 20px;
}

.kg_company_list .kg_company_card .tag_list .tag_list_item {
  height: 19px;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.25px;
  color: var(--pcolor);
  background: var(--bg-blue);
  border-radius: 6px;
}

.kg_company_list .kg_company_card .company_function {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  gap: 48px;
}

.kg_company_list .kg_company_card .company_function .kg_ai_summary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding: 8px 11px;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: var(--pcolor);
  background-color: var(--bg-blue);
  border-radius: 12px;
}

.kg_company_list .kg_company_card .company_function .kg_ai_summary::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 16px;
  background: url("../images/bizhome/kglobal500/company_list/ic_magic_bar_on.png")
    no-repeat center;
  background-size: contain;
}

.kg_company_list .kg_company_card .company_function .kg_ai_summary:hover {
  background-color: var(--bg-blue-hover);
}

.kg_company_list .kg_company_card.active .company_function .kg_ai_summary {
  background-color: var(--pcolor);
  color: var(--white);
}

.kg_company_list .kg_company_card.active .company_function .kg_ai_summary::before {
  background-image: url("../images/bizhome/kglobal500/company_list/ic_magic_bar_off.png")
}

.kg_company_list .kg_company_card .company_function .kg_ai_summary_box {
  position: relative;
  display: inline-flex;
}

.kg_company_list .kg_company_card .company_function .kg_ai_summary_box .kg_tooltip {
  top: auto;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: var(--desc);
  border: 1px solid var(--ccc);
  border-radius: 6px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}

.kg_company_list .kg_company_card .company_function .kg_ai_summary_box .kg_tooltip--top:after {
  border-top-color: var(--white);
}

.kg_company_list .kg_company_card .company_function .company_function_buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .company_function_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 0;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .company_function_button:hover {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.10), 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 0 0 0 rgba(0, 0, 0, 0.00), 0 0 0 0 rgba(0, 0, 0, 0.00);
  }

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .bookmark {
  background: url("../images/bizhome/kglobal500/common/ic_bookmark_off.svg")
    no-repeat center / 12px 15.993px;
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .bookmark:hover:not(.on) {
  background-image: url("../images/bizhome/kglobal500/common/ic_bookmark_hover.svg");
  border: 1px solid #FEE2E2;
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .bookmark.on {
  background-image: url("../images/bizhome/kglobal500/common/ic_bookmark_on.svg");
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .kg_send_businessCard {
  background: url("../images/bizhome/kglobal500/common/ic_send_37px.svg") no-repeat
    center / 16px;
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .kg_send_businessCard:hover {
    background-color: #EFF6FF;
    border: 1px solid var(--bg-blue-hover);
  }

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .kg_link_detail {
  background: var(--black)
    url("../images/bizhome/kglobal500/common/ic_next.png") no-repeat center /
    14px 12px;
}

.kg_company_list
  .kg_company_card
  .company_function
  .company_function_buttons
  .kg_link_detail:hover {
    background-color: var(--pcolor);
  }

.kg_company_list
  .kg_company_card:nth-child(2n-1)
  .kg_company_info--main
  .main_info_top
  .logo {
  background-color: var(--bg-blue);
  color: var(--pcolor);
}

.kg_company_list
  .kg_company_card:nth-child(2n-1)
  .kg_company_info--main
  .main_info_top
  .logo
  .company_initial {
  color: var(--pcolor);
}

.kg_company_list
  .kg_company_card:nth-child(2n-1)
  .kg_company_info--main
  .main_info_top
  .main_info_desc
  .badge_list
  .badge_list_item--business_part {
  background-color: var(--bg-blue);
  color: var(--pcolor);
}

.kg_company_list
  .kg_company_card:nth-child(2n)
  .kg_company_info--main
  .main_info_top
  .logo {
  background-color: var(--bg-green);
  color: var(--green);
}

.kg_company_list
  .kg_company_card:nth-child(2n)
  .kg_company_info--main
  .main_info_top
  .logo
  .company_initial {
  color: var(--green);
}

.kg_company_list
  .kg_company_card:nth-child(2n)
  .kg_company_info--main
  .main_info_top
  .main_info_desc
  .badge_list
  .badge_list_item--business_part {
  background-color: var(--bg-green);
  color: var(--green);
}

/* AI 핵심 요약 팝업 */
.kg_ai_summary_layer {
  position: absolute;
  top: calc(100% + 32px);
  left: 0;
  z-index: 100;
  width: calc(316px * 4 + 32px * 3);
  padding: 49px 40px;
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 32px;
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.kg_ai_summary_arrow {
  position: absolute;
  top: -12px;
  left: 148px;
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  background-color: #0f172a;
  border-left: 1px solid #1e293b;
  border-top: 1px solid #1e293b;
}

/* 4열 기준: 열 위치별 레이어 left 오프셋 + 화살표 위치 */
/* 2열 (4n+2) */
.kg_company_card:nth-child(4n+2) .kg_ai_summary_layer { left: -348px; }
.kg_company_card:nth-child(4n+2) .kg_ai_summary_arrow { left: 496px; }

/* 3열 (4n+3) */
.kg_company_card:nth-child(4n+3) .kg_ai_summary_layer { left: -696px; }
.kg_company_card:nth-child(4n+3) .kg_ai_summary_arrow { left: 844px; }

/* 4열 (4n+4 = 4n) */
.kg_company_card:nth-child(4n) .kg_ai_summary_layer { left: -1044px; }
.kg_company_card:nth-child(4n) .kg_ai_summary_arrow { left: 1192px; }

.kg_ai_summary_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.8);
}

.kg_ai_summary_header_left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kg_ai_summary_header_left::before {
  content: '';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
  flex-shrink: 0;
  background: url("../images/bizhome/kglobal500/company_list/ic_magic_bar_skyblue.png") no-repeat center / 21.25px 20px;
}

.kg_ai_summary_title {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.55px;
  color: #ffffff;
  white-space: nowrap;
}

.kg_ai_summary_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 6px;
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #60a5fa;
  white-space: nowrap;
}

.kg_ai_summary_close {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
  background: url("../images/bizhome/kglobal500/company_list/ic_summary_close.png") no-repeat center / 11.25px;
}

.kg_ai_summary_close:hover svg {
  fill: #e2e8f0;
}

.kg_ai_summary_desc {
  padding-top: 32px;
}

.kg_ai_summary_desc_text {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
  color: #e2e8f0;
  word-break: keep-all;
}

.kg_ai_summary_desc_text strong {
  font-weight: 900;
  color: #ffffff;
}

.kg_ai_summary_cards {
  display: flex;
  gap: 23.5px;
  margin-top: 40px;
}

.kg_ai_summary_card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 21px;
  height: 102px;
  background-color: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
}

.kg_ai_summary_card:hover {
  background-color: rgba(30, 41, 59, 0.6);
  transition: background-color 0.2s;
}

.kg_ai_summary_card_label {
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #94a3b8;
}

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

.kg_ai_summary_card_value::before {
  content: '';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.kg_ai_summary_card_value--indigo::before {
  background-color: rgba(99, 102, 241, 0.2);
  background-image: url("../images/bizhome/kglobal500/company_list/ic_summary_01.png");
  background-size: 16px;
}

.kg_ai_summary_card_value--blue::before {
  background-color: rgba(59, 130, 246, 0.2);
  background-image: url("../images/bizhome/kglobal500/company_list/ic_summary_02.png");
  background-size: 16px 16.004px;
}

.kg_ai_summary_card_value--emerald::before {
  background-color: rgba(16, 185, 129, 0.2);
  background-image: url("../images/bizhome/kglobal500/company_list/ic_summary_03.png");
  background-size: 12px 16px;
}

.kg_ai_summary_card_value--purple::before {
  background-color: rgba(168, 85, 247, 0.2);
  background-image: url("../images/bizhome/kglobal500/company_list/ic_summary_04.png");
  background-size: 18px 10px;
}

.kg_ai_summary_card_text {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  letter-spacing: -0.375px;
  color: #ffffff;
  white-space: nowrap;
}

/* 페이지네이션 */
.kg_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.kg_pagination .kg_pagination_item {
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
  background-color: transparent;
  cursor: pointer;
}

.kg_pagination .kg_pagination_item:hover {
  background-color: #f3f4f6;
}

.kg_pagination .kg_pagination_item.active {
  border-color: var(--pcolor);
  background-color: var(--pcolor);
  color: #fff;
  box-shadow:
    0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.kg_pagination .kg_pagination_item.kg_pagination_control {
  flex-shrink: 0;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 12.5px;
}

.kg_pagination .kg_pagination_item.kg_pagination_control--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42682)'%3E%3Cpath d='M0.25 5.5C0.0833333 5.68 0 5.89 0 6.13C0 6.36333 0.0833333 6.57 0.25 6.75L5.5 12C5.68 12.1667 5.89 12.25 6.13 12.25C6.36333 12.25 6.57 12.1667 6.75 12C6.91667 11.82 7 11.6133 7 11.38C7 11.14 6.91667 10.93 6.75 10.75L2.11 6.13L6.75 1.5C6.91667 1.32 7 1.11333 7 0.88C7 0.64 6.91667 0.43 6.75 0.25C6.57 0.0833333 6.36333 0 6.13 0C5.89 0 5.68 0.0833333 5.5 0.25L0.25 5.5Z' fill='%234B5563'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42682'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.kg_pagination .kg_pagination_item.kg_pagination_control--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42692)'%3E%3Cpath d='M6.75 5.5C6.91667 5.68 7 5.89 7 6.13C7 6.36333 6.91667 6.57 6.75 6.75L1.5 12C1.32 12.1667 1.11333 12.25 0.88 12.25C0.64 12.25 0.43 12.1667 0.25 12C0.0833333 11.82 0 11.6133 0 11.38C0 11.14 0.0833333 10.93 0.25 10.75L4.89 6.13L0.25 1.5C0.0833333 1.32 0 1.11333 0 0.88C0 0.64 0.0833333 0.43 0.25 0.25C0.43 0.0833333 0.64 0 0.88 0C1.11333 0 1.32 0.0833333 1.5 0.25L6.75 5.5Z' fill='%234B5563'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42692'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.kg_pagination .kg_pagination_item.kg_pagination_control--prev.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42682)'%3E%3Cpath d='M0.25 5.5C0.0833333 5.68 0 5.89 0 6.13C0 6.36333 0.0833333 6.57 0.25 6.75L5.5 12C5.68 12.1667 5.89 12.25 6.13 12.25C6.36333 12.25 6.57 12.1667 6.75 12C6.91667 11.82 7 11.6133 7 11.38C7 11.14 6.91667 10.93 6.75 10.75L2.11 6.13L6.75 1.5C6.91667 1.32 7 1.11333 7 0.88C7 0.64 6.91667 0.43 6.75 0.25C6.57 0.0833333 6.36333 0 6.13 0C5.89 0 5.68 0.0833333 5.5 0.25L0.25 5.5Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42682'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.kg_pagination .kg_pagination_item.kg_pagination_control--next.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42692)'%3E%3Cpath d='M6.75 5.5C6.91667 5.68 7 5.89 7 6.13C7 6.36333 6.91667 6.57 6.75 6.75L1.5 12C1.32 12.1667 1.11333 12.25 0.88 12.25C0.64 12.25 0.43 12.1667 0.25 12C0.0833333 11.82 0 11.6133 0 11.38C0 11.14 0.0833333 10.93 0.25 10.75L4.89 6.13L0.25 1.5C0.0833333 1.32 0 1.11333 0 0.88C0 0.64 0.0833333 0.43 0.25 0.25C0.43 0.0833333 0.64 0 0.88 0C1.11333 0 1.32 0.0833333 1.5 0.25L6.75 5.5Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42692'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.kg_pagination .kg_pagination_item.disabled,
.kg_pagination .kg_pagination_item:disabled {
  cursor: default;
  border-color: #e5e7eb;
  color: var(--desc2);
  background-color: transparent;
}

.kg_pagination .kg_pagination_item.kg_pagination_ellipsis:hover,
.kg_pagination .kg_pagination_item:disabled:hover {
  border-color: #e5e7eb;
  color: var(--desc2);
}

/* 기업등록 > 박스 */
.kg_register_box {
  border: 1px solid var(--greyddd);
  margin-bottom: 16px;
}

.kg_register_titleWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  background: var(--greyf2f2);
  border-bottom: 1px solid var(--greyddd);
}

.kg_register_titleWrap .kg_register_title {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.kg_register_contWrap {
  padding: 16px 20px;
}

.kg_register_box .kg_input_wrap {
  margin-bottom: 24px;
}

.kg_register_box .kg_input_wrap.mb_none {
  margin-bottom: 0;
}

.kg_btn_delete_list {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-left: 1px solid var(--greyddd);
  background: url("../images/bizhome/kglobal500/close_16px.png") no-repeat
    center;
}

/* 기업등록 > 항목 wrapper */
.kg_input_wrap .kg_input_title {
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--pdark);
  margin-bottom: 8px;
}

/* 정렬 */
.kg_flex_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.kg_text_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.kg_flex_row_start {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

.kg_flex_row_start_center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.kg_flex_row_center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.kg_flex_row_sb_center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.kg_flex_row_sb_start {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}

.kg_flex_col_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* input title */
.kg_input_title {
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--pdark);
  margin-bottom: 8px;
}

/* 툴팁 */
.kg_tooltip {
  position: absolute;
  top: 0;
  z-index: 10;
  padding: 12px;
  border-radius: 4px;
  background: #247dff;
  color: #fff;
  letter-spacing: -0.21px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.kg_tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.kg_tooltip--top:after {
  bottom: -9px;
  top: 100%;
  border-top: 9px solid #247dff;
  border-bottom: 0px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.kg_tooltip--bottom:after {
  top: -8px;
  bottom: 100%;
  border-top: 0px solid transparent;
  border-bottom: 9px solid #247dff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
} 

/* 툴팁2 */
.kg_tooltipBox {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.kg_tooltipBox .tooltipBox_btn {
  width: 18px;
  height: 18px;
  background: transparent url("../images/bizhome/kglobal500/ic_tooltip.svg")
    no-repeat center;
  background-size: contain;
  vertical-align: top;
  border: 0;
  font-size: 0;
  cursor: pointer;
}

.kg_tooltipBox .tooltipBox_section {
  z-index: 1;
  display: none;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: none;
}

.kg_tooltipBox .tooltipBox_section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--white);
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.kg_tooltipBox .tooltipBox_section.on {
  display: block;
}

.kg_tooltipBox .tooltipBox_section .section_desc {
  letter-spacing: -0.18px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
  color: var(--grey666);
}

.kg_tooltipBox .tooltipBox_section .section_desc > li {
  position: relative;
  padding-left: 8px;
}

.kg_tooltipBox .tooltipBox_section .section_desc > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 2px;
  height: 2px;
  background-color: #596476;
}

.kg_tooltipBox:hover .tooltipBox_section {
  display: block;
}

/* 기업상세 > 우측 리스트 */
.kg_info_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.kg_info_list.kg_info_list--column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.kg_info_list.kg_info_list--noBg {
  background-color: transparent !important;
  border-bottom: 1px solid #F8FAFC !important;
  padding: 12px 3px !important;
}

.kg_info_list.kg_info_list--noBg:last-of-type {
  border-bottom: none !important;
}

.kg_info_list.kg_info_list--noBg .kg_info_list_title::before {
  display: none !important;
}

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

.kg_info_list .kg_info_list_title {
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-align: left;
  word-break: break-all;
}

.kg_info_list .kg_info_list_desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  text-transform: none;
}

.underline {
  text-decoration: underline;
}

/* 기업상세 > 플레이 버튼 */
.btn_play {
  display: block;
  width: 64px;
  height: 64px;
  background: url("../images/bizhome/kglobal500/play_40px.svg") center no-repeat
    #fff;
  background-size: 40px;
  border-radius: 50%;
  font-size: 0;
}

.kg_btn_play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--white)
    url("../images/bizhome/kglobal500/common/ic_play.svg") no-repeat center /
    22.5px 26.278px;
  border-radius: 100%;
  font-size: 0;
}

/* 기업상세 > 서비스 리스트 */
.kg_company_service_list {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid var(--greye4e4);
}

.kg_company_service_list:last-child {
  border: none;
  padding: 20px 0 0 0;
}

.kg_company_service_list .image {
  width: 208px;
  height: 117px;
  margin-right: 20px;
  overflow: hidden;
  flex: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.kg_company_service_list .desc h3 {
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: -0.32px;
}

.kg_company_service_list .desc strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: none;
}

.kg_company_service_list .desc p {
  color: var(--grey666);
  text-transform: none;
}

/* 기업상세 > 카드뉴스 링크 리스트 */
.kg_card_news_list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  height: 277px;
  overflow: hidden;
}

.kg_card_news_list .kg_card_news_item {
  flex-shrink: 0;
  width: 270px;
  position: relative;
}

.kg_card_news_list .kg_card_news_item > a {
  display: block;
}

.kg_card_news_list .kg_card_news_item::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 9.75a.75.75 0 1 1-1.5 0V5.561l-6.218 6.22a.75.75 0 1 1-1.062-1.062L18.44 4.5H14.25a.75.75 0 1 1 0-1.5h6a.75.75 0 0 1 .75.75v6zM17.25 12a.75.75 0 0 0-.75.75v6.75h-12v-12h6.75a.75.75 0 1 0 0-1.5H4.5A1.5 1.5 0 0 0 3 7.5v12A1.5 1.5 0 0 0 4.5 21h12a1.5 1.5 0 0 0 1.5-1.5v-6.75a.75.75 0 0 0-.75-.75z' fill='%23fff'/%3E%3C/svg%3E");
}

.kg_card_news_list .kg_card_news_image {
  width: 270px;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.kg_card_news_list .kg_card_news_desc_wrap {
  padding-top: 20px;
}

.kg_card_news_list .kg_card_news_desc {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  word-break: break-all;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kg_card_news_list .kg_card_news_date {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  color: var(--grey999);
}

/* 마이페이지 > 업데이트 소식 리스트 */
.kg_card_news_list.type2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  height: auto;
  overflow: visible;
}

.kg_card_news_list.type2 .kg_card_news_item {
  flex-shrink: 0;
  width: 330px;
  height: 312px;
  position: relative;
  top: 0;
  transition: all 0.3s;
}

.kg_card_news_list.type2 .kg_card_news_item::before {
  display: none;
}

.kg_card_news_list.type2 .kg_card_news_item > a {
  display: block;
}

.kg_card_news_list.type2 .kg_card_news_image {
  width: 330px;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.kg_card_news_list.type2 .kg_card_news_desc_wrap {
  padding-top: 20px;
}

.kg_card_news_list.type2 .kg_card_news_date {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  color: var(--grey999);
  letter-spacing: -0.26px;
  margin-bottom: 4px;
}

.kg_card_news_list.type2 .kg_card_news_desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main .kg_card_news_list.type2 .kg_card_news_item:hover,
.company_list .kg_card_news_list.type2 .kg_card_news_item:hover {
  position: relative;
  top: -5px;
}

/* 기업상세 > 이미지 슬라이드 리스트 */
.kg_image_slide_list {
  height: 622px;
}

.kg_image_slide_list > li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--greye4e4);
}

.kg_image_slide_list > li:first-of-type {
  padding: 0 0 20px 0;
}

.kg_image_slide_list > li:last-of-type {
  padding: 20px 0 0 0;
  border-bottom: none;
}

.kg_image_slide_list > li.no_list_wrap {
  align-items: center;
  padding: 120px 0;
}

.kg_image_slide_list .kg_swiper_wrap {
  flex-shrink: 0;
  width: 270px;
  height: 180px;
  overflow: hidden;
}

.kg_image_slide_list .kg_desc_wrap {
  flex-shrink: 0;
  width: 570px;
}

.kg_image_slide_list .kg_desc_wrap .date {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
  color: var(--grey999);
  letter-spacing: -0.26px;
  margin-bottom: 4px;
}

.kg_image_slide_list .kg_desc_wrap .desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}

.kg_image_slide_list .scroll_wrap {
  max-height: 180px;
}

.kg_image_slide_list.type2 {
  height: auto;
}

.kg_image_slide_list.type2 .scroll_wrap {
  height: 132px;
}

.kg_image_slide_list.type2 .kg_desc_wrap {
  width: 770px;
  position: relative;
}

.kg_image_slide_list.type2 .kg_desc_wrap .date {
  padding-top: 5px;
  margin-bottom: 9px;
}

.kg_image_slide_list.type2 .btn_wrap {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 기업상세 > 카테고리 리스트 */
/* .kg_category_list {
  margin: 40px 0;
}

.kg_category_list:first-of-type {
  margin: 0 0 40px;
}

.kg_category_list:last-of-type {
  margin: 40px 0 0;
} */

.kg_category_list .kg_category_list_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  padding: 10px 4px 12px;
  border-bottom: 1px solid var(--greye4e4);
}

/* .kg_category_list .kg_category_list_title::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
} */

.kg_category_list .kg_category_list_title.MI::before {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.001 10.441a.75.75 0 1 0-1.5 0h1.5zm-7.875-6.309a.75.75 0 0 0 0-1.5v1.5zm4.313 6.31a.75.75 0 0 0-1.5 0h1.5zm-4.313-2.78a.75.75 0 0 0 0-1.5v1.5zm3.677.05a.75.75 0 0 0-1.056-1.066l1.056 1.066zM9.598 9.766a.75.75 0 1 0 1.055 1.066L9.598 9.766zM18 4.996l.528.532a.75.75 0 0 0-.423-1.275L18 4.996zm-2.834 2.807-.235.712a.75.75 0 0 0 .763-.179l-.528-.533zm-2.52-2.495-.527-.533a.75.75 0 0 0-.183.772l.71-.24zM15.482 2.5l.742-.107a.75.75 0 0 0-1.27-.426l.528.533zm-2.205 4.68-.71.239a.75.75 0 0 0 .475.473l.235-.713zm2.52-2.496-.743.107a.75.75 0 0 0 .637.635l.106-.742zm.705 5.757c0 3.478-2.848 6.309-6.375 6.309v1.5c4.343 0 7.875-3.49 7.875-7.809h-1.5zm-6.375 6.309c-3.528 0-6.376-2.831-6.376-6.309h-1.5c0 4.32 3.533 7.809 7.876 7.809v-1.5zM3.75 10.441c0-3.477 2.848-6.309 6.376-6.309v-1.5c-4.343 0-7.876 3.49-7.876 7.81h1.5zm9.188 0c0 1.529-1.252 2.78-2.812 2.78v1.5c2.375 0 4.313-1.91 4.313-4.28h-1.5zm-2.812 2.78c-1.56 0-2.813-1.251-2.813-2.78h-1.5c0 2.37 1.937 4.28 4.313 4.28v-1.5zm-2.813-2.78c0-1.528 1.253-2.78 2.813-2.78v-1.5c-2.376 0-4.313 1.91-4.313 4.28h1.5zm5.434-3.795-3.15 3.12 1.056 1.066 3.15-3.12-1.056-1.066zm4.725-2.183L14.638 7.27l1.056 1.066 2.834-2.808-1.056-1.065zM13.174 5.84l2.835-2.807-1.056-1.066-2.834 2.808 1.055 1.065zm2.227 1.251-1.89-.624-.47 1.425 1.89.623.47-1.424zm-1.414-.15-.63-1.873-1.421.479.63 1.872 1.421-.479zm.751-4.334.315 2.184 1.485-.214-.315-2.184-1.485.214zm.953 2.82 2.204.311.21-1.485-2.204-.312-.21 1.485z' fill='%23000'/%3E%3C/svg%3E%0A");
}

.kg_category_list .kg_category_list_title.MP::before {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 2v16h16m-12-6L10 8.5l2.5 2.5L18 5.5M14.258 5h4.243v4.243' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.kg_category_list .kg_category_list_title.SA::before {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.317 17.134a7.317 7.317 0 1 1 6.785-10.06M3.915 12.56h2.134c.842 0 1.524-.682 1.524-1.524V9.055c0-.842.683-1.525 1.525-1.525h1.524c.842 0 1.524-.682 1.524-1.524V3.415m2.927 9.329v-.055M18 12.68c0 1.91-2.927 4.454-2.927 4.454s-2.927-2.545-2.927-4.454c0-1.581 1.31-2.863 2.927-2.863S18 11.1 18 12.68z' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.kg_category_list .kg_category_list_title.ID::before {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.93 6.347h9.523M5.5 1.153v1.695m0 0h10m-10 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-10a3 3 0 0 0-3-3m0-1.695v1.694m-7 12.5v-6l-2 1.5m7.5 4.5v-6l-2 1.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.kg_category_list .kg_category_list_contents {
  padding-top: 12px;
}

/* 기업상세 > 태그 리스트 */
.kg_tag_list.round_type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.kg_tag_list.round_type > li {
  flex-shrink: 0;
  height: 32px;
  line-height: 32px;
  padding: 0px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  background-color: var(--greyf2f2);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.kg_tag_list.square_grey_type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 0;
}

.kg_tag_list.square_grey_type > li {
  flex-shrink: 0;
  height: 32px;
  line-height: 1.4;
  padding: 5.5px 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey333);
  background-color: var(--greyf2f2);
  border-radius: 2px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.kg_tag_list.square_blue_type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 0;
}

.kg_tag_list.square_blue_type > li {
  flex-shrink: 0;
  height: 32px;
  line-height: 1.4;
  padding: 5.5px 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  background-color: var(--p5);
  border-radius: 2px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

/* 기업상세 > 기업정보 리스트 */
.kg_company_info_list.rowwide_type > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--greye4e4);
}

.kg_company_info_list.rowwide_type > li:first-of-type {
  padding: 0 0 20px;
}

.kg_company_info_list.rowwide_type > li:last-of-type {
  padding: 20px 0 0;
  border-bottom: none;
}

.kg_company_info_list.rowwide_type > li .kg_company_logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid var(--greye4e4);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.kg_company_info_list.rowwide_type > li .kg_company_name {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

/* 기업상세 > 회색박스 리스트 */
.kg_greybox_list > li {
  height: auto;
  padding: 20px;
  margin-bottom: 8px;
  background-color: #f8f8f8;
}

.kg_greybox_list > li:last-of-type {
  margin-bottom: 0;
}

.kg_greybox_list .kg_greybox_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.kg_greybox_list .kg_greybox_title {
  width: 709px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.kg_greybox_list .kg_greybox_date {
  width: 71px;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 400;
  color: var(--grey999);
}

.kg_greybox_list .kg_greybox_desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey666);
  line-height: 1.6;
}

.kg_greybox_list.date_type > li {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 20px;
  margin-bottom: 0;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid #F3F4F6;
}

.kg_greybox_list.date_type .kg_greybox_title_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}

.kg_greybox_list.date_type .kg_greybox_title {
  width: auto;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.kg_greybox_list.date_type .kg_greybox_info_wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.kg_greybox_list.date_type .kg_greybox_publisher {
  flex-shrink: 0;
  /* width: 160px; */
  font-size: 14px;
  font-weight: 400;
  color: var(--grey999);
  word-break: break-all;
}

.kg_greybox_list.date_type .kg_greybox_date {
  flex-shrink: 0;
  align-self: flex-end;
  width: auto;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 400;
  color: var(--grey999);
  margin-top: 30px;
}

.kg_greybox_list.date_type .kg_greybox_desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey666);
  line-height: 1.6;
}

.kg_greybox_list.date_type .kg_greybox_dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: var(--grey999);
  border-radius: 100%;
  margin: 0 6px;
}

.kg_greybox_list.col_type .kg_greybox_item {
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid #F3F4F6;
}

.kg_greybox_list.col_type .kg_greybox_item .kg_greybox_title {
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 22.75px; 
  letter-spacing: -0.4px;
  color: var(--black);
}

.kg_greybox_list.col_type .kg_greybox_item .kg_greybox_desc {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.375px;
  letter-spacing: -0.4px;
  color: #4B5563;
}

/* 기업상세 > timeline 리스트 */
.kg_timeline_list {
  border-left: 2px solid var(--greye4e4);
  padding-left: 16px;
}

.kg_timeline_list > li {
  padding-left: 11px;
  position: relative;
  margin-bottom: 8px;
  text-transform: none;
}

.kg_timeline_list > li:last-child {
  margin-bottom: 0;
}

.kg_timeline_list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 2px;
  background: var(--black);
}

/* alert layer popup */
.kg_alert_layer_wrap {
  position: relative;
}

.kg_alert_layer_popup {
  display: none;
  position: absolute;
  z-index: 5;
  width: 280px;
  right: 0;
  top: 40px;
  padding: 12px 20px 30px;
  background-color: var(--black-ui);
  border-radius: 12px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.16);
}

.kg_alert_layer_popup .kg_alert_layer_close_wrap {
  text-align: right;
  margin-bottom: 6px;
}

.kg_alert_layer_popup .kg_alert_layer_close {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 0;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 2 12 12M14 2 2 14' stroke='%23fff' stroke-width='1.2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.kg_alert_layer_popup .kg_alert_layer_desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
  text-align: left;
}

/* 기업상세 > 유튜브 링크 영역 */
.kg_video_area {
  width: 892px;
  height: 500px;
  position: relative;
  background-color: #f1f5f9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
}

.kg_video_area .btn_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* 기업상세 > 이미지리스트 스와이퍼 */
.kg_imagelist_swiper_wrap {
  width: 270px;
  height: 180px;
  overflow: hidden;
}

.kg_imagelist_swiper {
  position: relative;
}

.kg_imagelist_swiper .kg_imagelist_swiper_image {
  width: 270px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: cover;
}

.kg_imagelist_swiper .indicator {
  justify-content: center;
  width: 100%;
  height: 36px;
  padding: 6px 0;
  bottom: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.kg_imagelist_swiper .indicator .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  bottom: 0;
}

.kg_imagelist_swiper .indicator .swiper-button-prev,
.kg_imagelist_swiper .indicator .swiper-button-next {
  width: 24px;
  height: 24px;
  background-size: cover;
}

.kg_imagelist_swiper .indicator .swiper-button-prev {
  margin-right: 47px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m15.6 6-6 6 6 6' stroke='%23fff' stroke-width='1.5' stroke-miterlimit='10'/%3E%3C/svg%3E");
}

.kg_imagelist_swiper .indicator .swiper-button-next {
  margin-left: 47px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.6 6 6 6-6 6' stroke='%23fff' stroke-width='1.5' stroke-miterlimit='10'/%3E%3C/svg%3E");
}

.kg_imagelist_swiper .indicator .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  margin: 0;
}

/* 토글 */
.kg_btn_toggle .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  background: url("../images/bizhome/kglobal500/arrow_down_20px.png") no-repeat
    50% 80%;
}

.kg_btn_toggle.show .icon {
  transform: rotate(180deg);
}

.kg_toggle_target {
  overflow: hidden;
}

.kg_toggle_target.show {
  height: auto;
  overflow: visible;
}

/* 크롭 토글 */
.kg_crop_toggle_wrapper {
  height: auto;
}

.kg_crop_toggle_wrapper.show .kg_crop_toggle_target {
  height: auto !important;
  overflow: visible !important;
}

.kg_crop_toggle_wrapper .kg_crop_toggle_button .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  background: url("../images/bizhome/kglobal500/arrow_down_20px.png") no-repeat
    50% 80%;
}

.kg_crop_toggle_wrapper .kg_crop_toggle_button.show .icon {
  transform: rotate(180deg);
}

/* 필터 */
.kg_filter_list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.kg_filter_list > li {
  flex-shrink: 0;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey666);
  background: var(--white);
  border: 1px solid var(--greye4e4);
  border-radius: 50px;
  cursor: pointer;
}

.kg_filter_list > li.active {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border-color: var(--navy);
}

.kg_filter_list > li > a {
  font-weight: 500;
  color: #333;
}

.kg_filter_list > li.active > a {
  font-weight: 700;
  color: var(--white);
}

.kg_filter_list.square_type {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.kg_filter_list.square_type > li {
  flex-shrink: 0;
  height: 48px;
  line-height: 1.4;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey333);
  background: var(--white);
  border: 1px solid var(--greye4e4);
  border-radius: 4px;
  cursor: pointer;
}

.kg_filter_list.square_type > li.active {
  background: var(--pcolor);
  color: var(--white);
  border-color: var(--pcolor);
}

/* .kg_filter_list.round_type {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.kg_filter_list.round_type > li {
  height: 36px;
  line-height: 1.4;
  padding: 8px 16px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey333);
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid var(--greye4e4);
}

.kg_filter_list.round_type > li:hover {
  background-color: #e4e7f0;
  border-color: #e4e7f0;
  font-weight: 500;
  color: var(--navy);
}

.kg_filter_list.round_type > li:hover a {
  color: var(--navy);
}

.kg_filter_list.round_type > li.active {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 700;
}

.kg_filter_list.round_type > li.active:hover a {
  color: var(--white);
  font-weight: 700;
} */

.kg_filter_list.round_type {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  background-color: #F1F5F9;
  border-radius: 20px;
  box-sizing: border-box;
}

.kg_filter_list.round_type > li {
  flex: 1 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 22.5px;
  color: #64748B;
  background-color: transparent;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.kg_filter_list.round_type > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.kg_filter_list.round_type > li .count {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: #9CA3AF;
}

.kg_filter_list.round_type > li:hover {
  color: #111827;
  background-color: rgba(255, 255, 255, 0.5);
}

.kg_filter_list.round_type > li:hover a {
  color: #111827;
}

.kg_filter_list.round_type > li.active {
  color: #111827;
  background-color: #FFFFFF;
  box-shadow:
    0 2px 4px -2px rgba(0, 0, 0, 0.05),
    0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.kg_filter_list.round_type > li.active > a {
  color: #111827;
}

.kg_filter_list.round_type > li.active .count {
  color: var(--pcolor);
}

/* 플랜 카드 */
.kg_plan_card_list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.kg_plan_card {
  flex-shrink: 0;
  width: 380px;
  height: 230px;
  border-radius: 8px;
  border: solid 1px var(--greyddd);
  position: relative;
  cursor: pointer;
}

.kg_plan_card:hover {
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.15);
}

.kg_plan_card .kg_plan_info_wrap {
  height: 180px;
  padding: 20px 24px;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
}

.kg_plan_card .kg_plan_main_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}

.kg_plan_card .kg_plan_main_wrap .plan_name_wrap {
  flex-shrink: 0;
}

.kg_plan_card .kg_plan_main_wrap .plan_name_wrap .kglobal {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--pcolor);
}

.kg_plan_card .kg_plan_main_wrap .plan_name_wrap .plan_type {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  color: var(--pcolor);
}

.kg_plan_card .kg_plan_main_wrap .plan_price_wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.kg_plan_card .kg_plan_main_wrap .plan_price_wrap .price_wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.kg_plan_card .kg_plan_main_wrap .plan_price_wrap .price_wrap .price {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  color: var(--black);
}

.kg_plan_card .kg_plan_main_wrap .plan_price_wrap .won {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.kg_plan_card .kg_plan_main_wrap .plan_price_wrap .won strong {
  font-weight: 500;
}

.kg_plan_card .kg_plan_main_wrap .plan_price_wrap .vat {
  font-size: 12px;
  color: var(--grey999);
  letter-spacing: -0.24px;
}

.kg_plan_card .kg_plan_desc_wrap {
  padding-top: 16px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.kg_plan_card .kg_plan_check_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  background-color: #f8f8f8;
  border-radius: 0 0 7px 7px;
}

.kg_plan_card .kg_plan_check_wrap .desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  color: var(--black);
}

.kg_plan_card .kg_plan_check_wrap .radio {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.108 6.696 10.2 14.604l-4.308-4.296L4.2 12l6 6 9.6-9.6-1.692-1.704z' fill='%23CCC'/%3E%3C/svg%3E");
}

.kg_plan_card .kg_plan_check_wrap .radio input[type="radio"] {
  visibility: hidden;
}

.kg_plan_card .tooltip {
  position: absolute;
  right: 22px;
  top: -6px;
  padding: 3px 6px;
  background: #ee614f;
}

.kg_plan_card.active {
  border-color: var(--pcolor);
}

.kg_plan_card.active .kg_plan_check_wrap {
  background-color: var(--pcolor);
}

.kg_plan_card.active .kg_plan_check_wrap .desc {
  color: var(--white);
}

.kg_plan_card.active .kg_plan_check_wrap .radio {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.108 6.696 10.2 14.604l-4.308-4.296L4.2 12l6 6 9.6-9.6-1.692-1.704z' fill='%23fff'/%3E%3C/svg%3E%0A");
}

/* 체크 리스트 */
.kg_check_list > li {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  flex-wrap: nowrap;
  font-size: 13px;
  color: var(--grey666);
  text-transform: none;
}

.kg_check_list > li::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m13.698 4.652-6.083 6.083-3.313-3.304L3 8.732l4.615 4.616L15 5.963l-1.302-1.31z' fill='%2322AA3D'/%3E%3C/svg%3E%0A");
}

/* 이용내역 박스 */
.kg_plan_use_box {
  padding: 24px;
  background-color: var(--p5);
}

.kg_plan_use_box_inner {
  padding: 20px;
  background-color: #fff;
}

.kg_plan_use_box .use_status {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  padding: 0 8px;
  border-radius: 50px;
  border: 1px solid var(--orange);
  margin-bottom: 4px;
}

.kg_plan_use_box .kg_plan_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.kg_plan_use_box .plan_title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  color: var(--pcolor);
}

.kg_plan_use_box .kg_check_list {
  margin: 16px 0;
}

.kg_plan_use_box .kg_check_list li {
  margin-bottom: 2px;
}

.kg_plan_use_box .notice {
  padding: 12px 0 0;
  border-top: 1px solid var(--greye4e4);
}

.kg_plan_use_box .notice li {
  margin-bottom: 2px;
}

/* 서비스 결제 박스 */
.kg_service_pay_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 50px 30px 30px;
  background-color: #f8f8f8;
}

.kg_service_pay_box .btn_pay_service {
  width: 100%;
  margin-top: 30px;
}

/* 서비스 결제 박스 레이아웃 */
.kg_pay_info_layout {
  flex-shrink: 0;
  width: 275px;
}

.kg_pay_info_layout .kg_pay_info_title_wrap {
  padding: 6px 0 14px;
  margin-bottom: 12px;
  border-bottom: solid 1px var(--greyccc);
}

.kg_pay_info_layout .kg_pay_info_title_wrap.no_border {
  padding: 0 0 8px 0;
  border-bottom: none;
}

.kg_pay_info_layout .kg_pay_info_title {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey333);
}

.kg_pay_info_layout .kg_pay_info_title_wrap .checkbox_all {
  width: 100%;
  padding-top: 11px;
  font-size: 13px;
}

.kg_pay_info_layout .kg_pay_info_contents .check_box {
  width: 221px;
}

.kg_pay_info_layout
  .kg_pay_info_contents
  .kg_agreement_list
  li:first-of-type
  .check_box {
  width: 281px;
}

.kg_pay_info_layout .kg_pay_info_contents .check_box > label {
  font-size: 13px;
  align-items: flex-start;
}

.kg_pay_info_layout .kg_pay_info_contents .check_box > label::before {
  flex-shrink: 0;
}

.kg_pay_info_layout .kg_pay_info_contents .check_box > label::after {
  transform: none;
  top: 3px;
}

.kg_pay_info_layout .kg_pay_info_contents .check_box > label span {
  white-space: unset;
}

/* 서비스 결제금액 리스트 */
.kg_pay_total_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.kg_pay_total_list dt,
.kg_pay_total_list dd {
  font-size: 14px;
  color: var(--black);
}

.kg_pay_total_list dt.price,
.kg_pay_total_list dd.price {
  font-family: "Inter";
}

.kg_pay_total_list.total dt,
.kg_pay_total_list.total dd {
  font-weight: 500;
  color: var(--navy);
}

.kg_pay_total_list.total dd.price {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
}

/* 약관동의 리스트 */
.kg_agreement_list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.kg_agreement_list li:last-of-type {
  margin-bottom: 0;
}

.kg_agreement_list li .check_box {
  flex-shrink: 0;
}

.kg_agreement_list li .btn_more {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: -0.24px;
  color: var(--grey666);
  text-decoration: underline;
  background-color: transparent;
}

/* 등록 레이아웃 */
.kg_register_layout {
  padding: 60px 0 177px;
  background: #f8f8f8;
}

.kg_register_layout .kg_layout_inner {
  width: 1280px;
  margin: 0 auto;
}

.kg_register_layout .kg_layout_title_wrap {
  margin-bottom: 40px;
}

.kg_register_layout .kg_layout_main_title {
  font-size: 32px;
  font-weight: bold;
  color: var(--black);
  letter-spacing: -0.64px;
  text-align: center;
}

.kg_register_layout .kg_layout_main_desc {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: var(--black);
  text-align: center;
}

.kg_register_layout .kg_contents_wrap {
  background-color: #fff;
  border: 1px solid var(--greye4e4);
  padding: 20px 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.03);
}

.kg_register_layout .layout_table th {
  padding: 16px 0;
  font-weight: 500;
}

.kg_register_layout .layout_table td {
  padding: 16px 8px;
}

.kg_register_layout .layout_table tr:first-of-type th {
  padding: 0 0 16px 0;
}

.kg_register_layout .layout_table tr:first-of-type td {
  padding: 0 0 16px 8px;
}

.kg_register_layout .layout_table tr:last-of-type th,
.kg_register_layout .layout_table tr:last-of-type td {
  border-bottom: none;
}

.kg_register_layout .layout_table tr:last-of-type th {
  padding: 16px 0 0 0;
}

.kg_register_layout .layout_table tr:last-of-type td {
  padding: 16px 8px 0 8px;
}

.kg_register_layout .check_box > label {
  margin-bottom: 0;
  color: var(--black);
}

.kg_register_layout .kg_submit_btn_wrap {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.kg_register_layout .kg_submit_btn_wrap.right {
  justify-content: flex-end;
}

.kg_register_layout .kg_submit_btn_wrap.between {
  justify-content: space-between;
}

.kg_register_layout .kg_submit_btn_wrap > button {
  font-weight: 500;
}

/* ai 검색창 */
.kg_search_wrap {
  position: relative;
  width: 640px;
}

.kg_search_wrap::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1196)'%3E%3Cpath d='M22.4574 19.9389L17.0889 14.5536C18.3512 12.6894 18.8476 10.5146 18.5782 8.02905C18.2473 5.93476 17.3467 4.1665 15.8767 2.72428C14.3989 1.25904 12.6094 0.376832 10.5082 0.077648C8.43007 -0.160165 6.55207 0.169705 4.87418 1.06726C3.21938 1.9955 1.92633 3.28429 0.995029 4.93364C0.094511 6.60601 -0.236448 8.47783 0.00215019 10.5491C0.302323 12.6434 1.18745 14.427 2.65752 15.8999C4.10451 17.3958 5.8786 18.2934 7.97981 18.5926C10.4736 18.8611 12.6556 18.3663 14.5259 17.1082L19.929 22.459C20.2907 22.8195 20.7141 22.9998 21.1989 22.9998C21.6761 22.9998 22.0956 22.8195 22.4574 22.459C22.8191 22.0984 23 21.6803 23 21.2047C23 20.7214 22.8191 20.2995 22.4574 19.9389ZM3.47722 9.32935C3.50801 7.71836 4.07757 6.37203 5.1859 5.29036C6.27114 4.17801 7.62576 3.60649 9.24977 3.57581C10.8738 3.60649 12.24 4.17801 13.3483 5.29036C14.4335 6.37203 14.9915 7.71836 15.0223 9.32935C14.9915 10.948 14.4335 12.2982 13.3483 13.3799C12.24 14.4922 10.8738 15.0599 9.24977 15.0829C7.62576 15.0599 6.27114 14.4922 5.1859 13.3799C4.07757 12.2982 3.50801 10.948 3.47722 9.32935Z' fill='%232563EB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1196'%3E%3Crect width='23' height='23' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.kg_search_wrap .kg_search_input {
  width: 100%;
  height: 80px;
  padding: 8px 144px 8px 76px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.51px;
  color: var(--navy);
  border: 2px solid #80a9fb;
  border-radius: 24px;
  background-color: #fff;
  transition: all 0.2s ease;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.kg_search_wrap .kg_search_input::placeholder {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.51px;
  color: #757575;
}

.kg_search_wrap .kg_search_input:focus {
  border: none;
  box-shadow: 0 20px 40px 0 rgba(14, 31, 72, 0.2);
}

.kg_search_wrap .kg_btn_search {
  position: absolute;
  right: 11px;
  top: 10px;
  min-width: 142px;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: #fff;
  background-color: var(--pcolor);
  border-radius: 18px;
  padding: 16px 25px 16px 23.125px;
  transition: all 0.2s ease;
  box-shadow:
    0 4px 6px -4px #bfdbfe,
    0 10px 15px -3px #bfdbfe,
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.kg_search_wrap .kg_btn_search:hover {
  background-color: rgb(29 78 216);
  transform: scale(1.03);
}

.kg_search_wrap .kg_search_input:hover,
.kg_search_wrap .kg_search_input:focus {
  border: solid 1px #c8d5f0;
  transition: all 0.2s ease;
}

/* 추천 검색어 영역 */
.kg_search_keyword_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.kg_search_keyword_wrap > dt {
  font-size: 16px;
  letter-spacing: -0.32px;
  color: var(--grey333);
}

/* 추천 검색어 리스트 */
.kg_recom_keyword_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 4px 0;
  margin-bottom: 16px;
}

.kg_recom_keyword_list .kg_recom_keyword_title {
  flex-shrink: 0;
  height: 32px;
  padding: 7px 13px;
  border-radius: 8px;
  background-color: #1e293b;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.kg_recom_keyword_list > dd {
  flex-shrink: 0;
  height: 32px;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid #e5eaf6;
  background-color: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--desc);
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

/* 메뉴 리스트 */
.kg_menu_wrap {
  position: relative;
}

.kg_menu_wrap .kg_btn_menu {
  font-size: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6.2' cy='12' r='1.4' fill='%23999'/%3E%3Ccircle cx='12' cy='12' r='1.4' fill='%23999'/%3E%3Ccircle cx='17.8' cy='12' r='1.4' fill='%23999'/%3E%3C/svg%3E");
}

.kg_menu_wrap .kg_menu_list {
  display: none;
  position: absolute;
  top: 25px;
  right: -37px;
  width: 100px;
  padding: 6px 0;
  background: #fff;
  border-radius: 2px;
  z-index: 1;
  box-shadow:
    0 0 1px 0 rgba(0, 0, 0, 0.3),
    0 3px 12px 0 rgba(0, 0, 0, 0.08);
}

.kg_menu_wrap .kg_menu_list .kg_menu_list_item {
  padding: 3px 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.21px;
  color: #000;
  cursor: pointer;
}

.kg_menu_wrap .kg_menu_list .kg_menu_list_item:hover {
  background-color: var(--p5);
}

.kg_menu_wrap .kg_menu_list .kg_menu_list_item.clicked {
  color: var(--pcolor);
}

/* 딜링페이 모듈 */
.dealinkPay_layer_pop {
  background-color: rgba(0, 0, 0, 0.6);
}

.dealinkPay_layer_pop .dealinkPay_module_wrapper {
  height: 792px !important;
}

.dealinkPay_layer_pop .dealinkPay_module_wrapper .content_wrap .pay_title_wrap {
  height: 64px;
  background: var(--greye4e4);
  border-bottom: 1px solid #ccc;
}

.dealinkPay_layer_pop
  .dealinkPay_module_wrapper
  .content_wrap
  .pay_title_wrap
  .pay_title {
  font-size: 20px;
}

.dealinkPay_layer_pop
  .dealinkPay_module_wrapper
  .content_wrap
  .pay_title_wrap
  .btn_close_pay_pop {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 2 20 20M22 2 2 22' stroke='%230D0D0D' stroke-width='1.4' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.dealinkPay_layer_pop .dealinkPay_module_wrapper .card_info {
  max-height: 620px;
  overflow-y: auto;
}

.dealinkPay_module_wrapper .content_wrap .pay_cont.billing_form .info_text {
  text-transform: none;
}

.dealinkPay_module_wrapper
  .content_wrap
  .pay_cont
  .of_check_box
  > label:before {
  flex-shrink: 0;
}

.dealinkPay_module_wrapper
  .content_wrap
  .pay_cont
  .of_check_box
  input:checked
  + label:after {
  top: 50% !important;
  transform: translateY(-70%) rotate(45deg) !important;
}

/* 소개페이지 레이아웃 */
.kg_introduce_desc_wrap .kg_introduce_title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: -0.64px;
  color: var(--black);
  padding-top: 20px;
  position: relative;
}

.kg_introduce_desc_wrap .kg_introduce_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 4px;
  background-color: var(--black);
}

.kg_introduce_desc_wrap .kg_introduce_desc {
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.36px;
  text-align: left;
}

/* 상단 bg 타이틀 영역 */
.kg_bg_title_wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.kg_bg_title_wrap .kg_bg_title_inner {
  width: 1280px;
  margin: 0 auto;
}

.kg_bg_title_wrap .kg_bg_title_inner .kg_bg_title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: -0.64px;
  line-height: 1.4;
  text-align: center;
}

/* 메인 비주얼 */
/* .kg_main_visual_inner {position: absolute; left: 50%; top: 60px; transform: translateX(-50%); width: 665px; z-index: 10;}
.kg_main_visual_desc_wrap {text-align: center;}
.kg_main_visual_desc_wrap .kg_main_visual_title {font-size: 80px; font-weight: 700; line-height: 1.2; letter-spacing: -3.2px; color: var(--white); margin-bottom: 4px;}
.kg_main_visual_desc_wrap .kg_main_visual_sub_title {font-size: 20px; font-weight: 500; letter-spacing: -0.4px; color: var(--white);}
.kg_main_visual_desc_wrap .kg_main_visual_desc {margin: 36px 0; font-size: 18px; font-weight: 500; line-height: 1.5; letter-spacing: -0.36px; color: var(--white);}
.kg_main_visual_btn_wrap {display: flex; justify-content: center; align-items: flex-start;}
.kg_main_visual_btn_wrap .kg_main_visual_btn {flex-shrink: 0; height: 50px; line-height: 50px; min-width: 170px; border-radius: 0;} */

/* 기업상세 > 인디게이터 */
.indicator {
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 100;
}

.indicator .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.indicator .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e5e7eb;
  opacity: 1;
}

.indicator .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--pcolor);
}

.indicator .swiper-button-prev,
.indicator .swiper-button-next {
  position: static;
  margin-top: 0;
  width: 40px;
  height: 40px;
  background: var(--white)
    url("../images/bizhome/kglobal500/company_detail/ic_prev_swiper.png")
    no-repeat center / 6px 10.5px;
  border-radius: 100%;
  border: 1px solid #f3f4f6;
  font-size: 0;
  box-shadow:
    0 2px 8px 0 rgba(0, 0, 0, 0.04),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.indicator .swiper-button-prev::after,
.indicator .swiper-button-next::after {
  display: none;
}

.indicator .swiper-button-prev {
  margin-right: 8px;
}

.indicator .swiper-button-next {
  background-image: url("../images/bizhome/kglobal500/company_detail/ic_next_swiper.png");
}

/* 심사위원 박스 */
.wkbc_people_box_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.wkbc_people_box_list .wkbc_people_box {
  position: relative;
}

.wkbc_people_box_list .wkbc_people_box::after {
  position: absolute;
  top: 0;
  right: -32px;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #f2f4f7;
}

.wkbc_people_box_list .wkbc_people_box:last-of-type::after {
  display: none;
}

.wkbc_people_box .wkbc_people_box_title {
  padding: 20px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.48px;
  text-align: center;
  color: var(--navy);
  background-color: #e4e7f0;
}

.wkbc_people_box .wkbc_people_box_contents {
  padding: 40px 20px;
  background: #f2f4f7;
}

.wkbc_people_box.white_type .wkbc_people_box_title {
  padding: 10px 0;
  font-size: 18px;
  letter-spacing: -0.36px;
}

.wkbc_people_box.white_type .wkbc_people_box_contents {
  padding: 30px 0 0;
  background-color: #fff;
}

.wkbc_people_box .wkbc_people_info_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px 20px;
}

.wkbc_people_box .wkbc_people_info_list li {
  width: 391px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 16px;
}

.wkbc_people_box .wkbc_people_info_list li.link {
  cursor: pointer;
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 100%;
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(1)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer01.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(2)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer02.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(3)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer03.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(4)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer04.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(5)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer05.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(6)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer09.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(7)
  .wkbc_people_info_image {
  width: 80px;
  height: 147px;
  border-radius: 0;
  background-image:
    url("../images/bizhome/kglobal500/pitching/img_organizer08.png"),
    url("../images/bizhome/kglobal500/pitching/img_organizer07.png");
  background-position:
    0px 100%,
    0px 0px;
  background-size: 80px;
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(8)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer11.png");
}

.wkbc_people_box
  .wkbc_people_info_list
  li:nth-of-type(9)
  .wkbc_people_info_image {
  background-image: url("../images/bizhome/kglobal500/pitching/img_organizer10.png");
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_desc {
  flex: 1;
  width: 229px;
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.32px;
  color: var(--black);
  margin: 0 0 10px;
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_detail {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.26px;
  color: var(--grey333);
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_logo {
  width: 160px;
  height: 34px;
  object-fit: contain;
  margin: 4px 0 0;
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_logo.forbiz {
  width: 109.3px;
  height: 23px;
  margin: 7px 0 0;
}

.wkbc_people_box .wkbc_people_info_list li .wkbc_people_info_logo.challenge {
  width: 102px;
  height: 33px;
  margin: 4px 0 0;
}

.wkbc_people_box .wkbc_people_info_list.col_type li {
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: 200px;
  padding: 0 14px;
}

.wkbc_people_box .wkbc_people_info_list.col_type li .wkbc_people_info_logo {
  height: 30px;
  width: auto;
  margin: 0;
}

.wkbc_people_box .wkbc_people_info_list.col_type li .wkbc_people_info_name {
  display: block;
  font-size: 14px;
  letter-spacing: -0.28px;
  margin: 0 0 8px;
}

.wkbc_people_box .wkbc_people_info_list.col_type li .wkbc_people_info_desc {
  text-align: center;
}

.wkbc_people_box .wkbc_people_info_list.col_type li .wkbc_people_info_detail {
  font-size: 12px;
  letter-spacing: -0.24px;
  color: var(--grey666);
}

.wkbc_people_box
  .wkbc_people_info_list.col_type
  li
  .wkbc_people_info_detail
  .sup {
  font-size: 9px;
}

/* 투자사 로고 리스트 */
.wkbc_invest_logo_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.wkbc_invest_logo_list > li {
  width: 220px;
  height: 80px;
  border: 1px solid #e4e7f0;
  text-align: center;
}

.wkbc_invest_logo_list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.wkbc_invest_logo_list > li.banf img {
  width: 128px;
}

.wkbc_invest_logo_list > li.remex img {
  width: 138px;
}

.wkbc_invest_logo_list > li.promedius img {
  width: 164px;
}

.wkbc_invest_logo_list > li.future_sense img {
  width: 96px;
}

.wkbc_invest_logo_list > li.goopa img {
  width: 132px;
}

