
*{
    box-sizing: border-box;
    /* margin : 0 auto; */
    font-family :'Noto Sans KR', sans-serif;
}
.box {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    overflow-y: scroll;
}
.box::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
main{
    min-height: calc(100% - 70px);
}

nav{
    height : 50px;
    width: 100%;
    background-color : #981D26;
    color : white;
    display : flex;
    justify-content : space-between;
    align-items : center;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto; 
}

#lg{
    height : 90%;
    width : 25%;
    align-items : center;
    justify-content: center;
    display : flex;
    font-size : 2.5rem;
    text-align : center;
    line-height : 90%;
}

a #Seeya-logo {color:white; text-decoration:none;}
a #Seeya-logo :link { color: white; text-decoration: none;}
a #Seeya-logo :visited { color: white; text-decoration: none;}
a #Seeya-logo :hover { color: white; text-decoration: none;}

#Seeya-logo{
    font-size : 2.4rem;
}
#src, #back{
    margin : 0;
    width : 59px;
}
#src img{
    height : 20px; 
    margin : 0 10px;
}
#menu{
    margin : 0;
    width : 59px;
    text-align: right;
}

.Seeya-logo-box{
    font-size : 2.4rem;
    text-align : center;
    align-items : center;
    line-height : 100%;
}

.Seeya-logo-box img{
    height: 27px;
}
#searchicon{
    height : 20px; 
    margin : 0 10px;
}

.mypage-img{
    width : 45px; 
    height : 45px; 
    display : inline-block; 
    margin-right: 7px;
}
.mypage-img img{
    height : 100%; 
    margin : 0 0 0 5px; 
    width : 100%; 
    clip-path: circle(40% at center);
    object-fit: cover;
}

.menu-img{
    display : inline-block; 
    width : 25px; 
    height : 25px; 
    margin : 0 10px;
}

.footer-div{
    width:fit-content; 
    margin:0 auto; 
    padding: 20px 0;
    font-size: x-small; 
    color : lightgray;
    opacity: 70%;
}
.footer-div div{
    width: fit-content;
    margin: 0 auto;
}
/*base.html 끝*/

/*basesearch.html*/
#bar{
    position : fixed; 
    top : 0; 
    width : 100%;
    z-index: 100;
}

#back-img{
    display : inline-block; 
    width : 25px; 
    height : 25px; 
    margin : 0 10px;
}

/* 검색창 css */
#search_bar{
    margin : 0 auto;
    width : 100%;
    height: 50px;
    display : flex;
    justify-content: space-between;
    align-items: center;
    border-bottom : 1px solid lightgray;
    background-color : white;
}
#search-form{
    width : 100%;
    height : 100%;
    margin : 0;
    display : flex;
    justify-content: space-between;
    align-items: center;
}
.search-bar-input{
    width : 92%;
    margin : 0 1.5%; 
    height : 90%;
    display:block;
    border:none;
    background-color : white;
}
.search-btn{
    height : 60%;
    display:block;
    border:none;
    background-color: rgba(255,255,255,0);
}

#search-bar-search-icon{
    height : 90%;
}
/*basesearch.html 끝*/

/* 각 브라우저 별 input 설정 */

/* IE10 이상을 위한 css */
input::placeholder {
    text-align: center;
    opacity: 1; /* 파이어폭스에서 뿌옇게 나오는 현상을 방지하기 위한 css */
    position: relative;
    left : 3%;
    font-size: 1.2em;
    }
input::-webkit-input-placeholder {
    text-align: center;
    position: relative;
    left : 3%;
    font-size: 1.2em;
    }
  /* IE */
input:-ms-input-placeholder {
    text-align: center;
    position: relative;
    left : 3%;
    font-size: 1.2em;
    }
  /* Firefox */
input:-mos-input-placeholder {
    text-align: center;
    position: relative;
    left : 3%;
    font-size: 1.2em;
    }

input:focus{
    outline : none;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
    font-size: 1.2em;
    }
input:focus::-moz-placeholder {
    color: transparent;
    font-size: 1.2em;
    }
input:focus:-ms-input-placeholder {
    color: transparent;
    font-size: 1.2em;
    }
input:focus::-ms-input-placeholder {
    color: transparent;
    font-size: 1.2em;
    }

/* input 박스에 default로 나오는 x기호 제거 */
input::-ms-clear,
input::-ms-reveal{
    display:none;
    width:0;
    height:0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
    display:none;
}

button:focus{
    outline:none;
}

footer .footer-div a{
    color : gray;
}
footer .footer-div a:hover{
    color : gray;
    text-decoration : none;
}
footer .footer-div a:focus{
    outline : none;
}
footer p{
    text-align : center;
    color : gray;
    margin: 0;
}

/* 반응형 시작 */

/* 스마트폰 */
@media screen and (max-width: 768px){
    nav{
        height : 50px;
    }
    #src{
        width : 59px;
    }
    #lg{
        height : 85%;
    }
    #menu{
        width : 59px;
        text-align:right;
    }
    #search_bar{
        height : 50px;
    }
    #Seeya-logo{
        font-size: 2rem;
    }
    .search-bar-input{
        width : 85%;
    }
    .search-btn{
        width : 10%;
        margin-right: 7px;
    }
    input::placeholder{
        left : 7%;
    }
    #back{
        width:59px;
    }
}


/* 패드 */
@media (min-width: 768px) and (max-width: 1024px){
    nav{
        height : 50px;
    }
    #search_bar{
        height : 50px;
    }
    .search-btn{
        width : 6%;
        padding : 0;
    }
    #Seeya-logo{
        font-size: 0.8em;
    }
}
