/* 웹폰트 */


/* 전역 설정 */
:root {
  --effect-text: #000;
  --effect-text2: #fff;
  --effect-point: #9F80F6;
  --effect-point2: #B40404;
  --effect-point3: #ffdd93;
}

/* 폰트 설정 */

/* _manager.css.php에 편입시키면 위의 코드를
--effect-point: <?=$css['color_point'][0]?>; 로 수정하여
아보카도 관리자 설정의 포인트 색상을 자동 불러오기 할 수 있습니다 */

/* 서식들 */

.textggu--etc1 {
  border-bottom: 3px double #ef535366;
  margin-bottom: -3px;
  display: inline-block;
  height: 16px;
}
.textggu--etc2 {
  background: linear-gradient(45deg, #ffd64973, #ffe14e57);
  border-left: 3px solid #fbdf5e;
  border-right: 3px solid #fbdf5e70;
  text-shadow: 0px 0px 1px var(--shadow);
}

.textggu--etc3 {
  font-size: 12px;
  filter: drop-shadow(0 0 1px var(--effect-text2));
}

/* 기본 상태의 밑줄 텍스트 */
.textggu--toggle summary u {
    opacity: 1;
    text-decoration: underline;
    cursor: pointer !important;
}

.textggu--toggle summary:hover u {
    color: var(--lt-color-point); /* 호버 시 텍스트 컬러 변경 */
}

/* 1. 토글이 열렸을 때(open) + 내부의 u 태그만 투명도 조절 */
.textggu--toggle[open] summary u {
    opacity: 0.7;
}

/* 2. 화살표(marker)는 투명도 영향을 받지 않도록 명시 (선택사항) */
.textggu--toggle summary::marker {
    opacity: 1 !important;
    color: var(--lt-color-point);
}

/* 텍스트 서식 */
a.blur-txt /*텍스트 블러*/
{filter:blur(5px);color:CurrentColor !important;cursor: pointer;}

a.none-blur /*블러 해제*/
{filter:blur(0px);color:CurrentColor !important;font-family: inherit;cursor: pointer;}

span.italictext /*기울임*/
{font-style: italic;font-family: inherit;}

span.txt-box 
{
color: var(--lt-color-default); /*박스 안 색깔*/
background-color: var(--lt-color-point); /*박스 색깔*/
padding: 0px 2px;
}