
/** Layer Popup */
.overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 5;
}

[data-blind="on"] .overlay {
    visibility: visible;
    opacity: .4;
}

[data-blind="on"][data-overlay="on"] .overlay {
    opacity: .7;
    z-index: 999;
    transition: .35s opacity, 0s visibility;
}

.layerPopup {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    z-index: 99999;
}
[data-overlay="on"] .layerPopup {
    visibility: visible;
    opacity: 1;
    transition: .35s opacity, 0s visibility;
}

.layerPopup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.layerPopup .layout {
    margin: auto;
    width: 100vw;
    max-width: 1500px;
    position: relative;
}
@media (max-width: 1500px) {
    .layerPopup .layout {
        padding: 0 2rem; 
        max-width: 1000px;
    }
}
@media (max-width: 1200px) {
    .layerPopup .layout {
        padding: 0 2rem; 
        max-width: 90vw;
    }
}

.layerPopup-title {
    display: block;
    color: #fff;
    font-size: 4.6rem;
    font-weight: 500;
    text-align: center;
}

.layerPopup-title > span {
    font-weight: 700;
}

.layerPopup-controls {
    position: relative;
    margin-top: 1rem;
}
.layerPopup-controls .control {
    display: flex;
    justify-content: center;
    align-items: center;
}
.layerPopup-controls .control button {
    display: inline-block;
    overflow: hidden;
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    line-height: 4.8rem;
    vertical-align: middle;
    transition: all 0.2s;
}

.layerPopup-controls .control button::before {
    display: block;
    font-family: 'Material Symbols Outlined';
    content: '\eaa7';
    opacity: .6;
}

.layerPopup-controls .control button.slide_next::before {
    content: '\eaaa';
}

.layerPopup-controls .control button.pause::before {
    content: '\e1a2';
}

.layerPopup-controls .control button.play::before {
    content: '\e1c4';
}

.layerPopup-controls .control button:hover, .layerPopup-controls .control button:focus {
    background-color: #fff;
    color: #000;
}
.layerPopup-controls .control button:hover::before, .layerPopup-controls .control button:focus::before {
    opacity: 1;
}

.layerPopup .swiper-wrapper {
    
}
.layerPopup .slide-container {
    overflow: hidden;
}

.layerPopup .slide-container .swiper-slide {
    margin-right: 24px;
}
@media (max-width: 768px) {
    .layerPopup .slide-container .swiper-slide {
        width: 100%;
        margin-right: 0;
    }
}
.layerPopup .slide-desc {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #fafafa;
    border-radius: 32px;
    overflow: hidden;
}

.layerPopup .slide-desc a, .layerPopup .slide-desc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.layerPopup-util {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.layerPopup-util > * {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 1rem 2rem;
    border-radius: 5rem;
    color: #fff;
}

.layerPopup-count b {
    font-weight: 700;
}

.layerPopup-close {
    background-color: rgba(0,0,0,.5);
}
.layerPopup-close:hover, .layerPopup-close:focus {
    background-color: #111;
}

.layerPopup-close > i {
    font-size: 2.2rem;
    transform: unset;
}
