/* page styles */
/* .post-type-archive-baubles #ajax-content-wrap {
    margin-top: 12px;
} */
body:not(.page):not(.single-post):not(.single-portfolio) .nectar-global-section.before-footer {
    padding-top: 0px;
}
/* baubles style */
.baubles-archive {
    display: block;
    /* background-image: url(/wp-content/uploads/2023/09/Evening-interior-with-fireplace-scaled.jpg);
    background-position: center center;
    background-size: cover;  */
    background-repeat: no-repeat;
    width: 100%;
    height: 105vh;
    transition: background-size 2.9s ease;
    background: black;
}
.baubles-archive.zoom {
    background-size: 200%;
}
.baubles-archive::before {
    content: "";
    display: block;
    position: absolute;
    height: 105vh;
    width: 100%;
    z-index: 0;
    background-image: url(/wp-content/uploads/2023/09/Evening-interior-with-fireplace-scaled.jpg);
    background-position: center center;
    background-size: cover; /* 105% */
    background-repeat: no-repeat;
    filter: blur(0px);
    transition: filter 2.9s ease;
}
.baubles-archive.blur::before {
    filter: blur(10px);
}
.baubles-inner {
    background-image: url(/wp-content/uploads/2023/09/Christmas-treepspa-logo.svg);
    background-position: 50% 75%;
    background-repeat: no-repeat;
    background-size: 65vh;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.active .baubles-inner {
    transition: background-size 2.7s ease, background-position 2.5s ease .2s;
}
.bauble {
    /* background-image: url(/wp-content/uploads/2023/09/bauble-purple.png); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 5vh;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.bauble.bauble-purple {
    background-image: url(/wp-content/uploads/2023/09/bauble-purple.png);
}
.bauble.bauble-orange {
    background-image: url(/wp-content/uploads/2023/09/bauble-orange.png);
}
.bauble.opening {
    width: 80vw;
    height: 80vh;
    z-index: 10;
    transition: width 2.7s ease .2s, height 2.7s ease .2s, left 2.7s ease, top 2.7s ease;
}
.bauble.closing {
    width: 5vh!important;
    height: 5vh!important;
    z-index: 10;
    transition: width 2.7s ease .2s, height 2.7s ease .2s, left 2.7s ease, top 2.7s ease;
}
.bauble.open {
    width: 80vw;
    height: 80vh;
    top: unset;
    left: unset;
    right: unset;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.baubles-archive.active .bauble:not(.open):not(.closing):not(.opening),
.bauble.hidden {
    opacity: 0;
}

.bauble.is-hummingbird {
    width: 10vh;
    height: 10vh;
}
.bauble.bauble-purple.is-hummingbird {
    background-image: url(/wp-content/uploads/2023/09/hummingbird-purple.svg);
}
.bauble.bauble-orange.is-hummingbird {
    background-image: url(/wp-content/uploads/2023/09/hummingbird-orange.svg);
}
.bauble.is-hummingbird.open,
.bauble.is-hummingbird.opening {
    width: 85vw;
    height: 85vh;
}
.bauble.is-hummingbird.closing {
    width: 10vh!important;
    height: 10vh!important;
}

/* Inner bauble */
.bauble .bauble-content {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 1.5s ease .2s;
}
.bauble.open .bauble-content {
    width: calc(80vh / 2);
    height: auto;
}
.bauble.open:not(.closing) .bauble-content {
    opacity: 1;
}
.bauble.closing .bauble-content {
    transition: opacity .5s ease;
}
.bauble .bauble-content span.title {
    font-family: 'graphik-bold';
    font-size: 24pt;
    text-transform: uppercase;
    display: block;
}
.bauble .bauble-content span.title,
.bauble .bauble-content p {
    color: #fff;
    width: 0;
    height: 0;
    overflow: hidden;
}
.bauble:not(.open) .bauble-content span.title,
.bauble:not(.open) .bauble-content p {
    font-size: 0;
}
.bauble.open .bauble-content span.title,
.bauble.open .bauble-content p {
    width: auto;
    height: auto;
    margin-bottom: 0px;
    padding-bottom: 10px;
}
.bauble.bauble-purple.is-hummingbird .bauble-content {
    background: #fff;
    border-left: 5px solid var(--nectar-accent-color);
    padding: 20px;
}
.bauble.bauble-orange.is-hummingbird .bauble-content {
    background: #fff;
    border-left: 5px solid var(--nectar-extra-color-1);
    padding: 20px;
}
.bauble.bauble.is-hummingbird .bauble-content span.title,
.bauble.is-hummingbird .bauble-content p {
    color: var(--nectar-accent-color);
}
.bauble:not(.is-hummingbird) .bauble-content span.title {
    text-align: left;
}
.bauble:not(.is-hummingbird) .bauble-content p.from {
    text-align: right;
    font-style: italic;
    padding-right: 4px;
}

/* pagination */
.baubles-archive .pagination {
    position: absolute;
    top: 90%;
}
.baubles-archive .pagination .baubles-archive-controls {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
}
.baubles-archive .pagination .baubles-btn,
.baubles-archive .pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 12pt;
    text-align: center;
    font-family: 'graphik-bold';
    background: #fff;
    border-radius: 32px;
    border: 2px solid var(--nectar-accent-color);
}
.baubles-archive .pagination .page-numbers.current {
    color: var(--nectar-extra-color-1);
    border: 2px solid var(--nectar-extra-color-1);
}
.baubles-archive .pagination .baubles-btn.disabled-btn {
    opacity: .3;
    cursor: not-allowed;
}
.baubles-archive .pagination .baubles-btn.prev-btn,
.baubles-archive .pagination .baubles-btn.next-btn {
    font-size: 14pt;
}
.baubles-btn.prev-btn i {
    margin-top: 2px;
    margin-left: 2px;
}
.baubles-btn.next-btn i {
    margin-top: 2px;
    margin-right: 2px;
}

/* for single page - back-button */
.back-button,
.buy-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 12px 20px;
    border: 3px solid var(--nectar-extra-color-1);
    font-family: 'graphik-bold';
    text-transform: uppercase;
    font-size: 12pt;
    color: var(--nectar-accent-color);
}

/* different positions */
.bauble.pos-1 {
    top: 18%;
    left: 48%;
}
.bauble.pos-2 {
    top: 25%;
    left: 55%;
}
.bauble.pos-3 {
    top: 30%;
    left: 51.5%;
}
.bauble.pos-4 {
    top: 37%;
    left: 46%;
}
.bauble.pos-5 {
    top: 33%;
    left: 41%;
}
.bauble.pos-6 {
    top: 42%;
    left: 54%;
}
.bauble.pos-7 {
    top: 48%;
    left: 58%;
}
.bauble.pos-8 {
    top: 47%;
    left: 43%;
}
.bauble.pos-9 {
    top: 51%;
    left: 46%;
}
.bauble.pos-10 {
    top: 56%;
    left: 40%;
}
.bauble.pos-11 {
    top: 58%;
    left: 60.5%;
}
.bauble.pos-12 {
    top: 64%;
    left: 52%;
}
.bauble.pos-13 {
    top: 67%;
    left: 37%;
}
.bauble.pos-14 {
    top: 72%;
    left: 41%;
}
.bauble.pos-15 {
    top: 79%;
    left: 45%;
}
.bauble.pos-16 {
    top: 74%;
    left: 50%;
}
.bauble.pos-17 {
    top: 83.5%;
    left: 53%;
}
.bauble.pos-18 {
    top: 69%;
    left: 56.5%;
}
.bauble.pos-19 {
    top: 77%;
    left: 65%;
}
.bauble.pos-20 {
    top: 73%;
    left: 60%;
}

/* mobile */
@media only screen and (max-width: 768px) {
    .baubles-archive {
        background-size: cover;
    }
    .baubles-archive.zoom {
        background-size: cover;
    }
    .baubles-archive.blur::before {
        filter: blur(0px);
    }
    .baubles-inner {
        background-position: 40% 75%;
    }
    .bauble.opening,
    .bauble.open {
        width: 90vw;
        height: 90vh;
    }
    .bauble.open .bauble-content {
        width: 70vw;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 40px;
    }
    /* for single page - back-button */
    .back-button,
    .buy-button {
        top: 10px;
        left: 10px;
    }
    /* different positions */
    .bauble.pos-1 {
        top: 18%;
        left: 41%;
    }
    .bauble.pos-2 {
        top: 25%;
        left: 71%;
    }
    .bauble.pos-3 {
        top: 30%;
        left: 57.5%;
    }
    .bauble.pos-4 {
        top: 37%;
        left: 34%;
    }
    .bauble.pos-5 {
        top: 33%;
        left: 13%;
    }
    .bauble.pos-6 {
        top: 41%;
        left: 62%;
    }
    .bauble.pos-7 {
        top: 48%;
        left: 77%;
    }
    .bauble.pos-8 {
        top: 47%;
        left: 20%;
    }
    .bauble.pos-9 {
        top: 51%;
        left: 34%;
    }
    .bauble.pos-10 {
        top: 56%;
        left: 10%;
    }
    .bauble.pos-11 {
        top: 58%;
        left: 90.5%;
    }
    .bauble.pos-12 {
        top: 64%;
        left: 58%;
    }
    .bauble.pos-13 {
        top: 67%;
        left: 8%;
    }
    .bauble.pos-14 {
        top: 72%;
        left: 22%;
    }
    .bauble.pos-15 {
        top: 79%;
        left: 32%;
    }
    .bauble.pos-16 {
        top: 74%;
        left: 50%;
    }
    .bauble.pos-17 {
        top: 83.5%;
        left: 58%;
    }
    .bauble.pos-18 {
        top: 69%;
        left: 73.5%;
    }
    .bauble.pos-19 {
        top: 77%;
        left: 92%;
    }
    .bauble.pos-20 {
        top: 81%;
        left: 78%;
    }
}