@charset "UTF-8";
/*CSS Document */
/*
    추가적인 CSS는 여기에 작성할것. by hangh
*/

/*전체 화면 스크롤 노출*/
body{
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    width: 10px; /* 스크롤바의 너비 */
}

body::-webkit-scrollbar-thumb {
    background: #7E8299; /* 스크롤바의 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */
}

body::-webkit-scrollbar-track {
    background: rgba(33, 122, 244, .1); /*스크롤바 뒷 배경 색상*/
}

/*tooltip 줄바꿈 => &#10;*/
.tooltip-inner {white-space: pre-wrap; text-align: left;}


@keyframes blink-effect {70% {opacity: 0;}}
.blink {animation: blink-effect 1.5s step-end infinite;}

@keyframes blink-effect {70% {opacity: 0;}}
.blink_0_1 {animation: blink-effect 0.1s step-end infinite;}

@keyframes blink-effect {70% {opacity: 0;}}
.blink_0_3 {animation: blink-effect 0.3s step-end infinite;}

@keyframes blink-effect {70% {opacity: 0;}}
.blink_0_7 {animation: blink-effect 0.7s step-end infinite;}

@keyframes blink-effect {70% {opacity: 0;}}
.blink_1_0 {animation: blink-effect 1.0s step-end infinite;}

@keyframes blink-effect {70% {opacity: 0;}}
.blink_1_2 {animation: blink-effect 1.2s step-end infinite;}
