.overflow-hidden {
    overflow: hidden;
}

.bebox {
    position: fixed;
    z-index: 999;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.bebox.show {
    opacity: 1;
}

.bebox-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.bebox .bebox-group .swiper-slide {
    cursor: grab;
}
.bebox .bebox-swiper.zoomeble .bebox-image-container.zoomeble img {
    cursor: zoom-in;
}

.bebox .bebox-swiper.zoomeble .swiper-slide-zoomed .bebox-image-container.zoomeble img {
    cursor: zoom-out;
}

.bebox .bebox-controls {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    display: flex;
}

.bebox .bebox-controls .bebox-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #18181ba6;
    width: 45px;
    height: 45px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    -webkit-user-select: none;    
    -ms-user-select: none;   
    user-select: none;
}

.bebox .bebox-controls .bebox-btn:hover {
    background: #18181b;
}

.bebox .bebox-controls .bebox-btn svg path {
    fill: #fff;
}

.bebox .bebox-controls .bebox-btn:hover svg path {
    fill: #efefef;
}

.bebox-swiper {
    height: 100%;
    width: 100%;
}

.bebox-swiper.hasThumbs {
    height: calc(100% - 80px);
}

.bebox-swiper-thumbs {
    height: 80px;
    box-sizing: border-box;
    padding: 10px 0;
}

.bebox-swiper-thumbs .swiper-slide {
    width: 70px;
    height: 100%;
    opacity: 0.4;
    transition: all .5s;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    background-color: #000;
}

.bebox-swiper-thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bebox-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    width: 100px;
}

.bebox .bebox-image-container,
.bebox .bebox-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.bebox .bebox-image-container img {
    max-width: calc(100% - 10px);
    max-height: calc(100% - 10px);
}

.bebox .bebox-video-container video {
    max-width: calc(100% - 10px);
    max-height: calc(100% - 10px);
}

.bebox .bebox-video-container iframe {
    max-width: calc(100% - 10px);
    max-height: calc(100% - 10px);
}

.bebox-preloader {
    width: 80px;
    height: 80px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: be-rotation 1s linear infinite;
}

@keyframes be-rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bebox-slide-info{position: absolute;
    position: absolute;
    color: #fff;
    left: 0px;
    top: 0px;
    font-size: 16px;
    background: #18181ba6;
    z-index: 2;
    padding: 0px 10px;
    line-height: 45px;
}
.bebox-swiper-button-next{transition: background-color .3s; position: absolute; z-index: 999; right:5px; outline: none; top:50%; width:45px; height: 45px; border-radius: 100%; display: flex; align-items: center; justify-content: center; color:#fff;}
.bebox-swiper-button-prev{ position: absolute; z-index: 999; left:5px; outline: none; top:50%; width:45px; height: 45px; border-radius: 100%; display: flex; align-items: center; justify-content: center; color:#fff;}
.bebox-swiper-button-next svg, .bebox-swiper-button-prev svg{width:25px; pointer-events: none;}
.bebox-swiper-button-next svg path, .bebox-swiper-button-prev svg path{ fill: transparent;
    stroke: currentColor;
    filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .5));
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5; }

.bebox-swiper-button-next:hover, .bebox-swiper-button-prev:hover{background-color: #18181ba6;}