@charset "UTF-8";
.demo-detail-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-detail-box .detail-title {
  width: 100%;
  height: auto;
}
.demo-detail-box .detail-title h4 {
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 15px;
  position: relative;
}
.demo-detail-box .detail-title h4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 16px;
  background: #E83C7A;
}

.demo-detail-box .detail-title2 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 15px;
  position: relative;
}
.demo-detail-box .detail-title2 h4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 16px;
  background: #E83C7A;
}

.demo-detail-box .demo-textarea {
  width: 100%;
  height: 150px;
}
.demo-detail-box .demo-textarea > textarea {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  line-height: 22px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 15px;
  resize: none;
}
.demo-detail-box .demo-textarea > textarea::placeholder {
  color: #999999;
  font-size: 0.875rem;
  font-weight: 400;
}
.demo-detail-box .demo-table {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.demo-detail-box .demo-table table {
  border-top: 2px solid #8ba5c3;
}
.demo-detail-box .demo-table table tr:hover {
  background: none;
}
.demo-detail-box .demo-table table th {
  color: #4574ab;
  font-size: 0.938rem;
  background: #fbfbff;
  padding: 5px 10px;
  border-bottom: 1px solid #cadbef;
  border-right: 1px solid #cadbef;
  line-height: 16px;
}
.demo-detail-box .demo-table table th:last-child {
  border-right: 0;
}
.demo-detail-box .demo-table table td {
  font-weight: 400;
  border-bottom: 1px solid #cadbef;
  border-right: 1px solid #cadbef;
  padding: 10px 15px;
  line-height: 24px;
  cursor: initial;
}
.demo-detail-box .demo-table table td:last-child {
  border-right: 0;
}
.demo-detail-box .demo-table table td span {
  color: #4075ff;
  font-weight: 400;
  cursor: pointer;
}
.demo-detail-box .demo-table table td span:hover {
  text-decoration: underline;
}
.demo-detail-box .demo-table table td > textarea {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  line-height: 22px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 15px;
  resize: none;
}
.demo-detail-box .demo-table table td > input {
  width: 100%;

  font-size: 1rem;
  line-height: 22px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 15px;

}


.demo-detail-box .demo-table table td > textarea::placeholder {
  color: #999999;
  font-size: 0.875rem;
  font-weight: 400;
}
.demo-detail-box .demo-table table td a {
  color: #0400ff;
  font-weight: 400;
  text-decoration: underline;
}
.demo-detail-box .demo-table table td a:hover {
  color: #0400dd;
}
.demo-detail-box .demo-table table td .audio-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-detail-box .demo-table table td .audio-box audio {
  width: 100%;
}
.demo-detail-box .demo-table table td .audio-box .audio-btn {
  width: auto;
  height: auto;
  display: flex;
  gap: 10px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}
.demo-detail-box .demo-table table td .audio-box .audio-btn > button {
  width: 90px;
  height: 40px;
  padding: 0 20px;
  color: #fff;
  background: #E83C7A;
  border-radius: 2px;
}

.demo-detail-box .demo-table table td .audio-box .audio-btn > button:disabled  {
    color: #aaa; /* 흐릿한 텍스트 색상 */
    background: #f0f0f0; /* 흐릿한 배경 */
    border-radius: 2px;
    cursor: not-allowed; /* 클릭 불가한 커서 */
    opacity: 0.6; /* 전체적으로 투명도 조정 */
    pointer-events: none; /* 클릭 막기 */}

.demo-detail-box .demo-table table td .audio-box .audio-btn > button:hover {
  background: #cd3167;
}
.demo-detail-box .demo-table table td .audio-box .audio-btn button.download-btn {
  background: #6675a5;
}
.demo-detail-box .demo-table table td .audio-box .audio-btn button.download-btn:hover {
  background: #515e86;
}
.demo-detail-box .demo-table table td .demo-color-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.demo-detail-box .demo-table table td .demo-color-box .color-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-detail-box .demo-table table td .demo-color-box .color-box > div {
  width: 15px;
  height: 15px;
  background-color: #434042;
}
.demo-detail-box .demo-table .td-text-left td {
  text-align: left;
}
.demo-detail-box .demo-select {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.demo-detail-box .demo-select select {
  width: 100%;
  height: 45px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0 15px;
}
.demo-detail-box .demo-detail-text {
  width: 100%;
  height: auto;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 20px;
  font-weight: 400;
  line-height: 26px;
}
.demo-detail-box .demo-detail-text span {
  color: #366fff;
  cursor: pointer;
}
.demo-detail-box .demo-detail-text span:hover {
  text-decoration: underline;
}
.demo-detail-box .demo-tap-box {
  width: 100%;
  height: auto;
  background: #f8f8f8;
  border-radius: 2px;
  padding: 10px;
}
.demo-detail-box .demo-tap-box ul {
  width: 100%;
  height: auto;
  display: grid;
  --auto-grid-min-size: 300px;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  gap: 5px;
}
.demo-detail-box .demo-tap-box ul li {
  height: 40px;
  color: #777;
  font-weight: 400;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-detail-box .demo-tap-box ul li:hover {
  color: #fff;
  font-weight: 400;
  background: #5869FF;
  border: 1px solid #5869FF;
}
.demo-detail-box .demo-tap-box ul li.active {
  color: #fff;
  font-weight: 400;
  background: #5869FF;
  border: 1px solid #5869FF;
}
.demo-detail-box .demo-check-box {
  width: 100%;
  height: auto;
}
.demo-detail-box .demo-check-box ul {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: grid;
  --auto-grid-min-size: 150px;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  gap: 10px;
}
.demo-detail-box .demo-check-box ul li {
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.demo-detail-box .demo-check-box ul li input[type=radio] {
  position: absolute;
  opacity: 0;
}
.demo-detail-box .demo-check-box ul li input[type=radio] + .radio-label {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-detail-box .demo-check-box ul li input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  left: 15px;
  cursor: pointer;
  transition: all 250ms ease;
}
.demo-detail-box .demo-check-box ul li input[type=radio]:checked + .radio-label:before {
  background-color: #5869FF;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
.demo-detail-box .demo-check-box ul li input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #5869FF;
}
.demo-detail-box .demo-check-box ul li input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.demo-detail-box .demo-check-box ul li input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
.demo-detail-box .demo-check-box ul li img {
  max-width: 100%;
  height: 100%;
}

.demo-detail-box .demo-check-box ul li video {
  max-width: 100%;
  height: 100%;
}

.demo-detail-box .demo-check-box ul li:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.demo-detail-box .demo-check-box ul li:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.demo-detail-box .demo-check-box ul li:hover {
  background: #F8F8FF;
  border: 1px solid #CFD3FF;
  z-index: 1;
}
.demo-detail-box .demo-check-box ul li.active {
  background: #F8F8FF;
  border: 1px solid #CFD3FF;
  z-index: 1;
}
.demo-detail-box .demo-video-box {
  width: 100%;
  height: auto;
}
.demo-detail-box .demo-video-box ul {
  width: 100%;
  height: 200px;
  display: flex;
  border-radius: 5px;
}
.demo-detail-box .demo-video-box ul li {
  flex: 1;
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -1px;
  gap: 6px;
}
.demo-detail-box .demo-video-box ul li img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.demo-detail-box .demo-video-box ul li video {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.demo-detail-box .demo-video-box ul li span {
  font-size: 0.938rem;
  font-weight: 800;
}
.demo-detail-box .demo-video-box ul li button {
  width: 50px;
  height: 25px;
  color: #fff;
  font-size: 0.875rem;
  background: #1D99A7;
  border-radius: 2px;
  margin-top: 5px;
}
.demo-detail-box .demo-video-box ul li button:hover {
  background: #157b86;
}
.demo-detail-box .demo-video-box ul li:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.demo-detail-box .demo-video-box ul li:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.demo-detail-box .demo-video-box ul li.active {
  background: #F8F8FF;
  border: 1px solid #CFD3FF;
  z-index: 1;
}
.demo-detail-box .demo-detail-img {
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-detail-box .demo-detail-img img {
  max-width: 100%;
}
.demo-detail-box .demo-detail-img video {
  margin-top:20px;
  max-width: 100%;
}

.demo-detail-box .demo-detail-result {
  width: 100%;
  height: auto;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 25px;
  font-weight: 400;
  line-height: 24px;
}
.demo-detail-box .demo-btn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.demo-detail-box .demo-btn button {
  width: 200px;
  height: 50px;
  color: #fff;
  background: #E83C7A;
  border-radius: 2px;
}
.demo-detail-box .demo-btn button:hover {
  background: #cd3167;
}
.demo-detail-box .demo-btn button:disabled {
    color: #aaa; /* 흐릿한 텍스트 색상 */
    background: #f0f0f0; /* 흐릿한 배경 */
    border-radius: 2px;
    cursor: not-allowed; /* 클릭 불가한 커서 */
    opacity: 0.6; /* 전체적으로 투명도 조정 */
    pointer-events: none; /* 클릭 막기 */
}


.demo-detail-box .demo-after-text {
  position: relative;
}
.demo-detail-box .demo-after-text::after {
  content: "* 데모는 최대 200자까지만 지원합니다.";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: auto;
  font-size: 0.813rem;
  color: #ff6464;
}
.guide-detail-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-detail-box .guide-text {
  width: 100%;
  height: auto;
  line-height: 22px;
}
.guide-detail-box .guide-sub-box {
  width: 100%;
  height: auto;
  background: #f8f8f8;
  border-radius: 2px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #ddd;
}
.guide-detail-box .guide-sub-box h4 {
  font-weight: 700;
}
.guide-detail-box .guide-sub-box p {
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 24px;
}
.guide-detail-box .guide-sub-box > div {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.guide-detail-box .guide-sub-box > div span {
  color: #5869FF;
  font-size: 0.875rem;
  font-weight: 400;
  background: #F8F8FF;
  border: 1px solid #CFD3FF;
  border-radius: 2px;
  padding: 1px 5px;
}
.guide-detail-box .guide-table {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.guide-detail-box .guide-table table tr:hover {
  background: none;
}
.guide-detail-box .guide-table table th {
  color: #a16e00;
  font-size: 0.938rem;
  background: #FFF9EC;
  padding: 5px 10px;
  border: 1px solid #FFDEBC;
  line-height: 16px;
}
.guide-detail-box .guide-table table td {
  font-weight: 400;
  border: 1px solid #ddd;
  padding: 10px 15px;
  line-height: 24px;
  cursor: initial;
}
.guide-detail-box .guide-table .td-text-left td {
  text-align: left;
}
.guide-detail-box .guide-tap-box {
  width: 100%;
  height: 600px;
  display: flex;
}
.guide-detail-box .guide-tap-box .guide-left-box {
  width: 200px;
  height: 100%;
  border-right: 1px solid #ddd;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.guide-detail-box .guide-tap-box .guide-left-box button {
  width: 100%;
  height: 50px;
  color: #888888;
  font-weight: 400;
  background: #F8F8F8;
  border: 1px solid #EDEDED;
  border-radius: 2px;
}
.guide-detail-box .guide-tap-box .guide-left-box button:hover {
  color: #5869FF;
  font-weight: 600;
  background: #F8F8FF;
  border: 1px solid #CFD3FF;
}
.guide-detail-box .guide-tap-box .guide-left-box button.active {
  color: #5869FF;
  font-weight: 600;
  background: #F8F8FF;
  border: 1px solid #CFD3FF;
}
.guide-detail-box .guide-tap-box .guide-right-box {
  width: calc(100% - 200px);
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-language-tap {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.demo-language-tap > button {
  width: auto;
  height: auto;
  padding: 5px 8px;
  border-radius: 25px;
  color: #999;
  font-size: 0.813rem;
  font-weight: 400;
  background: #f8f8f8;
  border: 1px solid #f8f8f8;
}
.demo-language-tap > button:hover {
  color: #E83C7A;
  background: #FEF5F8;
  border: 1px solid #FAD0DF;
  font-weight: 700;
}
.demo-language-tap button.active {
  color: #E83C7A;
  background: #FEF5F8;
  border: 1px solid #FAD0DF;
  font-weight: 700;
}

.detail .demo-detail-tap {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FAD0DF;
  padding-left: 15px;
  display: flex;
  gap: 10px;
}
.detail .demo-detail-tap button {
  width: auto;
  min-width: 120px;
  height: 45px;
  border-radius: 0;
  color: #999;
  font-size: 1rem;
  background: #f8f8f8;
  border: 1px solid #f8f8f8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 0 30px;
}
.detail .demo-detail-tap button:hover {
  color: #E83C7A;
  background: #FEF5F8;
  border: 1px solid #FAD0DF;
  border-bottom: 1px solid #FEF5F8;
  font-weight: 700;
}
.detail .demo-detail-tap button.active {
  color: #E83C7A;
  background: #FEF5F8;
  border: 1px solid #FAD0DF;
  border-bottom: 1px solid #FEF5F8;
  font-weight: 700;
}
