@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400&display=swap");

/*-------------------- 共用樣式 --------------------*/

:root {
    --basic-txt: #fff;
    --main-og: #e4a19b;
    --main-gn: #1dedf1;
    --light-gn: #fde1d6;
    --deep-gn: #db5750;
    --b-round: 0.6rem;
    --content-p: calc(3.5vw + 25px);
    --col-p: clamp(8px, 1vw + 2px, 15px);
    --transition-com: all 0.25s ease;
}

/*-- 按鈕 --*/

.btn {
    position: relative;
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
    white-space: nowrap;
    border-radius: 500px;
    z-index: 999;
    transition: var(--transition-com);
}
.btn > img {
    vertical-align: middle;
}

.btn-lg {
    padding: 0.65rem 1.6rem;
    font-size: 1.25rem;
}

.btn-info {
    color: var(--main-gn);
    background-color: var(--main-gn);
    border-color: var(--main-gn);
}

/* .btn-info:hover {
    color: #fff;
    background-color: #e59100;
    border-color: #e59100;
} */

/*-------------------- 共用樣式 END --------------------*/

/*-------------------- 全頁 --------------------*/

#wrapper {
    position: relative;
    width: 100%;
    min-width: 100%;
}

.popup {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 90%;
    background-color: #f6f5e8;
    padding: 20px;
    color: #000;
    border-radius: 5px;
    z-index: 99999999;
    background-image: url(../images/theme/shadow_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.popup .pop_wrap {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.popup .close-btn {
    width: 64px;
    height: 64px;
    position: fixed;
    right: 5%;
    top: 5%;
    font-size: 48px;
    color: #000;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
    z-index: 99999999;
    background-image: url(../images/close_btn.png);
    background-position: center center;
}

.popup-content{
    width: 98%;
    margin: 0 auto;
}

.popup-content .vr_360 {
    width: 100%;
    height: 85vh;
    border-radius: 10px;
    margin: 30px auto 50px;
}
