﻿.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.popup-content{
    position:relative;
    display:inline-block;
    width:auto;
    height:auto;
    max-width:95vw;
    max-height:95vh;
    background:transparent;
    border-radius:10px;
    overflow:visible;
    box-shadow:none;
}

.popupSwiper{
    width:auto;
    height:auto;
    max-width:95vw;
    max-height:95vh;
}

.popupSwiper .swiper-wrapper{
    align-items:center;
}

.popupSwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

.popupSwiper .swiper-slide img{
    display:block;
    width:auto;
    height:auto;
    max-width:95vw;
    max-height:90vh;
    object-fit:contain;
}

.close{
    position:absolute;
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background:#d90000;
    color:#fff;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    z-index:999999;
}

.close:hover{
    background:#000;
}