.cookie-banner {
	position: fixed;
	bottom: 0px;
	width: 100%;
	padding-top: 10px;
	height: 57px;
	display: flex;
	color: white;
	background-color: #000;
	z-index: 1000;
}
 .cookie-banner p {
	width: 100%;
 }
 .cookie-banner button {
	margin-left: 10px;
}


#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: grid;
    align-items: center;
    text-align: center;
    background: #F8F8FF;
    z-index: 9999999;
    padding-top: 20%;
}

#preloader #pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 10312;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader #pre-loading-image {
    z-index: 10314;
    width: 25em;
    height: 25em;
}

/*** 로딩바 ***/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 10312;
    display: none;
}

#loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10314;
    width: 25em; /* 이미지 크기 설정 (필요에 맞게 변경 가능) */
    height: 25em; /* 이미지 크기 설정 (필요에 맞게 변경 가능) */
}