/*터치 가능한 디바이스(스마트폰, 터치스크린)*/
/*세로 모드*/

.cookieModal {
    position: fixed;
    border-radius: 10px;
    background-color: rgb(26, 44, 56);
    left: 0;
    visibility: visible;
    z-index: 990;
    overflow: auto;
    overflow-x: hidden;
    font-family: "Noto Sans KR", sans-serif;
    bottom: 10px;
    padding: 20px;
    margin: 10px;
}
 .cookieModal > span {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}
 .cookieModal > .cookie_comment {
     color: white;
     margin: 20px 0;
 }
.cookieModal > .cookie_accept_btn {
    display: flex;
    flex-direction: column;
}
.cookieModal > .cookie_accept_btn > button {
    font-family: "Noto Sans KR", sans-serif;
    display: flex;
    background-color: rgb(20,117,225);
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 15px;
    font-size: 15px;
    border-radius: 7px;
    color: white;
}








/* Mobile - Landscape */
@media (min-width: 480px) {
    /*  모바일 가로모드  */

}










/* Tablet */
@media (min-width: 768px) {
    /*  모바일 가로모드  */
    .cookieModal {
        width: 400px;
    }
}











/* Desktop */
@media (min-width: 1280px) {
    .cookieModal {
        width: 500px;
    }
}