@charset "UTF-8";

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,700;1,500&display=swap');

body{
	font-family: 'Pretendard-Regular';
	letter-spacing: -0.1px;
}
a{
	color: black;
	text-decoration: none;
}
a:hover{
	color: black;
	text-decoration: none;
}
.buySpan:hover{
	cursor: pointer;
}

.txt{
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 15px 0;
}

.txt input{
    font-size: 15px;
    color: #333;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0 5px;
    height: 40px;
}

.btns{
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 2.0;
    letter-spacing: 1px;
    border: none;
    background: linear-gradient(120deg,#725efe,#8e44ad,#7f69fa);
    background-size: 200%;
    color: #fff;
    outline: none;
    cursor: pointer;
    padding: 0.475rem .75rem 0 0.85rem;
    transition: .5s;
    /*box-shadow: 2px 3px 16px 0px #7f69fa, 5px 5px 15px 5px rgba(0,0,0,0);*/
    font-size: 1rem;
    border-radius: 0.25rem;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    vertical-align: middle;
}
.btns a{
	color: #fff;	
}
.btns:hover{
    color: #fff;
    background-position: right;
}

.btnBlack{
    display: block;
    width: 100%;
    height: 45px;
    line-height: 2.0;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    background: linear-gradient(120deg,#444,#333,#555);
    background-size: 200%;
    color: #fff;
    outline: none;
    cursor: pointer;
    padding: 0.475rem .75rem 0 0.85rem;
    transition: .5s;
    border-radius: 0.25em;
    /*box-shadow: 2px 3px 14px 0px #333, 5px 5px 15px 5px rgba(0,0,0,0);*/
}
.btnBlack a{
	color: #fff;	
}
.btnBlack:hover{
    color: #fff;
    background-position: right;
}


/* 프로그래스바 */
html {
        width: 100%;
        height: 100%;
}

body {
    margin: 0;
    padding: 0;
}

.header {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    /* background-color: #F1F1F1; */
    background-color: white;
}

.progress-container {
    width: 100%;
    height: 5px;
    /* background: #CCCCCC; */
    background: white;
}

.progress-container .progress-bar {
    width: 0;
    height: 5px;
    background-image: linear-gradient(120deg, #7f69fa,#8e44ad,#725efe);
}

.content_obj {
    width: 100%;
    height: 5px; 
    background-color: #eeeeee;
}
