@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','Nanum Gothic', sans-serif;
    letter-spacing: -0.02em;
}

html, body {
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    pointer-events : none;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

button, input {
    outline: none;
}

table {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-spacing: 0;
    table-layout: fixed;
}

table thead {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    border-top: 2px solid #333;
    background-color: #f1f1f1;
}

table th,
table td {
    color: #222;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

table td {
    padding: 12px;
    font-size: 16px;
    text-align: center;
}

:root {
    --main-color: #03aed3;
}

@keyframes flow {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-600%, 0, 0);
    }
}

@keyframes flow2 {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(600%, 0, 0);
    }
}

@keyframes upDown {
	0% {
		transform:  translateY(-7px);
	}
	50% {
		transform: translateY(7px);
	}
	100% {
		transform:  translateY(-7px);
	}
}


/*==================================================*/
@media (max-width: 768px) {
    @keyframes flow {
        0% {
            transform: translate3d(0, 0, 0);
        }
    
        100% {
            transform: translate3d(-1200%, 0, 0);
        }
    }
    
    @keyframes flow2 {
        0% {
            transform: translate3d(0, 0, 0);
        }
    
        100% {
            transform: translate3d(1200%, 0, 0);
        }
    }
}