/*
All grid code is placed in a 'supports' rule (feature query) at the bottom of the CSS (Line 320). 
The 'supports' rule will only run if your browser supports CSS grid.
Flexbox is used as a fallback so that browsers which don't support grid will still recieve an identical layout.
*/
/* Base styles */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
*,
*:after,
*:before {
  box-sizing: border-box;
}


:root {
    font-size: 13px;
	scroll-behavior: smooth;

 /* 배경색 */
  --bodbg_color: #000000; /* 검정 */
  --bodbg_color2: #a3a2a2; /* 백색 */
  --bodbg_color3: #ffffff; /* 백색 */
  
  /* 제목 마우스 오버 색상 */
  --c-text-logo: #00ffff;
  
  /* 제목바 배경색 */
  --title_bgcolor: #6565db; /* 옅은 보라 */

  /* 글자색  (제목바 포함 ) */
  --text_color: #080808;  /* 검정 */

  /* 아이템 배경색 */
  --item_bgcolor: #969699;  /* 밝은 회색 */
  
  /* 추가하기 배경색 */
  --addcard_bgcolor: #6b6969; /* #02fafa; */

  /* 추가하기 글자색 */
  --addcard_textcolor: #0919ed;

  /* 마우스 오버시 색상 */  
  --c-hover-button: #05e7fc; /* 마우스 오버시 배경색 - 하늘색 */
  --c-hover-colorredred: #fc0505; /* 마우스 오버시 글자색 : Red */ 
  --list-item-color: #00ffff

  /* 그림자 형태 및 색상 */
  --slider-shadow: inset 0 1px 1px #ddd, 0 2px 3px #ccc;
  --dot_color: #03fc07;
}


.fa-heart { color: red; }
.fa-dev { color: #FFFF00; }
.fa-twitter-square { color:#1da0f1; }
.fa-instagram { color: #f0007c; }
.fa-linkedin{ color:#0073b1; }
.fa-codepen { color:#FFFF00; }
.fa-wifi { color: #FFFF00; }
.fa-external-link { color:#fff; }
.fa-paw { color: #FFFF00; }
.fa-fire { color: #FFFF00; }
.fa-cloud-upload { color: #FFFF00; }
.fa-cloud-download { color: #FFFF00; }
.fa-toggle-right { color: #FFFF00; }
.fa-fire { color: #FFFF00; }
.fa-fire { color: #FFFF00; }


*,
*::before,
*::after {
    box-sizing: border-box;
}

h3 {
	text-align: center; /*  */	
}



html {
  scroll-behavior: smooth
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: var(--bodbg_color);
	background: var(--bodbg_color);
    color: var(--bodbg_color);
	overflow-y: auto;  /*  hidden;  */
	overflow-x: auto; /* overflow-x: auto;   scroll */
	transition: background 0.6s;
	height: 100vh;
}

a  { 
	font: bold 16px NanumGothic; 
	color: #0000FF; /*var(--list-item-color); 	  */
	text-decoration:none; 
}

a:visited {
	color: #0000FF;
	text-decoration:none; 
	}
	
a:hover { 
	font: bold 16px NanumGothic; 
	color:var(--c-hover-colorredred); 
	text-decoration:none;
}

/*
a:active {
	color:var(--c-hover-colorredred); 
	text-decoration: none;
}
*/

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font: inherit;
    background: none;
    border: none;
    color: inherit;
    padding: 2px 10px;
    cursor: pointer;
	margin-right: 2.0em;
}

:focus {
    outline-color: #fa0;
}


.mlm {
	position: relative;
	display: flex;
	padding: 0 0.8rem;
	width:50px;
}

.warning {
	background-color: #fff;
	color:red;
}


/* Masthead */
.masthead {
    flex-basis: 4rem;
    display: flex;
    align-items: center;
	margin-top: 0em;
	margin-left: 0em;
    padding: 0 0.8rem;
    /* background: var(--color-2); */
	/* background-color: var(--color-2); /* 상단배경색 */  
	color: #0000FF; 
    box-shadow: 0 0.0rem 0.0rem rgba(0, 0, 0, 0.1); 
}

.masthead .btn { 
    background-color: var(--bodbg_color);  /* ?색 */ 
    border-radius: 5.3rem;
    transition: background-color 150ms;
	width: 30px;
	height: 30px;
	margin-top: 5px;
}

.masthead .btn:hover {
    background-color: var(--c-hover-button);
}

/* Masthead */


.boards-menu {
    display: flex;
    flex-shrink: 0;
}

.boards-btn {
    flex-basis: 9rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-2);
    margin-right: 0.8rem;
    padding: 0.6rem 0.8rem;
}

.boards-btn-icon {
    font-size: 2.1rem;
    padding-right: 0.2rem;
}

/* ************************************************ */

.select {
	font-size: 1.5rem;
	font-weight: 700;
    background-color: #00f;
	color: #fff;
    padding: 0.4rem;
	border-radius: 5.3rem;
	cursor: pointer; /* default  pointer; */
}

/* ************************************************ */


.logo {
    flex: 1;
    font-family: "Courgette", cursive;
    font-size: 2.4rem;
    font-weight: 600;
/*	background-color: var(--color-2); 
    color: var(--color-2); /* rgba(255, 255, 255, 0.5); */
    margin: 0 1rem;
    transition: color 150ms;
    text-align: center;
    white-space: nowrap;
    cursor: default; /* pointer; */
	/* height: 60px; */
}

.logo:hover {
    color: var(--c-text-logo);
}

.logo-icon {
    padding-right: 5.4rem;
}


.user-settings {
    display: flex;
    height: 50px; /* -2rem; */
    color: var(--bodbg_color);
}

.user-settings-btn {
    font-size: 1.8rem;
    width: 3rem;
    margin-right: 0.6rem;
}

.user-settings-btn:last-of-type {
    margin-right: 10;
}

*{margin: 0; padding: 0;}
#percent { position: fixed; top: 0; height: 6px; background:var(--c-hover-colorred); width: 0%; } 


/* Board info bar */
.board-info-bar {
    flex-basis: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.8rem 00;
    padding: 0 5rem;
	color: #f6f6f6;
}


.board-controls {
    display: flex;
}

.board-controls .btn {
    margin-right: 1rem;
}

.board-controls .btn:last-of-type {
    margin-right: 0;
}

.board-info-bar .btn {
    font-size: 1.4rem;
    font-weight: 400;
	background-color: var(--bodbg_color);
    transition: background-color 150ms;
    padding: 0 0.6rem;
    border-radius: 0.3rem;
    height: 3rem;
}

.board-info-bar .btn:hover {
    background-color: var(--c-hover-button); /* #006aa8; */
}

.private-btn-icon,
.menu-btn-icon {
    padding-right: 0.6rem;
    white-space: nowrap;
}

.board-title {
	background-color: var(--bodbg_color);
	
}

.board-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Lists */


/* 목록 선언 */
.lists-container {
    display: flex;
    align-items: start;
    padding: 0 0.8rem 0.8rem;
    overflow-x: auto;
	overflow-y: hidden;
    height: calc(100vh - 8.6rem);
	/* background-color: var(--bodbg_color);	 */
	margin-top: 2rem;
	margin-left: 50px;
}

.list {
    flex: 0 0 27rem;
    display: flex;
    flex-direction: column;
    background-color: var(--bodbg_color);
	color: var(--title_bgcolor);
    max-height: calc(100vh - 20.8rem);
    border-radius: 0.3rem;
    margin-right: 1rem;
	
	/* 스크롤 바 없애기 */
	::-webkit-scrollbar { width: 0px;height:0;} 
	::-webkit-scrollbar-thumb { background-color: transparent;}
	::-webkit-scrollbar-track { background-color: transparent;}
	
}


.list:last-of-type {
    margin-right: 0;
}

.list-title {
    font-size: 1.8rem;
    font-weight: 900;
	background-color: var(--title_bgcolor);
    color: var(--text_color);
    padding: 0.5rem;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

.list-items {
    flex: 1;
    display: flex;
	background-color: var(--item_bgcolor);
    flex-direction: column;
    align-content: start;
    padding: 0 0.6rem 0.5rem;
    overflow-y: auto;
}

.list-items::-webkit-scrollbar {
    width: 3px;
}

.list-items::-webkit-scrollbar-thumb {
    background-color: var(--item_bgcolor);
    border-right: 0.6rem solid gold;
	border: 1px solid transparent;
	border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.list-items::-webkit-scrollbar-track {
    background-color: var(--item_bgcolor);
	display: block;
  }
  
.list-items li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    background-color:  var(--item_bgcolor);
    padding: 0.55rem 0.5rem;
    color: var(--bodbg_color);
    border-bottom: 0.001rem solid #fff;
    border-radius: 0.3rem;
    margin-bottom: 0.006rem;
    word-wrap: break-word;
    cursor: pointer;
}

.list-items li:last-of-type {
    margin-bottom: 10px;
}

.list-items li:hover {
    background-color: var(--c-hover-button); /* #02e3f7; */
	color: var(--c-hover-colorred);
}

/* 추가하기 버튼 */
.add-card-btn {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
	background-color: var(--addcard_bgcolor);
	background: var(--addcard_bgcolor);
    color: var(--addcard_textcolor); /*#f5051d; */
    padding: 1rem;
    text-align: left;
    cursor: pointer;
}

.add-card-btn:hover {
    background-color: var(--c-bg-secondary); /* #cdd2d4; */
    color: #7c99f2; /* var(--c-bg-body); */
    text-decoration: underline;
}

.add-list-btn {
    flex: 0 0 27rem;
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    background-color: #f5051d; /* var(--c-bg-secondary); /* #006aa7; */
    color: #a5cae0; /* var(--c-hover-colorred); */
    padding: 1rem;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: background-color 150ms;
    text-align: left;
}

.add-list-btn:hover {
    background-color: #ff0000; /*var(--color-2); /* #005485; */
}

.add-card-btn::after,
.add-list-btn::after {
    content: '...';
}
/* 추가하기 버튼 */

#output {
    display:none;
    width: 90%;
	height: 85%;
	line-height: 31px;
	max-width: 100%;
	word-break:break-all;
	word-wrap:break-word;
	background: url(./back.png);
	background-repeat:no-repeat;  
	background-size:cover; 
	font-family: 'Jeju Hallasan', cursive;
	font-weight:600;
	font-size:20px;
	color: gold;
	border: 2px double transparent;
	padding: 15px;
	margin-left: 100px;
	position: absolute;
	top: 10%;
	right: 2.5%;
	overflow: auto;
}


#putout {
    display:none;
    width: 90%;
	height: 75%;
	line-height: 25px;
	max-width: 100%;
	word-break:break-all;
	word-wrap:break-word;
	background: url(./back4.jpg); 
	background-repeat:no-repeat;  
	background-size:cover; 
	font-family: 'Jeju Hallasan', cursive;
	font-weight:400;
	font-size:20px;
	color: blue;
	padding: 15px;
	margin-left: 100px;
	position: absolute;
	top: 17%;
	right: 2.5%;
	overflow: auto;
}


/*
The following rule will only run if your browser supports CSS grid.
Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 
*/

@supports (display: grid) {
    body {
        display: grid;
        grid-template-rows: 4rem 3rem auto;
        grid-row-gap: 0.8rem;
    }

    .masthead {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-column-gap: 2rem;
    }

    .boards-menu {
        display: grid;
        grid-template-columns: 9rem 18rem;
        grid-column-gap: 0.8rem;
    }

    .user-settings {
        display: grid;
        grid-template-columns: repeat(6, auto);
        grid-column-gap: 0.9rem;
    }

    .board-controls {
        display: grid;
        grid-auto-flow: column;
        grid-column-gap: 1rem;
    }

    .lists-container {
        display: grid;
        grid-auto-columns: 28rem;
        grid-auto-flow: column;
        grid-column-gap: 1rem;
    }
	
	.lists-container-small {
        display: grid;
        grid-auto-columns: 18rem;
        grid-auto-flow: column;
        grid-column-gap: 1rem;
    }

    .list {
        display: grid;
        grid-template-rows: auto minmax(auto, 1fr) auto;
    }

    .list-items {
        display: grid;
        grid-row-gap: 0.6rem;
    }

    .logo,
    .list,
    .list-items li,
    .boards-btn,
    .board-info-bar,
    .board-controls .btn,
    .user-settings-btn {
        margin: 0;
    }
}

/* ******************************* */


/* 스크롤바 넓이 변경 */
.lists-container::-webkit-scrollbar {
	width: 10px;   /* 세로축 스크롤바 길이 */
    height: 10px;  /* 가로축 스크롤바 길이 */
	scrollbar-width: thin;
}

/* 하단 스크롤바 막대색 */
.lists-container::-webkit-scrollbar-thumb {
    background-color: #00C9FF;  /* transparent;  #66a3c7; */
    border: 0.2rem solid #00C9FF;
    border-top-width: 0;
}

/* 하단 스크롤바 막대 바깥 바탕색 */
.lists-container::-webkit-scrollbar-track {
  background: transparent;  
}

/* 목록상자 스크롤바에 마우스를 올릴때의 막대색 */
.lists-container::-webkit-scrollbar-thumb:hover {
  background: #00C9FF; /* orange;  */
}


 /* 목록상자 스크롤바 설정*/
	::-webkit-scrollbar{
    width: 5px;
	scrollbar-color: red;
	scrollbar-width: thin;
	}
	::-webkit-scrollbar-track {
	 background: transparent; /* #eee; */

	}
	::-webkit-scrollbar-thumb{
    height: 10%;
	background: red; /* orange; /* gray; */
    background-color: red; /* #ff0000 /* #f10793;  /* 스크롤바 막대  배경설정*/
	box-shadow: inset 0 0 5px var(--c-hover-colorredred); /* rgba(255, 0, 0, 0.3) */
    border-radius: 10px;      /* 스크롤바 둥글게 설정    */
	}
	::-webkit-scrollbar-track{
    background-color: red; /* #ffffff; /*  rgba(13,240,192,.5); /* 스크롤바 뒷 배경 설정*/
	}
	::-webkit-scrollbar-thumb:hover {
	 background: orange;
	}
	/* 스크롤바 설정*/
	
	
/* ******************************* */
/* 목록상자 */



/* ******************************* */


/* 왼쪽 애니메이션 */
.left_flower {
	position: fixed;   /*  absolute    static   relative  fixed   */
	bottom: 0px;
	left: 80px;
	width:200px;
	height: 100px;
	z-index: -20000; 
}

.bg_flower5 {
	display:block;
	position:relative;
	bottom:50;
	right:14px;
	width:108px;
	height:80px;
	background:url(../imgs/bg_flower5.png) no-repeat;
	animation:flower5 7s ease 0s infinite normal;
	transform-origin:bottom
}
.bg_flower6 {
	display:block;
	position:absolute;
	bottom:-9px;
	right:178px;
	width:116px;
	height:100px;
	background:url(../imgs/bg_flower6.png) no-repeat;
	animation:flower6 4s ease 0s infinite normal;
	transform-origin:100% 100%;
	animation-delay:1.5s
}
.bg_dot {
	position:absolute;
	border-radius: 50%;
	background: radial-gradient(var(--dot_color), transparent);
	opacity:0;
	z-index: 10;
}
.bg_dot.dot4 {
	bottom:10px;
	right:216px;
	width: 10px;
	height: 10px;
	animation:dot4 4s ease 0s infinite normal;
	transform-origin: 100% 100%;
	animation-delay:2s
}
.bg_dot.dot5 {
	bottom:20px;
	right:140px;
	width: 12px;
	height: 12px;
	animation:dot4 4s ease 2s infinite normal;
	transform-origin: 100% 100%;
	animation-delay:2.3s
}
.bg_dot.dot6 {
	bottom:30px;
	right:125px;
	width: 11px;
	height: 11px;
	animation:dot4 4s ease 3s infinite normal;
	transform-origin: 100% 100%;
	animation-delay:1.5s
}
.bg_dot.dot7 {
	bottom:40px;
	right:100px;
	width: 8px;
	height: 8px;
	animation:dot4 4s ease 0s infinite normal;
	transform-origin: 100% 100%;
	animation-delay:3s
}
.bg_dot.dot8 {
	bottom:50px;
	right:160px;
	width: 15px;
	height: 15px;
	animation:dot4 4s ease 0s infinite normal;
	transform-origin: 100% 100%;
	animation-delay:1s
}
.bg_dot.dot9 {
	bottom:70px;
	right:165px;
	width: 5px;
	height: 5px;
	animation:dot4 4s ease 2s infinite normal;
	transform-origin: 100% 100%;
	animation-delay:2.0s
}


/* 애니메이션 */
@keyframes flower1 {
	20%{-webkit-transform:rotate(-1deg);transform:rotate(-1deg)}
	60%{-webkit-transform:rotate(1deg);transform:rotate(1deg)}
	80%{-webkit-transform:rotate(1deg);transform:rotate(1deg)}
	100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
}
@keyframes flower2 {
	20%{-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}
	60%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
	80%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
	100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
}
@keyframes flower3 {
	20%{
		-webkit-transform:scale(0.9,0.9) rotate(-50deg) translate(-40px,40px);
		transform:scale(0.9,0.9) rotate(-50deg) translate(-40px,40px);
	}
	60%{
		-webkit-transform:scale(0.7,0.7) rotate(50deg) translate(-100px,150px);
		transform:scale(0.7,0.7) rotate(50deg) translate(-100px,150px);
		opacity: 0;
	}
	80%{
		-webkit-transform:scale(0.5,0.5) rotate(50deg) translate(-200px,300px);
		transform:scale(0.5,0.5) rotate(50deg) translate(-200px,300px);
		opacity: 0;
	}
	100%{
		-webkit-transform:scale(0.5,0.5) translate(-200px,500px);
		transform:scale(0.4,0.4) translate(-200px,500px);
		opacity: 0;
	}
}
@keyframes flower4 {
	20%{
		-webkit-transform:scale(0.9,0.9) rotate(50deg) translate(-60px,100px);
		transform:scale(0.9,0.9) rotate(50deg) translate(-60px,100px);
	}
	80%{
		-webkit-transform:scale(0.5,0.5) rotate(-50deg) translate(-200px,300px);
		transform:scale(0.5,0.5) rotate(-50deg) translate(-200px,300px);
		opacity: 0;
	}
	100%{
		-webkit-transform:scale(0.5,0.5) translate(-200px,500px);
		transform:scale(0.5,0.5) translate(-200px,500px);
		opacity: 0;
	}
}
@keyframes flower5 {
	20%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}
	40%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
	60%{-webkit-transform:rotate(6deg);transform:rotate(6deg)}
	80%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}
	100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
}
@keyframes flower6 {
	20%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}
	40%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
	60%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}
	80%{-webkit-transform:rotate(6deg);transform:rotate(6deg)}
	100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
}

@keyframes dot1 {
	0% {
		-webkit-transform:scale(1,1);
		transform:scale(1,1);
		opacity: .8;
	}
	100% {
		-webkit-transform:scale(0.7,0.7) translate(110px,200px);
		transform:scale(0.7,0.7) translate(110px,200px);
		opacity: 0;
	}
}
@keyframes dot2 {
	0% {
		-webkit-transform:scale(1,1);
		transform:scale(1,1);
		opacity: .8;
	}
	100% {
		-webkit-transform:scale(0.7,0.7) translate(-110px,200px);
		transform:scale(0.7,0.7) translate(-110px,200px);
		opacity: 0;
	}
}
@keyframes dot3 {
	0% {
		-webkit-transform:scale(1,1);
		transform:scale(1,1);
		opacity: .8;
	}
	100% {
		-webkit-transform:scale(0.7,0.7) translate(0,200px);
		transform:scale(0.7,0.7) translate(0,200px);
		opacity: 0;
	}
}
@keyframes dot4 {
	0% {
		-webkit-transform:scale(1,1);
		transform:scale(1,1);
		opacity: .8;
	}
	100% {
		-webkit-transform:scale(0.7,0.7) translate(-110px,-200px);
		transform:scale(0.7,0.7) translate(-110px,-200px);
		opacity: 0;
	}
}



/*  footer   */
footer {
    background-color: var(--bodbg_color); /* #222; */
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
	bottom:30px;
    text-align: center;
    z-index: 999;
}


/*
footer p {
    margin: 10px 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida  Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
footer .fa-heart{
    color: red;
}
footer .fa-dev{
    color: #fff;
}
footer .fa-twitter-square{
  color:#1da0f1;
}
footer .fa-instagram{
  color: #f0007c;
}
fotter .fa-linkedin{
  color:#0073b1;
}
footer .fa-codepen{
  color:#fff
}
footer a {
    color: #3c97bf;
    text-decoration: none;
  margin-right:5px;
}
.youtubeBtn{
    position: fixed;
    left: 50%;
  transform:translatex(-50%);
    bottom: 45px;
    cursor: pointer;
    transition: all .3s;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
}
.youtubeBtn i{
   font-size:20px;
  float:left;
}
.youtubeBtn a{
    color:#ff0000;
    text-shadow: 0px 2px 5px rgba(0,0,0,.5);
    animation: youtubeAnim 1000ms linear infinite;
  float:right;
}
.youtubeBtn a:hover{
  color:#c9110f;
  transition:all .3s ease-in-out;
  text-shadow: none;
}
.youtubeBtn i:active{
  transform:scale(.9);
  transition:all .3s ease-in-out;
}
.youtubeBtn span{
    font-family: 'Lato';
    font-weight: bold;
    color: #fff;
    display: block;
    font-size: 12px;
    float: right;
    line-height: 20px;
    padding-left: 5px;
  
}
*/

@keyframes youtubeAnim{
  0%,100%{
    color:#c9110f;
  }
  50%{
    color:#ff0000;
  }
}
/* footer  */


/* ************************************************ */
/*
.btn2 {
  align-self: center;
  margin: 15px 0;
}
*/

.box {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  width: 90px;
  height: 30px;
  background-color: var(--slide-bgcolor);
  transition: all 1s ease;
  position: relative;
  border-radius: 30px; 
  cursor: pointer; 
}

.box .ball {
  width: 35px;
  height: 35px;
  background-color: transparent;
  transition: all 1s ease;
  position: absolute;
  border-radius: 50%;
  border: 3px solid blue;
  margin-left: 10px;
}

.box .scenary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: all 1s ease;
  padding: 5px 10px 0px 10px;
}

.mheadh3 {background-color:#BC3425;color:white}
.mheadh4 {background-color:#92549E;color:white}
.mheadh5 {background-color:#00B1CF;color:white}
.mheadh6 {background-color:#FFFFBA;color:#333}
.mheadh7 {background-color:#00F;color:white}


    /* =====================
       좌측 아코디언 메뉴
       ===================== */
.leftMenu{
	height: 90%; /* 100%;*/
	background-color:  #00838f;
	position: fixed;
	left	: 0;
    top:0;
	width	: 42px;
	overflow: hidden;
	transition: .5s cubic-bezier(.8, .5, .2, 1.4);
	z-index: 20;
}
.hamburger{
	width	: 35px;
	height	: 35px;
	border-radius: 50%;
	background-color: #ffc107;
	float	: right;
	margin-right: 2px;
	margin-top: 10px; 
	text-align: center;
	cursor	: pointer; 
	box-shadow: 0px 3px 4px rgba(0,0,0,.5); 
	position: relative; 
	transform: rotate(0deg);
}
.hamburger.open{
	background-color: tomato;
	transition: all ease .5s;
}
.hamburger:hover {
	box-shadow: none; 
	transition: all ease .5s;
	transform: rotate(360deg);
}
.hamburger span{
	width	: 60%;
	height	: 3px;
	background-color: #000;
	display: block;
	border-radius: 1px;
	float	: left;
	margin-left: 20%; 
	transition: all ease .3s;
}
.hamburger span:nth-child(1){
	margin-top: 7px; 
}
.hamburger span:nth-child(2){
	margin-top: 3px; 
}
.hamburger span:nth-child(3){
	margin-top: 3px; 
}
.hamburger span:nth-child(4){
	margin-top: 3px; 
}

.open span:nth-child(1){
	background-color: #fff;
	transform: rotate(45deg);
	transition-timing-function 	: ease-in-out;
	position: absolute;
	top: 5px;
	right: 8px;
	width: 25px;
	transition: all ease .5s;
	border-radius: 10px; 
}
.open span:nth-child(2){
	background-color 	: #fff;
	transition-timing-function 	: ease-in-out;
	margin-top: 18px;
	opacity: 0;
	transition: all ease .5s;
}
.open span:nth-child(3){
	background-color 	: #fff;
	transform: rotate(-45deg);
	transition-timing-function 	: ease-in-out;
	margin-top: 0px;
	position: absolute;
	top: 18px;
	right: 8px;
	width: 25px;
	transition: all ease .5s;
	border-radius: 10px; 
}
.open span:nth-child(4){
	background-color 	: #fff;
	transform: rotate(-45deg);
	transition-timing-function 	: ease-in-out;
	margin-top: 0px;
	position: absolute;
	top: 18px;
	right: 8px;
	width: 25px;
	transition: all ease .5s;
	border-radius: 10px; 
}
.openMenu{
	width: 250px;
	transition: all ease 1s;
	overflow: hidden;
	transition: .5s cubic-bezier(.8, .5, .2, 1.4);
}
.leftMenuList{
	margin-top: 70px;
	list-style: none;
	padding: 0;    
}
.leftMenuList li{
	width: 250px;
	/* height: 40px; */
	line-height: 40px;
	color: #fff;
	border-bottom: 1px solid #00bcd6; 
	/* padding : 5px; */
	font-size: 10px;
}
.leftMenuList li:hover{
	background-color: #00bcd6;
	transition: all ease .5s;
	/* cursor	: pointer; */

}
.leftMenuList li a{
	text-decoration: none;
	color	: #fff;
	cursor	: pointer;
}
.leftMenuList li a svg{
	width	: 40px;
	height	: 40px;
	float	: left;
	margin-left: 0px;   
}
.leftMenuList li span{
	color	: red; 
	font-size: 1.2em;
	cursor	:  default; /* pointer;  default; */
}
.leftMenuList li a span{
	text-decoration: none;
	color	: #000; 
	margin-left: 15px;
	width	: 100%;
	cursor	: pointer; /* default; */
}
.leftMenuList i.fa {
	font-size: 25px;
	padding: 9px;
	width: 30px;
	text-align: center;
}
.leftMenuList li ul li{
	padding: 0px;
	line-height: 30px;
	transition: all .4s;
	box-sizing: border-box;
}

.leftMenuList li ul li:hover{
	background: #4DD0E1;
	transition: all .4s;
}
.leftMenuList li ul li ul li{
	padding: 5px;
	background: #B2EBF2;
}

.leftMenuList li ul li ul li a span{
	font-size: 1.0em;
	color:#00838f;
}
.leftMenuList li ul li ul li:hover{
	background: #B2EBF2;
}

.dropdown {
	color: #00f;
	text-decoration: none;
	margin-bottom: 5px;
	display: block;
	position: relative;
	/*font-size: 2.2em; */
}

.active + .dropdownlist {
	width: 100%;
	height: auto;
	line-height: 30px;
	padding: 0px;
	margin-left: 0px;
	background: #4DD0E1;
	font-size: 1.2em;
}
.hide + .dropdownlist{
  height:0px;
}
.active + .dropdownlist:hover{
	background:#00bcd6;
}
.dropdownlist {
	width: 0;
	height: 0;
	overflow: hidden;
}
.dropdownlist span {
	color: #f00;
}

.dropdown:before {
	font-family: FontAwesome;
	content: "\f105";
	transition: all .4s;
	padding-right: 5px;
	right: 20px;
	position: absolute;
	top: 4px;
}
.dropdown.active:before {
	font-family: FontAwesome;
	content: '\f107';
	transition: all .4s;
	padding-right: 5px;
	font-size: 1.2em;
}
.leftMenu:not(.openMenu)  li > .dropdownlist{
	pointer-events: none;
    height:0;
}



    /* =====================
       상단 메가 메뉴
       ===================== */


.megaheader {
    position: fixed; /* relative;  */
	top:0;
	right: 10px;
	
    width: 50px; /* 100%; */
	height: 50px;
    background-color: #19414a;
    
    z-index: 1200;
	margin-bottom: 30px;

}	   
	   
.megahamburger{
  width: 32px;
  height: 32px;
  background: #19414a;
  position: relative;
  border-style: none !important;
  outline: none !important;
  cursor: pointer;
  margin: 9px;
  overflow: hidden;
}
.megahamburger span{
  width: 22px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  background-color: #fff;
  left: 5px;
  transition: all .3s;
}
.megahamburger span:nth-child(1){
  top: 7px;
}
.megahamburger span:nth-child(2){
  top: 14px;
}
.megahamburger span:nth-child(3){
  top: 21px;
}
.megahamburger.open span:nth-child(1){
  top: 16px;
  transform: rotate(45deg);
}
.megahamburger.open span:nth-child(3){
  top: 16px;
  transform: rotate(-45deg);
}
.megahamburger.open span:nth-child(2){
  top: 16px;
  transform: translateX(-33px);
}
.megaMenu {
  width: 100%;
  height: fit-content;
  background: rgb(85,128,138);
  background: linear-gradient(180deg, rgba(25,65,74,1) 5% , rgba(85,128,138,1) 100%);
  transition: all .3s;
  box-shadow: 0 3px 7px rgba(0,0,0,.2);
  padding: 20px;
  overflow: hidden;
  /* display: none; *************** */
  color: #fff;
  position: absolute;
  transform: translateY(-100%);
  transform-origin: top;
  z-index: 0;
  column-count: 6;
  -webkit-column-gap: 16px;
  column-gap: 16px;
  border-top:1px solid rgba(85,128,138,1);
  margin-bottom:90px;
  z-index:1190;
}

.megaMenu .menuItem {
  position: relative;
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
}

.megaMenu.openMenu {
  height: fit-content;
  padding: 10px;
  transform: translateY(0px);
}
.megaMenu ul{
  padding:0px;
  margin: 0px;
  list-style: none;
  padding-left: 6px;
  display: block;
  width:100%;
  padding-bottom: 20px;
}
.megaMenu ul li a {
  color: #ffffff;
  text-decoration: none;
}
.megaMenu ul li {
  position: relative;
}
.megaMenu ul li:before {
    content: '';
    width: 0%;
    height: 1px;
    bottom: 0px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 0px;
    background-color: #fff;
    transition: all .3s;
}
.megaMenu ul li:hover:before {
  content: '';
  width: 100%;
  transition: all .3s;
}
.megaMenu ul li {
  min-height: 22px;
  line-height: 22px;
  width:fit-content;
}
@media (min-width: 400px) and (max-width:600px) {
  .megaMenu{
    column-count: 1;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .megaMenu{
    column-count: 2;
  }
}
@media (min-width:768px) and (max-width:992px) { 
  .megaMenu{
    column-count: 3;
  }
}
@media (min-width:992px) and (max-width:1200px) { 
  .megaMenu{
    column-count: 4;
  }
}








/* ************************************************ */

/* ---------------- 버튼 ---------------- */
#toggleBtn {
  margin: 0px 10px;
  font-size: 1.5em;
  /* background-color: #BFABAB;
  color: #F00; 
  padding: 5px 20px; */
  cursor: pointer;
  /* border-radius: 20px; */
}


/* ************************************************ */

@property --rotation {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.gemini {
  display: grid;  /*    */
  width: 100px;
  height: 30px;
  padding: 2px 0;
  margin: 0;
  place-content: center;
  color-scheme: light dark;
  background: light-dark(#f5f5f5, black);
  
  --border-size: 4px;
  --gradient: conic-gradient(from var(--rotation) at 52% 49% in oklab, oklch(0.63 0.2 251.22) 27%, oklch(0.67 0.21 25.81) 33%, oklch(0.9 0.19 93.93) 41%, oklch(0.79 0.25 150.49) 49%, oklch(0.63 0.2 251.22) 65%, oklch(0.72 0.21 150.89) 93%, oklch(0.63 0.2 251.22));
  animation: rotate 5s infinite linear;
  border-radius: 4rem;
  background: none;
  position: relative;
  padding: 0;
  border: 4px solid lightgray;

  &::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    animation: rotate 5s infinite linear;
    filter: blur(15px);
  }
  
  .inner {
    width: 100px;
/*	height:25px;  */	
/*	background: #ccc; /* light-dark(white, #1a1c1e); */
    color: #FFF; /* light-dark(#222, hsl(210, 8%, 66%)); */
    display: inline;
    padding: 0rem 0.0rem;
	margin-left: -10px;
    position: relative;
    z-index: 2;
    border-radius: inherit;
    display: grid;
    /* grid-template-columns: 1fr 250px 1fr; */
    align-items: center;
    gap: 0.0rem;
    font-family: system-ui;
  }

  .border {
    position: absolute;
    inset: calc(var(--border-size) * -1);
    mask: linear-gradient(white);
    border-radius: inherit;
    overflow: hidden;

    &::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      z-index: -1;
      filter: blur(5px);
    }
  }


  button {
	width: 90px;  /*  */
	height: 24px;  /* 25px; inherit; */
    background: #fff; /* transparent;   none; */
	border-radius: inherit;
	cursor:pointer;
  }

/*  
  input {
	width: 60px;
	height: 25px;
    color: light-dark(#222, hsl(210, 8%, 66%));
    background: none; /* #fff;  transparent;   none; *//*
    border: none;
	border-radius: inherit;
  }
/*
  input {
    font-size: 1rem;
    font-family: system-ui;
    font-weight: 300;
    
    &:focus {
      outline: none;
    }
    
    &:not(:placeholder-shown) {
      color: light-dark(black, white);
    }
  } */
}

@keyframes rotate {
  to {
    --rotation: 360deg;
  }
}




/* ************************************************ */

.stages {
  display: flex;
  gap: 10px;
  padding: 10px;
  /* background-color: #EFC94C; */

  width: 93%;        /* 300px × 3개 */
  overflow-x: scroll;
  /* overflow-x: hidden; /* 처음엔 스크롤 숨김 */
  transition: width 0.3s ease;
}

.stages.open {
  min-width: 100%; /*width: 100%; */
  overflow-x: auto;   /* 더보기 시 스크롤 허용 */
}


/*
.stage {
  width: 300px;
  flex-shrink: 0;
}

.stage > * {
  background-color: #e2e4e6;
  padding: 10px;
}

.stage header {
  border-radius: 5px 5px 0 0;
}

.stage footer {
  border-radius: 0 0 5px 5px;
}

.stage ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}

.stage li {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
*/


/* ************************************************ */

.bgskyblue {
	background: skyblue;
}
.bgpink {
	background: pink;
}


/* ************************************************ */
/*
* {
  box-sizing: inherit;
  transition-property: all;
  transition-duration: .6s;
  transition-timing-function: ease;
}


/* //default button *//*
.btn {
  color: #fff;
  cursor: pointer;
  // display: block;
  font-size:16px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 2em;
  max-width: 160px; 
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%; 

/*  
//   @media(min-width: 400px) {
//     display: inline-block;
//     margin-right: 2.5em;
  
//     &:nth-of-type(even) {
//       margin-right: 0;
//     }
//   }
*/  
/*
  @media(min-width: 600px) {
      
    margin: 0 1em 2em;
/*
//     &:nth-of-type(even) {
//       margin-right: 2.5em;
//     }
    
//     &:nth-of-type(5) {
//       margin-right: 0;
//     }
*/    /*
  }
  
  &:hover { text-decoration: none; }
  
}

/* /////////////////////////////////
//button one
/////////////////////////////// *//*
.btn-1 {
  background: darken($red, 1.5%);
  font-weight: 100;
  
  svg {
    height: 45px;
    left: 0;
    position: absolute;
    top: 0; 
    width: 100%; 
  }
  
  rect {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
  }
}

.btn-1:hover {
  background: rgba($red, 0);
  font-weight: 900;
  letter-spacing: 1px;
  
  rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

/* ////////////////////////////
//button two
////////////////////////// *//*
.btn-2 {
    letter-spacing: 0;
}

.btn-2:hover,
.btn-2:active {
  letter-spacing: 5px;
}

.btn-2:after,
.btn-2:before {
  backface-visibility: hidden;
  border: 1px solid rgba(#fff, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
}

/* ******************************************************************* */

/*
.custom-btn {
  width: 130px;
  /* height: 40px; *//*
  color: #fff;
  /* margin: 20px; *//*
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

/* 1 *//*
.btn-1 {
  background: rgb(6,14,131);
  background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%);
  border: none;
}
.btn-1:hover {
   background: rgb(0,3,255);
background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
}

/* 2 *//*
.btn-2 {
  background: rgb(96,9,240);
  background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%);
  border: none;
  
}
.btn-2:before {
  height: 0%;
  width: 2px;
}
.btn-2:hover {
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}


/* 3 *//*
.btn-3 {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover{
   color: rgba(2,126,251,1);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}

/* 4 *//*
.btn-4 {
  background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-4:hover{
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
}
.btn-4 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-4:before,
.btn-4:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   box-shadow:  4px 4px 6px 0 rgba(255,255,255,.9),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}
.btn-4:before {
  height: 0%;
  width: .1px;
}
.btn-4:after {
  width: 0%;
  height: .1px;
}
.btn-4:hover:before {
  height: 100%;
}
.btn-4:hover:after {
  width: 100%;
}
.btn-4 span:before,
.btn-4 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.9),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}
.btn-4 span:before {
  width: .1px;
  height: 0%;
}
.btn-4 span:after {
  width: 0%;
  height: .1px;
}
.btn-4 span:hover:before {
  height: 100%;
}
.btn-4 span:hover:after {
  width: 100%;
}

/* 5 *//*
.btn-5 {
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  background: rgb(255,27,0);
background: linear-gradient(0deg, rgba(255,27,0,1) 0%, rgba(251,75,2,1) 100%);
}
.btn-5:hover {
  color: #f0094a;
  background: transparent;
   box-shadow:none;
}
.btn-5:before,
.btn-5:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #f0094a;
  box-shadow:
   -1px -1px 5px 0px #fff,
   7px 7px 20px 0px #0003,
   4px 4px 5px 0px #0002;
  transition:400ms ease all;
}
.btn-5:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btn-5:hover:before,
.btn-5:hover:after{
  width:100%;
  transition:800ms ease all;
}


/* 6 *//*
.btn-6 {
  background: rgb(247,150,192);
background: radial-gradient(circle, rgba(247,150,192,1) 0%, rgba(118,174,241,1) 100%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
 box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.4),
   4px 4px 5px 0px rgba(0,0,0,.3);
}
.btn-6:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.btn-6:hover{
  background: transparent;
  color: #76aef1;
  box-shadow: none;
}
.btn-6:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.4),
   4px 4px 5px 0px rgba(0,0,0,.3);
}
.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.btn-6 span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.btn-6 span:hover:before {
  width: 100%;
}
.btn-6 span:hover:after {
  width: 100%;
}

/* 7 *//*
.btn-7 {
background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,1) 100%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-7 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-7:before,
.btn-7:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgba(251,75,2,1);
  box-shadow:
   -7px -7px 20px 0px rgba(255,255,255,.9),
   -4px -4px 5px 0px rgba(255,255,255,.9),
   7px 7px 20px 0px rgba(0,0,0,.2),
   4px 4px 5px 0px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.btn-7:before{
   height: 0%;
   width: 2px;
}
.btn-7:after {
  width: 0%;
  height: 2px;
}
.btn-7:hover{
  color: rgba(251,75,2,1);
  background: transparent;
}
.btn-7:hover:before {
  height: 100%;
}
.btn-7:hover:after {
  width: 100%;
}
.btn-7 span:before,
.btn-7 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: rgba(251,75,2,1);
  box-shadow:
   -7px -7px 20px 0px rgba(255,255,255,.9),
   -4px -4px 5px 0px rgba(255,255,255,.9),
   7px 7px 20px 0px rgba(0,0,0,.2),
   4px 4px 5px 0px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.btn-7 span:before {
  width: 2px;
  height: 0%;
}
.btn-7 span:after {
  height: 2px;
  width: 0%;
}
.btn-7 span:hover:before {
  height: 100%;
}
.btn-7 span:hover:after {
  width: 100%;
}

/* 8 *//*
.btn-8 {
  background-color: #f0ecfc;
background-image: linear-gradient(315deg, #f0ecfc 0%, #c797eb 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-8 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-8:before,
.btn-8:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #c797eb;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*//*
  transition: all 0.3s ease;
}
.btn-8:before{
   height: 0%;
   width: 2px;
}
.btn-8:after {
  width: 0%;
  height: 2px;
}
.btn-8:hover:before {
  height: 100%;
}
.btn-8:hover:after {
  width: 100%;
}
.btn-8:hover{
  background: transparent;
}
.btn-8 span:hover{
  color: #c797eb;
}
.btn-8 span:before,
.btn-8 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #c797eb;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*//*
  transition: all 0.3s ease;
}
.btn-8 span:before {
  width: 2px;
  height: 0%;
}
.btn-8 span:after {
  height: 2px;
  width: 0%;
}
.btn-8 span:hover:before {
  height: 100%;
}
.btn-8 span:hover:after {
  width: 100%;
}
  

/* 9 *//*
.btn-9 {
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.btn-9:after {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-color: #1fd1f9;
background-image: linear-gradient(315deg, #1fd1f9 0%, #b621fe 74%);
  transition: all 0.3s ease;
}
.btn-9:hover {
  background: transparent;
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  color: #fff;
}
.btn-9:hover:after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

/* 10 *//*
.btn-10 {
  background: rgb(22,9,240);
background: linear-gradient(0deg, rgba(22,9,240,1) 0%, rgba(49,110,244,1) 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.btn-10:after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-transform: scale(.1);
  transform: scale(.1);
}
.btn-10:hover {
  color: #fff;
  border: none;
  background: transparent;
}
.btn-10:hover:after {
  background: rgb(0,3,255);
background: linear-gradient(0deg, rgba(2,126,251,1) 0%,  rgba(0,3,255,1)100%);
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 11 *//*
.btn-11 {
  border: none;
  background: rgb(251,33,117);
    background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%);
    color: #fff;
    overflow: hidden;
}
.btn-11:hover {
    text-decoration: none;
    color: #fff;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:hover{
  opacity: .7;
}
.btn-11:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/* 12 *//*
.btn-12{
  position: relative;
  right: 20px;
  bottom: 20px;
  border:none;
  box-shadow: none;
  width: 130px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn-12 span:nth-child(1) {
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
 color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}


/* 13 *//*
.btn-13 {
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
  border: none;
  z-index: 1;
}
.btn-13:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
   background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-13:hover {
  color: #fff;
}
.btn-13:hover:after {
  top: 0;
  height: 100%;
}
.btn-13:active {
  top: 2px;
}


/* 14 *//*
.btn-14 {
  background: rgb(255,151,0);
  border: none;
  z-index: 1;
}
.btn-14:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  background-color: #eaf818;
  background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%);
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5);
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.btn-14:hover {
  color: #000;
}
.btn-14:hover:after {
  top: auto;
  bottom: 0;
  height: 100%;
}
.btn-14:active {
  top: 2px;
}

/* 15 *//*
.btn-15 {
  background: #b621fe;
  border: none;
  z-index: 1;
}
.btn-15:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #663dff;
  border-radius: 5px;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.btn-15:hover {
  color: #fff;
}
.btn-15:hover:after {
  left: 0;
  width: 100%;
}
.btn-15:active {
  top: 2px;
}


/* 16 *//*
.btn-16 {
  border: none;
  color: #000;
}
.btn-16:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  direction: rtl;
  z-index: -1;
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-16:hover {
  color: #000;
}
.btn-16:hover:after {
  left: auto;
  right: 0;
  width: 100%;
}
.btn-16:active {
  top: 2px;
}


/* *************************************************************** */

/*GRADIENTS*/
  /*GREEN*//*
  .b-green, .b-green:before {
    background: rgba(73,155,234,1);
    background: -moz-linear-gradient(45deg, rgba(73,155,234,1) 0%, rgba(26,188,156,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(73,155,234,1)), color-stop(100%, rgba(26,188,156,1)));
    background: -webkit-linear-gradient(45deg, rgba(73,155,234,1) 0%, rgba(26,188,156,1) 100%);
    background: -o-linear-gradient(45deg, rgba(73,155,234,1) 0%, rgba(26,188,156,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(73,155,234,1) 0%, rgba(26,188,156,1) 100%);
    background: linear-gradient(45deg, rgba(73,155,234,1) 0%, rgba(26,188,156,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#1abc9c', GradientType=1 );
  }
  /*PINK*//*
  .b-pink, .b-pink:before {
    background: rgba(231,72,234,1);
    background: -moz-linear-gradient(45deg, rgba(231,72,234,1) 0%, rgba(75,26,188,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(231,72,234,1)), color-stop(100%, rgba(75,26,188,1)));
    background: -webkit-linear-gradient(45deg, rgba(231,72,234,1) 0%, rgba(75,26,188,1) 100%);
    background: -o-linear-gradient(45deg, rgba(231,72,234,1) 0%, rgba(75,26,188,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(231,72,234,1) 0%, rgba(75,26,188,1) 100%);
    background: linear-gradient(45deg, rgba(231,72,234,1) 0%, rgba(75,26,188,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e748ea', endColorstr='#4b1abc', GradientType=1 );
  }
  /*RED*//*
  .b-red, .b-red:before {
    background: rgba(234,110,72,1);
    background: -moz-linear-gradient(45deg, rgba(234,110,72,1) 0%, rgba(188,26,99,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(234,110,72,1)), color-stop(100%, rgba(188,26,99,1)));
    background: -webkit-linear-gradient(45deg, rgba(234,110,72,1) 0%, rgba(188,26,99,1) 100%);
    background: -o-linear-gradient(45deg, rgba(234,110,72,1) 0%, rgba(188,26,99,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(234,110,72,1) 0%, rgba(188,26,99,1) 100%);
    background: linear-gradient(45deg, rgba(234,110,72,1) 0%, rgba(188,26,99,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea6e48', endColorstr='#bc1a63', GradientType=1 );
  }
  /*ORANGE*//*
  .b-orange, .b-orange:before {
    background: rgba(255,193,7,1);
    background: -moz-linear-gradient(45deg, rgba(255,193,7,1) 0%, rgba(255,87,34,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(255,193,7,1)), color-stop(100%, rgba(255,87,34,1)));
    background: -webkit-linear-gradient(45deg, rgba(255,193,7,1) 0%, rgba(255,87,34,1) 100%);
    background: -o-linear-gradient(45deg, rgba(255,193,7,1) 0%, rgba(255,87,34,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(255,193,7,1) 0%, rgba(255,87,34,1) 100%);
    background: linear-gradient(45deg, rgba(255,193,7,1) 0%, rgba(255,87,34,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc107', endColorstr='#ff5722', GradientType=1 );
  }
  /*BLUE*//*
  .b-blue, .b-blue:before {
    background: rgba(5,118,255,1);
    background: -moz-linear-gradient(45deg, rgba(5,118,255,1) 0%, rgba(36,248,255,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(5,118,255,1)), color-stop(100%, rgba(36,248,255,1)));
    background: -webkit-linear-gradient(45deg, rgba(5,118,255,1) 0%, rgba(36,248,255,1) 100%);
    background: -o-linear-gradient(45deg, rgba(5,118,255,1) 0%, rgba(36,248,255,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(5,118,255,1) 0%, rgba(36,248,255,1) 100%);
    background: linear-gradient(45deg, rgba(5,118,255,1) 0%, rgba(36,248,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0576ff', endColorstr='#24f8ff', GradientType=1 );
  }
/*END GRADIENTS*/
/*BASE BUTTON*//*
.button {
  display: inline-block;
  position: relative;
  border-radius: 3px;
  text-decoration: none;
  padding: .5em;
  margin: 2.0em;
  font-size: 1.2em;
  font-weight: bold;
  transition: all .5s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.button:hover {
  text-shadow: 0px 0px 0px rgba(255, 255, 255, .75);
}
.button:hover:after {
  left: 100%;
  top: 100%;
  bottom: 100%;
  right: 100%;
}
.button:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 5px;
  transition: all .5s;
}
.button:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 2px;
  z-index: -1;
  border-radius: 5px;
  transition: all .5s;
}
.button2 {
  display: inline-block;
  font-size: 2em;
  margin: .5em;
  padding: .5em;
  border-radius: 5px;
  transition: all .5s;
  filter: hue-rotate(0deg);
  color: #FFF;
  text-decoration: none;
}
/*END BASE BUTTON*/
/*ROTATE*//*
.rot-360-noscoop:hover {
  filter: hue-rotate(360deg);
  transform: rotate(360deg);
}
.rot-135:hover {
  filter: hue-rotate(135deg);
}
.rot-90:hover {
  filter: hue-rotate(90deg);
}
/*END ROTATE*/



/* ***************************************************************/
/*
.tooltip {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: #007bff;
}

.tooltip::after {
  content: attr(data-tooltip); /* data-tooltip 속성 가져오기 */ /*
  white-space: pre; /* 줄바꿈 유지 */ /*
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  width: max-content;
  max-width: 200px;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}
*/


/* ************************************************ */





/*  테마 스위치   */
/*
.theme-switcher {
  background-color: var(--c-bg-secondary);
  border-radius: 10px;
  display: flex;
  text-align: right;
  padding: 0 3px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.theme-switcher .slider {
  display: block;
  position: absolute;
  z-index: 1;
  width: calc((100% - 6px) / 3);
  top: 3px;
  transform: translatex(-110%);
  bottom: 2px;
  border-radius: 6px;
  transition: 0.15s ease, transform 0.25s ease-out;
  background-color: var(--c-bg-button);
  box-shadow: var(--slider-shadow);
}
.theme-switcher input {
  display: none;
}
.theme-switcher input:nth-of-type(1):checked ~ .slider {
  transform: translateX(0);
}
.theme-switcher input:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.theme-switcher input:nth-of-type(3):checked ~ .slider {
  transform: translateX(200%);
}
.theme-switcher label {
  position: relative;
  z-index: 2;
  width: width: calc(100% / 3); 
  color: var(--c-text-secondary);
}
.theme-switcher label span {
  padding: 8px 0;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.theme-switcher label svg {
  display: inline-block;
  margin-right: 0.5rem;
  width: 20px;
}
/*  테마 스위치   */


/*
:root.light-theme {
  --c-text-primary: #edeeef;
  --c-text-secondary: #d4d7e1;
  --c-bg-black: #323232;
  --c-bg-black: #1b1d23;
  --c-bg-secondary: #000001;
  --c-bg-button: #343844;
  --slider-shadow: inset 0 1px 1px #555;
  --color-2: #cfc0c0;
  --c-text-logo: #2e2d2d;
  --c-hover-button1: #0536fc;
  --slide-bgcolor: #ffffff;
  --dot_color: #FF0000;
}
*/
