p {
    font-size: 3vw;
}

/*전체 레이아웃 padding 재설정*/
html > body > div.layout-con > div.layout {
    padding: 30px 7% 0 7%;
}

html > body > div.layout-con > div.layout > main.main {
    padding: 0 !important;
    margin-bottom: 10vh;
}

body {
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    width: fit-content;
    height: fit-content;
    user-select: none;
}

button {
    background: transparent;
    border: none;
}

.layout-con {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    overflow: auto;
    position: absolute;
    display: flex;
    justify-content: center;
    background-color: #0d0d0d;
}

.layout {
    background-color: #0d0d0d;
    display: grid;
    gap: 45px;
    padding: 45px 20px 0 20px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    margin: 0 auto;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.layout::-webkit-scrollbar, .main::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

a:hover, a:active, a:focus, input:hover, button:hover {
    cursor: pointer;
    text-decoration: none;
}

/* header 영역 */
.header {
    width: 100%;
    height: 35px;
    /*display: grid;*/
    /*grid-template-columns: 150px 1fr 150px;*/
    /*align-items: center;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    padding: 0 10%;
}

.header_left {
    position: absolute;
    width: fit-content;
    left: 0;
    height: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_left > button {
    padding-left: 10px;
}

.header_left > button,
.header_left > button > img {
    height: inherit;
}

.headerLeft {
    display: none;
}

.homeBtn, .header_right, .user_mark, .shopping_cart {
    height: inherit;
}

.header_house, .user_mark > img, .shopping_cart > img {
    height: 100%;
}

.headerTitle {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 4vw !important;
    text-align: center;
    color: #C8C8C8;
}

.header_right {
    width: 0;
    display: flex;
    justify-content: flex-end;
}

.shopping_cart {
    display: none;
}

.user_mark {
    display: none;
}

.main {
    overflow: auto;
    width: 100%;
    height: 100%;
}

/* footer 영역 */
.footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    visibility: hidden;
    margin-bottom: 40px;
}

.footer_icon {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.thumb, .shop, .map {
    display: none;
}

.thumb, .shop, .map {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 22px;
    color: #C8C8C8;
}

.new-page {
    animation-name: page-change-new;
    animation-duration: 600ms;
    z-index: 999;
}

@keyframes page-change-new {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(0);
        position: relative !important;
    }
}

.prev-page {
    z-index: 88888;
    animation-name: page-change-prev;
    animation-duration: 600ms;
}

@keyframes page-change-prev {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100vw);
        position: relative !important;
    }
}

.alert-con {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

.alert {
    width: 280px;
    height: 205px;
    border: 1px solid #000;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    animation-name: alertPop;
    animation-duration: 500ms;
}

.content-con > * {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.alert_title {
    padding-top: 48px;
}

.alert_content {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
}

.alert_ok {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #484C77;
    cursor: pointer;
    width: 100%;
    border-top: 1px solid #f5f5f5;
    padding: 20px;
}

@keyframes alertPop {
    0% {
        opacity: 0;
        top: 100%;
    }

    100% {
        opacity: 1;
        top: 50%;
    }
}


.skyimg {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: scale(0.8);
}

/* .skyimg.cloudydark{
    margin:6px auto;
} */